Search is not available for this dataset
id
stringlengths
1
8
text
stringlengths
72
9.81M
addition_count
int64
0
10k
commit_subject
stringlengths
0
3.7k
deletion_count
int64
0
8.43k
file_extension
stringlengths
0
32
lang
stringlengths
1
94
license
stringclasses
10 values
repo_name
stringlengths
9
59
10050350
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
2
Less code for spinner
2
.sh
sh
bsd-3-clause
deajan/osync
10050351
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
2
Less code for spinner
2
.sh
sh
bsd-3-clause
deajan/osync
10050352
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal run sud...
1
Fixed typo
1
.sh
sh
bsd-3-clause
deajan/osync
10050353
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal run sud...
1
Fixed typo
1
.sh
sh
bsd-3-clause
deajan/osync
10050354
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
2
Fixed typo for function name
2
.sh
sh
bsd-3-clause
deajan/osync
10050355
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
2
Fixed typo for function name
2
.sh
sh
bsd-3-clause
deajan/osync
10050356
<NME> shellcheck.sh <BEF> #!/usr/bin/env bash #SC2120 = only for debug version shellcheck -e SC2086,SC2119,SC2120 $1 shellcheck -e SC1090,SC1091,SC2086,SC2119,SC2120 $@ <MSG> Added more check skips <DFF> @@ -1,5 +1,8 @@ #!/usr/bin/env bash +#SC1090 = not following non constants source +#SC1091 = not following s...
4
Added more check skips
1
.sh
sh
bsd-3-clause
deajan/osync
10050357
<NME> shellcheck.sh <BEF> #!/usr/bin/env bash #SC2120 = only for debug version shellcheck -e SC2086,SC2119,SC2120 $1 shellcheck -e SC1090,SC1091,SC2086,SC2119,SC2120 $@ <MSG> Added more check skips <DFF> @@ -1,5 +1,8 @@ #!/usr/bin/env bash +#SC1090 = not following non constants source +#SC1091 = not following s...
4
Added more check skips
1
.sh
sh
bsd-3-clause
deajan/osync
10050358
<NME> import-once-test-c.less <BEF> ADDFILE <MSG> Fix unit test for import-once so that tests pass. Previous test commit had bad assumptions <DFF> @@ -0,0 +1,7 @@ + +@import-once "import-test-d.css"; +@c: red; + +#import { + color: @c; +}
7
Fix unit test for import-once so that tests pass. Previous test commit had bad assumptions
0
.less
less
apache-2.0
less/less.js
10050359
<NME> import-once-test-c.less <BEF> ADDFILE <MSG> Fix unit test for import-once so that tests pass. Previous test commit had bad assumptions <DFF> @@ -0,0 +1,7 @@ + +@import-once "import-test-d.css"; +@c: red; + +#import { + color: @c; +}
7
Fix unit test for import-once so that tests pass. Previous test commit had bad assumptions
0
.less
less
apache-2.0
less/less.js
10050360
<NME> import-once-test-c.less <BEF> ADDFILE <MSG> Fix unit test for import-once so that tests pass. Previous test commit had bad assumptions <DFF> @@ -0,0 +1,7 @@ + +@import-once "import-test-d.css"; +@c: red; + +#import { + color: @c; +}
7
Fix unit test for import-once so that tests pass. Previous test commit had bad assumptions
0
.less
less
apache-2.0
less/less.js
10050361
<NME> simple-mixin.css <BEF> ADDFILE <MSG> Fixing import by reference - refactored how import reference works - refactored to-css-visitor (this is side product, it was getting complicated) - fixes issues #1851, #1896, #1878, #2716, #1968, #2162 (same as #1896) <DFF> @@ -0,0 +1,3 @@ +.mixin { + was: included; +}
3
Fixing import by reference
0
.css
css
apache-2.0
less/less.js
10050362
<NME> simple-mixin.css <BEF> ADDFILE <MSG> Fixing import by reference - refactored how import reference works - refactored to-css-visitor (this is side product, it was getting complicated) - fixes issues #1851, #1896, #1878, #2716, #1968, #2162 (same as #1896) <DFF> @@ -0,0 +1,3 @@ +.mixin { + was: included; +}
3
Fixing import by reference
0
.css
css
apache-2.0
less/less.js
10050363
<NME> simple-mixin.css <BEF> ADDFILE <MSG> Fixing import by reference - refactored how import reference works - refactored to-css-visitor (this is side product, it was getting complicated) - fixes issues #1851, #1896, #1878, #2716, #1968, #2162 (same as #1896) <DFF> @@ -0,0 +1,3 @@ +.mixin { + was: included; +}
3
Fixing import by reference
0
.css
css
apache-2.0
less/less.js
10050364
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
1
Better time control in sync function
1
.sh
sh
bsd-3-clause
deajan/osync
10050365
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
1
Better time control in sync function
1
.sh
sh
bsd-3-clause
deajan/osync
10050366
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
5
Rebuilt targets
2
.sh
sh
bsd-3-clause
deajan/osync
10050367
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
5
Rebuilt targets
2
.sh
sh
bsd-3-clause
deajan/osync
10050368
<NME> README.md <BEF> # [Less.js v1.6.1](http://lesscss.org) > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org). This is the JavaScript, and now official, stable version of LESS. ## Getting Started Options for adding Less.js to your project: * Install with [NPM](https://npmjs.org/): `...
1
Update README.md
350
.md
md
apache-2.0
less/less.js
10050369
<NME> README.md <BEF> # [Less.js v1.6.1](http://lesscss.org) > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org). This is the JavaScript, and now official, stable version of LESS. ## Getting Started Options for adding Less.js to your project: * Install with [NPM](https://npmjs.org/): `...
1
Update README.md
350
.md
md
apache-2.0
less/less.js
10050370
<NME> README.md <BEF> # [Less.js v1.6.1](http://lesscss.org) > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org). This is the JavaScript, and now official, stable version of LESS. ## Getting Started Options for adding Less.js to your project: * Install with [NPM](https://npmjs.org/): `...
1
Update README.md
350
.md
md
apache-2.0
less/less.js
10050371
<NME> no-sm-operations.less <BEF> ADDFILE <MSG> Added tests for #2124 <DFF> @@ -0,0 +1,10 @@ +.named-colors-in-expressions { + color-0: 0 -red; + color-1: 1 - red; + color-2: red * 2; + color-3: 2 * red; + @3: -red; + &-bar@{3} {x: y} + @color: red; + &-bar@{color} {a: a} +}
10
Added tests for #2124
0
.less
less
apache-2.0
less/less.js
10050372
<NME> no-sm-operations.less <BEF> ADDFILE <MSG> Added tests for #2124 <DFF> @@ -0,0 +1,10 @@ +.named-colors-in-expressions { + color-0: 0 -red; + color-1: 1 - red; + color-2: red * 2; + color-3: 2 * red; + @3: -red; + &-bar@{3} {x: y} + @color: red; + &-bar@{color} {a: a} +}
10
Added tests for #2124
0
.less
less
apache-2.0
less/less.js
10050373
<NME> no-sm-operations.less <BEF> ADDFILE <MSG> Added tests for #2124 <DFF> @@ -0,0 +1,10 @@ +.named-colors-in-expressions { + color-0: 0 -red; + color-1: 1 - red; + color-2: red * 2; + color-3: 2 * red; + @3: -red; + &-bar@{3} {x: y} + @color: red; + &-bar@{color} {a: a} +}
10
Added tests for #2124
0
.less
less
apache-2.0
less/less.js
10050374
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
1
fix typo in trapquit logerror
1
.sh
sh
bsd-3-clause
deajan/osync
10050375
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
1
fix typo in trapquit logerror
1
.sh
sh
bsd-3-clause
deajan/osync
10050376
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal run sud...
53
Improved timed execution tests
19
.sh
sh
bsd-3-clause
deajan/osync
10050377
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal run sud...
53
Improved timed execution tests
19
.sh
sh
bsd-3-clause
deajan/osync
10050378
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
0
Disable PRESERVE ACL & ATTR by default for compat reasons
8
.sh
sh
bsd-3-clause
deajan/osync
10050379
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
0
Disable PRESERVE ACL & ATTR by default for compat reasons
8
.sh
sh
bsd-3-clause
deajan/osync
10050380
<NME> n_osync.sh <BEF> #!/usr/bin/env bash PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=2016121302 IS_STABLE=no #TODO(low): is debug subset relevant in rem...
2
Bumped version to v1.2-RC1
5
.sh
sh
bsd-3-clause
deajan/osync
10050381
<NME> n_osync.sh <BEF> #!/usr/bin/env bash PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=2016121302 IS_STABLE=no #TODO(low): is debug subset relevant in rem...
2
Bumped version to v1.2-RC1
5
.sh
sh
bsd-3-clause
deajan/osync
10050382
<NME> util.js <BEF> 'use strict' const cssesc = require('cssesc'); /** * Checks if the browser is initialized. Exits the process if it's not */ exports.browserIsInitialized = function browserIsInitialized () { if (!this.isInitialized()) { console.error('HeadlessChrome is not ready; call browser.init() before ...
3
Add error code to promiseTimeout
1
.js
js
mit
LucianoGanga/simple-headless-chrome
10050383
<NME> README.md <BEF> <div align="center"> <img src="https://user-images.githubusercontent.com/2785350/28428760-ae908006-6d7a-11e7-92ec-174bec80740e.png"> </div> <div align="center"> <h1>ngx-scroll-to</h1> <p> A simple Angular 4+ plugin enabling you to smooth scroll to any element on your page and enhance scr...
6
Update README
4
.md
md
mit
nicky-lenaers/ngx-scroll-to
10050384
<NME> README.md <BEF> <div align="center"> <img src="https://user-images.githubusercontent.com/2785350/28428760-ae908006-6d7a-11e7-92ec-174bec80740e.png"> </div> <div align="center"> <h1>ngx-scroll-to</h1> <p> A simple Angular 4+ plugin enabling you to smooth scroll to any element on your page and enhance scr...
6
Update README
4
.md
md
mit
nicky-lenaers/ngx-scroll-to
10050385
<NME> README.md <BEF> <div align="center"> <img src="https://user-images.githubusercontent.com/2785350/28428760-ae908006-6d7a-11e7-92ec-174bec80740e.png"> </div> <div align="center"> <h1>ngx-scroll-to</h1> <p> A simple Angular 4+ plugin enabling you to smooth scroll to any element on your page and enhance scr...
6
Update README
4
.md
md
mit
nicky-lenaers/ngx-scroll-to
10050386
<NME> less-error.js <BEF> ADDFILE <MSG> Merge pull request #2022 from ForbesLindesay/2_0_0-refactor-chunker-and-less-error 2.0.0 refactor chunker and less error <DFF> @@ -0,0 +1,27 @@ + +var LessError = module.exports = function LessError(parser, e, env) { + var input = parser.getInput(e, env), + loc = parse...
27
Merge pull request #2022 from ForbesLindesay/2_0_0-refactor-chunker-and-less-error
0
.js
js
apache-2.0
less/less.js
10050387
<NME> less-error.js <BEF> ADDFILE <MSG> Merge pull request #2022 from ForbesLindesay/2_0_0-refactor-chunker-and-less-error 2.0.0 refactor chunker and less error <DFF> @@ -0,0 +1,27 @@ + +var LessError = module.exports = function LessError(parser, e, env) { + var input = parser.getInput(e, env), + loc = parse...
27
Merge pull request #2022 from ForbesLindesay/2_0_0-refactor-chunker-and-less-error
0
.js
js
apache-2.0
less/less.js
10050388
<NME> less-error.js <BEF> ADDFILE <MSG> Merge pull request #2022 from ForbesLindesay/2_0_0-refactor-chunker-and-less-error 2.0.0 refactor chunker and less error <DFF> @@ -0,0 +1,27 @@ + +var LessError = module.exports = function LessError(parser, e, env) { + var input = parser.getInput(e, env), + loc = parse...
27
Merge pull request #2022 from ForbesLindesay/2_0_0-refactor-chunker-and-less-error
0
.js
js
apache-2.0
less/less.js
10050389
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
4
More FreeBSD acl fix
1
.sh
sh
bsd-3-clause
deajan/osync
10050390
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
4
More FreeBSD acl fix
1
.sh
sh
bsd-3-clause
deajan/osync
10050391
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"><a href="http://badge.fury.io/js/less"><a href="https://opencollective.com/less" alt="Financial Contributors on Open Collective"><img src="https://opencollective.com/less/all/badge...
1
Update README.md
3
.md
md
apache-2.0
less/less.js
10050392
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"><a href="http://badge.fury.io/js/less"><a href="https://opencollective.com/less" alt="Financial Contributors on Open Collective"><img src="https://opencollective.com/less/all/badge...
1
Update README.md
3
.md
md
apache-2.0
less/less.js
10050393
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"><a href="http://badge.fury.io/js/less"><a href="https://opencollective.com/less" alt="Financial Contributors on Open Collective"><img src="https://opencollective.com/less/all/badge...
1
Update README.md
3
.md
md
apache-2.0
less/less.js
10050394
<NME> offset-only.module.ts <BEF> ADDFILE <MSG> feat(module): scroll to offset instead of target (#67) The module can now be used to scroll to a specific offset instead of a target. The offset can be used in both the Directive and the Service. This closes #28 <DFF> @@ -0,0 +1,16 @@ +import { NgModule } from '@angu...
16
feat(module): scroll to offset instead of target (#67)
0
.ts
module
mit
nicky-lenaers/ngx-scroll-to
10050395
<NME> offset-only.module.ts <BEF> ADDFILE <MSG> feat(module): scroll to offset instead of target (#67) The module can now be used to scroll to a specific offset instead of a target. The offset can be used in both the Directive and the Service. This closes #28 <DFF> @@ -0,0 +1,16 @@ +import { NgModule } from '@angu...
16
feat(module): scroll to offset instead of target (#67)
0
.ts
module
mit
nicky-lenaers/ngx-scroll-to
10050396
<NME> offset-only.module.ts <BEF> ADDFILE <MSG> feat(module): scroll to offset instead of target (#67) The module can now be used to scroll to a specific offset instead of a target. The offset can be used in both the Directive and the Service. This closes #28 <DFF> @@ -0,0 +1,16 @@ +import { NgModule } from '@angu...
16
feat(module): scroll to offset instead of target (#67)
0
.ts
module
mit
nicky-lenaers/ngx-scroll-to
10050397
<NME> urls.less <BEF> ADDFILE <MSG> Cache buster for url tokens <DFF> @@ -0,0 +1,63 @@ +@font-face { + src: url("/fonts/garamond-pro.ttf"); + src: local(Futura-Medium), + url(fonts.svg#MyGeometricModern) format("svg"); +} +#shorthands { + background: url("http://www.lesscss.org/spec.html") no-repeat 0 4px; + ...
63
Cache buster for url tokens
0
.less
less
apache-2.0
less/less.js
10050398
<NME> urls.less <BEF> ADDFILE <MSG> Cache buster for url tokens <DFF> @@ -0,0 +1,63 @@ +@font-face { + src: url("/fonts/garamond-pro.ttf"); + src: local(Futura-Medium), + url(fonts.svg#MyGeometricModern) format("svg"); +} +#shorthands { + background: url("http://www.lesscss.org/spec.html") no-repeat 0 4px; + ...
63
Cache buster for url tokens
0
.less
less
apache-2.0
less/less.js
10050399
<NME> urls.less <BEF> ADDFILE <MSG> Cache buster for url tokens <DFF> @@ -0,0 +1,63 @@ +@font-face { + src: url("/fonts/garamond-pro.ttf"); + src: local(Futura-Medium), + url(fonts.svg#MyGeometricModern) format("svg"); +} +#shorthands { + background: url("http://www.lesscss.org/spec.html") no-repeat 0 4px; + ...
63
Cache buster for url tokens
0
.less
less
apache-2.0
less/less.js
10050400
<NME> install.sh <BEF> #!/usr/bin/env bash ## Installer script suitable for osync / obackup / pmocr PROGRAM=osync PROGRAM_VERSION=$(grep "PROGRAM_VERSION=" $PROGRAM.sh) PROGRAM_VERSION=${PROGRAM_VERSION#*=} PROGRAM_BINARY=$PROGRAM".sh" PROGRAM_BATCH=$PROGRAM"-batch.sh" SSH_FILTER="ssh_filter.sh" #TODO: silent mode ...
21
Added support for different install path and fakeroot
13
.sh
sh
bsd-3-clause
deajan/osync
10050401
<NME> install.sh <BEF> #!/usr/bin/env bash ## Installer script suitable for osync / obackup / pmocr PROGRAM=osync PROGRAM_VERSION=$(grep "PROGRAM_VERSION=" $PROGRAM.sh) PROGRAM_VERSION=${PROGRAM_VERSION#*=} PROGRAM_BINARY=$PROGRAM".sh" PROGRAM_BATCH=$PROGRAM"-batch.sh" SSH_FILTER="ssh_filter.sh" #TODO: silent mode ...
21
Added support for different install path and fakeroot
13
.sh
sh
bsd-3-clause
deajan/osync
10050402
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
1
Revert non WIP KEEP_LOGGING time
1
.sh
sh
bsd-3-clause
deajan/osync
10050403
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #TODO: ExecTasks postponed arrays / files grow a lot. Consider having them "rolling" (cleaned at numberOfEvents) #TODO: command line arguments do...
1
Revert non WIP KEEP_LOGGING time
1
.sh
sh
bsd-3-clause
deajan/osync
10050404
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
12
Rebuilt targets
134
.sh
sh
bsd-3-clause
deajan/osync
10050405
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
12
Rebuilt targets
134
.sh
sh
bsd-3-clause
deajan/osync
10050406
<NME> url-import.less <BEF> ADDFILE <MSG> Merge pull request #1902 from less/2_0_0 2.0.0 Pull Request <DFF> @@ -0,0 +1,1 @@ +@import url("deeper-2/url-import.less"); \ No newline at end of file
1
Merge pull request #1902 from less/2_0_0
0
.less
less
apache-2.0
less/less.js
10050407
<NME> url-import.less <BEF> ADDFILE <MSG> Merge pull request #1902 from less/2_0_0 2.0.0 Pull Request <DFF> @@ -0,0 +1,1 @@ +@import url("deeper-2/url-import.less"); \ No newline at end of file
1
Merge pull request #1902 from less/2_0_0
0
.less
less
apache-2.0
less/less.js
10050408
<NME> url-import.less <BEF> ADDFILE <MSG> Merge pull request #1902 from less/2_0_0 2.0.0 Pull Request <DFF> @@ -0,0 +1,1 @@ +@import url("deeper-2/url-import.less"); \ No newline at end of file
1
Merge pull request #1902 from less/2_0_0
0
.less
less
apache-2.0
less/less.js
10050409
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016112205 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
4
Disabling ACL / XATTR on Mac & msys
2
.sh
sh
bsd-3-clause
deajan/osync
10050410
<NME> ofunctions.sh <BEF> #### MINIMAL-FUNCTION-SET BEGIN #### ## FUNC_BUILD=2016112205 ## BEGIN Generic bash functions written in 2013-2016 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr ## To use in a program, define the following variables: #############################################################...
4
Disabling ACL / XATTR on Mac & msys
2
.sh
sh
bsd-3-clause
deajan/osync
10050411
<NME> property-ie5-hack.txt <BEF> ADDFILE <MSG> Add test for #826 <DFF> @@ -0,0 +1,4 @@ +ParseError: Syntax Error on line 2 in C:\git\less.js\test\less\errors\property-ie5-hack.less:2:2 +1 .test { +2 display/*/: block; /*sorry for IE5*/ +3 }
4
Add test for #826
0
.txt
txt
apache-2.0
less/less.js
10050412
<NME> property-ie5-hack.txt <BEF> ADDFILE <MSG> Add test for #826 <DFF> @@ -0,0 +1,4 @@ +ParseError: Syntax Error on line 2 in C:\git\less.js\test\less\errors\property-ie5-hack.less:2:2 +1 .test { +2 display/*/: block; /*sorry for IE5*/ +3 }
4
Add test for #826
0
.txt
txt
apache-2.0
less/less.js
10050413
<NME> property-ie5-hack.txt <BEF> ADDFILE <MSG> Add test for #826 <DFF> @@ -0,0 +1,4 @@ +ParseError: Syntax Error on line 2 in C:\git\less.js\test\less\errors\property-ie5-hack.less:2:2 +1 .test { +2 display/*/: block; /*sorry for IE5*/ +3 }
4
Add test for #826
0
.txt
txt
apache-2.0
less/less.js
10050414
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-RC3 PROGRAM_...
10
Rebuilt targets
6
.sh
sh
bsd-3-clause
deajan/osync
10050415
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-RC3 PROGRAM_...
10
Rebuilt targets
6
.sh
sh
bsd-3-clause
deajan/osync
10050416
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> # [Less.js](http://lesscss.org) > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org). This is the JavaScript, official, stable version of Less. T...
2
Merge pull request #2568 from gitter-badger/gitter-badge
0
.md
md
apache-2.0
less/less.js
10050417
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> # [Less.js](http://lesscss.org) > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org). This is the JavaScript, official, stable version of Less. T...
2
Merge pull request #2568 from gitter-badger/gitter-badge
0
.md
md
apache-2.0
less/less.js
10050418
<NME> README.md <BEF> <p align="center"><img src="http://lesscss.org/public/img/less_logo.png" width="264" height="117"> <p align="center"> # [Less.js](http://lesscss.org) > The **dynamic** stylesheet language. [http://lesscss.org](http://lesscss.org). This is the JavaScript, official, stable version of Less. T...
2
Merge pull request #2568 from gitter-badger/gitter-badge
0
.md
md
apache-2.0
less/less.js
10050419
<NME> README.md <BEF> [![Build Status](https://travis-ci.org/LucianoGanga/simple-headless-chrome.svg?branch=master)](https://travis-ci.org/LucianoGanga/simple-headless-chrome) # simple-headless-chrome # This project is looking for a maintainer If you'd like to help others in this project, you're more than welcome! I ...
12
Update README.md
0
.md
md
mit
LucianoGanga/simple-headless-chrome
10050420
<NME> less-rhino-1.1.5.js <BEF> ADDFILE <MSG> (dist) build rhino <DFF> @@ -0,0 +1,2481 @@ +// +// Stub out `require` in rhino +// +function require(arg) { + return less[arg.split('/')[1]]; +}; + + +// ecma-5.js +// +// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License +// -- tlrobinson Tom Robinson +// dantma...
2,481
(dist) build rhino
0
.js
1
apache-2.0
less/less.js
10050421
<NME> less-rhino-1.1.5.js <BEF> ADDFILE <MSG> (dist) build rhino <DFF> @@ -0,0 +1,2481 @@ +// +// Stub out `require` in rhino +// +function require(arg) { + return less[arg.split('/')[1]]; +}; + + +// ecma-5.js +// +// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License +// -- tlrobinson Tom Robinson +// dantma...
2,481
(dist) build rhino
0
.js
1
apache-2.0
less/less.js
10050422
<NME> less-rhino-1.1.5.js <BEF> ADDFILE <MSG> (dist) build rhino <DFF> @@ -0,0 +1,2481 @@ +// +// Stub out `require` in rhino +// +function require(arg) { + return less[arg.split('/')[1]]; +}; + + +// ecma-5.js +// +// -- kriskowal Kris Kowal Copyright (C) 2009-2010 MIT License +// -- tlrobinson Tom Robinson +// dantma...
2,481
(dist) build rhino
0
.js
1
apache-2.0
less/less.js
10050423
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
2
Corrected variable # of arguments for _WriteLockFiles
2
.sh
sh
bsd-3-clause
deajan/osync
10050424
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013...
2
Corrected variable # of arguments for _WriteLockFiles
2
.sh
sh
bsd-3-clause
deajan/osync
10050425
<NME> CHANGELOG.md <BEF> ## Change Log ### v3.11.2 (2020-06-01) - [#3498](https://github.com/less/less.js/pull/3498) Remove tree caching in import manager (#3498) (@matthew-dean) - [#3482](https://github.com/less/less.js/pull/3482) issue#3481 ignore missing debugInfo (#3482) (@5UtJAjiRWj1q) - [#3613](https://github.co...
3
Update changelog
0
.md
md
apache-2.0
less/less.js
10050426
<NME> CHANGELOG.md <BEF> ## Change Log ### v3.11.2 (2020-06-01) - [#3498](https://github.com/less/less.js/pull/3498) Remove tree caching in import manager (#3498) (@matthew-dean) - [#3482](https://github.com/less/less.js/pull/3482) issue#3481 ignore missing debugInfo (#3482) (@5UtJAjiRWj1q) - [#3613](https://github.co...
3
Update changelog
0
.md
md
apache-2.0
less/less.js
10050427
<NME> CHANGELOG.md <BEF> ## Change Log ### v3.11.2 (2020-06-01) - [#3498](https://github.com/less/less.js/pull/3498) Remove tree caching in import manager (#3498) (@matthew-dean) - [#3482](https://github.com/less/less.js/pull/3482) issue#3481 ignore missing debugInfo (#3482) (@5UtJAjiRWj1q) - [#3613](https://github.co...
3
Update changelog
0
.md
md
apache-2.0
less/less.js
10050428
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
3
Reverted bogus var name change
3
.sh
sh
bsd-3-clause
deajan/osync
10050429
<NME> n_osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=...
3
Reverted bogus var name change
3
.sh
sh
bsd-3-clause
deajan/osync
10050430
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
2
Rebuilt targets
1
.sh
sh
bsd-3-clause
deajan/osync
10050431
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? #Check dryruns with nosuffix mode for timestampList PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(C) 2013-2...
2
Rebuilt targets
1
.sh
sh
bsd-3-clause
deajan/osync
10050432
<NME> CHANGELOG.md <BEF> # 1.5.0 Beta 3 2013-09-17 - sourcemap support - support for import inline option to include css that you do NOT want less to parse e.g. `@import (inline) "file.css";` - [#3658](https://github.com/less/less.js/pull/3658) Fix [#3646](https://github.com/less/less.js/issues/3656) forcefully cha...
4
Update changelog
2
.md
md
apache-2.0
less/less.js
10050433
<NME> CHANGELOG.md <BEF> # 1.5.0 Beta 3 2013-09-17 - sourcemap support - support for import inline option to include css that you do NOT want less to parse e.g. `@import (inline) "file.css";` - [#3658](https://github.com/less/less.js/pull/3658) Fix [#3646](https://github.com/less/less.js/issues/3656) forcefully cha...
4
Update changelog
2
.md
md
apache-2.0
less/less.js
10050434
<NME> CHANGELOG.md <BEF> # 1.5.0 Beta 3 2013-09-17 - sourcemap support - support for import inline option to include css that you do NOT want less to parse e.g. `@import (inline) "file.css";` - [#3658](https://github.com/less/less.js/pull/3658) Fix [#3646](https://github.com/less/less.js/issues/3656) forcefully cha...
4
Update changelog
2
.md
md
apache-2.0
less/less.js
10050435
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=20...
36
Rebuilt targets
29
.sh
sh
bsd-3-clause
deajan/osync
10050436
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(C) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.2-beta3 PROGRAM_BUILD=20...
36
Rebuilt targets
29
.sh
sh
bsd-3-clause
deajan/osync
10050437
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # osync test suite 2016122302 # 4 tests: # quicklocal ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # 4 tes...
2
Fixed typo
2
.sh
sh
bsd-3-clause
deajan/osync
10050438
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # osync test suite 2016122302 # 4 tests: # quicklocal ## On CYGWIN / MSYS, ACL and extended attributes aren't supported # 4 tes...
2
Fixed typo
2
.sh
sh
bsd-3-clause
deajan/osync
10050439
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal run sud...
30
Merge forced_bash into master
26
.sh
sh
bsd-3-clause
deajan/osync
10050440
<NME> run_tests.sh <BEF> #!/usr/bin/env bash # osync test suite 2022070702 # Allows the following environment variables # RUNNING_ON_GITHUB_ACTIONS=[true|false] # SSH_PORT=22 # SKIP_REMOTE=[true|false] ## On Mac OSX, this needs to be run as root in order to use sudo without password ## From current terminal run sud...
30
Merge forced_bash into master
26
.sh
sh
bsd-3-clause
deajan/osync
10050441
<NME> README.md <BEF> # osync [![Build Status](https://travis-ci.org/deajan/osync.svg?branch=master)](https://travis-ci.org/deajan/osync) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) [![GitHub Release](https://img.shields.io/github/release/de...
1
Added open issue badge
1
.md
md
bsd-3-clause
deajan/osync
10050442
<NME> README.md <BEF> # osync [![Build Status](https://travis-ci.org/deajan/osync.svg?branch=master)](https://travis-ci.org/deajan/osync) [![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) [![GitHub Release](https://img.shields.io/github/release/de...
1
Added open issue badge
1
.md
md
bsd-3-clause
deajan/osync
10050443
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.1-pre PROGRAM_BU...
19
Fixed some typos in include exclude functions
13
.sh
sh
bsd-3-clause
deajan/osync
10050444
<NME> osync.sh <BEF> #!/usr/bin/env bash #TODO treeList, deleteList, _getFileCtimeMtime, conflictList should be called without having statedir informed. Just give the full path ? AUTHOR="(L) 2013-2015 by Orsiris \"Ozy\" de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.1-pre PROGRAM_BU...
19
Fixed some typos in include exclude functions
13
.sh
sh
bsd-3-clause
deajan/osync
10050445
<NME> initChart.ts <BEF> import { HighchartsService } from './HighchartsService'; import { deepAssign } from './deepAssign'; export function initChart(highchartsService : HighchartsService, userOpts, baseOpts, type : string) { if (!highchartsService.Highcharts[type]) { throw new Error(`${type} is unknown c...
4
add ChartModule.init
2
.ts
ts
mit
gevgeny/angular2-highcharts
10050446
<NME> initChart.ts <BEF> import { HighchartsService } from './HighchartsService'; import { deepAssign } from './deepAssign'; export function initChart(highchartsService : HighchartsService, userOpts, baseOpts, type : string) { if (!highchartsService.Highcharts[type]) { throw new Error(`${type} is unknown c...
4
add ChartModule.init
2
.ts
ts
mit
gevgeny/angular2-highcharts
10050447
<NME> osync.sh <BEF> #!/usr/bin/env bash PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(L) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.1-dev PROGRAM_BUILD=2016021802 IS_STABLE=no FUNC_BUILD=2016021604 ## BEGIN Generic function...
117
Fixed more typos
104
.sh
sh
bsd-3-clause
deajan/osync
10050448
<NME> osync.sh <BEF> #!/usr/bin/env bash PROGRAM="osync" # Rsync based two way sync engine with fault tolerance AUTHOR="(L) 2013-2016 by Orsiris de Jong" CONTACT="http://www.netpower.fr/osync - ozy@netpower.fr" PROGRAM_VERSION=1.1-dev PROGRAM_BUILD=2016021802 IS_STABLE=no FUNC_BUILD=2016021604 ## BEGIN Generic function...
117
Fixed more typos
104
.sh
sh
bsd-3-clause
deajan/osync
10050449
<NME> ofunctions.sh <BEF> #!/usr/bin/env bash ## Generic and highly portable bash functions written in 2013-2022 by Orsiris de Jong - http://www.netpower.fr - ozy@netpower.fr #### OFUNCTIONS MINI SUBSET #### _OFUNCTIONS_VERSION=2.1.4-rc1 _OFUNCTIONS_BUILD=2017060903 #### _OFUNCTIONS_BOOTSTRAP SUBSET #### _OFUNCTIONS_BO...
2
Replaced IsNumeric with IsInteger for pid checks
2
.sh
sh
bsd-3-clause
deajan/osync