hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
65d8d4110156712e2d40837dfc7540b87dce1cc2
diff --git a/src/Validation.php b/src/Validation.php index <HASH>..<HASH> 100644 --- a/src/Validation.php +++ b/src/Validation.php @@ -9,6 +9,7 @@ namespace Nutrition; */ use Base; +use Cursor; use DB\SQL\Mapper as SQLMapperOri; use DB\Jig\Mapper as JigMapperOri; use DB\Mongo\Mapper as MongoMapperOri; @@ -41,7 ...
Bugfix: wrong type hinting on Validation
eghojansu_nutrition
train
php
56b9f0ffb6718b8f42d96340435012ef95d4ef20
diff --git a/lib/arjdbc/db2/adapter.rb b/lib/arjdbc/db2/adapter.rb index <HASH>..<HASH> 100644 --- a/lib/arjdbc/db2/adapter.rb +++ b/lib/arjdbc/db2/adapter.rb @@ -48,6 +48,19 @@ module ArJdbc # TODO: Explain this! end + def prefetch_primary_key?(table_name = nil) + # TRUE if the table has no ident...
Fetch a sequence value manually for tables with no identity columns This is to support legacy tables for which the sequence needs to be manually specified in ActiveRecord
jruby_activerecord-jdbc-adapter
train
rb
05bb8b62a7a974a583da1778b7819658b47ae8f9
diff --git a/public/js/chrome/navigation.js b/public/js/chrome/navigation.js index <HASH>..<HASH> 100644 --- a/public/js/chrome/navigation.js +++ b/public/js/chrome/navigation.js @@ -49,7 +49,7 @@ function opendropdown(el) { var menu; if (!dropdownOpen) { menu = $(el).closest('.menu').addClass('open').trigge...
correctly select/set focus on the first _visible_ input element on form based menus (like login)
jsbin_jsbin
train
js
3ddff9fbbeec15fe51e5012ac2ac5aa34c732c4d
diff --git a/ORM/PaginatedRepository.php b/ORM/PaginatedRepository.php index <HASH>..<HASH> 100644 --- a/ORM/PaginatedRepository.php +++ b/ORM/PaginatedRepository.php @@ -40,9 +40,7 @@ class PaginatedRepository extends EntityRepository { $qb = $this->createPaginatedQueryBuilder($criteria); $qb->a...
PaginatedRepository move order logic to protected method
javihgil_doctrine-pagination
train
php
a5eec0f76b7c4c58d30325875249f3c07100bd18
diff --git a/lib/serf/client.js b/lib/serf/client.js index <HASH>..<HASH> 100644 --- a/lib/serf/client.js +++ b/lib/serf/client.js @@ -84,7 +84,7 @@ Client.prototype = { var name = member.Name; if (members.some(function(member) { - return member.Tags["have-unprocessed-messages-for-" + n...
Follow to change of droonga-engine
droonga_express-droonga
train
js
22776d36c7f2757ce04fda0cdcf2e45367b6620e
diff --git a/lib/browser.js b/lib/browser.js index <HASH>..<HASH> 100644 --- a/lib/browser.js +++ b/lib/browser.js @@ -18,3 +18,4 @@ require('./http/xhr'); if (typeof window !== 'undefined') window.AWS = AWS; if (typeof module !== 'undefined') module.exports = AWS; +if (typeof self !== 'undefined') self.AWS = AWS;
adding AWS namespace to self to support running in webworkers
aws_aws-sdk-js
train
js
eae5851192f790edf4b3c871fbca2f239bcf4588
diff --git a/java/server/src/org/openqa/selenium/remote/server/handler/GetSessionCapabilities.java b/java/server/src/org/openqa/selenium/remote/server/handler/GetSessionCapabilities.java index <HASH>..<HASH> 100644 --- a/java/server/src/org/openqa/selenium/remote/server/handler/GetSessionCapabilities.java +++ b/java/se...
DanielWagnerHall: Reverting revision <I> because it breaks the remote server - the Capabilities map is immutable. Make a copy if you want to change it. r<I>
SeleniumHQ_selenium
train
java
542383bba881ef24fe0bb9dfcd46d978b811d662
diff --git a/closure/goog/ui/drilldownrow.js b/closure/goog/ui/drilldownrow.js index <HASH>..<HASH> 100644 --- a/closure/goog/ui/drilldownrow.js +++ b/closure/goog/ui/drilldownrow.js @@ -217,14 +217,6 @@ goog.ui.DrilldownRow.prototype.removeChild = function(child) { }; -/** @override */ -goog.ui.DrilldownRow.proto...
No access to private member. ------------- Created by MOE: <URL>
google_closure-library
train
js
0e96acf9527c55a72b5ec6d385b6a779d9927b61
diff --git a/molvs/normalize.py b/molvs/normalize.py index <HASH>..<HASH> 100644 --- a/molvs/normalize.py +++ b/molvs/normalize.py @@ -39,7 +39,7 @@ class Normalization(object): @memoized_property def transform(self): log.debug('Loading Normalization transform: %s', self.name) - return AllChem...
Fix ReactionFromSmarts for both python 2 and 3
mcs07_MolVS
train
py
ae329374fdd3ea86b2811bbdf4e65ab4002f2259
diff --git a/components/dialog-ng/dialog-ng.js b/components/dialog-ng/dialog-ng.js index <HASH>..<HASH> 100644 --- a/components/dialog-ng/dialog-ng.js +++ b/components/dialog-ng/dialog-ng.js @@ -187,7 +187,7 @@ class DialogController { Reflect.deleteProperty(this, 'DIALOG_NAMESPACE'); - if (shortcuts.getSco...
RG-<I> re-implement Former-commit-id: fc<I>f<I>a<I>a<I>bfc8ada0b4ce<I>f7e<I>e
JetBrains_ring-ui
train
js
49c8001c2499b60d0f1bc3a5e9f35d87221fd6ee
diff --git a/src/inode.js b/src/inode.js index <HASH>..<HASH> 100644 --- a/src/inode.js +++ b/src/inode.js @@ -264,6 +264,7 @@ export function makeInodeHeaderBlob( datastore_id, inode_type, owner_id, inode_u 'type': inode_type, 'owner': owner_id, 'uuid': inode_uuid, + 'readers': [], // unus...
empty list of readers in each inode, for now
blockstack_blockstack-storage-js
train
js
556d85e31fb0aba53d4939e66795c5be7554199b
diff --git a/lib/svtplay_dl/fetcher/dash.py b/lib/svtplay_dl/fetcher/dash.py index <HASH>..<HASH> 100644 --- a/lib/svtplay_dl/fetcher/dash.py +++ b/lib/svtplay_dl/fetcher/dash.py @@ -94,5 +94,6 @@ class DASH(VideoRetriever): if self.options.output != "-": file_d.close() + progressbar(...
dash: complete the progress bar after file is downloaded The progress bar wasn't updated after the downloaded completed, so the final progress bar would look something like this: [<I>/<I>][===============================.] ETA: 0:<I>:<I> This can be interpreted as the file didn't download completely. Reported-by...
spaam_svtplay-dl
train
py
3da79b350b78d57409f0688e45d967c5963666dc
diff --git a/libraries/joomla/cache/storage/file.php b/libraries/joomla/cache/storage/file.php index <HASH>..<HASH> 100644 --- a/libraries/joomla/cache/storage/file.php +++ b/libraries/joomla/cache/storage/file.php @@ -9,8 +9,6 @@ defined('JPATH_PLATFORM') or die; -jimport('joomla.filesystem.file'); - /** * Fil...
[#<I>] JCacheFIle should not use JFile calls at all
joomla_joomla-framework
train
php
fd05ba4f86e251e6fa0cca399de406d8dc2a97c9
diff --git a/src/console/controllers/Migrate.php b/src/console/controllers/Migrate.php index <HASH>..<HASH> 100644 --- a/src/console/controllers/Migrate.php +++ b/src/console/controllers/Migrate.php @@ -89,7 +89,7 @@ class Migrate extends Controller $custom_name = false; - if (count($argv)) { + ...
Fix count (php<I>)
levmorozov_mii
train
php,php
4817bc57cd91d976d82345e921eb87366013b6b5
diff --git a/pymc3/distributions/mixture.py b/pymc3/distributions/mixture.py index <HASH>..<HASH> 100644 --- a/pymc3/distributions/mixture.py +++ b/pymc3/distributions/mixture.py @@ -397,6 +397,19 @@ class Mixture(Distribution): return comp_dist_shapes, broadcast_shape def logp(self, value): + ""...
Add doc strings for random and logp class methods for mixture distribution
pymc-devs_pymc
train
py
cc6c07e656bd1330f1d85c9110d6b8675607d550
diff --git a/system/Config/DotEnv.php b/system/Config/DotEnv.php index <HASH>..<HASH> 100644 --- a/system/Config/DotEnv.php +++ b/system/Config/DotEnv.php @@ -183,7 +183,7 @@ class DotEnv $value = $this->resolveNestedVariables($value); // Handle hex2bin prefix - if ($name === 'encryption.key' && substr($value,...
Update system/Config/DotEnv.php
codeigniter4_CodeIgniter4
train
php
fdf8825477d8dd1e4315339b488a03a16b36d3b6
diff --git a/salt/modules/file.py b/salt/modules/file.py index <HASH>..<HASH> 100644 --- a/salt/modules/file.py +++ b/salt/modules/file.py @@ -686,7 +686,7 @@ def find(path, *args, **kwargs): except ValueError as ex: return 'error: {0}'.format(ex) - ret = [item for i in [finder.find(os.path.expanduse...
Preserve previous behaviour when doing glob expansion in file.find
saltstack_salt
train
py
06eaaec3d75d2987b5bc66f19e2aa99a7b9b55b2
diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index <HASH>..<HASH> 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -1,9 +1,3 @@ -# temporary -puts "Running rubocop..." -output = `rubocop` -puts output -raise "Rubocop failed" unless output.include? "no offenses detected" - require 'coveralls' Co...
Rubocop is now being run by fastlane and not spaceship
fastlane_fastlane
train
rb
a990524be343a306197e9e76a4fb246fecd7b2a2
diff --git a/core/src/main/java/org/infinispan/persistence/manager/PersistenceManagerImpl.java b/core/src/main/java/org/infinispan/persistence/manager/PersistenceManagerImpl.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/org/infinispan/persistence/manager/PersistenceManagerImpl.java +++ b/core/src/main/java/...
ISPN-<I> Preload write is performed on persistence thread * Make sure to observe on the CPU thread
infinispan_infinispan
train
java
9e3b3fe456a60afd9d3d355d999331f2c6c013ab
diff --git a/src/get-region-from-meta.js b/src/get-region-from-meta.js index <HASH>..<HASH> 100644 --- a/src/get-region-from-meta.js +++ b/src/get-region-from-meta.js @@ -33,12 +33,7 @@ function getRegionFromMeta({ v, /*c, */r25th, r40th, r50th, r75th, r90th } = {}, regionMean.right = regionMean.left + regionMean....
should be no need for redundant boundary detection
asilvas_salient-autofocus
train
js
3404061fdd4ee67eb0cee73e2eb2528ab9bd57af
diff --git a/views/boom/editor/footer.php b/views/boom/editor/footer.php index <HASH>..<HASH> 100644 --- a/views/boom/editor/footer.php +++ b/views/boom/editor/footer.php @@ -22,4 +22,4 @@ //]]> </script> </body> -</html> +</html> \ No newline at end of file
Removed blank link at EOF
boomcms_boom-core
train
php
6352cf23742c53f3312f3a004c762a077bdb73d7
diff --git a/testing/test_session.py b/testing/test_session.py index <HASH>..<HASH> 100644 --- a/testing/test_session.py +++ b/testing/test_session.py @@ -126,14 +126,14 @@ class SessionTests(object): ) reprec = testdir.inline_run(p) passed, skipped, failed = reprec.listoutcomes() - as...
test_implicit_bad_repr1: harden/cleanup
pytest-dev_pytest
train
py
aae3c3538492f19f1c4e1fcfe6c942ff72a30ce1
diff --git a/activerecord/lib/active_record/associations/class_methods/join_dependency/join_association.rb b/activerecord/lib/active_record/associations/class_methods/join_dependency/join_association.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/associations/class_methods/join_dependency/join_asso...
removing interpolate_sql from join associations
rails_rails
train
rb
d7ead114762937659181896eac31b2972f7490f6
diff --git a/config/config.php b/config/config.php index <HASH>..<HASH> 100644 --- a/config/config.php +++ b/config/config.php @@ -8,6 +8,7 @@ return [ 'productionEnvironments' => [ 'prod', 'production', + 'live', ], /*
add 'live' as default production env
beyondcode_laravel-self-diagnosis
train
php
bee905c5b6991f4878086c5f03ca4de7e9aa1228
diff --git a/message.php b/message.php index <HASH>..<HASH> 100644 --- a/message.php +++ b/message.php @@ -161,7 +161,7 @@ if ($action=='send' && $good_to_send) { echo WT_I18N::translate('Message was not sent'), '<br />'; AddToLog('Unable to send message. FROM:'.$from.' TO:'.$to.' (recipient does not exist)'...
message.php - undefined variable (error from previous change)
fisharebest_webtrees
train
php
57a4a687ebff4cf04a2e8ea72770bb7b32d72861
diff --git a/game.rb b/game.rb index <HASH>..<HASH> 100644 --- a/game.rb +++ b/game.rb @@ -47,16 +47,16 @@ class Grid cells << @storage[index - 1] unless beginning_of_row?(index) cells << @storage[index + 1] unless end_of_row?(index) - unless index < size + unless first_row?(index) cells << @st...
Minor changes for consistency - And reordering to highlight duplication
enocom_ruby_life
train
rb
8fb9c2a11dec6f71d180301562fa27e132537207
diff --git a/state.go b/state.go index <HASH>..<HASH> 100644 --- a/state.go +++ b/state.go @@ -814,6 +814,14 @@ func (s *State) OnInterface(se *Session, i interface{}) (err error) { case *GuildDelete: err = s.GuildRemove(t.Guild) case *GuildMemberAdd: + // Updates the MemberCount of the guild. + guild, err := ...
track membercount on memberAdd and leave (#<I>) * track membercount on memberAdd and leave * requested changes
bwmarrin_discordgo
train
go
5e3dc75e3d1dfdb6e33e39fedda54a82a493ba99
diff --git a/src/file.js b/src/file.js index <HASH>..<HASH> 100644 --- a/src/file.js +++ b/src/file.js @@ -167,7 +167,7 @@ exports = module.exports = { * @return {Boolean} */ isDirectory: function (path) { - return fs.lstatSync(path).isDirectory(); + return fs.statSync(path).isDirectory(); }, /...
Use `stat` instead of `lstat` to support symlinks
SassDoc_sassdoc
train
js
12ce73a1a2b93196c15da63663ac1a76e7b2f191
diff --git a/media/player/html5video/tests/player_test.php b/media/player/html5video/tests/player_test.php index <HASH>..<HASH> 100644 --- a/media/player/html5video/tests/player_test.php +++ b/media/player/html5video/tests/player_test.php @@ -60,7 +60,7 @@ class media_html5video_testcase extends advanced_testcase { ...
MDL-<I> media_html5video: Add test for native extensions support. This is to verify that all files of html_video mime type extensions are passing list_supported_urls method correctly.
moodle_moodle
train
php
5e5a280254082a6f697b91bf43eea2addbb74366
diff --git a/src/test/java/org/attribyte/wp/db/DBTest.java b/src/test/java/org/attribyte/wp/db/DBTest.java index <HASH>..<HASH> 100644 --- a/src/test/java/org/attribyte/wp/db/DBTest.java +++ b/src/test/java/org/attribyte/wp/db/DBTest.java @@ -78,16 +78,18 @@ public class DBTest { user = db().selectUser(createdUs...
Make sure "slug" is set when specified during construction & generated automatically.
attribyte_wpdb
train
java
2a064a4e83d9b7e832ae7b09c713aa46527db85c
diff --git a/chill-java/src/main/java/com/twitter/chill/SerDeState.java b/chill-java/src/main/java/com/twitter/chill/SerDeState.java index <HASH>..<HASH> 100644 --- a/chill-java/src/main/java/com/twitter/chill/SerDeState.java +++ b/chill-java/src/main/java/com/twitter/chill/SerDeState.java @@ -50,8 +50,8 @@ public clas...
Changed numOfWrittenBytes to long to match Kryo
twitter_chill
train
java
1ab9522055ccba912dcf704a09b858035d4e31cf
diff --git a/version.php b/version.php index <HASH>..<HASH> 100644 --- a/version.php +++ b/version.php @@ -29,9 +29,9 @@ defined('MOODLE_INTERNAL') || die(); -$version = 2020061500.00; // YYYYMMDD = weekly release date of this DEV branch. +$version = 2020061500.01; // YYYYMMDD ...
weekly on-sync release <I>dev
moodle_moodle
train
php
d305da5762f0aa94e79d2c57f756a0072cfb98d6
diff --git a/spec/unit/restclient_spec.rb b/spec/unit/restclient_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/restclient_spec.rb +++ b/spec/unit/restclient_spec.rb @@ -71,9 +71,9 @@ describe RestClient do end describe 'version' do - it 'has a version ~> 1.7.0.alpha' do + it 'has a version ~> 2.0.0....
Fix version spec tests for <I>
rest-client_rest-client
train
rb
0708f2779cbcd10e08c6e4cb6551ccea93d75f09
diff --git a/tests/child_processes_test.py b/tests/child_processes_test.py index <HASH>..<HASH> 100644 --- a/tests/child_processes_test.py +++ b/tests/child_processes_test.py @@ -80,7 +80,7 @@ def spawn_process_which_dies_with_children(): # we need to sleep before the shell exits, or dumb-init might send ...
Fix test on slow machines, increasing the sleep time The original sleep time is too short, the tests failed on architectures like mips*, armhf. I think it's because the python interpreter can't start in <I>s. After increasing the sleep time, it passed on most architectures which Debian supports. The result can be fo...
Yelp_dumb-init
train
py
ac3ac3ce38bc6d25d2d38f49107e35c203c61afd
diff --git a/lib/models/graph-object.js b/lib/models/graph-object.js index <HASH>..<HASH> 100644 --- a/lib/models/graph-object.js +++ b/lib/models/graph-object.js @@ -21,6 +21,7 @@ function GraphModelFactory (Model) { instanceId: { type: 'string', required: true, + ...
adding unique constraint to graph object instance id
RackHD_on-core
train
js
e57c3b9b75760159a44ce59777eb0bbb5e14da1b
diff --git a/lib/polygon/helpers.rb b/lib/polygon/helpers.rb index <HASH>..<HASH> 100644 --- a/lib/polygon/helpers.rb +++ b/lib/polygon/helpers.rb @@ -13,8 +13,12 @@ module Polygon settings.templates end + def database + settings.database + end + def lispy(&bl) - @lispy ||= Alf.lispy(...
Let database be known in App instance.
blambeau_polygon
train
rb
03fc3d0647f1b0d8435b2693c4ff23035d51403b
diff --git a/lib/moonshine/manifest/rails.rb b/lib/moonshine/manifest/rails.rb index <HASH>..<HASH> 100644 --- a/lib/moonshine/manifest/rails.rb +++ b/lib/moonshine/manifest/rails.rb @@ -8,17 +8,18 @@ class Moonshine::Manifest::Rails < Moonshine::Manifest group "rails", :ensure => "present", - ...
create rails user and change password in two steps
railsmachine_shadow_puppet
train
rb
4f8b8ff1d04fb6f8f35f3bbcc5cbab0e64ac7188
diff --git a/test/test_datasets_utils.py b/test/test_datasets_utils.py index <HASH>..<HASH> 100644 --- a/test/test_datasets_utils.py +++ b/test/test_datasets_utils.py @@ -7,6 +7,7 @@ import zipfile import tarfile import gzip import warnings +from torch._six import PY2 from torch._utils_internal import get_file_path...
Disable download tests for Python2 (#<I>)
pytorch_vision
train
py
e94cfb9d7d8071dff663be2b533861ee903a199e
diff --git a/src/Executor/Result.php b/src/Executor/Result.php index <HASH>..<HASH> 100644 --- a/src/Executor/Result.php +++ b/src/Executor/Result.php @@ -17,11 +17,13 @@ class Result { // Datetime weirdness. Apparently this is caused by theming issues on the // remote theme. Why it is being called when execu...
Fix PHP warning, when output was not an array.
drutiny_drutiny
train
php
bc7e0f037435e875009b39582c58ef17bfacc312
diff --git a/data/account.pb.go b/data/account.pb.go index <HASH>..<HASH> 100644 --- a/data/account.pb.go +++ b/data/account.pb.go @@ -8,7 +8,7 @@ Package data is a generated protocol buffer package. It is generated from these files: account.proto karma.proto - user_agent.proto + useragent.proto It has these to...
Updates protobuffer autogen annotation. I really hate that these have to be in vcs at all.
turnage_graw
train
go
671c85bbd7edc44b887227774ee9cbf023008b20
diff --git a/tentacoli.js b/tentacoli.js index <HASH>..<HASH> 100644 --- a/tentacoli.js +++ b/tentacoli.js @@ -106,6 +106,12 @@ function Tentacoli (opts) { this._main.on('error', this.emit.bind(this, 'error')) this._parser.on('error', this.emit.bind(this, 'error')) + this.on('finish', function () { + Object...
Calls callbacks with errors if the connection closes.
mcollina_tentacoli
train
js,js
c1334da2e009ce3dd086599f9f986c552a3bda46
diff --git a/travis/tests/test_encrypt.py b/travis/tests/test_encrypt.py index <HASH>..<HASH> 100644 --- a/travis/tests/test_encrypt.py +++ b/travis/tests/test_encrypt.py @@ -24,7 +24,7 @@ def test_encrypt_key(repository): public_key = retrieve_public_key(repository) password = 'SUPER_SECURE_PASSWORD' en...
Changed test of bytes to str
mandeep_Travis-Encrypt
train
py
b15d7eb8f7f884c22934b86ede0d2b94a4ed5bdd
diff --git a/zk_coordinator.go b/zk_coordinator.go index <HASH>..<HASH> 100644 --- a/zk_coordinator.go +++ b/zk_coordinator.go @@ -673,6 +673,8 @@ func (this *ZookeeperCoordinator) waitForMembersToJoin(barrierPath string, expec } // Haven't seen all expected consumers on this barrier path. Watch for changes to...
Added case for stopChan on inner select to break out.
elodina_go_kafka_client
train
go
fb8a9d908c6a0865e6a3b9e01b4a49c7eb60adb7
diff --git a/anytree/resolver.py b/anytree/resolver.py index <HASH>..<HASH> 100644 --- a/anytree/resolver.py +++ b/anytree/resolver.py @@ -219,7 +219,7 @@ class Resolver(object): re_pat += "." else: re_pat += re.escape(char) - return re_pat + r'\Z(?ms)' + ret...
Update resolver.py Avoid to throw /my/path/resolver.py:<I>: DeprecationWarning: Flags not at the start of the expression 'expr\\Z(?ms)' in python <I>
c0fec0de_anytree
train
py
e50fd942d2f116e3eb69c63b5f3ef107e4975ecc
diff --git a/test/spec/index.js b/test/spec/index.js index <HASH>..<HASH> 100644 --- a/test/spec/index.js +++ b/test/spec/index.js @@ -2,6 +2,8 @@ import { expect } from "chai"; import pakit from "../../src/pakit"; describe("pakit test suite", function() { + this.timeout(10000); + describe("when bundling a modu...
bumped test timeout to <I> seconds
MiguelCastillo_pakit
train
js
adcdf6a36251c57019214287c0c0edf7aa8f8f1b
diff --git a/lib/with_advisory_lock/concern.rb b/lib/with_advisory_lock/concern.rb index <HASH>..<HASH> 100644 --- a/lib/with_advisory_lock/concern.rb +++ b/lib/with_advisory_lock/concern.rb @@ -16,6 +16,10 @@ module WithAdvisoryLock self.class.with_advisory_lock(lock_name, timeout_seconds, &block) end + ...
add advisory_lock_exists? to ActiveRecord instances
ClosureTree_with_advisory_lock
train
rb,rb
e70fd54d7b003d17048574ce374cde5ba08b989d
diff --git a/src/hamster/widgets/activityentry.py b/src/hamster/widgets/activityentry.py index <HASH>..<HASH> 100644 --- a/src/hamster/widgets/activityentry.py +++ b/src/hamster/widgets/activityentry.py @@ -531,7 +531,6 @@ class ActivityEntry(): for category in runtime.storage.get_categories(): ca...
remove @category lines They were more disturbing than helpful. There is already a specific category entry.
projecthamster_hamster
train
py
0ce37fdf7e71b588d1c165866af94da996c9890f
diff --git a/test/scraped_test.rb b/test/scraped_test.rb index <HASH>..<HASH> 100644 --- a/test/scraped_test.rb +++ b/test/scraped_test.rb @@ -36,6 +36,11 @@ describe Scraped do decorator FindReplaceDecorator, find: 'Hello', replace: 'Hi!' end + class PageWithMultipleDecorators < PageNoDecorators + ...
Add a test for a page with multiple decorators
everypolitician_scraped
train
rb
c1d250204853089e1996c078e5321bce4eb31431
diff --git a/addon/fold/foldgutter.js b/addon/fold/foldgutter.js index <HASH>..<HASH> 100644 --- a/addon/fold/foldgutter.js +++ b/addon/fold/foldgutter.js @@ -52,7 +52,7 @@ function isFolded(cm, line) { var marks = cm.findMarksAt(Pos(line)); for (var i = 0; i < marks.length; ++i) - if (marks[i].__isFo...
[foldgutter addon] Make sure unfolding markers work, even when fold range is broken Closes #<I>
codemirror_CodeMirror
train
js
deb5dd415f78d4902db7f10a417dfbccbf54685b
diff --git a/sdl/error.go b/sdl/error.go index <HASH>..<HASH> 100644 --- a/sdl/error.go +++ b/sdl/error.go @@ -23,7 +23,11 @@ func (ec ErrorCode) c() C.SDL_errorcode { // GetError (https://wiki.libsdl.org/SDL_GetError) func GetError() error { if err := C.SDL_GetError(); err != nil { - return errors.New(C.GoString(...
SDL_GetError returns an empty string, not nil, when there are no errors. (#<I>)
veandco_go-sdl2
train
go
d2b95f29b0320ee0e573e2d7864bff8e6d2fe073
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -69,7 +69,6 @@ process.on('exit', function () { if (cur) { cur.error(new Error('bench was never ended')) console.log('\n# fail\n') - process.exit(1) return } console.log('\n# total ~' + prettyHrtime(...
do not process exit - messes up logs
mafintosh_nanobench
train
js
e89d36bd074572a061e1ec7d037378e6f742e6b5
diff --git a/flatfs.go b/flatfs.go index <HASH>..<HASH> 100644 --- a/flatfs.go +++ b/flatfs.go @@ -40,6 +40,8 @@ var _ datastore.Datastore = (*Datastore)(nil) type ShardFunc func(string) string +var IPFS_DEF_SHARD = "v1/next-to-last/2" + func New(path string, fun0 string, sync bool) (*Datastore, error) { fun0 =...
Add constant for default shard func used by IPFS.
ipfs_go-ds-flatfs
train
go
7628deaebf9ebd0bc3822f69c94917697b149648
diff --git a/models/classes/runner/time/TimerAdjustmentMapInterface.php b/models/classes/runner/time/TimerAdjustmentMapInterface.php index <HASH>..<HASH> 100644 --- a/models/classes/runner/time/TimerAdjustmentMapInterface.php +++ b/models/classes/runner/time/TimerAdjustmentMapInterface.php @@ -50,7 +50,7 @@ interface T...
Updated method phpdoc description.
oat-sa_extension-tao-test
train
php
eceebebb7674db43fffa2b519210d184d66492e8
diff --git a/lib/accounting/booking.rb b/lib/accounting/booking.rb index <HASH>..<HASH> 100644 --- a/lib/accounting/booking.rb +++ b/lib/accounting/booking.rb @@ -1,6 +1,6 @@ module Accounting class Booking < ActiveRecord::Base - validates_presence_of :debit_account, :credit_account, :amount, :value_date + va...
Validate precense of title for bookings.
huerlisi_has_accounts
train
rb
9de359401415538c92b93ca560304ae6bf815b90
diff --git a/tests/Generators/FileSystemTreeGeneratorTest.php b/tests/Generators/FileSystemTreeGeneratorTest.php index <HASH>..<HASH> 100644 --- a/tests/Generators/FileSystemTreeGeneratorTest.php +++ b/tests/Generators/FileSystemTreeGeneratorTest.php @@ -14,7 +14,6 @@ class FileSystemTreeGeneratorTest extends \PHPUnit_...
Updated test to reflect Filesystem contract
newup_core
train
php
b3421f120f531424256739ddb942d990d7b3c9b0
diff --git a/kubernetes/src/main/java/io/kubernetes/client/custom/IntOrString.java b/kubernetes/src/main/java/io/kubernetes/client/custom/IntOrString.java index <HASH>..<HASH> 100644 --- a/kubernetes/src/main/java/io/kubernetes/client/custom/IntOrString.java +++ b/kubernetes/src/main/java/io/kubernetes/client/custom/In...
adding toString method to IntOrString
kubernetes-client_java
train
java
85468d3a0dab31e2e2f571245f478e6101f664d7
diff --git a/lib/Models/GeoJsonCatalogItem.js b/lib/Models/GeoJsonCatalogItem.js index <HASH>..<HASH> 100644 --- a/lib/Models/GeoJsonCatalogItem.js +++ b/lib/Models/GeoJsonCatalogItem.js @@ -805,6 +805,7 @@ function filterArray(pts, func) { function updateOpacity(item) { const entities = item.dataSource.entities....
suspend and resume events on setting geojson opacity
TerriaJS_terriajs
train
js
a2e3cef94cf29bbaa51b4f868291ca5b0aa77a45
diff --git a/spec/seahorse/client/plugin_spec.rb b/spec/seahorse/client/plugin_spec.rb index <HASH>..<HASH> 100644 --- a/spec/seahorse/client/plugin_spec.rb +++ b/spec/seahorse/client/plugin_spec.rb @@ -18,7 +18,9 @@ module Seahorse describe Plugin do let(:handlers) { HandlerList.new } - let(:config)...
Updated a few specs helpers to use let.
aws_aws-sdk-ruby
train
rb
b5a5dcf506c4be39afdc9a9a0700272f9807efaf
diff --git a/test/unit/index.js b/test/unit/index.js index <HASH>..<HASH> 100644 --- a/test/unit/index.js +++ b/test/unit/index.js @@ -1,3 +1,17 @@ +// mock passive event listener support and upsupport +(() => { + const originAddListener = window.addEventListener; + let flag; + + window.addEventListener = (...args) ...
Improve unit tests for passive event support logic
PeachScript_vue-infinite-loading
train
js
00b93f3296d2cfc05852b4f46dba0058bda503d9
diff --git a/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb b/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb +++ b/spec/unit/resource/api1600/c7000/volume_attachment_spec.rb @@ -1,3 +1,14 @@ +# (C) Copyr...
Update volume_attachment_spec.rb
HewlettPackard_oneview-sdk-ruby
train
rb
f1e601d836aad7142be1d0dc7bb9bde5c1c4abea
diff --git a/js/jquery.mapael.js b/js/jquery.mapael.js index <HASH>..<HASH> 100644 --- a/js/jquery.mapael.js +++ b/js/jquery.mapael.js @@ -490,6 +490,16 @@ if (typeof opt.mapOptions === "object") { if (opt.replaceOptions === true) options = $.extend(true, {}, defaultOptions, opt.mapOptions...
Update event: reset legend state if areas, plots or legend is updated
neveldo_jQuery-Mapael
train
js
1b7f8938c00b5b61d647b57fb0306c28cafb0981
diff --git a/formBinder.go b/formBinder.go index <HASH>..<HASH> 100644 --- a/formBinder.go +++ b/formBinder.go @@ -458,7 +458,15 @@ func (dec *Decoder) decode() error { case reflect.Struct: switch dec.curr.Interface().(type) { case time.Time: - t, err := time.Parse("2006-01-02", dec.values[0]) + d := dec.va...
Added ability to parse ISO <I> date format on formBind.
iris-contrib_formBinder
train
go
5e590caa436bdd12e8aa94e6333d97b5e4b80a19
diff --git a/packages/desktop/src/main/cli.js b/packages/desktop/src/main/cli.js index <HASH>..<HASH> 100644 --- a/packages/desktop/src/main/cli.js +++ b/packages/desktop/src/main/cli.js @@ -1,5 +1,5 @@ -import { Observable } from "rxjs/Observable"; -import { merge, catchError, mergeMap } from "rxjs/operators"; +import...
Fix windows CLI (#<I>)
nteract_nteract
train
js
2ef5b3541f81b034bc34f6d27562fedd75206fd6
diff --git a/Views/backend/plentymarkets/view/log/grid.js b/Views/backend/plentymarkets/view/log/grid.js index <HASH>..<HASH> 100644 --- a/Views/backend/plentymarkets/view/log/grid.js +++ b/Views/backend/plentymarkets/view/log/grid.js @@ -87,7 +87,17 @@ Ext.define('Shopware.apps.Plentymarkets.view.log.Grid', { }, { ...
UPDATE Log (message overlay)
plentymarkets_plentymarkets-shopware-connector
train
js
9dc9fbd59a550ae94e0051688fcaca866eb7a556
diff --git a/lib/Resque/Resque.php b/lib/Resque/Resque.php index <HASH>..<HASH> 100644 --- a/lib/Resque/Resque.php +++ b/lib/Resque/Resque.php @@ -136,7 +136,8 @@ abstract class Resque )); if ($trackStatus) { - Status::create($id); + $status = new Status($id, $this); + ...
Main resque class support for status tracking fixed
vend_php-resque
train
php
23baa8b428ed6602d2b7e3bd4dd7182aa68dc659
diff --git a/lib/abort_if.rb b/lib/abort_if.rb index <HASH>..<HASH> 100644 --- a/lib/abort_if.rb +++ b/lib/abort_if.rb @@ -51,10 +51,13 @@ module AbortIf # # @note The abort_if style methods don't interpolate arguments to # msg as the Assert module methods do + # + # @note When rescuing AbortIf::Exit, the ...
raise AbortIf::Exit with message for rescuing
mooreryan_abort_if
train
rb,rb
ffeafa83e1bce96a0b19c46978cdbae09878dd6b
diff --git a/src/Collection/CollectionTrait.php b/src/Collection/CollectionTrait.php index <HASH>..<HASH> 100644 --- a/src/Collection/CollectionTrait.php +++ b/src/Collection/CollectionTrait.php @@ -49,7 +49,7 @@ trait CollectionTrait * type of returned collection interface * * @param mixed $args,.. C...
Collection trait: provide a FQCN in docblock
cakephp_cakephp
train
php
d941f1cc105a023fa1c32e8b8d003e88ff5b860c
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -289,6 +289,7 @@ for( var j = index; j < elements.length; j++ ){ var jid = elements[j]._private.data.id; id2index[ jid ]--; + elements[j]._private.index--; ...
Issue with edge hit detection when removing/adding edges with mappers (ele index out of sync) #<I>
cytoscape_cytoscape.js
train
js
230576af7ddd7e3b1d4c552bfb0096aa16b7a55f
diff --git a/zinnia/__init__.py b/zinnia/__init__.py index <HASH>..<HASH> 100644 --- a/zinnia/__init__.py +++ b/zinnia/__init__.py @@ -1,5 +1,5 @@ """Zinnia""" -__version__ = '0.14.1' +__version__ = '0.15.dev' __license__ = 'BSD License' __author__ = 'Fantomas42'
Bumping to version <I>.dev
Fantomas42_django-blog-zinnia
train
py
a11b50a23849ad0e46048ac37d38c25b86361190
diff --git a/lib/congress/version.rb b/lib/congress/version.rb index <HASH>..<HASH> 100644 --- a/lib/congress/version.rb +++ b/lib/congress/version.rb @@ -1,3 +1,3 @@ module Congress - VERSION = "0.0.3" + VERSION = "0.0.4" end
Bump gem version to <I>
codeforamerica_congress
train
rb
631ea1a76acb9cdbe30fb70cf4dfa729de5c9b2b
diff --git a/wrapper/wrapper.go b/wrapper/wrapper.go index <HASH>..<HASH> 100644 --- a/wrapper/wrapper.go +++ b/wrapper/wrapper.go @@ -229,6 +229,10 @@ OUTER: } close(pkgChan) wg.Wait() + select { + case err = <-errChan: + default: + } return err }
wrapper: try to notice the last error After executing all commands, make one last check on the error channel, to see whether the last command errored.
square_goprotowrap
train
go
29a7d51f37ae49c0e60b2da8d4be1671d1b1b999
diff --git a/riscvmodel/model.py b/riscvmodel/model.py index <HASH>..<HASH> 100644 --- a/riscvmodel/model.py +++ b/riscvmodel/model.py @@ -8,7 +8,8 @@ from .program import Program class State(object): def __init__(self, variant: Variant): self.variant = variant - self.intreg = RegisterFile(variant...
Set intregs as defined by baseint
wallento_riscv-python-model
train
py
aca6982606e9582dda2c1be5c0269610910a6616
diff --git a/js/poloniex.js b/js/poloniex.js index <HASH>..<HASH> 100644 --- a/js/poloniex.js +++ b/js/poloniex.js @@ -814,6 +814,8 @@ module.exports = class poloniex extends Exchange { const feedback = this.id + ' ' + this.json (response); if (error === 'Invalid order number, or you are not t...
Throw OrderNotFound if order not found in fetchOrderTrades
ccxt_ccxt
train
js
918194e4f1b9b6734f89fe141d8f0c63dde0f460
diff --git a/lxd/instance/drivers/driver_qemu.go b/lxd/instance/drivers/driver_qemu.go index <HASH>..<HASH> 100644 --- a/lxd/instance/drivers/driver_qemu.go +++ b/lxd/instance/drivers/driver_qemu.go @@ -1184,6 +1184,17 @@ func (d *qemu) Start(stateful bool) error { return err } + // Enable extended topology info...
lxd/instances/qemu: Enable topoext on x<I>_<I> with SMT
lxc_lxd
train
go
b9e2b669293279e53320edf041833f137cf5f1ff
diff --git a/internal/service/firehose/delivery_stream.go b/internal/service/firehose/delivery_stream.go index <HASH>..<HASH> 100644 --- a/internal/service/firehose/delivery_stream.go +++ b/internal/service/firehose/delivery_stream.go @@ -69,7 +69,6 @@ func dynamicPartitioningConfigurationSchema() *schema.Schema { ...
Update allowed, ForceNew should not be necessary
terraform-providers_terraform-provider-aws
train
go
edd3b0257af5a166021af90f284fbc18c296fb0e
diff --git a/nptdms/tdms.py b/nptdms/tdms.py index <HASH>..<HASH> 100644 --- a/nptdms/tdms.py +++ b/nptdms/tdms.py @@ -670,6 +670,19 @@ class TdmsObject(object): else: self.data.extend(new_data) + def as_dataframe(self): + """ + Converts the TDMS object to a DataFrame + ...
Added the export to dataframe from within a TdmsObject. Objects like channels (tested on a channel) can now be exported as a pandas dataframe.
adamreeve_npTDMS
train
py
637a29f1140efcb6af2da8db9f7915a60cbb78e9
diff --git a/lib/cocoapods-chillax-swift.rb b/lib/cocoapods-chillax-swift.rb index <HASH>..<HASH> 100644 --- a/lib/cocoapods-chillax-swift.rb +++ b/lib/cocoapods-chillax-swift.rb @@ -1,3 +1,3 @@ module CocoaPodsChillaxSwift - VERSION = "0.1.0" + VERSION = "0.2.0" end diff --git a/lib/installer.rb b/lib/installer.rb...
Disables GCC optimizations, too.
ashfurrow_cocoapods-chillax-swift
train
rb,rb
955350ba7c23712ad710a89891f5b51e7b82e263
diff --git a/app/models/unidom/visitor/application_record.rb b/app/models/unidom/visitor/application_record.rb index <HASH>..<HASH> 100644 --- a/app/models/unidom/visitor/application_record.rb +++ b/app/models/unidom/visitor/application_record.rb @@ -1,3 +1,6 @@ +## +# Application record 是模块内所有模型的抽象基类。 + class Unidom:...
1, Improve the Application record for the document.
topbitdu_unidom-visitor
train
rb
7fd1cfc3957db003850225d70756bb93d8658699
diff --git a/heartbeat/heartbeat.py b/heartbeat/heartbeat.py index <HASH>..<HASH> 100644 --- a/heartbeat/heartbeat.py +++ b/heartbeat/heartbeat.py @@ -95,13 +95,13 @@ class Heartbeat(object): if challenge.block > (self.file_size - chunk_size): end_slice = ( - challenge.get_positio...
fix for refactored vars and challenge class refactors
StorjOld_heartbeat
train
py
2d4f01eb318d09105c988af974b5e25340f615c5
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -115,7 +115,7 @@ function parseInput (input, opts, cb) { file.getStream = getStreamStream(item, file) file.length = 0 } else if (typeof item === 'string') { - if (typeof fs.readdir !== '...
fix unhelpful message in browser In the browser, WebTorrent’s `client.seed()` function returns “Uncaught TypeError: fs.stat is not a function” when passing in a file path, because fs.readdir is defined by brfs (I think). Let’s check for fs.stat instead. For <URL>
webtorrent_create-torrent
train
js
7bd4dd8a71765e1f048a4edd189b4a7b43c0421e
diff --git a/locale/ko.js b/locale/ko.js index <HASH>..<HASH> 100644 --- a/locale/ko.js +++ b/locale/ko.js @@ -53,22 +53,8 @@ var ko = moment.defineLocale('ko', { y : '일 년', yy : '%d년' }, - dayOfMonthOrdinalParse : /\d{1,2}(일|월|주)/, - ordinal : function (number, period) { - switch (p...
ndo the changes to locale/ko.js its autogenerated
moment_moment
train
js
a5c57e7df75c2f1c525e10cedaf3025554445445
diff --git a/empire/server/releases.go b/empire/server/releases.go index <HASH>..<HASH> 100644 --- a/empire/server/releases.go +++ b/empire/server/releases.go @@ -10,9 +10,11 @@ import ( "github.com/remind101/empire/empire" ) -// newHkRelease converts an empire Release to a heroku Release. -func newHkRelease(r *em...
Alias Release as heroku.Release
remind101_empire
train
go
7cdf2793ae2443d76787d132ad37f50b8f31823d
diff --git a/lib/rib/shell.rb b/lib/rib/shell.rb index <HASH>..<HASH> 100644 --- a/lib/rib/shell.rb +++ b/lib/rib/shell.rb @@ -46,7 +46,7 @@ class Rib::Shell input = get_input throw(:rib_exit, input) if config[:exit].include?(input) if input.strip == '' - history.pop + eval_input(inpu...
still need to eval the input if it's empty (for multiline), and don't pop history!
godfat_rib
train
rb
85a0c21de197d1a8e3590f960effae98c42fcd52
diff --git a/kubeshell/client.py b/kubeshell/client.py index <HASH>..<HASH> 100644 --- a/kubeshell/client.py +++ b/kubeshell/client.py @@ -8,6 +8,7 @@ import urllib3 # disable warnings on stdout/stderr from urllib3 connection errors ulogger = logging.getLogger("urllib3") ulogger.setLevel("ERROR") +urllib3.disable_wa...
fixes #<I>: disable InsecureRequestWarning from urllib3 (cherry picked from commit 3f3a<I>dc<I>e<I>b<I>e9ccd3eae<I>d<I>ffbb)
cloudnativelabs_kube-shell
train
py
aa3af75f97ffb1fe9836ab33a951455072739d3a
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ def extras_require(): def main(): setup( name='straitlets', - version='0.2.1', + version='0.2.2', description="Serializable IPython Traitlets", author="Quantopian T...
MAINT: Bump PyPI.
quantopian_serializable-traitlets
train
py
a6fcb58611d0dbe54e7a51380b2e5d19bd94fea5
diff --git a/IlluminaUtils/lib/fastqlib.py b/IlluminaUtils/lib/fastqlib.py index <HASH>..<HASH> 100644 --- a/IlluminaUtils/lib/fastqlib.py +++ b/IlluminaUtils/lib/fastqlib.py @@ -163,9 +163,9 @@ class FileOutput(object): def __init__(self, file_path, compressed = False): self.file_path = file_path - ...
distinct variables for compressed input/output
merenlab_illumina-utils
train
py
7d7edc35b106bf533dca88f8538df6253424b5b7
diff --git a/src-test/core/domhelpertest.js b/src-test/core/domhelpertest.js index <HASH>..<HASH> 100644 --- a/src-test/core/domhelpertest.js +++ b/src-test/core/domhelpertest.js @@ -106,3 +106,13 @@ DomHelperTest.prototype.testHasSupportForStyle = function() { this.domHelper_.supportForStyle_ = true; assertTrue(...
Added test for insertNullFontStyle.
typekit_webfontloader
train
js
0ac4a26d0962cd7f623eb433950329c202e4f671
diff --git a/apostrophe.js b/apostrophe.js index <HASH>..<HASH> 100644 --- a/apostrophe.js +++ b/apostrophe.js @@ -4513,16 +4513,15 @@ function Apos() { function(callback) { uploadfs.copyOut(originalFile, tempFile, callback); }, - // function(callback)...
Whoops, the actual work of apostrophe:rescale was shut off for a while
apostrophecms_apostrophe
train
js
31ed3b4105a69a49458687b9778b8c7c13281e34
diff --git a/sample_test.go b/sample_test.go index <HASH>..<HASH> 100644 --- a/sample_test.go +++ b/sample_test.go @@ -17,7 +17,7 @@ func TestSample(t *testing.T) { for i := 0; i < iters; i++ { s := stream.Sequence( stream.Numbers(0, space-1), - stream.Sample(samples), + stream.SampleWithSeed(samples, int6...
sample_test uses deterministic seeding for reproducibility
ghemawat_stream
train
go
62654ade1d4a924f0de0cc4c5e08e7069c8d1a22
diff --git a/salt/pillar/__init__.py b/salt/pillar/__init__.py index <HASH>..<HASH> 100644 --- a/salt/pillar/__init__.py +++ b/salt/pillar/__init__.py @@ -476,10 +476,15 @@ class Pillar(object): log.error(msg) errors.append(msg) else: - log.debug('Specified ...
Add additional reason for pillar env being found
saltstack_salt
train
py
1a2038c54faedeb6d7adf6ddaf0e73f8ce4920d4
diff --git a/integration-cli/docker_cli_inspect_test.go b/integration-cli/docker_cli_inspect_test.go index <HASH>..<HASH> 100644 --- a/integration-cli/docker_cli_inspect_test.go +++ b/integration-cli/docker_cli_inspect_test.go @@ -328,18 +328,6 @@ func (s *DockerSuite) TestInspectSizeFlagContainer(c *check.C) { c.Ass...
Remove unused "size" query parameter for images Image inspect doesn't have a "size" query parameter. The client sent this (when doing `docker inspect --size`), but was unused in the daemon. This removes the unused parameter, and a test that didn't actually test anything.
moby_moby
train
go
a84124a2b1159579a808cb5e966101a30bee6e0f
diff --git a/Lib/glyphsLib/filters/eraseOpenCorners.py b/Lib/glyphsLib/filters/eraseOpenCorners.py index <HASH>..<HASH> 100644 --- a/Lib/glyphsLib/filters/eraseOpenCorners.py +++ b/Lib/glyphsLib/filters/eraseOpenCorners.py @@ -25,10 +25,8 @@ class EraseOpenCornersPen(BasePen): self.outpen = outpen def _...
Reset pen after use, only draw once
googlefonts_glyphsLib
train
py
acc79514edee44cc7f4ca976916586bb3df0f833
diff --git a/eZ/Publish/Core/Repository/UserService.php b/eZ/Publish/Core/Repository/UserService.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/Repository/UserService.php +++ b/eZ/Publish/Core/Repository/UserService.php @@ -717,7 +717,7 @@ class UserService implements UserServiceInterface $userGroups = ...
Fixed: UserService::loadUserGroupsOfUser should return an array
ezsystems_ezpublish-kernel
train
php
13024bd9524ec8ea86b0f3535c846815e61bb68b
diff --git a/modulate.js b/modulate.js index <HASH>..<HASH> 100644 --- a/modulate.js +++ b/modulate.js @@ -37,19 +37,11 @@ Modulator.prototype = { var bufLen = Math.ceil(data.length * 8 * this.encoder.samplesPerBit()); var modulatedData = new Float32Array(bufLen); - if (type === undefined) + ...
modulate: remove unused time measurement code This was used for the console.log message, which is now gone. Remove this code, as it's now unused.
chibitronics_ltc-npm-modulate
train
js
f4e74699e3838586575a4910383e04626c517875
diff --git a/py2/h2o_sandbox.py b/py2/h2o_sandbox.py index <HASH>..<HASH> 100755 --- a/py2/h2o_sandbox.py +++ b/py2/h2o_sandbox.py @@ -165,6 +165,7 @@ def check_sandbox_for_errors(LOG_DIR=None, python_test_name='', #[Loaded java.lang.Error from /usr/lib/jvm/java-7-oracle/jre/lib/rt.jar] ...
change test_GLM_covtype.py to single_jvm allow seeing lines with 'Errors" due to schema warnings (in h2o_sandox.py)
h2oai_h2o-3
train
py,py
457887fb0a4db1814fba1e0d8f8ac7f1a41e1d3f
diff --git a/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/Preference.java b/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/Preference.java index <HASH>..<HASH> 100644 --- a/rx-preferences/src/main/java/com/f2prateek/rx/preferences2/Preference.java +++ b/rx-preferences/src/main/java/com/f2prate...
Remove outdated null docs.
f2prateek_rx-preferences
train
java
80d594a87312c1133249464c27a522b820ff8cae
diff --git a/lib/webcat/driver/safariwatir_driver.rb b/lib/webcat/driver/safariwatir_driver.rb index <HASH>..<HASH> 100644 --- a/lib/webcat/driver/safariwatir_driver.rb +++ b/lib/webcat/driver/safariwatir_driver.rb @@ -43,7 +43,9 @@ class Webcat::Driver::SafariWatir end def find(selector) - browser.send(:s...
Slight improvement to safariwatir driver (still doesn't work though)
teamcapybara_capybara
train
rb
02f9db1cc00902dcb6c1dc8c65be8ddcd2cdfb73
diff --git a/lib/flor/migrations/0001_tables.rb b/lib/flor/migrations/0001_tables.rb index <HASH>..<HASH> 100644 --- a/lib/flor/migrations/0001_tables.rb +++ b/lib/flor/migrations/0001_tables.rb @@ -81,7 +81,6 @@ Sequel.migration do String :nid, null: true String :tracer, null: false # 'executor', 'trace'...
revert "store "content" in flor_traces" This reverts commit b7bb0d7df8a<I>db<I>c<I>b<I>f. I forgot that the "trace" concept was not a "trail" at all...
floraison_flor
train
rb
55597e34de7d7fb659979d82839e63b77d6b2c87
diff --git a/src/azure_devtools/scenario_tests/patches.py b/src/azure_devtools/scenario_tests/patches.py index <HASH>..<HASH> 100644 --- a/src/azure_devtools/scenario_tests/patches.py +++ b/src/azure_devtools/scenario_tests/patches.py @@ -14,6 +14,15 @@ def patch_time_sleep_api(unit_test): _mock_in_unit_test(unit_...
Reinstate patch_long_run_operation_delay
Azure_azure-python-devtools
train
py
7a9d75ce7daff50c247640cdf67a3c898e907bb7
diff --git a/lib/super_resources/url_helpers.rb b/lib/super_resources/url_helpers.rb index <HASH>..<HASH> 100644 --- a/lib/super_resources/url_helpers.rb +++ b/lib/super_resources/url_helpers.rb @@ -81,11 +81,6 @@ module SuperResources def super_url(chain, options={}) polymorphic_url(chain, options) - ...
simplify super_url to only call polymorphic_url
habanerohq_super_resources
train
rb