hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
be138faa9d102a1942d1d2e5ccbdfa14f7e83972
diff --git a/polyaxon/repos/git.py b/polyaxon/repos/git.py index <HASH>..<HASH> 100644 --- a/polyaxon/repos/git.py +++ b/polyaxon/repos/git.py @@ -38,6 +38,19 @@ def get_git_repo(repo_path, init=False): raise ValueError('Could not create a repo on this path {}'.format(repo_path)) +def set_git_repo(repo): + ...
Make sure that the repo gets recreated in case it failed the first time
polyaxon_polyaxon
train
3817dbaf85dfabac9f6c64e7cc1b55fbcf967880
diff --git a/broth/__init__.py b/broth/__init__.py index <HASH>..<HASH> 100644 --- a/broth/__init__.py +++ b/broth/__init__.py @@ -14,10 +14,10 @@ class Broth: if soups: if errors: - print "[broth] We weren't able to parse with ", errors, "but don't worry we were able to parse wit...
updated print statements to work with python 3
DanielJDufour_broth
train
5399d7d734a8d300eee9c1678a8cdd49875f5530
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -97,6 +97,8 @@ setup( 'scripts/indy_old_cli_export_dids', 'scripts/setup_iptables', 'scripts/setup_indy_node_iptables', + 'scripts/current_validators', + 'scrip...
Add lines in setup.py to install new steward utility scripts. current_validators node_address_list
hyperledger_indy-node
train
2616d787f22c8e1067d0702aa94824bddaa23086
diff --git a/project/geomajas-project-sld-editor/common-gwt/src/main/java/org/geomajas/sld/client/model/FilterModelImpl.java b/project/geomajas-project-sld-editor/common-gwt/src/main/java/org/geomajas/sld/client/model/FilterModelImpl.java index <HASH>..<HASH> 100644 --- a/project/geomajas-project-sld-editor/common-gwt/...
SLDE-4: Intermediate commit : fix NPE when new SLD is created
geomajas_geomajas-project-server
train
d2dbfb5c7c430947b897534ad2d9ad7d5a01cfa6
diff --git a/runtime/corelib/native.rb b/runtime/corelib/native.rb index <HASH>..<HASH> 100644 --- a/runtime/corelib/native.rb +++ b/runtime/corelib/native.rb @@ -13,7 +13,7 @@ module Native def method_missing (name, *args) return super unless Opal.function? `#@native[name]` - `#@native[name].apply(s...
corelib/native: fix #native_send context
opal_opal
train
e3c5bd79cf1cd3ac8d662ab99178ff4b0be293c0
diff --git a/lib/tapestry/interface.rb b/lib/tapestry/interface.rb index <HASH>..<HASH> 100644 --- a/lib/tapestry/interface.rb +++ b/lib/tapestry/interface.rb @@ -8,10 +8,11 @@ module Tapestry # The `visit` method provides navigation to a specific page by passing # in the URL. If no URL is passed in, this...
Provide when ready checks on the view action.
jeffnyman_tapestry
train
67d755419b90ad59d6c89e52e8572d4f196bc287
diff --git a/console/Command.php b/console/Command.php index <HASH>..<HASH> 100644 --- a/console/Command.php +++ b/console/Command.php @@ -9,11 +9,18 @@ namespace lithium\console; use Exception; -use lithium\core\Environment; use lithium\console\command\Help; /** - * The base class to inherit when writing conso...
Removing `run` method from `console\Command` to make subclassing more flexible. Now a subclass run method can accept params. Also moved the environment message to Help.
UnionOfRAD_lithium
train
4e916e01ad83516e9aa4a0c326bdb3844d4fe954
diff --git a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/scheduler/SlotSharingGroup.java b/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/scheduler/SlotSharingGroup.java index <HASH>..<HASH> 100644 --- a/flink-runtime/src/main/java/org/apache/flink/runtime/jobmanager/scheduler/SlotS...
[hotfix][runtime] Remove useless constructor of SlotSharingGroup When a vertex is assigned with a slot sharing group, the vertexId will be added to this group automatically. So the constructor with ‘sharedVertices’ params does not make any sense and is causing confusions.
apache_flink
train
5aa9d16969cd03c5d3b87d471823979d751ae233
diff --git a/activesupport/lib/active_support/cache/redis_cache_store.rb b/activesupport/lib/active_support/cache/redis_cache_store.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/cache/redis_cache_store.rb +++ b/activesupport/lib/active_support/cache/redis_cache_store.rb @@ -21,15 +21,6 @@ requir...
RedisCacheStore: avoid monkey patching redis ConnectionPool#with is aliased as #then which is equivalent to Object#then since Ruby <I>. So if we use that we don't need to monkey patch anything.
rails_rails
train
a5aa2172680ce95b50cfcabf44bff4500e7bb614
diff --git a/lib/pry-state/hook_action.rb b/lib/pry-state/hook_action.rb index <HASH>..<HASH> 100644 --- a/lib/pry-state/hook_action.rb +++ b/lib/pry-state/hook_action.rb @@ -41,6 +41,8 @@ class HookAction def stringify_value value if value.class == String "\"#{value}\"" + elsif value.class == Array +...
Now you can see the length of the array
SudhagarS_pry-state
train
2884f6494a1532e7d82759a278d11d66bbd55775
diff --git a/clonevirtualenv.py b/clonevirtualenv.py index <HASH>..<HASH> 100644 --- a/clonevirtualenv.py +++ b/clonevirtualenv.py @@ -13,6 +13,10 @@ __version__ = '.'.join(map(str, version_info)) logger = logging.getLogger() +if sys.version_info < (2, 6): + next = lambda gen: gen.next() + + class UserError(Ex...
support <I> with own next() function.
edwardgeorge_virtualenv-clone
train
da6e17a0279dbc12625937d6e3fa4671949ae1fc
diff --git a/CKEditor/AbstractCKEditorWidget.php b/CKEditor/AbstractCKEditorWidget.php index <HASH>..<HASH> 100644 --- a/CKEditor/AbstractCKEditorWidget.php +++ b/CKEditor/AbstractCKEditorWidget.php @@ -42,7 +42,7 @@ abstract class AbstractCKEditorWidget extends AbstractWidget implements CKEditor /** * @para...
Separate CKEditor widget interface from generic widget interface.
DarvinStudio_DarvinAdminBundle
train
457f20d52bca28b39b25e81969eec9d4ad3ad607
diff --git a/salt/modules/rh_network.py b/salt/modules/rh_network.py index <HASH>..<HASH> 100644 --- a/salt/modules/rh_network.py +++ b/salt/modules/rh_network.py @@ -470,11 +470,10 @@ def build(iface, type, settings): if type not in _IFACE_TYPES: _raise_error(iface, type, _IFACE_TYPES) - if type in ...
Setup salve and bond ifcfg scripts.
saltstack_salt
train
a25ef01da32a090b7cf7d3159cb6b283e62d89c5
diff --git a/lib/router/index.js b/lib/router/index.js index <HASH>..<HASH> 100644 --- a/lib/router/index.js +++ b/lib/router/index.js @@ -226,10 +226,11 @@ Router.prototype._dispatch = function(req, res, next){ // param callbacks function param(err) { + paramIndex = 0; key = keys[i++]; p...
Fixed multiple param callback regression. Closes #<I> [reported by TroyGoode]
expressjs_express
train
36836ecab34644bf60aece81ba96a1ae20c5d9e7
diff --git a/src/main/com/mongodb/DB.java b/src/main/com/mongodb/DB.java index <HASH>..<HASH> 100644 --- a/src/main/com/mongodb/DB.java +++ b/src/main/com/mongodb/DB.java @@ -50,6 +50,7 @@ public abstract class DB { _obedientCommands.add("geonear"); _obedientCommands.add("geosearch"); _obedie...
JAVA-<I>: Allow use of "text" command on non-primaries by adding it the list of commands that obey the requested read preference.
mongodb_mongo-java-driver
train
e1f9c1e1399b4277ce6526750b1dab48196d5641
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -126,7 +126,7 @@ build.sub_commands.insert(0, ('build_proto', None)) INSTALL_REQUIRES = [ 'contextlib2>=0.5.1,<1.0', - 'enum34>=1.1.2,<2.0', + 'enum34>=1.1.2,<2.0;python_version<"3.4"', 'future>=0.16.0', ...
install enum<I> for certain python version (#<I>)
google_openhtf
train
528af3b9ff71409b46fad50ba201c6d1ff7fdf9d
diff --git a/test/serverdensity/Tests/functional/UserTest.php b/test/serverdensity/Tests/functional/UserTest.php index <HASH>..<HASH> 100644 --- a/test/serverdensity/Tests/functional/UserTest.php +++ b/test/serverdensity/Tests/functional/UserTest.php @@ -30,7 +30,7 @@ class UserTest extends TestCase "first...
Added length to test password The passwords were too short to pass the test.
serverdensity_sd-php-wrapper
train
550d5b0f19e711a7196e5d4fbc10627d0eef2ad6
diff --git a/services/src/test/java/org/artifactory/client/SecurityTests.java b/services/src/test/java/org/artifactory/client/SecurityTests.java index <HASH>..<HASH> 100644 --- a/services/src/test/java/org/artifactory/client/SecurityTests.java +++ b/services/src/test/java/org/artifactory/client/SecurityTests.java @@ -1...
improved testEffectiveItemPermissions (ifs to switch, repeated assertions to method)
jfrog_artifactory-client-java
train
2590b87ca75ec22cabebde9762d69b5121eaff1a
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from distutils.core import setup setup( name='neat-python', - version='0.1', + version='0.2', author='cesar.gomes, mirrorballu2', author_email='nobody@nowhere.com', maintainer='CodeRec...
This revision was uploaded to PyPI as version <I>.
CodeReclaimers_neat-python
train
7a007f9c10bb32a604604c4c0740185601099899
diff --git a/aeron-cluster/src/test/java/io/aeron/cluster/LogReplicationTest.java b/aeron-cluster/src/test/java/io/aeron/cluster/LogReplicationTest.java index <HASH>..<HASH> 100644 --- a/aeron-cluster/src/test/java/io/aeron/cluster/LogReplicationTest.java +++ b/aeron-cluster/src/test/java/io/aeron/cluster/LogReplicatio...
[Java] Use @EnumSource for enumerating the RecordingSignal states.
real-logic_aeron
train
b304afbd494bd1f984a8ce0271c10e3fd990c1b0
diff --git a/richtextfx/src/main/java/org/fxmisc/richtext/model/GenericEditableStyledDocument.java b/richtextfx/src/main/java/org/fxmisc/richtext/model/GenericEditableStyledDocument.java index <HASH>..<HASH> 100644 --- a/richtextfx/src/main/java/org/fxmisc/richtext/model/GenericEditableStyledDocument.java +++ b/richtex...
Allow initializing an editable styled document with content Before this, the initial document must always be empty
FXMisc_RichTextFX
train
91e571d7896f1f74e55c8a2fa940100daace94f4
diff --git a/src/datetime.js b/src/datetime.js index <HASH>..<HASH> 100644 --- a/src/datetime.js +++ b/src/datetime.js @@ -15,6 +15,7 @@ import { daysInMonth, daysInYear, isLeapYear, + weeksInWeekYear, normalizeObject } from './impl/util'; import { normalizeZone } from './impl/zoneUtil'; @@ -1074,6 +1075...
Add weeksInWeekYear Method (#<I>) add weeksInWeekYear getter
moment_luxon
train
add98028f8decce7f529d6a844704e061b8cf020
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -47,14 +47,20 @@ gulp.task('scripts', function () { }, watchify.args)); var bundle = function () { return bundler.bundle() - .on('error', $.util.log.bind($.util, 'Browserify Error')) + .on('err...
Fix gulp-watch task and improve logging
rakuten-frontend_bower-browser
train
832912b7581aae29b12759d64d1e356f7bbebd96
diff --git a/TYPO3.Neos/Classes/TypoScript/Plugin.php b/TYPO3.Neos/Classes/TypoScript/Plugin.php index <HASH>..<HASH> 100644 --- a/TYPO3.Neos/Classes/TypoScript/Plugin.php +++ b/TYPO3.Neos/Classes/TypoScript/Plugin.php @@ -216,7 +216,7 @@ class Plugin extends \TYPO3\TypoScript\TypoScriptObjects\AbstractTsObject { } ...
[TASK] adjustments to refactored FLOW3 Context As the Context is now an object and not a string anymore, we adjust our context checks appropriately. Related: #<I> Change-Id: I<I>ee<I>d5bf<I>c5a<I>ee<I>d<I> Original-Commit-Hash: <I>bded<I>bbbc6ff9aec<I>f<I>baeb3e<I>
neos_neos-development-collection
train
022ff63d29c30709c1bcd4efad1db80059775e47
diff --git a/plugins/inputs/execd/execd.go b/plugins/inputs/execd/execd.go index <HASH>..<HASH> 100644 --- a/plugins/inputs/execd/execd.go +++ b/plugins/inputs/execd/execd.go @@ -15,6 +15,7 @@ import ( "github.com/influxdata/telegraf/internal" "github.com/influxdata/telegraf/plugins/inputs" "github.com/influxdata...
fix issue with execd-multiline influx line protocol (#<I>)
influxdata_telegraf
train
be9f238b09713d6b802039ff3f3022fb9324e4d5
diff --git a/enforcer.go b/enforcer.go index <HASH>..<HASH> 100644 --- a/enforcer.go +++ b/enforcer.go @@ -15,7 +15,9 @@ package casbin import ( + "fmt" "reflect" + "strconv" "github.com/Knetic/govaluate" "github.com/casbin/casbin/model" @@ -141,7 +143,7 @@ func (e *Enforcer) EnableLog(enable bool) { } ...
Improve the request printing in Enforce().
casbin_casbin
train
88b57c3bd7cd3d40c229f178344f6b1fc6c8629e
diff --git a/src/main/java/com/zaxxer/hikari/pool/PoolBase.java b/src/main/java/com/zaxxer/hikari/pool/PoolBase.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/zaxxer/hikari/pool/PoolBase.java +++ b/src/main/java/com/zaxxer/hikari/pool/PoolBase.java @@ -128,9 +128,10 @@ abstract class PoolBase try { ...
Check closed condition before attempting to set network timeout.
brettwooldridge_HikariCP
train
91f3d8613fe7954b043a6febaa7cc0a811829c19
diff --git a/exchangelib/restriction.py b/exchangelib/restriction.py index <HASH>..<HASH> 100644 --- a/exchangelib/restriction.py +++ b/exchangelib/restriction.py @@ -15,7 +15,7 @@ class Q(object): AND = 'AND' OR = 'OR' NOT = 'NOT' - CONN_TYPES = (AND, OR, NOT) + CONN_TYPES = {AND, OR, NOT} ...
Prepare for deep filtering on indexed properties
ecederstrand_exchangelib
train
82dbbeb07a02a7212d9f9c0019f49436ba77dc70
diff --git a/packages/@vue/cli-plugin-typescript/prompts.js b/packages/@vue/cli-plugin-typescript/prompts.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli-plugin-typescript/prompts.js +++ b/packages/@vue/cli-plugin-typescript/prompts.js @@ -13,7 +13,7 @@ const prompts = module.exports = [ { name: `useTsWi...
docs: add description of babel plugin usage in TS plugin prompt (#<I>) closes #<I>
vuejs_vue-cli
train
2fecd945690a939931329c1aab29e12c3e773c67
diff --git a/internal/pipe/snapcraft/snapcraft.go b/internal/pipe/snapcraft/snapcraft.go index <HASH>..<HASH> 100644 --- a/internal/pipe/snapcraft/snapcraft.go +++ b/internal/pipe/snapcraft/snapcraft.go @@ -201,14 +201,12 @@ func (Pipe) Publish(ctx *context.Context) error { return pipe.ErrSkipPublishEnabled } sn...
fix: do not push snaps concurrently (#<I>) It seems that the error I get sometimes (#<I>) is related to snap push not being able to work concurrently. I'm not a <I>% sure though, so I'll try this and see how it goes. If the error still happens, we can ignore the error or retry. closes #<I>
goreleaser_goreleaser
train
8a0eb562412730f30e29ad363332ba2e1359d510
diff --git a/changes.txt b/changes.txt index <HASH>..<HASH> 100644 --- a/changes.txt +++ b/changes.txt @@ -1,5 +1,8 @@ CHANGES +2012-06-09 +- Change $_parent to null to also support 0 for an id + 2012-05-01 - Release v0.19.3.0 - MoreLikeThis Query in Elastica_Document diff --git a/lib/Elastica/Client.php b/lib/El...
Make $_parent default null to support id with value 0 #<I>
ruflin_Elastica
train
262e8d92fc4a2f84e38cd047f6adc17cb4d892a1
diff --git a/inginious/backend/backend.py b/inginious/backend/backend.py index <HASH>..<HASH> 100644 --- a/inginious/backend/backend.py +++ b/inginious/backend/backend.py @@ -138,7 +138,7 @@ class Backend(object): self._logger.info("Adding a new job %s %s to the queue", client_addr, message.job_id) jo...
[backend] Set ssh_allowed to False if not set Fix #<I> This mimicks the behaviour of _get_time_limit_estimate. It is not ideal as it includes specific agent concepts into the job router code. Replacing the parameter by a list of required capabilities could make the code more generic in the long term.
UCL-INGI_INGInious
train
6b2c8454b4b232905ab3cb6b7ffdc19793f2fc8e
diff --git a/src/xworkflows/base.py b/src/xworkflows/base.py index <HASH>..<HASH> 100644 --- a/src/xworkflows/base.py +++ b/src/xworkflows/base.py @@ -308,8 +308,9 @@ class TransitionWrapper(object): func (function): the decorated method """ - def __init__(self, trname, check=None, before=None, after...
Fix support of 'two workflows, one object' setup.
rbarrois_xworkflows
train
1a8ac8a738b9a0cb82715561e2fa1f3a5b58ec9e
diff --git a/test/cluster/cluster.go b/test/cluster/cluster.go index <HASH>..<HASH> 100644 --- a/test/cluster/cluster.go +++ b/test/cluster/cluster.go @@ -537,7 +537,7 @@ func (c *Cluster) bootstrapLayer1(instances []*Instance) error { "CLUSTER_DOMAIN=%s CONTROLLER_KEY=%s BACKOFF_PERIOD=%fs flynn-host bootstrap --j...
test: Forward bootstrap stderr to log
flynn_flynn
train
42be2e34b50a70a95a4e0b6e332068e6d8447490
diff --git a/tests/ml/ml_test.py b/tests/ml/ml_test.py index <HASH>..<HASH> 100644 --- a/tests/ml/ml_test.py +++ b/tests/ml/ml_test.py @@ -527,39 +527,40 @@ def test_groupby_transformer_serialization(df_factory): assert df_test.x.tolist() == ['dog', 'cat', 'dog', 'mouse'] assert df_test.y.tolist() == [5, 5, 5...
TEMP: kbins issue again
vaexio_vaex
train
3efa41f3647eaf8cb6edc4fa3eb84742e6400292
diff --git a/lib/Skeleton/Core/Web/Media.php b/lib/Skeleton/Core/Web/Media.php index <HASH>..<HASH> 100644 --- a/lib/Skeleton/Core/Web/Media.php +++ b/lib/Skeleton/Core/Web/Media.php @@ -83,7 +83,7 @@ class Media { $file_mtime = self::fetch('mtime', $file, $extension); if ($file_mtime === false) { - sel...
Media: don't handle extensions we don't know about Assuming Media should handle every request containing a dot probably isn't the brightest of ideas. Media now bails out if it doesn't know about the extension.
tigron_skeleton-core
train
a5adb54782380c76eab48f2cf4b736ccfb992850
diff --git a/lib/rubyipmi/freeipmi/connection.rb b/lib/rubyipmi/freeipmi/connection.rb index <HASH>..<HASH> 100644 --- a/lib/rubyipmi/freeipmi/connection.rb +++ b/lib/rubyipmi/freeipmi/connection.rb @@ -11,6 +11,12 @@ module Rubyipmi class Connection attr_accessor :options + DRIVERS_MAP = { + ...
Move #drivers_map to a constant
logicminds_rubyipmi
train
097564a851b36b63e0a6bf88144997ef65aa057a
diff --git a/packages/webpack-cli/__tests__/cli-executer.test.js b/packages/webpack-cli/__tests__/cli-executer.test.js index <HASH>..<HASH> 100644 --- a/packages/webpack-cli/__tests__/cli-executer.test.js +++ b/packages/webpack-cli/__tests__/cli-executer.test.js @@ -1,9 +1,5 @@ -jest.mock('../lib/bootstrap'); jest.moc...
fix: cli-executer supplies args further up (#<I>)
webpack_webpack-cli
train
44218f91d5708f368abaad815953f05d8d57a856
diff --git a/generators/server/files.js b/generators/server/files.js index <HASH>..<HASH> 100644 --- a/generators/server/files.js +++ b/generators/server/files.js @@ -1659,7 +1659,7 @@ const serverFiles = { }, { condition: generator => - generator.authenticationType === 'oa...
Enable audit service for neo4j (#<I>)
jhipster_generator-jhipster
train
688da883227a64a42078ee8737301beca6e4cd86
diff --git a/app/lib/capacitor/ensure-consistency.js b/app/lib/capacitor/ensure-consistency.js index <HASH>..<HASH> 100644 --- a/app/lib/capacitor/ensure-consistency.js +++ b/app/lib/capacitor/ensure-consistency.js @@ -9,14 +9,17 @@ const logger = require('../helpers/logger') const log = logger('app:ensure-consistency...
fix(app): Cordova and Capacitor overwriting www folder when it shouldn't #<I>
quasarframework_quasar
train
1591c3459844d6163fab0698c17f74aabd914ae1
diff --git a/activerecord/lib/active_record/migration.rb b/activerecord/lib/active_record/migration.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/migration.rb +++ b/activerecord/lib/active_record/migration.rb @@ -475,13 +475,13 @@ module ActiveRecord def revert(*migration_classes) run(...
Use `ActiveRecord::Migration#connection` instead of `@connection` `ActiveRecord::Migration` has `connetion` method so replace to use `connection` method to get `@connection` as much as possible
rails_rails
train
34e26f3830a3ef04f7afcdf91cfafa2bfa1b7388
diff --git a/src/pikepdf/_methods.py b/src/pikepdf/_methods.py index <HASH>..<HASH> 100644 --- a/src/pikepdf/_methods.py +++ b/src/pikepdf/_methods.py @@ -110,7 +110,7 @@ def augments(cls_cpp: Type[Any]): OVERRIDE_WHITELIST = {'__eq__', '__hash__', '__repr__'} if platform.python_implementation() == 'PyPy': ...
coverage: add a few missing lines in _methods.py
pikepdf_pikepdf
train
962b34c1749375df990a7a638f4b0334724ddbf1
diff --git a/lib/api.js b/lib/api.js index <HASH>..<HASH> 100644 --- a/lib/api.js +++ b/lib/api.js @@ -86,10 +86,12 @@ Api = Class( /** @lends module:NAME.Api.prototype */{ debug("Loading serialization plugin") debug('adding server serializer for %s', this.basepath) plugin.ext('onPostAuth', function( req...
[PIE-4] plugins should call reply.continue(), not reply() if there is nothing to do, reply.coninue should be called. Calling reply with no arguments starts a new reply and replaces the old one. Which is an empty response
node-tastypie_tastypie
train
f63d4935072580c62275ce2bbd80ce7b504fb552
diff --git a/snapshot/android/snapshot-generator.js b/snapshot/android/snapshot-generator.js index <HASH>..<HASH> 100644 --- a/snapshot/android/snapshot-generator.js +++ b/snapshot/android/snapshot-generator.js @@ -249,7 +249,7 @@ SnapshotGenerator.prototype.getSnapshotToolCommand = function (snapshotToolPath, Snaps...
fix: fix xxd path for local snapshots generation
NativeScript_nativescript-dev-webpack
train
9b6e44a0df3ba70c0859627928bab2623535f440
diff --git a/lib/remote-debugger.js b/lib/remote-debugger.js index <HASH>..<HASH> 100644 --- a/lib/remote-debugger.js +++ b/lib/remote-debugger.js @@ -283,7 +283,7 @@ class RemoteDebugger extends events.EventEmitter { dictLoop: for (const appDict of _.values(this.appDict)) { if (found) break; //...
fix: Do not process appDict with promise
appium_appium-remote-debugger
train
a92e19732d9b1cc02a84a9c7ca39826996e7cd11
diff --git a/dev/demo.php b/dev/demo.php index <HASH>..<HASH> 100644 --- a/dev/demo.php +++ b/dev/demo.php @@ -28,12 +28,16 @@ <?php - if ($term) { + if ($term !== null) { $stringCalc = new ChrisKonnertz\StringCalc\StringCalc(); - $result = $stringCalc->calculate($term); + try { + $resu...
Imporved demo so now "0" will be calculated
chriskonnertz_string-calc
train
452de69026942d5453ad526f65a9b81cf616bff3
diff --git a/lib/strainer/runner.rb b/lib/strainer/runner.rb index <HASH>..<HASH> 100644 --- a/lib/strainer/runner.rb +++ b/lib/strainer/runner.rb @@ -1,16 +1,9 @@ -require 'equivalence' - module Strainer # The Runner class is responsible for executing the tests against cookbooks. # # @author Seth Vargo <seth...
Define equivalence methods within Strainer::Runner
customink_strainer
train
c4e855d3b684938d26f20873a81275120faaac52
diff --git a/packages/server/lib/video_capture.js b/packages/server/lib/video_capture.js index <HASH>..<HASH> 100644 --- a/packages/server/lib/video_capture.js +++ b/packages/server/lib/video_capture.js @@ -216,6 +216,10 @@ module.exports = { return ended.resolve() }) + // this is to preven...
fix(video): crop all odd resolutions to be even (#<I>)
cypress-io_cypress
train
5ceda21500b247eb398132724ac3232524836e23
diff --git a/identity/identity.go b/identity/identity.go index <HASH>..<HASH> 100644 --- a/identity/identity.go +++ b/identity/identity.go @@ -24,16 +24,17 @@ type HttpClient interface { Do(ctx context.Context, req *http.Request) (*http.Response, error) } -// Handler controls the authenticating of a request -func ...
Expose the constructor function allowing a custom http client to be injected
ONSdigital_go-ns
train
f185e4c60be53076013f57add54d5d254b570df5
diff --git a/spec/board_spec.rb b/spec/board_spec.rb index <HASH>..<HASH> 100644 --- a/spec/board_spec.rb +++ b/spec/board_spec.rb @@ -264,10 +264,11 @@ module Trello end end - it "is not closed" do - expect(board).not_to be_closed + describe '#closed?' do + it "returns the closed attribut...
Update unit test of Trello::Board#closed?
jeremytregunna_ruby-trello
train
3e873bcb134fb8ede83b34f0f8f84ed4dead622c
diff --git a/lib/bind/index.js b/lib/bind/index.js index <HASH>..<HASH> 100644 --- a/lib/bind/index.js +++ b/lib/bind/index.js @@ -1,8 +1,5 @@ -var noop = require("falcor/support/noop"); var Rx = require("rx/dist/rx"); -var is_path_value = require('falcor/support/is-path-value'); var pathSyntax = require('falcor-path...
Removes unnecessary includes from bind.
Netflix_falcor
train
e3ea0c6c5bb637fcebed605f70ae9c47a04482af
diff --git a/gobblin-api/src/main/java/gobblin/configuration/ConfigurationKeys.java b/gobblin-api/src/main/java/gobblin/configuration/ConfigurationKeys.java index <HASH>..<HASH> 100644 --- a/gobblin-api/src/main/java/gobblin/configuration/ConfigurationKeys.java +++ b/gobblin-api/src/main/java/gobblin/configuration/Conf...
Cleaning err dir at the starting of job execution (#<I>)
apache_incubator-gobblin
train
7c9345084578659549a59db48d7adb4cc6abd217
diff --git a/src/Cviebrock/EloquentSluggable/Sluggable.php b/src/Cviebrock/EloquentSluggable/Sluggable.php index <HASH>..<HASH> 100644 --- a/src/Cviebrock/EloquentSluggable/Sluggable.php +++ b/src/Cviebrock/EloquentSluggable/Sluggable.php @@ -119,7 +119,7 @@ class Sluggable { { // find all models where the slug ...
You can't read the protected `softDelete` property of a model, so skip that check
cviebrock_eloquent-sluggable
train
53a6c76bc22ecddd1d85e7e8ae4653bfd7912a24
diff --git a/stagemonitor-core/src/main/java/org/stagemonitor/core/metrics/metrics2/InfluxDbReporter.java b/stagemonitor-core/src/main/java/org/stagemonitor/core/metrics/metrics2/InfluxDbReporter.java index <HASH>..<HASH> 100644 --- a/stagemonitor-core/src/main/java/org/stagemonitor/core/metrics/metrics2/InfluxDbReport...
Remove import of Java <I> added classes
stagemonitor_stagemonitor
train
0939ca3516a8505b1707840b82a4ee00d59852e8
diff --git a/app/models/account.rb b/app/models/account.rb index <HASH>..<HASH> 100644 --- a/app/models/account.rb +++ b/app/models/account.rb @@ -1,3 +1,4 @@ +# Account model class Account < ActiveRecord::Base # Access restrictions attr_accessible :title, :code @@ -30,26 +31,18 @@ class Account < ActiveRecord::...
Refactor all usage of deprecated #is_XXX_account? calls.
huerlisi_has_accounts
train
ae7e30ddc8d768ee9d93acedf2ca6e47b6f49ce3
diff --git a/python/ray/train/lightgbm/lightgbm_predictor.py b/python/ray/train/lightgbm/lightgbm_predictor.py index <HASH>..<HASH> 100644 --- a/python/ray/train/lightgbm/lightgbm_predictor.py +++ b/python/ray/train/lightgbm/lightgbm_predictor.py @@ -1,3 +1,4 @@ +import numpy as np from typing import TYPE_CHECKING, Li...
[air/lightgbm] Hotfix lightgbm predictor for categoricals (#<I>) #<I> didn't trigger doc tests (fixed with #<I>). The PR broke lightgbm prediction with categorical variables - this PR fixes this. In a follow-up we should specifically test prediction with categorical variables.
ray-project_ray
train
81f90c18c7eba67f058fc41446a9e6a64b17384a
diff --git a/AlphaTwirl/HeppyResult/ReadComponentConfig.py b/AlphaTwirl/HeppyResult/ReadComponentConfig.py index <HASH>..<HASH> 100755 --- a/AlphaTwirl/HeppyResult/ReadComponentConfig.py +++ b/AlphaTwirl/HeppyResult/ReadComponentConfig.py @@ -3,11 +3,14 @@ ##____________________________________________________________...
log warning when cannot open the config file in ReadComponentConfig
alphatwirl_alphatwirl
train
17bee0dd2fcce2d040bd6edda3e19cb11c5813d9
diff --git a/activerecord/lib/generators/active_record.rb b/activerecord/lib/generators/active_record.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/generators/active_record.rb +++ b/activerecord/lib/generators/active_record.rb @@ -16,16 +16,15 @@ module ActiveRecord end end - protected - ...
Change Rails::Generators::Migration protected instance methods to class methods. [#<I> status:resolved]
rails_rails
train
4eab753a76be5b771c9a4ed954b85689d70be493
diff --git a/goerr/__init__.py b/goerr/__init__.py index <HASH>..<HASH> 100644 --- a/goerr/__init__.py +++ b/goerr/__init__.py @@ -67,8 +67,6 @@ class Trace(): self.trace(reverse) if self.first_ex is not None: raise self.first_ex - else: - print("No exception to raise") ...
Remove message when there is no exception to throw
synw_goerr
train
b59b794ca80df49c0a60fa305e6db92a88458a2c
diff --git a/actionview/lib/action_view/base.rb b/actionview/lib/action_view/base.rb index <HASH>..<HASH> 100644 --- a/actionview/lib/action_view/base.rb +++ b/actionview/lib/action_view/base.rb @@ -126,8 +126,8 @@ module ActionView #:nodoc: # end # end # - # For more information on Builder please consu...
Fix link in documentation. [ci skip]
rails_rails
train
f769a6998cd1869fe291344d6d6732708cb5565d
diff --git a/src/aria/utils/css/Effects.js b/src/aria/utils/css/Effects.js index <HASH>..<HASH> 100644 --- a/src/aria/utils/css/Effects.js +++ b/src/aria/utils/css/Effects.js @@ -52,12 +52,35 @@ NO_PROPERTY_TO_ANIMATE : "No valid property to animate.", __easing : { - "linear" ...
feat #<I> Added and refactored easing functions for animations
ariatemplates_ariatemplates
train
4b64499310d23a433d6454a1e81c9ce2eaea6eb6
diff --git a/extras/src/main/java/pl/project13/scala/jmh/extras/profiler/AsyncProfiler.java b/extras/src/main/java/pl/project13/scala/jmh/extras/profiler/AsyncProfiler.java index <HASH>..<HASH> 100644 --- a/extras/src/main/java/pl/project13/scala/jmh/extras/profiler/AsyncProfiler.java +++ b/extras/src/main/java/pl/proj...
Create temp dir earlier to avoid NPE
ktoso_sbt-jmh
train
da68370b8edb07967add029ee33014de49dc2d55
diff --git a/html-element/#/zoom-on-hover.js b/html-element/#/zoom-on-hover.js index <HASH>..<HASH> 100644 --- a/html-element/#/zoom-on-hover.js +++ b/html-element/#/zoom-on-hover.js @@ -107,7 +107,7 @@ module.exports = function (/* options */) { }.bind(this); checkAndInit = function () { - if (this.offsetWidth ...
Improve init wait Firefox <I> crashed before
medikoo_dom-ext
train
b8f804380d8e210c55cacfbbed8c098702155721
diff --git a/externs/es5.js b/externs/es5.js index <HASH>..<HASH> 100644 --- a/externs/es5.js +++ b/externs/es5.js @@ -154,27 +154,24 @@ Object.getPrototypeOf = function(obj) {}; /** - * @param {!T} obj - * @return {!T} - * @template T + * @param {!Object} obj + * @return {void} * @see https://developer.mozilla....
Automated g4 rollback *** Reason for rollback *** Breaking things *** Original change description *** externs/es5.js: Fix the return type of Object.seal and Object.freeze. These methods return {!Object}, the object that was passed in. See <URL> Revision created by MOE tool push_codebase. MOE_MIGRATION=<I> git...
google_closure-compiler
train
d47bf248ae57dc7d4cb1e90caf8a693f5c159ce7
diff --git a/src/main/java/org/fluentd/logger/sender/RawSocketSender.java b/src/main/java/org/fluentd/logger/sender/RawSocketSender.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fluentd/logger/sender/RawSocketSender.java +++ b/src/main/java/org/fluentd/logger/sender/RawSocketSender.java @@ -103,8 +103,6 @@ p...
deleted TODO comment in SocketSender.java
fluent_fluent-logger-java
train
03bad5398d62fa232e48502fa908a39a7be0197c
diff --git a/app/Http/Middleware/BadBotBlocker.php b/app/Http/Middleware/BadBotBlocker.php index <HASH>..<HASH> 100644 --- a/app/Http/Middleware/BadBotBlocker.php +++ b/app/Http/Middleware/BadBotBlocker.php @@ -61,6 +61,7 @@ class BadBotBlocker implements MiddlewareInterface 'DotBot', 'Grapeshot', ...
Add Linugee bot to the list of unwanted bots
fisharebest_webtrees
train
64527da1826609070d35bc3107281e7428b4103a
diff --git a/includes/registry.php b/includes/registry.php index <HASH>..<HASH> 100644 --- a/includes/registry.php +++ b/includes/registry.php @@ -19,7 +19,7 @@ final class Icon_Picker_Types_Registry { protected static $instance; /** - * Base type class name + * Base icon type class name * * @access prote...
Improve Icon_Picker_Types_Registry
ineagu_wp-icon-picker
train
75d1d58064c57e3b72fb6b4c9fba5fc77f9f7347
diff --git a/lib/tomlrb/string_utils.rb b/lib/tomlrb/string_utils.rb index <HASH>..<HASH> 100644 --- a/lib/tomlrb/string_utils.rb +++ b/lib/tomlrb/string_utils.rb @@ -12,9 +12,9 @@ module Tomlrb }.freeze def self.multiline_replacements(str) - strip_spaces(str).gsub(/\\+\n\s+/) {|matched| + strip_s...
Ignore trailing spaces after single backslash
fbernier_tomlrb
train
8a6055b4e6c655a64ba5e9f7a057c0591f733d26
diff --git a/great_expectations/dataset/util.py b/great_expectations/dataset/util.py index <HASH>..<HASH> 100644 --- a/great_expectations/dataset/util.py +++ b/great_expectations/dataset/util.py @@ -90,7 +90,7 @@ def kde_smooth_data(data): kde = stats.kde.gaussian_kde(data) evaluation_partition = np.linspace(...
Explicitly take floor of num for samples in kde_smooth_data partition helper
great-expectations_great_expectations
train
4e1fcf9569dc0205f67ca8bc9a838dc7540ec921
diff --git a/beatrix/src/test/java/com/ning/billing/beatrix/integration/TestBasic.java b/beatrix/src/test/java/com/ning/billing/beatrix/integration/TestBasic.java index <HASH>..<HASH> 100644 --- a/beatrix/src/test/java/com/ning/billing/beatrix/integration/TestBasic.java +++ b/beatrix/src/test/java/com/ning/billing/beat...
Beatrix tests now pass - enabling them
killbill_killbill
train
bb47dc1b06fef76baadd9f7b3f76a3011b63662d
diff --git a/lib/grit/commit.rb b/lib/grit/commit.rb index <HASH>..<HASH> 100644 --- a/lib/grit/commit.rb +++ b/lib/grit/commit.rb @@ -216,6 +216,17 @@ module Grit @repo.git.format_patch({'1' => true, :stdout => true}, to_s) end + def notes + ret = {} + notes = Note.find_all(@repo) + not...
git-notes backport from github
mojombo_grit
train
33ca57aec2bbf86eb57fcc4ababbe0e1458e9e7b
diff --git a/app/decorators/camaleon_cms/custom_field_decorator.rb b/app/decorators/camaleon_cms/custom_field_decorator.rb index <HASH>..<HASH> 100644 --- a/app/decorators/camaleon_cms/custom_field_decorator.rb +++ b/app/decorators/camaleon_cms/custom_field_decorator.rb @@ -10,16 +10,10 @@ class CamaleonCms::CustomFiel...
Merge branch 'master' of github.com:owen<I>/camaleon-cms Conflicts: app/decorators/camaleon_cms/custom_field_decorator.rb
owen2345_camaleon-cms
train
68990a260b91731576f4896e0649f2c417338759
diff --git a/lib/websocket/driver/draft76.js b/lib/websocket/driver/draft76.js index <HASH>..<HASH> 100644 --- a/lib/websocket/driver/draft76.js +++ b/lib/websocket/driver/draft76.js @@ -49,6 +49,20 @@ var instance = { }, _handshakeResponse: function() { + var headers = this._request.headers, + key1 ...
Close the connection if a draft-<I> client sends a Sec-WebSocket-Key header where the numeric value is a non-integer multiple of the number of spaces.
faye_websocket-driver-node
train
2c3d42d58c065393e45d0a4684dd1d304656fc97
diff --git a/Zebra_Database.php b/Zebra_Database.php index <HASH>..<HASH> 100644 --- a/Zebra_Database.php +++ b/Zebra_Database.php @@ -2327,10 +2327,10 @@ class Zebra_Database $key = md5($sql); // if a cached version of this query's result already exists and it is not expired...
Fixed more instances where PHP <I>+ would trigger some notices
stefangabos_Zebra_Database
train
9dcd7e98b3a8b20b0d84fe433921ee42b1ceb7b0
diff --git a/lib/stealth/controller.rb b/lib/stealth/controller.rb index <HASH>..<HASH> 100644 --- a/lib/stealth/controller.rb +++ b/lib/stealth/controller.rb @@ -5,21 +5,11 @@ module Stealth class Controller attr_accessor :current_message + attr_accessor :current_flow, :current_state, :current_service, :f...
current_message should reference ServiceMessage
hellostealth_stealth
train
88a559d4148789474c6dbd216725c69fa18200a9
diff --git a/activerecord/lib/active_record/persistence.rb b/activerecord/lib/active_record/persistence.rb index <HASH>..<HASH> 100644 --- a/activerecord/lib/active_record/persistence.rb +++ b/activerecord/lib/active_record/persistence.rb @@ -15,7 +15,7 @@ module ActiveRecord # Returns if the record is persisted, ...
Double negation of an already boolean value produces the same result
rails_rails
train
081984a04bc97ad8abd82315f936861cce1df0d6
diff --git a/lib/procfile.js b/lib/procfile.js index <HASH>..<HASH> 100644 --- a/lib/procfile.js +++ b/lib/procfile.js @@ -112,8 +112,8 @@ function readProcFile (pid, options, done) { cpu: cpu, memory: memory, ctime: (stat.utime + stat.stime) / cpuInfo.clockTick, - elapsed: date - (sta...
Fix elapsed and timestamp calculation on Linux Fix #<I>
soyuka_pidusage
train
26aafb42ae94a2ec852890241ebb4b976b5093ec
diff --git a/docs/source/_layouts/master.blade.php b/docs/source/_layouts/master.blade.php index <HASH>..<HASH> 100644 --- a/docs/source/_layouts/master.blade.php +++ b/docs/source/_layouts/master.blade.php @@ -22,7 +22,7 @@ </svg> </div> <div> - ...
Add GitHub link to docs so I can open issues faster
tailwindcss_tailwindcss
train
604e65c5caf3679b6d079508ee753d274afca6f3
diff --git a/hydra_base/db/__init__.py b/hydra_base/db/__init__.py index <HASH>..<HASH> 100644 --- a/hydra_base/db/__init__.py +++ b/hydra_base/db/__init__.py @@ -79,7 +79,7 @@ def create_mysql_db(db_url): if config.get('mysqld', 'auto_create', 'Y') == 'Y': tmp_engine = create_engine(no_db_url) ...
updated warn in warning as suggested by python
hydraplatform_hydra-base
train
1d06fc8d78e8bcf9ce8de4bf7ef8fdab09224066
diff --git a/src/org/jgroups/protocols/UdpHeader.java b/src/org/jgroups/protocols/UdpHeader.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/protocols/UdpHeader.java +++ b/src/org/jgroups/protocols/UdpHeader.java @@ -1,4 +1,4 @@ -// $Id: UdpHeader.java,v 1.1 2003/09/09 01:24:11 belaban Exp $ +// $Id: UdpHeader.ja...
removed byte[] buffer, using read/writeUTF() now
belaban_JGroups
train
d8d818d35be620930c0406b0b4651b95a126ae53
diff --git a/packages/smart-contracts/test/contracts/ChainlinkConversionPath.js b/packages/smart-contracts/test/contracts/ChainlinkConversionPath.js index <HASH>..<HASH> 100644 --- a/packages/smart-contracts/test/contracts/ChainlinkConversionPath.js +++ b/packages/smart-contracts/test/contracts/ChainlinkConversionPath....
test: added 2 tests for ETH based on-chain conversion (#<I>)
RequestNetwork_requestNetwork
train
5f59e12ecbe70d1074ab9b2c46b358f71199469b
diff --git a/src/core.js b/src/core.js index <HASH>..<HASH> 100644 --- a/src/core.js +++ b/src/core.js @@ -601,6 +601,16 @@ class FileReader extends EventTarget { } } +class DOMPoint { + constructor(x = 0, y = 0, z = 0, w = 1) { + this.x = x; + this.y = y; + this.z = z; + this.w = w; + } +} +GlobalC...
Add new DOMPoint global in core.js
exokitxr_exokit
train
aa4c6b68b51386b5a1916f7efaf9dff583480322
diff --git a/mod/data/view.php b/mod/data/view.php index <HASH>..<HASH> 100755 --- a/mod/data/view.php +++ b/mod/data/view.php @@ -507,7 +507,7 @@ $sortcontent = $sortfield->get_sort_field(); $sortcontentfull = $sortfield->get_sort_sql('c.'.$sortcontent); - $what = ' DISTINCT r.id...
MDL-<I> search/order - make it cross-db + delete unused column from query ; merged from <I>_STABLE
moodle_moodle
train
b8427da20e196e0e0d002eb979979decb49449ec
diff --git a/packages/es-dev-server/src/middleware/compatibility.js b/packages/es-dev-server/src/middleware/compatibility.js index <HASH>..<HASH> 100644 --- a/packages/es-dev-server/src/middleware/compatibility.js +++ b/packages/es-dev-server/src/middleware/compatibility.js @@ -1,4 +1,5 @@ import { extractResources, c...
fix(es-dev-server): serve polyfills correctly without app index (#<I>)
open-wc_open-wc
train
29f7b8cd9f84363e0ad3936bb3aa7cc0bf139509
diff --git a/t/proof/executable.t.js b/t/proof/executable.t.js index <HASH>..<HASH> 100644 --- a/t/proof/executable.t.js +++ b/t/proof/executable.t.js @@ -24,10 +24,10 @@ require('../..')(5, function (assert) { } assert(executable(null, { mode: 0x1 }), 'other execute') - assert(executable(process, { mode...
Correctly name assertions in `executable.t.js`.
bigeasy_proof
train
0b7ffd094aace166dea48e9495d01335f732e97f
diff --git a/lib/browser/api/dialog.js b/lib/browser/api/dialog.js index <HASH>..<HASH> 100644 --- a/lib/browser/api/dialog.js +++ b/lib/browser/api/dialog.js @@ -280,6 +280,10 @@ module.exports = { showErrorBox: function (...args) { return binding.showErrorBox(...args) + }, + + showCertificateTrustDialog: ...
Expose through the actual JS API too
electron_electron
train
d629581f79a55b825ad357f389df5dbe963910d6
diff --git a/Command/GenerateAdminCommand.php b/Command/GenerateAdminCommand.php index <HASH>..<HASH> 100644 --- a/Command/GenerateAdminCommand.php +++ b/Command/GenerateAdminCommand.php @@ -113,7 +113,7 @@ EOT $questionHelper = $this->getQuestionHelper(); if ($input->isInteractive()) { - ...
Update GenerateAdminCommand.php Remove space before question sign
symfony2admingenerator_GeneratorBundle
train
01a594f95c5a8b82af573a448c0f0c089a46dd72
diff --git a/lib/social_stream/base/version.rb b/lib/social_stream/base/version.rb index <HASH>..<HASH> 100644 --- a/lib/social_stream/base/version.rb +++ b/lib/social_stream/base/version.rb @@ -1,5 +1,5 @@ module SocialStream module Base - VERSION = "0.6.4".freeze + VERSION = "0.6.5".freeze end end
Packaging with <I> instead of <I>
ging_social_stream
train
926c3f9dab7b0b48ee81308c4cc0eb10d3987a74
diff --git a/server.go b/server.go index <HASH>..<HASH> 100644 --- a/server.go +++ b/server.go @@ -38,6 +38,7 @@ type Server struct { factory Factory // currently active pool instance + mup sync.Mutex pool Pool // observes pool events (can be attached to multiple pools at the same time) @@ -110,6 +111,9 @@...
do not allow multiple server reconfigure calls at the same time
spiral_roadrunner
train
36087b362f6af2be3b78914047da88b15b7015a5
diff --git a/src/main/java/com/iobeam/api/client/Iobeam.java b/src/main/java/com/iobeam/api/client/Iobeam.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/iobeam/api/client/Iobeam.java +++ b/src/main/java/com/iobeam/api/client/Iobeam.java @@ -227,7 +227,7 @@ public class Iobeam { throw new NotIniti...
Updates APIs to use Device.Spec instead and mark others as deprecated.
iobeam_iobeam-client-java
train
7764328a2dfb3482b6b2e0cfb7b25c87c1d2142b
diff --git a/lib/rest/Endpoints.js b/lib/rest/Endpoints.js index <HASH>..<HASH> 100644 --- a/lib/rest/Endpoints.js +++ b/lib/rest/Endpoints.js @@ -9,7 +9,6 @@ module.exports.CHANNEL = (chanID) module.exports.CHANNEL_BULK_DELETE = (chanID...
Fixed duplicate channel_message endpoint (#<I>)
abalabahaha_eris
train
9b1a429c366920de2937d8ad07f3a95bd8cffb61
diff --git a/test/unit/session.js b/test/unit/session.js index <HASH>..<HASH> 100644 --- a/test/unit/session.js +++ b/test/unit/session.js @@ -83,41 +83,44 @@ describe("file list initialization tests", function() { }, 0); }); - it("drawThumbnail renders image properly if session response includes thu...
test(unit/session.js): exclude wonky test in IE7
FineUploader_fine-uploader
train
af2a011df2a29520ed55216c32dfb84b9f018b38
diff --git a/activerecord/test/models/subject.rb b/activerecord/test/models/subject.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/models/subject.rb +++ b/activerecord/test/models/subject.rb @@ -1,12 +1,16 @@ # used for OracleSynonymTest, see test/synonym_test_oracle.rb # class Subject < ActiveRecord::Base +...
fixed Subject model after_initialize callback for test_oracle_synonym test
rails_rails
train
30847a10a7ef2671f6ed770affd417d571236a0d
diff --git a/tests/modelling/test_engine.py b/tests/modelling/test_engine.py index <HASH>..<HASH> 100644 --- a/tests/modelling/test_engine.py +++ b/tests/modelling/test_engine.py @@ -16,6 +16,7 @@ from pandas import ( Int64Index, rolling_mean, Timestamp, + Series, ) from pandas.util.testing import a...
BUG: Interface of load_adjusted_array is to return a list of arrays but MultiColumnLoader was returning a list of lists of arrays in some cases.
quantopian_zipline
train
24966ce8fb74c514d147fa880752f01026929743
diff --git a/lib/runcible/models/yum_importer.rb b/lib/runcible/models/yum_importer.rb index <HASH>..<HASH> 100644 --- a/lib/runcible/models/yum_importer.rb +++ b/lib/runcible/models/yum_importer.rb @@ -3,6 +3,12 @@ module Runcible class YumImporter < Importer ID = 'yum_importer' REPO_TYPE = 'rpm-rep...
Fixes #<I> - Support download_policy for importer
Katello_runcible
train
41627cd42660b13650d24f765e05a086c861eda1
diff --git a/zounds/learn/__init__.py b/zounds/learn/__init__.py index <HASH>..<HASH> 100644 --- a/zounds/learn/__init__.py +++ b/zounds/learn/__init__.py @@ -27,7 +27,8 @@ from embedding import TripletEmbeddingTrainer from random_samples import Reservoir, ReservoirSampler, ShuffledSamples -from util import simple...
Add a convenience method for batch-wise mean/std normalization
JohnVinyard_zounds
train
f36d24220e8666ab16f5913d138c0a3d8d1c6eed
diff --git a/bloop/__init__.py b/bloop/__init__.py index <HASH>..<HASH> 100644 --- a/bloop/__init__.py +++ b/bloop/__init__.py @@ -18,4 +18,4 @@ __all__ = [ "String", "TableMismatch", "TypedMap", "UnboundModel", "UUID", "new_base", "engine_for_profile" ] -__version__ = "0.9.9" +__version__ = "0.9.10" diff --...
Test that engine doesn't include parent model's columns when rendering subclasses
numberoverzero_bloop
train
79cc5a5eae0cefced27719d52e9f1a4e14691ca0
diff --git a/lib/sidekiq/batch.rb b/lib/sidekiq/batch.rb index <HASH>..<HASH> 100644 --- a/lib/sidekiq/batch.rb +++ b/lib/sidekiq/batch.rb @@ -64,7 +64,7 @@ module Sidekiq r.multi do r.hincrby("BID-#{bid}", 'to_process', -1) r.scard("BID-#{bid}-failed") - r.decr("BID-#{bi...
Moving pending/total to hash
breamware_sidekiq-batch
train
52aac97ae01a00022219be4435fe6f46ed2152fa
diff --git a/lib/freshbooks.rb b/lib/freshbooks.rb index <HASH>..<HASH> 100644 --- a/lib/freshbooks.rb +++ b/lib/freshbooks.rb @@ -22,10 +22,18 @@ module FreshBooks end end - # FreshBooks API connection. instances are FreshBooks account - # specific so you can, e.g. setup two connections and copy/ + class ...
renaming Connection to Client. for backwards compatibility, Connection.new will create a Client instance
elucid_ruby-freshbooks
train
f9775efc8c9f5dc198f7c8eed8097feb0074ab0a
diff --git a/receita/tools/build.py b/receita/tools/build.py index <HASH>..<HASH> 100644 --- a/receita/tools/build.py +++ b/receita/tools/build.py @@ -96,9 +96,12 @@ class _ActivitiesSeenCSV(BaseCSV): def _process(self, activities): for activity in activities: - if activity['code'] in self._a...
build: fix activities with the same code This fixes an issue that could arise when dealing with companies activities. It is possible to have multiple activities with the same code but different descriptions. Closes #<I>.
vkruoso_receita-tools
train