hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
fa5ad7ac5af9c40093810968391f904c235b2198
diff --git a/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java b/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java index <HASH>..<HASH> 100644 --- a/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java +++ b/okhttp/src/main/java/com/squareup/okhttp/OkHttpClient.java @@ -183,13 +183,14 @@ public ...
Add missing 'this' returns from setters.
square_okhttp
train
7ca51764d642a97463f4b8ee6b5e0442d7898792
diff --git a/core/client/routes/posts/post.js b/core/client/routes/posts/post.js index <HASH>..<HASH> 100644 --- a/core/client/routes/posts/post.js +++ b/core/client/routes/posts/post.js @@ -35,7 +35,7 @@ var PostsPostRoute = Ember.Route.extend(SimpleAuth.AuthenticatedRouteMixin, load return self.store.fin...
Show posts authored by current user. The current logic allows showing of all EXCEPT the current users posts (when the current user is an author). This fixes that.
TryGhost_Ghost
train
427ee765c3c78e3aa63cd17881a4b70a009e8857
diff --git a/dist.py b/dist.py index <HASH>..<HASH> 100644 --- a/dist.py +++ b/dist.py @@ -537,7 +537,7 @@ Common commands: (see '--help-commands' for more) for (help_option, short, desc, func) in cmd_class.help_options: if hasattr(opts, parser.get_attr_name(help_option)): ...
Closes #<I>: Use callable() built-in in the standard library.
pypa_setuptools
train
b0ab7f7c202eb7ff7f3204bc6a6db27d9dbc5123
diff --git a/src/Runtime/Auth/AuthenticationContext.php b/src/Runtime/Auth/AuthenticationContext.php index <HASH>..<HASH> 100644 --- a/src/Runtime/Auth/AuthenticationContext.php +++ b/src/Runtime/Auth/AuthenticationContext.php @@ -36,17 +36,14 @@ class AuthenticationContext implements IAuthenticationContext /** ...
Hardcode URI's removed. Although investigation if it is possible to connect with Sharepoint Onpremise with current code?
vgrem_phpSPO
train
b7c32ada9bd1614544cd8dbeccffe5c6d1508acb
diff --git a/lib/rlint/parser.rb b/lib/rlint/parser.rb index <HASH>..<HASH> 100644 --- a/lib/rlint/parser.rb +++ b/lib/rlint/parser.rb @@ -80,12 +80,17 @@ module Rlint RETURN_METHOD_EVENTS = [:fcall, :vcall] ## - # Array containing the names of various event callbacks that should return + # Hash conta...
Merged regular and "mod" statement events.
YorickPeterse_ruby-lint
train
ebf7123b616bf58f5bdb09b664b4b1a94d579fa9
diff --git a/lib/ChainFind.js b/lib/ChainFind.js index <HASH>..<HASH> 100644 --- a/lib/ChainFind.js +++ b/lib/ChainFind.js @@ -38,7 +38,7 @@ function ChainFind(Model, opts) { return this; }, count: function (cb) { - opts.driver.count(opts.table, opts.conditions, opts, function (err, data) { + opts.driver....
Changes ChainFind.count() to avoid passing opts, no need
dresende_node-orm2
train
148788e652e9f3e1fc1f7b8482d824af0349ff4a
diff --git a/salt/utils/schedule.py b/salt/utils/schedule.py index <HASH>..<HASH> 100644 --- a/salt/utils/schedule.py +++ b/salt/utils/schedule.py @@ -972,7 +972,6 @@ class Schedule(object): # Add up how many seconds between now and then when = 0 seconds = 0 - cron = 0 ...
Fix Master/Minion scheduled jobs based on Cron expressions
saltstack_salt
train
261619aa6c39047936f3936c8c45d25afb5c3506
diff --git a/src/HtmlForm/Elements/Field.php b/src/HtmlForm/Elements/Field.php index <HASH>..<HASH> 100644 --- a/src/HtmlForm/Elements/Field.php +++ b/src/HtmlForm/Elements/Field.php @@ -84,4 +84,9 @@ abstract class Field implements \HtmlForm\Interfaces\Field { return $this->required; } + + public function getLa...
Added getLabel() method to Form class.
jenwachter_html-form
train
8a5eb45fcdf8702b556eb78b7c4bf858ff0bac4e
diff --git a/lib/cxxproject/ext/rake.rb b/lib/cxxproject/ext/rake.rb index <HASH>..<HASH> 100644 --- a/lib/cxxproject/ext/rake.rb +++ b/lib/cxxproject/ext/rake.rb @@ -67,10 +67,12 @@ module Rake end def invoke_prerequisites(args, invocation_chain) + super(args, invocation_chain) + Dir.chdi...
fixed prereq working dir of multi tasks
marcmo_cxxproject
train
2b0c96f8828545ea9826dfbefcae9388dffeffc5
diff --git a/daskernetes/__init__.py b/daskernetes/__init__.py index <HASH>..<HASH> 100644 --- a/daskernetes/__init__.py +++ b/daskernetes/__init__.py @@ -66,7 +66,7 @@ class KubeCluster(object): args = [ 'dask-worker', self.scheduler_ad...
Only pass strings to podspec Does not like integers!
dask_dask-kubernetes
train
e253c5bc0eae3d5d7376ca264094eaf78d306085
diff --git a/Lib/fontmake/font_project.py b/Lib/fontmake/font_project.py index <HASH>..<HASH> 100644 --- a/Lib/fontmake/font_project.py +++ b/Lib/fontmake/font_project.py @@ -199,7 +199,8 @@ class FontProject: ufo, featureCompilerClass=fea_compiler, mtiFeaFiles=mti_paths[name] if mti_p...
don't call cu2qu twice; call ufo2ft outline compiler with convertCubics=False
googlefonts_fontmake
train
04491ae2b9ca2f491ea524433f34a9a26cb35baf
diff --git a/class.js b/class.js index <HASH>..<HASH> 100644 --- a/class.js +++ b/class.js @@ -5,6 +5,7 @@ var id = require('./id') , core = require('./core') , types = require('./types') , method = require('./method') + , _global = require('./index') , ivar = require('./ivar') , IMP = require('./imp') ...
Attach newly created Classes to the exports after calling register().
TooTallNate_NodObjC
train
8343dc4eb043e52e638f0f0671db1c0eeeb167b1
diff --git a/tests/integration/states/test_lxd.py b/tests/integration/states/test_lxd.py index <HASH>..<HASH> 100644 --- a/tests/integration/states/test_lxd.py +++ b/tests/integration/states/test_lxd.py @@ -1,17 +1,11 @@ -# -*- coding: utf-8 -*- """ Integration tests for the lxd states """ -# Import Python Libs -fro...
Drop Py2 and six on tests/integration/states/test_lxd.py
saltstack_salt
train
5b940841ec81bf295f6e6f60972ebe10703e0e23
diff --git a/cmd/sup/main.go b/cmd/sup/main.go index <HASH>..<HASH> 100644 --- a/cmd/sup/main.go +++ b/cmd/sup/main.go @@ -246,9 +246,8 @@ func main() { network.Hosts = hosts } - // --env flag sets environment variables and overrides values defined in Supfile + // Parse --env flag environment variables and overr...
Resolve ENV VARs locally
pressly_sup
train
97c261104f4ae9d1413b3d610ea11f14b4314ec6
diff --git a/jawr-core/src/main/java/net/jawr/web/minification/JSMin.java b/jawr-core/src/main/java/net/jawr/web/minification/JSMin.java index <HASH>..<HASH> 100644 --- a/jawr-core/src/main/java/net/jawr/web/minification/JSMin.java +++ b/jawr-core/src/main/java/net/jawr/web/minification/JSMin.java @@ -125,7 +125,9 @@ p...
Fix issue #<I> Exception in the error message generation from JSMin processor when an error is located at the end of the file
j-a-w-r_jawr-main-repo
train
c426ad75481d4f0a0bc29e1c89976a001ffa7b45
diff --git a/examples/hardfork_time.py b/examples/hardfork_time.py index <HASH>..<HASH> 100644 --- a/examples/hardfork_time.py +++ b/examples/hardfork_time.py @@ -6,7 +6,7 @@ dtime = datetime.datetime.now() # Add delay # class datetime.timedelta([days[, seconds[, microseconds[, milliseconds[, minutes[, hours[, week...
[Exchange] Add collateral ratio to output
xeroc_python-graphenelib
train
d424711cc98f3aa3c15a0e907100b493e73430f6
diff --git a/algolia/transport/transport.go b/algolia/transport/transport.go index <HASH>..<HASH> 100644 --- a/algolia/transport/transport.go +++ b/algolia/transport/transport.go @@ -94,7 +94,11 @@ func (t *Transport) Request( case Failure: return unmarshalToError(body) default: - _ = body.Close() + if bo...
fixed: properly close and report errors upon response body closing
algolia_algoliasearch-client-go
train
5e35c60d88da150872e0c67b738f7e51b75355ed
diff --git a/lib/fluent/env_utils.rb b/lib/fluent/env_utils.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/env_utils.rb +++ b/lib/fluent/env_utils.rb @@ -16,12 +16,12 @@ module Fluent OJ_OPTIONS_ALLOWED_VALUES = { 'bigdecimal_load': %i[bigdecimal float auto], - 'mode': %i[strict null concat ...
It is compat, and not concat
fluent_fluentd
train
638720c1ac740b88fab396d805540ee9bd8b51d3
diff --git a/java/OpenTamil/src/com/ezhillang/LOGO/EvalVisitor.java b/java/OpenTamil/src/com/ezhillang/LOGO/EvalVisitor.java index <HASH>..<HASH> 100644 --- a/java/OpenTamil/src/com/ezhillang/LOGO/EvalVisitor.java +++ b/java/OpenTamil/src/com/ezhillang/LOGO/EvalVisitor.java @@ -36,15 +36,29 @@ class EvalVisitor extends...
0) Update interpreter to have mock code for simple evaluations. 1) Need to provide stack unrolling and actual functions for drawing, ops etc.
Ezhil-Language-Foundation_open-tamil
train
99c9311f5f34db7688ae0651a9c0529f5165e249
diff --git a/examples/pmc_mpi.py b/examples/pmc_mpi.py index <HASH>..<HASH> 100644 --- a/examples/pmc_mpi.py +++ b/examples/pmc_mpi.py @@ -72,7 +72,7 @@ parallel_sampler = pypmc.tools.parallel_sampler.MPISampler(SequentialIS, target= # make sure that every process has a different random number generator seed if com...
cast all random seeds down to <I>bit, see Issue #<I>
fredRos_pypmc
train
5536a595816da76b7ca2fd1836ad8c3727298a49
diff --git a/lib/spring/test/application_generator.rb b/lib/spring/test/application_generator.rb index <HASH>..<HASH> 100644 --- a/lib/spring/test/application_generator.rb +++ b/lib/spring/test/application_generator.rb @@ -48,7 +48,7 @@ module Spring @version = RailsVersion.new(`ruby -e 'puts Gem::Specificat...
skip system tests and listen for acceptance tests The listen gem was causing intermittent travis errors. System tests were causing a dependency on capybara, which caused build failures with ruby versions < <I>
rails_spring
train
42a7f11b5745acbf6d2c3a28422ce51dc6c1be3b
diff --git a/devassistant/cache.py b/devassistant/cache.py index <HASH>..<HASH> 100644 --- a/devassistant/cache.py +++ b/devassistant/cache.py @@ -7,6 +7,7 @@ except ImportError: from yaml import Dumper from devassistant import settings +from devassistant import version from devassistant import yaml_loader fr...
Recreate cache if it was created with different devassistant version. Fixes #<I>
devassistant_devassistant
train
b00c2a0ba3bd7017dba5d547ae9dbe303942d7a2
diff --git a/src/Di/Di.php b/src/Di/Di.php index <HASH>..<HASH> 100644 --- a/src/Di/Di.php +++ b/src/Di/Di.php @@ -150,7 +150,7 @@ class Di /** * Checks if the class is instantiable - * @param mixed $type + * @param string $type * @return bool */ protected static function instantia...
Updating doc-block and removing commented line
softberg_quantum-core
train
c304af0eecd600b9fd6d7342374b40b5d57ca9b1
diff --git a/Neos.Media/Classes/Command/MediaCommandController.php b/Neos.Media/Classes/Command/MediaCommandController.php index <HASH>..<HASH> 100644 --- a/Neos.Media/Classes/Command/MediaCommandController.php +++ b/Neos.Media/Classes/Command/MediaCommandController.php @@ -17,6 +17,7 @@ use Doctrine\ORM\EntityManager;...
FEATURE: Introduce command to remove unused assets This command iterates over all existing assets, checks their usage count and lists the assets which are not reported as used by any AssetUsageStrategies. The unused assets can than be removed.
neos_neos-development-collection
train
a33d567a9f6399ed025a0acb560b4f1c32885c82
diff --git a/tests/ContentTypeMiddlewareTest.php b/tests/ContentTypeMiddlewareTest.php index <HASH>..<HASH> 100644 --- a/tests/ContentTypeMiddlewareTest.php +++ b/tests/ContentTypeMiddlewareTest.php @@ -14,7 +14,6 @@ use Psr\Http\Server\RequestHandlerInterface; use Zend\Diactoros\Response; use Zend\Diactoros\Response...
Use Json formatter in middleware test Just to simplify things a bit.
lcobucci_content-negotiation-middleware
train
b5f4caba18292ffb46cdff07a97cd0cdfbc25227
diff --git a/packages/build-tools/tasks/api-tasks/bolt-versions.js b/packages/build-tools/tasks/api-tasks/bolt-versions.js index <HASH>..<HASH> 100644 --- a/packages/build-tools/tasks/api-tasks/bolt-versions.js +++ b/packages/build-tools/tasks/api-tasks/bolt-versions.js @@ -136,18 +136,15 @@ async function gatherBoltVe...
Fixing logic issues and removing code pointing the old website url
bolt-design-system_bolt
train
a04aa25f67cdfaaeaee9a162b447f6897fe32b2a
diff --git a/lib/protractor.js b/lib/protractor.js index <HASH>..<HASH> 100644 --- a/lib/protractor.js +++ b/lib/protractor.js @@ -201,8 +201,10 @@ var Protractor = function(webdriverInstance, opt_baseUrl, opt_rootElement) { // Safari accepts data urls, but SafariDriver fails after one is used. // PhantomJS p...
chore(style): shorten long line, which was affecting tests
angular_protractor
train
6b51bb362d6f618e6d899062b57a704514973b57
diff --git a/guake/terminal.py b/guake/terminal.py index <HASH>..<HASH> 100644 --- a/guake/terminal.py +++ b/guake/terminal.py @@ -72,7 +72,7 @@ except Exception as e: sys.stderr.write( "[WARN] Some feature might not work:\n" "[WARN] - 'exit' command might freeze the terminal instead of closing ...
Typo in terminal.py Hi team, Got to know about this project while finding alternatives to terminator (somehow I never liked it). I am still trying it out and would love to contribute. And it is in Python (a great plus for me). Hope I can bring some value to the project.
Guake_guake
train
30c6b29ea9f83861bc38bb03255eaac3ac638b48
diff --git a/examples/opencv-face-tracking.js b/examples/opencv-face-tracking.js index <HASH>..<HASH> 100644 --- a/examples/opencv-face-tracking.js +++ b/examples/opencv-face-tracking.js @@ -41,7 +41,7 @@ async.forever( for (var i = 0; i < faces.length; i++) { var face = faces[i]; i...
Don't add face.x and face.y to draw a rectangle
hybridgroup_node-bebop
train
b8e4c9918c46995a1de53336697c2742b35acf56
diff --git a/lib/nancy/base.rb b/lib/nancy/base.rb index <HASH>..<HASH> 100644 --- a/lib/nancy/base.rb +++ b/lib/nancy/base.rb @@ -65,7 +65,7 @@ module Nancy end def route_eval(request_method, path_info) - path_info = "/#{path_info}" unless path_info[0] == "/" + path_info = "/" if path_info == "" ...
Set PATH_INFO to '/' when is blank
guilleiguaran_nancy
train
c13a04ad2af78d162eb7b126e9a77ec73c4c063f
diff --git a/chainlet/concurrency/base.py b/chainlet/concurrency/base.py index <HASH>..<HASH> 100644 --- a/chainlet/concurrency/base.py +++ b/chainlet/concurrency/base.py @@ -80,6 +80,64 @@ class StoredFuture(object): raise exception # re-raise exception from execution +class AsyncChainResults(object): + ...
moved AsyncChainResult to concurrency base
maxfischer2781_chainlet
train
1bcdfc0aec9a479442a1f38927e7e3a3102d8695
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -1,20 +1,36 @@ 'use strict'; +import accountInformation from './methods/account-information'; +import createEvent from './methods/create-event'; +import createNotificationChannel from './methods/create-notif...
improves style consistency in index.js
cronofy_cronofy-node
train
26f2563fae08a9abff6d681ba70338430c77e3e0
diff --git a/org.jenetics/src/jmh/java/org/jenetics/util/RandomEnginePerf.java b/org.jenetics/src/jmh/java/org/jenetics/util/RandomEnginePerf.java index <HASH>..<HASH> 100644 --- a/org.jenetics/src/jmh/java/org/jenetics/util/RandomEnginePerf.java +++ b/org.jenetics/src/jmh/java/org/jenetics/util/RandomEnginePerf.java @...
Update 'Random' performance tests.
jenetics_jenetics
train
2515cef22bb4e9bf1bdc66b5641cdbc51be25b3f
diff --git a/plugins/org.eclipse.xtext.util/src/org/eclipse/xtext/util/Notifications.java b/plugins/org.eclipse.xtext.util/src/org/eclipse/xtext/util/Notifications.java index <HASH>..<HASH> 100644 --- a/plugins/org.eclipse.xtext.util/src/org/eclipse/xtext/util/Notifications.java +++ b/plugins/org.eclipse.xtext.util/src...
[Xtext] more changes about notifications
eclipse_xtext-core
train
b33809b556a72bc885ddd3af623de87830ee00f5
diff --git a/pysos/sos_script.py b/pysos/sos_script.py index <HASH>..<HASH> 100755 --- a/pysos/sos_script.py +++ b/pysos/sos_script.py @@ -577,9 +577,9 @@ class SoS_Workflow: env.locals = WorkflowDict() # initial values try: - env.locals['home'] = os.environ['HOME'] + en...
1. set args.verbosity to int instead of string. 2. change variable home to HOME.
vatlab_SoS
train
9f61c75f3dbc7c463ac3610844d31b513f4171bb
diff --git a/Classes/Emogrifier.php b/Classes/Emogrifier.php index <HASH>..<HASH> 100644 --- a/Classes/Emogrifier.php +++ b/Classes/Emogrifier.php @@ -304,7 +304,7 @@ class Emogrifier { $cssKey = md5($css); if (!isset($this->caches[self::CACHE_KEY_CSS][$cssKey])) { // process the CSS file...
[BUGFIX] Wrong selector extraction from minified CSS
MyIntervals_emogrifier
train
e23df9c7e0ba9d1b495292cf8c23c0fe4192b26d
diff --git a/VERSION b/VERSION index <HASH>..<HASH> 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.7.3 +0.7.4 diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,9 +50,9 @@ copyright = u'2014, cobrateam' # built documents. # # The short X.Y version. -v...
setup: bump to <I>
cobrateam_splinter
train
bc4714c340c3be1a05b6a358c922d6476882b36c
diff --git a/web/src/main/java/uk/ac/ebi/atlas/trader/cache/CacheConfiguration.java b/web/src/main/java/uk/ac/ebi/atlas/trader/cache/CacheConfiguration.java index <HASH>..<HASH> 100644 --- a/web/src/main/java/uk/ac/ebi/atlas/trader/cache/CacheConfiguration.java +++ b/web/src/main/java/uk/ac/ebi/atlas/trader/cache/Cache...
change to unbounded experiment caches (ie: no max size) so we can always store all experiments in memory (as the number of experiment grows). The only bound will be available memory.
ebi-gene-expression-group_atlas
train
5e7565a8a84a0448a94a95b1da2c7393c9531b0d
diff --git a/src/main/java/org/fit/layout/impl/DefaultLogicalArea.java b/src/main/java/org/fit/layout/impl/DefaultLogicalArea.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/fit/layout/impl/DefaultLogicalArea.java +++ b/src/main/java/org/fit/layout/impl/DefaultLogicalArea.java @@ -61,6 +61,12 @@ public class D...
API extension: first area in a logical area
FitLayout_api
train
219d69834541e14830905c1ea73fbfac3101161f
diff --git a/test/tests/date.js b/test/tests/date.js index <HASH>..<HASH> 100644 --- a/test/tests/date.js +++ b/test/tests/date.js @@ -192,7 +192,8 @@ namespace('Date', function () { equal(params.date, 13, 'Set object should expose date'); // Issue #572 No disambiguation of separated units - assertDatePa...
Added extra test for last commit (#<I>).
andrewplummer_Sugar
train
76464c2b9db103ba5492ea0342de73934ffa7b45
diff --git a/openquake/nrmllib/risk/writers.py b/openquake/nrmllib/risk/writers.py index <HASH>..<HASH> 100644 --- a/openquake/nrmllib/risk/writers.py +++ b/openquake/nrmllib/risk/writers.py @@ -36,6 +36,10 @@ class LossCurveXMLWriter(object): :param float investigation_time: Investigation time (also know...
Add docstring for loss_type
gem_oq-engine
train
721bffa97b93b362fdb996cf82762849b7ef8ac5
diff --git a/core/block_render_svg_horizontal.js b/core/block_render_svg_horizontal.js index <HASH>..<HASH> 100644 --- a/core/block_render_svg_horizontal.js +++ b/core/block_render_svg_horizontal.js @@ -201,8 +201,7 @@ Blockly.BlockSvg.prototype.updateColour = function() { } // Render block stroke - var colorS...
Implement stroke colour as tertiary colour
LLK_scratch-blocks
train
d2ba97d86bc22790dffbbc9b95bdaea0c42ff415
diff --git a/contribs/gmf/src/search/component.js b/contribs/gmf/src/search/component.js index <HASH>..<HASH> 100644 --- a/contribs/gmf/src/search/component.js +++ b/contribs/gmf/src/search/component.js @@ -394,12 +394,6 @@ gmf.search.component.SearchController_ = class { * @type {string} * @export */...
Remove extra variable declaration in gmf.search controller
camptocamp_ngeo
train
4e503c9c42d5b1b310b64e079e4c7492fbe5e73a
diff --git a/src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php b/src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php +++ b/src/Illuminate/Console/Scheduling/ScheduleFinishCommand.php @@ -28,33 +28,14 @@ class...
Deferred resolving of scheduler.
laravel_framework
train
44e82d6541a7be1eed08ea155b34946733145e06
diff --git a/src/analyse/callback/iterate/ThroughArray.php b/src/analyse/callback/iterate/ThroughArray.php index <HASH>..<HASH> 100644 --- a/src/analyse/callback/iterate/ThroughArray.php +++ b/src/analyse/callback/iterate/ThroughArray.php @@ -94,8 +94,7 @@ class ThroughArray extends AbstractCallback $out...
Microoptimizations for the array analysis.
brainworxx_kreXX
train
09cebbdc59c118bb31f7e2fdf328ed60a03385c7
diff --git a/src/core/lombok/javac/JavacResolution.java b/src/core/lombok/javac/JavacResolution.java index <HASH>..<HASH> 100644 --- a/src/core/lombok/javac/JavacResolution.java +++ b/src/core/lombok/javac/JavacResolution.java @@ -12,6 +12,7 @@ import javax.tools.DiagnosticListener; import com.sun.tools.javac.code.B...
'val' in javac now errors out with an appropriate message on val x = { .. }, and arrays no longer cause "Symbol not found: Array" errors.
rzwitserloot_lombok
train
fab04c059757a2af4484210626fc0afc4271a084
diff --git a/openpnm/core/Base.py b/openpnm/core/Base.py index <HASH>..<HASH> 100644 --- a/openpnm/core/Base.py +++ b/openpnm/core/Base.py @@ -175,17 +175,19 @@ class Base(dict): prop = item.replace('pore.', '').replace('throat.', '') self.__setitem__(key+'.'+prop, value[item]) ...
Minor tweak so it only checks conflicts if key does not already exist
PMEAL_OpenPNM
train
4b73e0e9a47a1281e2d0576eef3c2d5edfffd4c4
diff --git a/lib/options.js b/lib/options.js index <HASH>..<HASH> 100644 --- a/lib/options.js +++ b/lib/options.js @@ -94,13 +94,18 @@ function merge(src, dest) { var topKeys = Object.keys(src); for (var i = 0; i < topKeys.length; i++) { var topKey = topKeys[i]; - var child = src[topKey]; - v...
Fixed a bug in the the `Options` code
APIDevTools_json-schema-ref-parser
train
338ac6a5b5d7c708279c9cf494b549af9090a57e
diff --git a/modules/page/html/render/private.js b/modules/page/html/render/private.js index <HASH>..<HASH> 100644 --- a/modules/page/html/render/private.js +++ b/modules/page/html/render/private.js @@ -28,6 +28,6 @@ exports.create = function (api) { }) ] - return api.feed.html.rollup(api.feed.pull.pri...
private: include <I> messages in window
ssbc_patchwork
train
3184fc8ef8db4fbee0ba5f1226e7f82bc766a416
diff --git a/neural/afni.py b/neural/afni.py index <HASH>..<HASH> 100644 --- a/neural/afni.py +++ b/neural/afni.py @@ -132,9 +132,10 @@ def cdf(dset,p,subbrick=0): command = ['cdf','-p2t',info.subbricks[subbrick]['stat'],str(p)] + info.subbricks[subbrick]['params'] return float(subprocess.check_output(command).spli...
thresh_at will now create file
azraq27_neural
train
ea3c728e59234ee9724e058494cf7e300990556c
diff --git a/src/main/java/de/btobastian/javacord/DiscordApi.java b/src/main/java/de/btobastian/javacord/DiscordApi.java index <HASH>..<HASH> 100644 --- a/src/main/java/de/btobastian/javacord/DiscordApi.java +++ b/src/main/java/de/btobastian/javacord/DiscordApi.java @@ -100,6 +100,7 @@ public interface DiscordApi { ...
Added @throws JavaDoc comment to DiscordApi#createBotInvite()
Javacord_Javacord
train
4b664cba8507aba49e1fa2afe5132d059b3713b4
diff --git a/inbound.go b/inbound.go index <HASH>..<HASH> 100644 --- a/inbound.go +++ b/inbound.go @@ -115,7 +115,7 @@ func (c *Connection) handleCallReq(frame *Frame) bool { response.commonStatsTags = call.commonStatsTags setResponseHeaders(call.headers, response.headers) - go c.dispatchInbound(call) + go c.disp...
Pass connID to new goroutine for debugging Make it easier to debug from stack traces by adding connID to newly created goroutine.
uber_tchannel-go
train
4173dd5bbf4f67c6171b5473d15059c6b1684d0b
diff --git a/package.json b/package.json index <HASH>..<HASH> 100644 --- a/package.json +++ b/package.json @@ -83,10 +83,10 @@ "test:user:watch": "karma start --no-single-run --auto-watch --browsers ChromeHeadlessNoSandbox test/integration/user/karma.conf.js", "test:user:watchc": "karma start --no-single-run ...
Set timeouts in mocha cli
CartoDB_carto-vl
train
7d058b4c8198d1f83e30d60b67d33bf6d52a705d
diff --git a/go/vt/vtctld/action_repository.go b/go/vt/vtctld/action_repository.go index <HASH>..<HASH> 100644 --- a/go/vt/vtctld/action_repository.go +++ b/go/vt/vtctld/action_repository.go @@ -51,7 +51,8 @@ type actionTabletRecord struct { // ActionRepository is a repository of actions that can be performed // on...
Addressed all comments by enisoc and mberlin
vitessio_vitess
train
594eed5d2bd8cbfc4580ba06f828ac32bb01ec53
diff --git a/library/src/main/java/com/coolerfall/download/DownloadManager.java b/library/src/main/java/com/coolerfall/download/DownloadManager.java index <HASH>..<HASH> 100644 --- a/library/src/main/java/com/coolerfall/download/DownloadManager.java +++ b/library/src/main/java/com/coolerfall/download/DownloadManager.ja...
Fix breakpoint downloading for OkHttpDownloader, and add coy method in Downloader so we can get a new instance when create a new DownloadRequest
Coolerfall_Android-HttpDownloadManager
train
8404a356b2f80cc8ef03dececaaccc8f10e19515
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * [improvement] Add `add` alias for `shelly config create` * [improvement] Add `new` and `create` aliases for `shelly user add` * [improvement] Add `new` alias for `shelly backup create` +* [imp...
Add `new` and `create` aliases for `shelly organization add` [#<I>]
Ragnarson_shelly
train
d8b04ecb8aa51d21590f3d655775292a045a3ac2
diff --git a/calls.go b/calls.go index <HASH>..<HASH> 100644 --- a/calls.go +++ b/calls.go @@ -179,6 +179,23 @@ func (c *CallService) GetCallsInRange(start time.Time, end time.Time, data url.V } } +// GetNextCallsInRange retrieves the page at the nextPageURI and continues +// retrieving pages until any results are...
Add start/end filters if you have a NextPageURI This way you can start with a NextPageURI and still only get resources that match the given time range.
saintpete_twilio-go
train
ae5d46af448fc33ef74eee99c5a3d686c8d26e72
diff --git a/tests/test_mongoengine.py b/tests/test_mongoengine.py index <HASH>..<HASH> 100644 --- a/tests/test_mongoengine.py +++ b/tests/test_mongoengine.py @@ -61,10 +61,20 @@ class MongoEngineTestCase(unittest.TestCase): db_name = os.environ.get('MONGO_DATABASE', 'factory_boy_test') db_host = os.environ.g...
Fix tests with latest pymongo/mongoengine. mongoengine>=<I> and pymongo>=<I> require extra parameters: - The server connection timeout was set too high - We have to define a ``read_preference``.
FactoryBoy_factory_boy
train
af046d87b2ed5059b59f14942e7265f7a14067b4
diff --git a/modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php b/modules/social_features/social_follow_content/src/Plugin/ActivityContext/FollowContentActivityContext.php index <HASH>..<HASH> 100644 --- a/modules/social_features/social_follow_content/src/Plugin/Ac...
Issue #<I> by sjoerdvandervis: Alter the FollowContentActivityContext so that no notification is sent towards the content owner. This because the content owner will receive a notification anyway as there has been activity with his content
goalgorilla_open_social
train
d9fb197300fda426347e57c0bd48aa7c2a47b8d3
diff --git a/splinter/browser.py b/splinter/browser.py index <HASH>..<HASH> 100644 --- a/splinter/browser.py +++ b/splinter/browser.py @@ -1,24 +1,15 @@ # -*- coding: utf-8 -*- -import warnings - from splinter.driver.webdriver.firefox import WebDriver as FirefoxWebDriver from splinter.driver.webdriver.chrome import ...
Refactoring deprecation method for driver classes
cobrateam_splinter
train
2bfc558ec9c83573734efed416e651d486a1243c
diff --git a/lib/resource/index.js b/lib/resource/index.js index <HASH>..<HASH> 100644 --- a/lib/resource/index.js +++ b/lib/resource/index.js @@ -212,12 +212,19 @@ var instnace = new Resource({ pk:'user_id', defaultFormat:'text/xml', collection:'users' - listMethodsAllowed:{ - get:true, - put:false, - post:fa...
fixing up the resource documentaion had the old methodsallowed junk in there
node-tastypie_tastypie
train
a3f7dd396c903409d3f72199e610ab3a9c01dbd0
diff --git a/dateparser/freshness_date_parser.py b/dateparser/freshness_date_parser.py index <HASH>..<HASH> 100644 --- a/dateparser/freshness_date_parser.py +++ b/dateparser/freshness_date_parser.py @@ -69,10 +69,10 @@ class FreshnessDateDataParser(object): break td = relativedelta(**kwa...
parsing future dates - corrections
scrapinghub_dateparser
train
06c185321c4d6feea0894146db0547caf9b4768a
diff --git a/src/fx/fx.js b/src/fx/fx.js index <HASH>..<HASH> 100644 --- a/src/fx/fx.js +++ b/src/fx/fx.js @@ -422,6 +422,13 @@ jQuery.extend({ // The styles var y = z.el.style; + + // Store display property + var oldDisplay = jQuery.css(z.el, 'display'); + // Set display property to block for animation + ...
Restore display property in fx module after animation is completed.
jquery_jquery
train
09bc8259b1b9e21bb636d920fa30130d32ccf859
diff --git a/fulltext/__init__.py b/fulltext/__init__.py index <HASH>..<HASH> 100644 --- a/fulltext/__init__.py +++ b/fulltext/__init__.py @@ -243,21 +243,22 @@ def get(path_or_file, default=SENTINAL, mime=None, name=None, backend=None, Get document full text. Accepts a path or file-like object. - If giv...
docstring + small refactoring
btimby_fulltext
train
86f23c8c37364e2df73c6cd2e42395ced8f4d1fd
diff --git a/cpo-core/src/main/java/org/synchronoss/cpo/meta/domain/CpoAttribute.java b/cpo-core/src/main/java/org/synchronoss/cpo/meta/domain/CpoAttribute.java index <HASH>..<HASH> 100644 --- a/cpo-core/src/main/java/org/synchronoss/cpo/meta/domain/CpoAttribute.java +++ b/cpo-core/src/main/java/org/synchronoss/cpo/met...
made sure that a bad transform class provides a good error message.
synchronoss_cpo-api
train
dbc37e09f6ff03157f891826ad958155d79dfb53
diff --git a/src/js/utils/helpers.js b/src/js/utils/helpers.js index <HASH>..<HASH> 100644 --- a/src/js/utils/helpers.js +++ b/src/js/utils/helpers.js @@ -354,6 +354,8 @@ export function createIframe(config) { if (isFunction(callback)) { callback(); } + + iframe.onload = null; ...
Remove iframe on load after it initialised
biati-digital_glightbox
train
96a548867e5e4eb3f4d766cdd07343f4d8e633e2
diff --git a/giddy/__init__.py b/giddy/__init__.py index <HASH>..<HASH> 100644 --- a/giddy/__init__.py +++ b/giddy/__init__.py @@ -1,4 +1,4 @@ -__version__ = "2.0.0" +__version__ = "2.1.0" # __version__ has to be defined in the first line """
prepare for a new release <I> with new features on rank Markov
pysal_giddy
train
70c162a406b1b508c0e54d8a9b6c48b3cc1b027f
diff --git a/containerizer/system/process_reaper.go b/containerizer/system/process_reaper.go index <HASH>..<HASH> 100644 --- a/containerizer/system/process_reaper.go +++ b/containerizer/system/process_reaper.go @@ -22,7 +22,7 @@ func StartReaper(logger lager.Logger) *ProcessReaper { p := &ProcessReaper{ mu: n...
Ensure reaper.Start populates channel map before reaper.Wait runs. Increase SIGCHLD channel buffer size. Increase test timeout (test was taking close to the timeout). [#<I>]
cloudfoundry-attic_garden-linux
train
83732f24ded31bd453c4787c466e6fda35d2b5e8
diff --git a/testing/adapters/gtw_rtr_moke/adapter.go b/testing/adapters/gtw_rtr_moke/adapter.go index <HASH>..<HASH> 100644 --- a/testing/adapters/gtw_rtr_moke/adapter.go +++ b/testing/adapters/gtw_rtr_moke/adapter.go @@ -1,25 +1,51 @@ // Copyright © 2015 The Things Network // Use of this source code is governed by ...
[router] Implements basic mock upadapter
TheThingsNetwork_ttn
train
b7f807418c5679ed4dcf29e5b316ce98431653fe
diff --git a/bin/phantomas.js b/bin/phantomas.js index <HASH>..<HASH> 100755 --- a/bin/phantomas.js +++ b/bin/phantomas.js @@ -64,6 +64,7 @@ program .describe('viewport', 'phantomJS viewport dimensions [width]x[height [default: 1280x1024]') .describe('wait-for-event', 'wait for a given phantomas event before genera...
stop-at-onload: stop phantomas immediately after onload event (#<I>)
macbre_phantomas
train
1fc3257f6e7627a11e37466cd449ca0533fc0666
diff --git a/Godeps/Godeps.json b/Godeps/Godeps.json index <HASH>..<HASH> 100644 --- a/Godeps/Godeps.json +++ b/Godeps/Godeps.json @@ -63,7 +63,7 @@ }, { "ImportPath": "github.com/endophage/gotuf", - "Rev": "5be7693587dc2f3c6b35fd1394fcc4e098b4f643" + "Rev": "5b7f722ae396b27c59ab5be5e7314a51d1813c29" }...
updating gotuf dep with some better http error handling.
theupdateframework_notary
train
0c440099ce4eb3dc9a9b3e67ceb95450c2c4e492
diff --git a/core/src/main/java/hudson/util/ProcessTree.java b/core/src/main/java/hudson/util/ProcessTree.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/util/ProcessTree.java +++ b/core/src/main/java/hudson/util/ProcessTree.java @@ -428,15 +428,15 @@ public abstract class ProcessTree implements Iterab...
Ugly hack to fix destroyProcess for Java8
jenkinsci_jenkins
train
9fc25a5723f7e1a6f5c42d25c08cbfe765e6125a
diff --git a/core-bundle/contao/modules/ModuleLogin.php b/core-bundle/contao/modules/ModuleLogin.php index <HASH>..<HASH> 100644 --- a/core-bundle/contao/modules/ModuleLogin.php +++ b/core-bundle/contao/modules/ModuleLogin.php @@ -127,18 +127,18 @@ class ModuleLogin extends \Module global $objPage; $this->imp...
[Core] Reverse 'Do not redirect to protected pages after logout (see #<I>)'
contao_contao
train
579f72bacfad84c24c36596a57c86ba050b98dab
diff --git a/sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/xunit/CxxXunitSensor.java b/sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/xunit/CxxXunitSensor.java index <HASH>..<HASH> 100644 --- a/sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/xunit/CxxXunitSensor.java +++ b/sonar-cxx-plugin/src/main/ja...
Make the plugin compatible with SonarQube <I> #<I> use the adviced pattern in one place more
SonarOpenCommunity_sonar-cxx
train
2eb7bb15e771f13192968cd4657c78f76b0799fe
diff --git a/src/transformers/trainer.py b/src/transformers/trainer.py index <HASH>..<HASH> 100755 --- a/src/transformers/trainer.py +++ b/src/transformers/trainer.py @@ -1233,7 +1233,9 @@ class Trainer: else: debug_overflow = DebugUnderflowOverflow(self.model) # noqa - delay_opt...
Updates in Trainer to support new features in SM Model Parallel library (#<I>) * Create optimizer after model creation for SMP * update dp_rank to rdp_rank for opt_state_dict * update world_size and process_index for smp * Address comments * Lint fix
huggingface_pytorch-pretrained-BERT
train
7ead685571a44e1f0ec7bb0c5846b4b9e2b932c6
diff --git a/lib/project/ruby_motion_query/app.rb b/lib/project/ruby_motion_query/app.rb index <HASH>..<HASH> 100644 --- a/lib/project/ruby_motion_query/app.rb +++ b/lib/project/ruby_motion_query/app.rb @@ -8,7 +8,7 @@ end end - class RMQApp + class RMQApp < PMApplication class << self def con...
Added some stuff to rm.app and rm.device
infinitered_bluepotion
train
d85ed0baa3f11ccc14615aa7b5832bc23b124cd9
diff --git a/code/potrans/src/test/java/org/overturetool/potrans/external_tools/CommandLineProcessTest.java b/code/potrans/src/test/java/org/overturetool/potrans/external_tools/CommandLineProcessTest.java index <HASH>..<HASH> 100644 --- a/code/potrans/src/test/java/org/overturetool/potrans/external_tools/CommandLinePro...
Fixed test method testSetProcessInputOutputInterleaved by relaxing (even more) the assertion for the expected output. git-svn-id: <URL>
overturetool_overture
train
961450855e530fa58135eec492c9d8ea1898abee
diff --git a/_test/_stub/StubSiteLibraryImpl.php b/_test/_stub/StubSiteLibraryImpl.php index <HASH>..<HASH> 100644 --- a/_test/_stub/StubSiteLibraryImpl.php +++ b/_test/_stub/StubSiteLibraryImpl.php @@ -63,4 +63,60 @@ class StubSiteLibraryImpl implements SiteLibrary } return null; } + + /** + ...
Added method stubs to stubs
budde377_Part
train
21239a350dbee13edb4f1aa17ee7c309e3f341ed
diff --git a/hack/.golint_failures b/hack/.golint_failures index <HASH>..<HASH> 100644 --- a/hack/.golint_failures +++ b/hack/.golint_failures @@ -567,12 +567,9 @@ staging/src/k8s.io/client-go/rest/fake staging/src/k8s.io/client-go/rest/watch staging/src/k8s.io/client-go/scale staging/src/k8s.io/client-go/scale/fake...
fix golint failures in client-go/scale/scheme/appsint, client-go/scale/scheme/extensionsint, client-go/scale/scheme
kubernetes_kubernetes
train
cc1ab92e818ecae54b359c1c2651bbae2ea7855c
diff --git a/test-client.js b/test-client.js index <HASH>..<HASH> 100644 --- a/test-client.js +++ b/test-client.js @@ -1,5 +1,6 @@ var ws = require('./') var test = require('tape') +var Buffer = require('safe-buffer').Buffer test('echo works', function(t) { var stream = ws('ws://localhost:8343') @@ -9,21 +10,21...
Use safe-buffer also in tests.
maxogden_websocket-stream
train
781d0349568dd5e6ed099f5858f07773b815d9fe
diff --git a/app/scripts/directives/vjs.directive.js b/app/scripts/directives/vjs.directive.js index <HASH>..<HASH> 100644 --- a/app/scripts/directives/vjs.directive.js +++ b/app/scripts/directives/vjs.directive.js @@ -178,6 +178,7 @@ function initVideoJs(vid, params, element, mediaChangedHandler) { ...
Started work on implementing switching media for vjs-video - #5
arm0th_vjs-video
train
297ae831e2615522164b1b431e81f9bf65a9da42
diff --git a/src/DM/AjaxCom/Resources/public/js/ajaxcom.js b/src/DM/AjaxCom/Resources/public/js/ajaxcom.js index <HASH>..<HASH> 100755 --- a/src/DM/AjaxCom/Resources/public/js/ajaxcom.js +++ b/src/DM/AjaxCom/Resources/public/js/ajaxcom.js @@ -3,10 +3,30 @@ (function($) { "use strict"; + $.ajaxcomProperties =...
set scroller on ajax complete
everlutionsk_AjaxCom
train
0f9dc55dffbaa40d58debde4870015c89997fbb2
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -24,7 +24,7 @@ convert = function(source) { for (i = 0, linesLength = lines.length; i < linesLength; i++) { line = lines[i]; if (line.charAt(0) === " ") { - currentObj[currentKey] += line; + currentObj[c...
Strip leading space when wrapped lines are joined. From RFC <I>: "a long line can be split between any two characters by inserting a CRLF immediately followed by a single linear white-space character (i.e., SPACE or HTAB). Any sequence of CRLF followed immediately by a single linear white-space character is ignored ...
adrianlee44_ical2json
train
cf6cc381f8764d7988d2df048743ba0d84fe286c
diff --git a/mode/yaml-frontmatter/yaml-frontmatter.js b/mode/yaml-frontmatter/yaml-frontmatter.js index <HASH>..<HASH> 100644 --- a/mode/yaml-frontmatter/yaml-frontmatter.js +++ b/mode/yaml-frontmatter/yaml-frontmatter.js @@ -17,55 +17,55 @@ var yamlMode = CodeMirror.getMode(config, "yaml") var innerMode = C...
[yaml-frontmatter mode] Treat the start of the document as being in the base mode For purposes of indentation and such. Issue <URL>
codemirror_CodeMirror
train
f89b9f2a2130ce548ca7ebb20fa1311bf714aa10
diff --git a/src/com/google/javascript/jscomp/DefaultPassConfig.java b/src/com/google/javascript/jscomp/DefaultPassConfig.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/DefaultPassConfig.java +++ b/src/com/google/javascript/jscomp/DefaultPassConfig.java @@ -383,12 +383,13 @@ public final class ...
Fix a couple small mistakes I missed these in "Add a featureSet method..." ------------- Created by MOE: <URL>
google_closure-compiler
train
c0889e1f83ffbc09888b23624522a51f7a5f6aa1
diff --git a/shutit_util.py b/shutit_util.py index <HASH>..<HASH> 100644 --- a/shutit_util.py +++ b/shutit_util.py @@ -231,6 +231,12 @@ def util_raw_input(prompt='', default=None, ispass=False, use_readline=True): sanitize_terminal() if shutit_global.shutit_global_object.interactive == 0: return default + # See:...
bugfix: allow for py2
ianmiell_shutit
train
bd903f35cfbe26cfd73d043544bb40634effa304
diff --git a/src/noselect.js b/src/noselect.js index <HASH>..<HASH> 100644 --- a/src/noselect.js +++ b/src/noselect.js @@ -22,9 +22,9 @@ function yesuserselect() { } export function noselect(selection) { - return ("onselectstart" in event.view ? noselectstart : nouserselect)(selection); + return ("onselectstart" ...
Must test an element for onselectstart. The "onselectstart" in window is always false.
d3_d3-drag
train
074c03b7d6b65b3245f5f382fbedc4fa45818cb5
diff --git a/python-xbrl/parser.py b/python-xbrl/parser.py index <HASH>..<HASH> 100644 --- a/python-xbrl/parser.py +++ b/python-xbrl/parser.py @@ -53,7 +53,7 @@ class XBRLParser(object): # Store the headers xbrl_file = XBRLPreprocessedFile(file_handle) xbrl = soup_maker(xbrl_file.fh) - ...
another bug where documents can have different forms of xbrl tag
greedo_python-xbrl
train
6f6713669a8a32af90a73d03a7fa24e6154327f2
diff --git a/git/test/test_index.py b/git/test/test_index.py index <HASH>..<HASH> 100644 --- a/git/test/test_index.py +++ b/git/test/test_index.py @@ -801,7 +801,7 @@ class TestIndex(TestBase): def test_add_a_file_with_wildcard_chars(self, rw_dir): # see issue #407 fp = os.path.join(rw_dir, '[.ex...
fixed unittest of issue #<I> for Python3
gitpython-developers_GitPython
train
26fc8ee2aa3799fb682b67c6ee077c89cd5f3385
diff --git a/core/src/main/java/com/emc/ia/sdk/support/io/SingleHashAssembler.java b/core/src/main/java/com/emc/ia/sdk/support/io/SingleHashAssembler.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/emc/ia/sdk/support/io/SingleHashAssembler.java +++ b/core/src/main/java/com/emc/ia/sdk/support/io/SingleHash...
Use SHA-<I> by default rather than SHA-1
Enterprise-Content-Management_infoarchive-sip-sdk
train
9bac3616546d13d89480651c50916aa7d8ff6958
diff --git a/src/main/java/org/eobjects/analyzer/connection/CsvDatastore.java b/src/main/java/org/eobjects/analyzer/connection/CsvDatastore.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/eobjects/analyzer/connection/CsvDatastore.java +++ b/src/main/java/org/eobjects/analyzer/connection/CsvDatastore.java @@ -3...
Added a "(none)" quote char to CSV datastores
datacleaner_AnalyzerBeans
train
3229b3b35c6e7da68598eb59ac1e50a7239fc078
diff --git a/lib/chef/cookbook/synchronizer.rb b/lib/chef/cookbook/synchronizer.rb index <HASH>..<HASH> 100644 --- a/lib/chef/cookbook/synchronizer.rb +++ b/lib/chef/cookbook/synchronizer.rb @@ -68,6 +68,8 @@ class Chef @eager_segments.freeze @cookbooks_by_name, @events = cookbooks_by_name, events + + ...
Do not update the path in the cookbook_manifest with the full file name.
chef_chef
train
ede1e0c17745f52558db2c3f31e48acbc7cb0ba7
diff --git a/lib/ProMotion/table/cell/table_view_cell_module.rb b/lib/ProMotion/table/cell/table_view_cell_module.rb index <HASH>..<HASH> 100644 --- a/lib/ProMotion/table/cell/table_view_cell_module.rb +++ b/lib/ProMotion/table/cell/table_view_cell_module.rb @@ -19,6 +19,17 @@ module ProMotion set_accessory_type...
Ability to ACTUALLY change image and remote_image size The docs show that you can change the image and remote image size but it's not actually implemented anywhere. Complete with tests.
infinitered_ProMotion
train
1695dc1c2e451bcd301eef5811b7fcd9bb51b342
diff --git a/source/org/jasig/portal/layout/UserLayoutNode.java b/source/org/jasig/portal/layout/UserLayoutNode.java index <HASH>..<HASH> 100644 --- a/source/org/jasig/portal/layout/UserLayoutNode.java +++ b/source/org/jasig/portal/layout/UserLayoutNode.java @@ -33,7 +33,6 @@ * */ - package org.jasig.portal.layo...
Fix the setDepth method which was erroneously setting the priority instead of the depth. Also fixed javadoc comments. git-svn-id: <URL>
Jasig_uPortal
train
f148ee4ac92dad449e2c3b8e38c998f2e8e95774
diff --git a/fs/copy_linux.go b/fs/copy_linux.go index <HASH>..<HASH> 100644 --- a/fs/copy_linux.go +++ b/fs/copy_linux.go @@ -7,6 +7,7 @@ import ( "github.com/containerd/continuity/sysx" "github.com/pkg/errors" + "golang.org/x/sys/unix" ) func copyFileInfo(fi os.FileInfo, name string) error { @@ -21,7 +22,8 ...
fs: Change CopyDir's utimes call to not follow symlinks Following symlinks does not look like it was intended behavior here, and fails if the symlink target has not been copied yet.
tonistiigi_fsutil
train
9ab8a19f282f4f2871e122b8dfb06cad87b96ac8
diff --git a/Templating/Tests/Adapter/ValueObjectAdapterTest.php b/Templating/Tests/Adapter/ValueObjectAdapterTest.php index <HASH>..<HASH> 100644 --- a/Templating/Tests/Adapter/ValueObjectAdapterTest.php +++ b/Templating/Tests/Adapter/ValueObjectAdapterTest.php @@ -11,8 +11,9 @@ namespace eZ\Publish\Core\MVC\Legacy\Te...
CS: Fixed several issues not yet reported by Code Sniffer * Missing headers * Using FQ class name instead of importing them
ezsystems_LegacyBridge
train
f85991333f64ddbcfa7c708e30650f0ff6adef45
diff --git a/setup/test_integration.py b/setup/test_integration.py index <HASH>..<HASH> 100644 --- a/setup/test_integration.py +++ b/setup/test_integration.py @@ -41,7 +41,7 @@ def test_brain_jobs(rethink): r.db("Brain").table('Jobs').run(rethink) def test_audit(rethink): - r.db_list().contains('Audit').run(...
undo what i did wrong added the rethink arguement back into audit
ramrod-project_database-brain
train
54b5fcad972c6733427f08848e997570a68d2da7
diff --git a/buildAll_unix.py b/buildAll_unix.py index <HASH>..<HASH> 100755 --- a/buildAll_unix.py +++ b/buildAll_unix.py @@ -12,7 +12,7 @@ NASSL_INSTALL_DIR = '' if architecture()[0] == '64bit': if platform == 'darwin': OPENSSL_TARGET = 'darwin64-x86_64-cc' - NASSL_INSTALL_DIR = join(BUILD_DIR, ...
Update build script for OX <I>
nabla-c0d3_nassl
train
7bad8c1665a3dedc05f3724da484842e0db04c7a
diff --git a/octarine-core/src/main/java/com/codepoetics/octarine/records/Record.java b/octarine-core/src/main/java/com/codepoetics/octarine/records/Record.java index <HASH>..<HASH> 100644 --- a/octarine-core/src/main/java/com/codepoetics/octarine/records/Record.java +++ b/octarine-core/src/main/java/com/codepoetics/oc...
Rune of warding against NPE
poetix_octarine
train
4de39d61986939c1f98ba437ad5166352e352af3
diff --git a/lib/serializer-utils.js b/lib/serializer-utils.js index <HASH>..<HASH> 100644 --- a/lib/serializer-utils.js +++ b/lib/serializer-utils.js @@ -274,7 +274,7 @@ module.exports = function (collectionName, record, payload, opts) { // Top-level data. var data = { type: getType(collectionName, record)...
Regression fixed: Force the ID to be a String
SeyZ_jsonapi-serializer
train