hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
405edd34e54aa1a53375e4c341d4622e1b04a0c5 | diff --git a/src/Plugin/CodeGenerator.php b/src/Plugin/CodeGenerator.php
index <HASH>..<HASH> 100644
--- a/src/Plugin/CodeGenerator.php
+++ b/src/Plugin/CodeGenerator.php
@@ -64,6 +64,13 @@ class CodeGenerator
protected $sJsReady = null;
/**
+ * Default library URL
+ *
+ * @var string
+ */
+... | Updated js library url. | jaxon-php_jaxon-core | train |
2ef7d20dff7f6053a43e4e9c0c4740478a042fc2 | diff --git a/src/legacy/interface.js b/src/legacy/interface.js
index <HASH>..<HASH> 100644
--- a/src/legacy/interface.js
+++ b/src/legacy/interface.js
@@ -591,19 +591,21 @@ function handleClickHijack(env, button) {
function listenClick(env, container, button, clickHandler, condition) {
+ let element = (containe... | Only listen to click on container when a tag | paypal_paypal-checkout-components | train |
a27fb1c3acd5318c87e2b593910b6f1377fb7b2f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ LICENSE = 'LGPLv3'
AUTHOR = 'Oskar Weser'
EMAIL = 'oskar.weser@gmail.com'
URL = 'https://github.com/mcocdawc/chemcoord'
-INSTALL_REQUIRES = ['numpy', 'pandas>=0.20', 'sortedcontainers']
+INSTALL_REQUIRES = ['... | MAINT: Include Sympy in setup.py | mcocdawc_chemcoord | train |
aa2e0615b7b93d27026ae1a85adb2906bc3c5d09 | diff --git a/demos/playground/playground.js b/demos/playground/playground.js
index <HASH>..<HASH> 100644
--- a/demos/playground/playground.js
+++ b/demos/playground/playground.js
@@ -86,48 +86,30 @@ app.prototype.loopFunc = function() {
var text = app.getDOMText2( this.$editor[0] ),
hash = app.getDOMHash( this... | Input implementation that seems to work in IE, FF and Chrome (all tested on Windows only) | wikimedia_parsoid | train |
8cec39990d113f9a38e5d6c514916461c624227e | diff --git a/azkaban-common/src/main/java/azkaban/project/DirectoryYamlFlowLoader.java b/azkaban-common/src/main/java/azkaban/project/DirectoryYamlFlowLoader.java
index <HASH>..<HASH> 100644
--- a/azkaban-common/src/main/java/azkaban/project/DirectoryYamlFlowLoader.java
+++ b/azkaban-common/src/main/java/azkaban/projec... | Fix the case where there is no edge for the the flow. (#<I>) | azkaban_azkaban | train |
f41445debf3e225bb80a9a7bbbd406956fbf2f23 | diff --git a/ceph_deploy/cli.py b/ceph_deploy/cli.py
index <HASH>..<HASH> 100644
--- a/ceph_deploy/cli.py
+++ b/ceph_deploy/cli.py
@@ -53,6 +53,10 @@ def get_parser():
help='the current installed version of ceph-deploy',
)
parser.add_argument(
+ '--username',
+ help='the username to... | add a global option to allow a different username | ceph_ceph-deploy | train |
e7633403702a6930c54aaa6e86a2324372a032f1 | diff --git a/hrp/boomer.go b/hrp/boomer.go
index <HASH>..<HASH> 100644
--- a/hrp/boomer.go
+++ b/hrp/boomer.go
@@ -95,27 +95,27 @@ func (b *HRPBoomer) convertBoomerTask(testcase *TestCase, rendezvousList []*Rend
Name: config.Name,
Weight: config.Weight,
Fn: func() {
- sessionRunner := hrpRunner.NewSessionR... | fix: failed to parse testcase config while load testing | HttpRunner_HttpRunner | train |
31a35807645bab26cf01f0f7850074bde151138b | diff --git a/test/workers.test.js b/test/workers.test.js
index <HASH>..<HASH> 100644
--- a/test/workers.test.js
+++ b/test/workers.test.js
@@ -18,7 +18,13 @@ describe('workers', () => {
expect(() => { new Workers();}).toThrow();
});
- const workers = new Workers(customWorkersOptions);
+ let workers,... | feat(registerWorker): add tests for unregister and missing work function
related to CAM-<I> | camunda_camunda-external-task-client-js | train |
43b445aed5cc1706f631e90474fd207858bd1979 | diff --git a/contrib/codeanalysis/src/python/pants/contrib/codeanalysis/tasks/indexable_java_targets.py b/contrib/codeanalysis/src/python/pants/contrib/codeanalysis/tasks/indexable_java_targets.py
index <HASH>..<HASH> 100644
--- a/contrib/codeanalysis/src/python/pants/contrib/codeanalysis/tasks/indexable_java_targets.p... | Fix a silly bug when computing indexable targets. (#<I>) | pantsbuild_pants | train |
625606b9f75da42fd95247460b8f60bd1807c0f4 | diff --git a/Gemfile b/Gemfile
index <HASH>..<HASH> 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,4 +8,5 @@ gem 'thor', '~> 0.14.0'
if RUBY_VERSION < "1.9"
gem "i18n", "~> 0.6.0"
gem "activesupport", "~> 3.2.21"
+ gem "rake", "~> 10.5"
end
diff --git a/spec/acceptance/bundle_with_custom_path_spec.rb b/spec/acceptan... | Lock Rake to <I>.x.x for Ruby <I> | thoughtbot_appraisal | train |
1b220c9a8f891f544851a7bc5aec3b446d2c4ba4 | diff --git a/geomet/wkt.py b/geomet/wkt.py
index <HASH>..<HASH> 100644
--- a/geomet/wkt.py
+++ b/geomet/wkt.py
@@ -193,9 +193,9 @@ def _round_and_pad(value, decimals):
elif decimals == 0:
# if get a `decimals` value of 0, we want to return an int.
- return str(int(round(value, decimals)))
+ ... | Use repr instead of str to avoid floating point rounding in python2 | geomet_geomet | train |
63122fdafc0b7d8f46f846b2caae4abea65bdd35 | diff --git a/lib/jekyll/generators/pagination.rb b/lib/jekyll/generators/pagination.rb
index <HASH>..<HASH> 100644
--- a/lib/jekyll/generators/pagination.rb
+++ b/lib/jekyll/generators/pagination.rb
@@ -17,7 +17,7 @@ module Jekyll
if template = template_page(site)
paginate(site, template)
... | add a space between "find" and "an" | jekyll_jekyll | train |
d952868f4b2e8bd78d6513a35f473beaebe1ad6c | diff --git a/lib/actions/package-json.js b/lib/actions/package-json.js
index <HASH>..<HASH> 100644
--- a/lib/actions/package-json.js
+++ b/lib/actions/package-json.js
@@ -21,7 +21,16 @@ module.exports = (cls) =>
'resolvePackageJsonDependencies requires an object'
);
} else if (!Array.isArray(... | Resolve dependencies empty versions. | yeoman_generator | train |
3f34c2af797cfefad244aeef540d77a139c66e78 | diff --git a/src/Models/MetadataKeyMethodNamesTrait.php b/src/Models/MetadataKeyMethodNamesTrait.php
index <HASH>..<HASH> 100644
--- a/src/Models/MetadataKeyMethodNamesTrait.php
+++ b/src/Models/MetadataKeyMethodNamesTrait.php
@@ -51,9 +51,8 @@ trait MetadataKeyMethodNamesTrait
return [null, null];
... | Trim obsolete polyglot key-name method candidates | Algo-Web_POData-Laravel | train |
ae5f1bf9f588cd57c518bb741288dfa6af631ed1 | diff --git a/src/parser.js b/src/parser.js
index <HASH>..<HASH> 100644
--- a/src/parser.js
+++ b/src/parser.js
@@ -180,6 +180,9 @@ export class Parser extends Tokenizer {
let startLocation = this.getLocation();
let {directives, statements} = this.parseBody();
+ if (!this.match(TokenType.EOS)) {
+ th... | ensure no tokens remain after parsing Module | shapesecurity_shift-parser-js | train |
50177573a7fc8c17e19041063d10715923b97a2b | diff --git a/lib/gds_api/test_helpers/content_api.rb b/lib/gds_api/test_helpers/content_api.rb
index <HASH>..<HASH> 100644
--- a/lib/gds_api/test_helpers/content_api.rb
+++ b/lib/gds_api/test_helpers/content_api.rb
@@ -71,6 +71,24 @@ module GdsApi
end
end
+ def content_api_does_not_have_tag(tag_t... | Add "does not have" stubs for content api tags. | alphagov_gds-api-adapters | train |
5e31d5fd26eb64ba26b538ed361db2442164ecb1 | diff --git a/binding/cxf/src/main/java/io/tracee/cxf/client/TraceeCxfFeature.java b/binding/cxf/src/main/java/io/tracee/cxf/client/TraceeCxfFeature.java
index <HASH>..<HASH> 100644
--- a/binding/cxf/src/main/java/io/tracee/cxf/client/TraceeCxfFeature.java
+++ b/binding/cxf/src/main/java/io/tracee/cxf/client/TraceeCxfFe... | Switch lines to clarify request/response handling | tracee_tracee | train |
dc75cdb68a15a9f979e78e5f0cc91cabc5327c43 | diff --git a/openquake/server/db/actions.py b/openquake/server/db/actions.py
index <HASH>..<HASH> 100644
--- a/openquake/server/db/actions.py
+++ b/openquake/server/db/actions.py
@@ -237,8 +237,9 @@ def list_outputs(db, job_id, full=True):
break
out.append('%4d | %s' % (o.id, o.display_nam... | Better logging [skip CI] | gem_oq-engine | train |
4343f8ebb5b9aa09ef7aec786b228d14cc7514c5 | diff --git a/manifest.php b/manifest.php
index <HASH>..<HASH> 100755
--- a/manifest.php
+++ b/manifest.php
@@ -26,7 +26,7 @@ return array(
'label' => 'QTI item model',
'description' => 'TAO QTI item model',
'license' => 'GPL-2.0',
- 'version' => '2.7.4',
+ 'version' => '2.7.5',
'author' => 'Open Ass... | fixed version number for multi-column | oat-sa_extension-tao-itemqti | train |
93d9a56495b021c7e940832db671489c557227fa | diff --git a/src/Storage/Field/Type/RelationType.php b/src/Storage/Field/Type/RelationType.php
index <HASH>..<HASH> 100644
--- a/src/Storage/Field/Type/RelationType.php
+++ b/src/Storage/Field/Type/RelationType.php
@@ -215,11 +215,11 @@ class RelationType extends FieldTypeBase
$platform = $query->getConnection... | make these fields force distinct to avoid very long result columns showing up | bolt_bolt | train |
eca337f2ffe463f255877f0fa57107a0baf6ed0c | diff --git a/examples/mods/modules/bk_location.js b/examples/mods/modules/bk_location.js
index <HASH>..<HASH> 100644
--- a/examples/mods/modules/bk_location.js
+++ b/examples/mods/modules/bk_location.js
@@ -9,6 +9,7 @@ var api = bkjs.api;
var core = bkjs.core;
var lib = bkjs.lib;
var logger = bkjs.logger;
+const bku... | moved bkjs-utils location into examples | vseryakov_backendjs | train |
22e6f63e1aa7f996c2b1f0e73ce728b195f5324f | diff --git a/spyder/app/mainwindow.py b/spyder/app/mainwindow.py
index <HASH>..<HASH> 100644
--- a/spyder/app/mainwindow.py
+++ b/spyder/app/mainwindow.py
@@ -1153,8 +1153,6 @@ class MainWindow(QMainWindow):
is triggered.
"""
# Required plugins
- help_plugin = self.get_plugin(Plugin... | Raise Help and IPython console only the first time Spyder starts
This preserves the window layout left by users in the previous session,
instead of imposing our own. | spyder-ide_spyder | train |
0bb413c3a9924aa8b4fd5cdf1de00d4e58b9cdfc | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -83,6 +83,7 @@ field to hold the username for example "email".
* hashField: specifies the field name that holds the password hash value. Defaults to 'hash'.
* selectFields: specifies the fields of the model to be selecte... | Adds option to populate fields in findByUsername function. Closes #<I> | saintedlama_passport-local-mongoose | train |
be586a1fbf0fccf0d36bf748acc939938b16f9bd | diff --git a/cmd/lumi/main.go b/cmd/lumi/main.go
index <HASH>..<HASH> 100644
--- a/cmd/lumi/main.go
+++ b/cmd/lumi/main.go
@@ -5,9 +5,13 @@ package main
import (
"fmt"
"os"
+
+ "github.com/pulumi/pulumi-fabric/pkg/engine"
)
func main() {
+ engine.InitStreams(os.Stdout, os.Stderr)
+
if err := NewLumiCmd().Exe... | Wire up sink to custom stdout and stderr | pulumi_pulumi | train |
c87d20bb3407871c1b6157de8be821153ca5645f | diff --git a/kaba/kaba/js/js-directory-task.js b/kaba/kaba/js/js-directory-task.js
index <HASH>..<HASH> 100644
--- a/kaba/kaba/js/js-directory-task.js
+++ b/kaba/kaba/js/js-directory-task.js
@@ -174,6 +174,9 @@ module.exports = class JsDirectoryTask
*/
generateOutputFileName (file)
{
- return thi... | Use path.join for building paths | Becklyn_kaba | train |
8f756a0be7fcacd45ed2ac670c0618a66a6faad3 | diff --git a/lib/display_case/exhibit.rb b/lib/display_case/exhibit.rb
index <HASH>..<HASH> 100644
--- a/lib/display_case/exhibit.rb
+++ b/lib/display_case/exhibit.rb
@@ -63,11 +63,11 @@ module DisplayCase
private_class_method :exhibit_query
def self.class_comparator
- @class_comparator ||= if defined?... | switch to using class var because we actually want all the subclasses to share the same comparator | objects-on-rails_display-case | train |
b0945dfa6f41bf9a37c6ca283089b7b32f97d510 | diff --git a/src/Call/Factory/CallVerifierFactory.php b/src/Call/Factory/CallVerifierFactory.php
index <HASH>..<HASH> 100644
--- a/src/Call/Factory/CallVerifierFactory.php
+++ b/src/Call/Factory/CallVerifierFactory.php
@@ -11,6 +11,8 @@
namespace Eloquent\Phony\Call\Factory;
+use Eloquent\Phony\Assertion\Assertion... | Added missing dependency to call verifier factory. | eloquent_phony | train |
c3d3ea82d207deaafb191ab960d073c1c7f9dfa5 | diff --git a/kubernetes/client/ws_client.py b/kubernetes/client/ws_client.py
index <HASH>..<HASH> 100644
--- a/kubernetes/client/ws_client.py
+++ b/kubernetes/client/ws_client.py
@@ -24,6 +24,8 @@ from six.moves.urllib.parse import urlencode, quote_plus, urlparse, urlunparse
STDIN_CHANNEL = 0
STDOUT_CHANNEL = 1
STDE... | Support for v4 stream protocol
- Set Sec-WebSocket-Protocol header from cfg param
- Add ERROR and RESIZE websocket channels
As defined in pkg/kubelet/server/remotecommand/websocket.go
- Adjust tests to show v4 behavior wtr to status message
- Tweak read_all() to return only data from stdout and stderr. | kubernetes-client_python | train |
8cc2cd1ef30ad4183c92b8422ca295398743fc24 | diff --git a/salt/state.py b/salt/state.py
index <HASH>..<HASH> 100644
--- a/salt/state.py
+++ b/salt/state.py
@@ -2265,7 +2265,7 @@ class BaseHighState(object):
envs = set(['base'])
if 'file_roots' in self.opts:
envs.update(list(self.opts['file_roots']))
- return envs
+ ret... | Include the env's reported by the configured file servers | saltstack_salt | train |
4f9a6ab9abbf73e697d2f9c454356d44eef7f281 | 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
@@ -302,6 +302,11 @@ public final class D... | Moving ObjectPropertyStringPreprocess to before the late transpilation step
-------------
Created by MOE: <URL> | google_closure-compiler | train |
15d9a4461c76263d38458200eb87d322b6218521 | diff --git a/lib/weary/response.rb b/lib/weary/response.rb
index <HASH>..<HASH> 100644
--- a/lib/weary/response.rb
+++ b/lib/weary/response.rb
@@ -1,13 +1,13 @@
module Weary
class Response
- attr_reader :raw, :method, :code, :message, :header, :content_type, :cookie, :body, :format
+ attr_reader :raw, :re... | Modifying Response to take the Requesting object as an argument, simplifying callback lambda passing and making redirection work (it probably did not before) | mwunsch_weary | train |
05d71f2e835b21dfd5e0d4c84ae7130b0ac442eb | diff --git a/1.1/sd-api/src/main/java/com/cisco/oss/foundation/directory/impl/CachedDirectoryLookupService.java b/1.1/sd-api/src/main/java/com/cisco/oss/foundation/directory/impl/CachedDirectoryLookupService.java
index <HASH>..<HASH> 100644
--- a/1.1/sd-api/src/main/java/com/cisco/oss/foundation/directory/impl/CachedDi... | remove exception throws in dumpCache() method | foundation-runtime_service-directory | train |
96df3f86effc51f7e3a780909a226f46a7bea930 | diff --git a/src/scroll.js b/src/scroll.js
index <HASH>..<HASH> 100644
--- a/src/scroll.js
+++ b/src/scroll.js
@@ -1,6 +1,5 @@
'use strict';
var Promise = require('promise');
-var DeviceManager = require('device-manager');
var animationFramePolyFill = require('./utils/request-anim-polyfill');
/**
* Scroll class.
... | Changing cross-browser compatibility scrolling logic on html element so that it does not rely on browser detection which is not be future-proof | mkay581_scroll-js | train |
e93ea74dce996ce0e3e04f0fc30904b47ffdb404 | diff --git a/project/library/CM/Util.php b/project/library/CM/Util.php
index <HASH>..<HASH> 100644
--- a/project/library/CM/Util.php
+++ b/project/library/CM/Util.php
@@ -109,7 +109,7 @@ class CM_Util {
}
}
/**
- * @param $path
+ * @param string $path
* @throws CM_Exception_Invalid
*/
public static fun... | t<I>: Adjusted | cargomedia_cm | train |
efd775f3a709323a6680a52bedb993dfb2ccea9b | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -14,6 +14,11 @@ Method | Description
`resync(engine)` | Resynchronize an already scheduled event engine.
`reschedule(engine, time)` | Reschedule an already scheduled event engine at teh given time.
+Attribute | Descrip... | - renamed attributes
- added attributes to md doc | wavesjs_waves-masters | train |
7a4bcc7d867a2ebab2015455bc30be34d5ec925b | diff --git a/cli/src/main/java/com/meltmedia/cadmium/cli/HistoryCommand.java b/cli/src/main/java/com/meltmedia/cadmium/cli/HistoryCommand.java
index <HASH>..<HASH> 100644
--- a/cli/src/main/java/com/meltmedia/cadmium/cli/HistoryCommand.java
+++ b/cli/src/main/java/com/meltmedia/cadmium/cli/HistoryCommand.java
@@ -63,7 ... | Changed history to display the uri that it actually goes to instead of
what was passed in. | meltmedia_cadmium | train |
b1042f3d0c90a9ec3e46f3f5d9419d01e8eed9a2 | diff --git a/client/assets/dev/model_application.js b/client/assets/dev/model_application.js
index <HASH>..<HASH> 100644
--- a/client/assets/dev/model_application.js
+++ b/client/assets/dev/model_application.js
@@ -457,6 +457,11 @@ _kiwi.model.Application = function () {
});
+ gw.on('onct... | /ctcp command implimented into the client #<I> | prawnsalad_KiwiIRC | train |
ac7b64eb56ded1312e4d8f788c82fa91b56ea45f | diff --git a/lib/go/httprange/range_test.go b/lib/go/httprange/range_test.go
index <HASH>..<HASH> 100644
--- a/lib/go/httprange/range_test.go
+++ b/lib/go/httprange/range_test.go
@@ -14,10 +14,10 @@ See the License for the specific language governing permissions and
limitations under the License.
*/
-package main
+... | Fix test file's package. Still no tests. | perkeep_perkeep | train |
0d0facfcd911d5be16c7753a780222bbf32ead56 | diff --git a/lib/listenFocusOutside.js b/lib/listenFocusOutside.js
index <HASH>..<HASH> 100644
--- a/lib/listenFocusOutside.js
+++ b/lib/listenFocusOutside.js
@@ -5,7 +5,15 @@ import ReactDOM from 'react-dom';
const handlers = [];
-events.addEventListener(document.body, 'focusin', handleNativeFocus);
+function add... | Add focusin event listener only after document load (#<I>) | skbkontur_retail-ui | train |
0b64b8137f35dc8007c463e7b9cfa8f120380362 | diff --git a/tests/unit/modules/zypper_test.py b/tests/unit/modules/zypper_test.py
index <HASH>..<HASH> 100644
--- a/tests/unit/modules/zypper_test.py
+++ b/tests/unit/modules/zypper_test.py
@@ -244,6 +244,16 @@ class ZypperTestCase(TestCase):
assert(0 == zypper.version_cmp('1', '2')) # mock returns 0... | Implement test for version compare, where python fall-back algorithm is called | saltstack_salt | train |
d73d939aa70ff388d83ce09d4179fb11fbef6e4c | diff --git a/master/buildbot/process/buildstep.py b/master/buildbot/process/buildstep.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/process/buildstep.py
+++ b/master/buildbot/process/buildstep.py
@@ -461,7 +461,7 @@ class BuildStep(object, properties.PropertiesMixin):
def __new__(klass, *args, **kwargs):
... | Mark _getStepFactory and _factory as private. | buildbot_buildbot | train |
f0fb382a640d88a1a60c9e3fd2516236d5395008 | diff --git a/console/Migration.php b/console/Migration.php
index <HASH>..<HASH> 100644
--- a/console/Migration.php
+++ b/console/Migration.php
@@ -63,8 +63,6 @@ abstract class Migration extends \yii\db\Migration
$fkCreatedBy = str_replace('`', '', sprintf($str, $tableNameThis, $tableNameUser, 'created'));
$fkUpda... | bugfix: removed die in migration class | asinfotrack_yii2-toolbox | train |
ff1e922a381d6fda0f199d5ee0f72f53710fcf2f | diff --git a/buildbucket/appengine/frontend/main.go b/buildbucket/appengine/frontend/main.go
index <HASH>..<HASH> 100644
--- a/buildbucket/appengine/frontend/main.go
+++ b/buildbucket/appengine/frontend/main.go
@@ -25,6 +25,7 @@ import (
"go.chromium.org/luci/common/data/rand/mathrand"
"go.chromium.org/luci/common/... | [buildbucket] Allow CORS
CORS is enabled by default in Python, and disabled by default in Go.
It is needed by Gerrit plugin and new Result UI. Enable it.
TBR=<EMAIL>
Change-Id: Ib<I>f8ea0a2f0fdd<I>c<I>e<I>ae<I>f0e8debb2ec
Reviewed-on: <URL> | luci_luci-go | train |
94f3e2afe4985aedb9d3174d82abdcc3a83aca36 | diff --git a/lib/passenger/dependencies.rb b/lib/passenger/dependencies.rb
index <HASH>..<HASH> 100644
--- a/lib/passenger/dependencies.rb
+++ b/lib/passenger/dependencies.rb
@@ -259,6 +259,10 @@ module Dependencies # :nodoc: all
when :gentoo
dep.install_command = "emerge -av apr"
end
+ elsif RUBY_PLATFOR... | Autodetect and use the APR provided by OS X's Developer SDK, whenever appropriate. | phusion_passenger | train |
d355529eb00a6cb509fe3bef2c7f7269ef398e77 | diff --git a/src/main/java/com/github/maven_nar/AbstractCompileMojo.java b/src/main/java/com/github/maven_nar/AbstractCompileMojo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/github/maven_nar/AbstractCompileMojo.java
+++ b/src/main/java/com/github/maven_nar/AbstractCompileMojo.java
@@ -169,7 +169,14 @@ publ... | added way to disable gathering syslibs from dependencies | maven-nar_nar-maven-plugin | train |
5e642109221bdca6daae374d96453512ada7b42d | diff --git a/src/programs/RestBuilder.php b/src/programs/RestBuilder.php
index <HASH>..<HASH> 100755
--- a/src/programs/RestBuilder.php
+++ b/src/programs/RestBuilder.php
@@ -1154,15 +1154,11 @@ const C6 = {
};
-export const PROCESS_CWD = process.cwd();
-
-export const DIRECTORY = __dirname;
-
-export const CO... | updated breaking change in rest js builder | RichardTMiles_CarbonPHP | train |
e6fe7ef10e8f86ba639761820e4063792601ee02 | diff --git a/src/CompilerContext.php b/src/CompilerContext.php
index <HASH>..<HASH> 100644
--- a/src/CompilerContext.php
+++ b/src/CompilerContext.php
@@ -406,6 +406,12 @@ class CompilerContext
public function getRelativeProjectPath(string $targetFile): string {
$proj = $this->getProject()->getProjectRoot... | FIX: Add relative project path method | tasoftch_skyline-compiler | train |
47878680a759cf863eb3e296a86b5e1369ce8f6b | diff --git a/code/dataobjects/WorkflowAction.php b/code/dataobjects/WorkflowAction.php
index <HASH>..<HASH> 100644
--- a/code/dataobjects/WorkflowAction.php
+++ b/code/dataobjects/WorkflowAction.php
@@ -109,6 +109,12 @@ class WorkflowAction extends DataObject {
parent::onBeforeWrite();
}
+
+ /**
+ * Called whe... | MINOR: Added a targetUpdated method to WorkflowAction that gets called if there's a current workflow instance when an object under workflow is updated | symbiote_silverstripe-advancedworkflow | train |
b1c3a21d1d99e431bc9e80370baf675237ba927b | diff --git a/lib/spout/helpers/table_formatting.rb b/lib/spout/helpers/table_formatting.rb
index <HASH>..<HASH> 100644
--- a/lib/spout/helpers/table_formatting.rb
+++ b/lib/spout/helpers/table_formatting.rb
@@ -8,7 +8,7 @@ module Spout
# end
def self.number_with_delimiter(number, delimiter = ",")
- ... | Delimiter is now correctly used in method | nsrr_spout | train |
a1be30c2f7f948ff9994bb3d466273d210fbc351 | diff --git a/medoo.php b/medoo.php
index <HASH>..<HASH> 100644
--- a/medoo.php
+++ b/medoo.php
@@ -2,7 +2,7 @@
/*!
* Medoo database framework
* http://medoo.in
- * Version 0.8.6 develop
+ * Version 0.8.8
*
* Copyright 2013, Angel Lai
* Released under the MIT license | [release] Medoo <I> | catfan_Medoo | train |
e8cbeb34b448fffdeefaf9c9bb789cabfbbcf9d3 | diff --git a/setup_libuv.py b/setup_libuv.py
index <HASH>..<HASH> 100644
--- a/setup_libuv.py
+++ b/setup_libuv.py
@@ -50,7 +50,7 @@ class libuv_build_ext(build_ext):
libuv_dir = os.path.join('deps', 'libuv')
libuv_repo = 'https://github.com/joyent/libuv.git'
libuv_branch = 'master'
- libuv... | Raised libuv revision, fixes build in Windows | saghul_pyuv | train |
e36c2ab49364b22623cb2f89828dc38bd76de61d | diff --git a/src/Illuminate/Foundation/Application.php b/src/Illuminate/Foundation/Application.php
index <HASH>..<HASH> 100755
--- a/src/Illuminate/Foundation/Application.php
+++ b/src/Illuminate/Foundation/Application.php
@@ -730,6 +730,11 @@ class Application extends Container implements HttpKernelInterface, Terminab... | Start the session if we're running tests and it hasn't been started. | laravel_framework | train |
7fb78ecf17f56818b87385bf8b59ef190004935a | diff --git a/src/directives/jf_multi_dropdown/jf_multi_dropdown.js b/src/directives/jf_multi_dropdown/jf_multi_dropdown.js
index <HASH>..<HASH> 100644
--- a/src/directives/jf_multi_dropdown/jf_multi_dropdown.js
+++ b/src/directives/jf_multi_dropdown/jf_multi_dropdown.js
@@ -30,11 +30,16 @@ class jfMultiDropdownControll... | jf-multi-dropdown: Add event for opened state change | jfrog_jfrog-ui-essentials | train |
04e74266eb3a2feff083b3b5060dfa01764fc385 | diff --git a/jfoenix/src/main/java/com/jfoenix/responsive/JFXResponsiveHandler.java b/jfoenix/src/main/java/com/jfoenix/responsive/JFXResponsiveHandler.java
index <HASH>..<HASH> 100644
--- a/jfoenix/src/main/java/com/jfoenix/responsive/JFXResponsiveHandler.java
+++ b/jfoenix/src/main/java/com/jfoenix/responsive/JFXResp... | fixed #<I> Responsive Handler Bug will give large screen for all screen types | jfoenixadmin_JFoenix | train |
e01dc8e3f07bf19540364b5fc1ab8304ebd46388 | diff --git a/providers/providers_manager.go b/providers/providers_manager.go
index <HASH>..<HASH> 100644
--- a/providers/providers_manager.go
+++ b/providers/providers_manager.go
@@ -102,17 +102,17 @@ type getProv struct {
// NewProviderManager constructor
func NewProviderManager(ctx context.Context, local peer.ID,... | refactor: rename to cfg | libp2p_go-libp2p-kad-dht | train |
97fbc4925de8ff692ca9d5b54371c87211b78d19 | diff --git a/yar-guice/src/main/java/org/javabits/yar/guice/AbstractExecutionStrategy.java b/yar-guice/src/main/java/org/javabits/yar/guice/AbstractExecutionStrategy.java
index <HASH>..<HASH> 100644
--- a/yar-guice/src/main/java/org/javabits/yar/guice/AbstractExecutionStrategy.java
+++ b/yar-guice/src/main/java/org/jav... | #<I>: fix executor strategy issue on empty pending list and listener notification | javabits_yar | train |
75f6b4f751eaede108427e4a8e2afd38adcf5500 | diff --git a/lxd/storage_pools_utils.go b/lxd/storage_pools_utils.go
index <HASH>..<HASH> 100644
--- a/lxd/storage_pools_utils.go
+++ b/lxd/storage_pools_utils.go
@@ -58,7 +58,7 @@ func storagePoolValidate(s *state.State, poolName string, driverName string, con
}
// Validate the requested storage pool configurati... | lxd/storage/pools/utils: Call poolType.Validate in storagePoolValidate | lxc_lxd | train |
de36a84a51131b4fcba31621bd464e2548032ec7 | diff --git a/clone.go b/clone.go
index <HASH>..<HASH> 100644
--- a/clone.go
+++ b/clone.go
@@ -9,6 +9,7 @@ type _clone struct {
_object map[*_object]*_object
_objectStash map[*_objectStash]*_objectStash
_dclStash map[*_dclStash]*_dclStash
+ _fnStash map[*_fnStash]*_fnStash
}
func (in *_runtime) cl... | Fix cloning of _fnStash
This may help #<I> | robertkrimen_otto | train |
09d8416bce27248a828488aad7eaa55aaf47245f | diff --git a/models/core_models.go b/models/core_models.go
index <HASH>..<HASH> 100644
--- a/models/core_models.go
+++ b/models/core_models.go
@@ -38,6 +38,7 @@ type Node struct {
Memory Memory `json:"memory"`
OS OperatingSystem `json:"os"`
Enabled bool `json:"ena... | Models:Fingerprint added in Node structure
Fingerprint addes in Node structure | skyrings_skyring-common | train |
6161691b738753c6543d9340b1bb8e27c4a20335 | diff --git a/src/howler.core.js b/src/howler.core.js
index <HASH>..<HASH> 100644
--- a/src/howler.core.js
+++ b/src/howler.core.js
@@ -974,8 +974,11 @@
playHtml5();
} else {
self._playLock = true;
+ self._state = 'loading';
var listener = function() {
+ se... | fix: set state to loading when sound is buffering | goldfire_howler.js | train |
524f5256a1d9476196ab561758da456753067076 | diff --git a/README b/README
index <HASH>..<HASH> 100644
--- a/README
+++ b/README
@@ -171,6 +171,9 @@ We will see a typical configuration for protecting a Django project::
('http://localhost:8000/saml2/ls/',
saml2.BINDING_HTTP_REDIRECT),
],
+ ... | Make the urls and view functions backwards compatible | knaperek_djangosaml2 | train |
ae03501149defeac265c9b2defbd0b67b5e64a5c | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -39,7 +39,7 @@ module.exports = function(grunt) {
banner: '<%= meta.banner %><%= meta.wrapper.start %>',
footer: '<%= meta.wrapper.end %>'
},
- src: [ 'src/Ractive.js', 'src/types.js', 'src/... | added _private.js and interpolators.js to build | ractivejs_ractive | train |
54cc6131e3d229f4a04e25c58c9c9953b9e17faf | diff --git a/molgenis-data-mapper/src/main/resources/js/attribute-mapping.js b/molgenis-data-mapper/src/main/resources/js/attribute-mapping.js
index <HASH>..<HASH> 100644
--- a/molgenis-data-mapper/src/main/resources/js/attribute-mapping.js
+++ b/molgenis-data-mapper/src/main/resources/js/attribute-mapping.js
@@ -376,1... | solve the problem that words are not highlighted when they are connected by non-letter characters | molgenis_molgenis | train |
f46667363af6fd69e958c1989fe58c62fdd76115 | diff --git a/conu/backend/origin/backend.py b/conu/backend/origin/backend.py
index <HASH>..<HASH> 100644
--- a/conu/backend/origin/backend.py
+++ b/conu/backend/origin/backend.py
@@ -23,8 +23,8 @@ import subprocess
import string
import random
import os.path
-import requests
import time
+import requests
from requ... | get_internal_registry() method in origin backend | user-cont_conu | train |
69a87c73b44b6991b56b490c731899d1c31d7cbf | diff --git a/zclwrite/parser.go b/zclwrite/parser.go
index <HASH>..<HASH> 100644
--- a/zclwrite/parser.go
+++ b/zclwrite/parser.go
@@ -118,16 +118,53 @@ func parseBody(nativeBody *zclsyntax.Body, from inputTokens) (inputTokens, *Body
IndentLevel: 0, // TODO: deal with this
}
- // TODO: actually partition the nat... | zclwrite: start to partition body items
So far they are still just all unstructured, but each item is a separate
node. | hashicorp_hcl | train |
391f5f1d0ea36f72c07c8426b354b1a7d9210c28 | diff --git a/generators/app/index.js b/generators/app/index.js
index <HASH>..<HASH> 100644
--- a/generators/app/index.js
+++ b/generators/app/index.js
@@ -58,21 +58,6 @@ module.exports = generators.Base.extend({
'\n none: /:categories/:title.html')) + '\n',
choices: ['pretty', 'date', 'n... | Updated Jekyll generator and removed some settings
Removed the part of the generator that looks for Bundler and Ruby, not
really something I need for this.
The generator doesn't ask for pagination anymore, <I> is a good default
and it's what I use all the time.
Updated the tests accordingly. | sondr3_generator-jekyllized | train |
7dbf6a2c1cec221edc58ca43ff61e26b5593aea1 | diff --git a/api/src/main/java/io/grpc/InternalConfigSelector.java b/api/src/main/java/io/grpc/InternalConfigSelector.java
index <HASH>..<HASH> 100644
--- a/api/src/main/java/io/grpc/InternalConfigSelector.java
+++ b/api/src/main/java/io/grpc/InternalConfigSelector.java
@@ -40,9 +40,7 @@ public abstract class InternalC... | xds: clarify required and optional fields in config selector result (#<I>) | grpc_grpc-java | train |
33de56623fc9e7fa8a3cc6e4e0093a6b74055b4c | diff --git a/demo/src/main/java/com/daimajia/slider/demo/MainActivity.java b/demo/src/main/java/com/daimajia/slider/demo/MainActivity.java
index <HASH>..<HASH> 100644
--- a/demo/src/main/java/com/daimajia/slider/demo/MainActivity.java
+++ b/demo/src/main/java/com/daimajia/slider/demo/MainActivity.java
@@ -66,7 +66,7 @@... | Changed PageChangeListener to add/remove
It's the right way to indicate and handle multiple listener | daimajia_AndroidImageSlider | train |
81a6a7ec9a342c30a80537bf17b60cddac6e6e66 | diff --git a/presto-main/src/main/java/com/facebook/presto/server/remotetask/HttpRemoteTask.java b/presto-main/src/main/java/com/facebook/presto/server/remotetask/HttpRemoteTask.java
index <HASH>..<HASH> 100644
--- a/presto-main/src/main/java/com/facebook/presto/server/remotetask/HttpRemoteTask.java
+++ b/presto-main/s... | Don't set thread name in addSplits()
This shows up as a small, but non-zero amount of coordinator CPU, and
seems unnecessary since the scheduler already sets the thread name to the
query being scheduled | prestodb_presto | train |
3b7cfb9551680be1a57438152f215a61489e8059 | diff --git a/src/main/java/org/mariadb/jdbc/internal/stream/PacketOutputStream.java b/src/main/java/org/mariadb/jdbc/internal/stream/PacketOutputStream.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/mariadb/jdbc/internal/stream/PacketOutputStream.java
+++ b/src/main/java/org/mariadb/jdbc/internal/stream/Packe... | [misc] buffer performance improvement correction part 4 | MariaDB_mariadb-connector-j | train |
82a313ea8ecdc67d6711a55e1a6c2dd435f84dfd | diff --git a/spec/Gaufrette/Adapter/GridFS.php b/spec/Gaufrette/Adapter/GridFS.php
index <HASH>..<HASH> 100644
--- a/spec/Gaufrette/Adapter/GridFS.php
+++ b/spec/Gaufrette/Adapter/GridFS.php
@@ -4,6 +4,9 @@ namespace spec\Gaufrette\Adapter;
use PHPSpec2\ObjectBehavior;
+//Hack cause of new version of mongo-ext htt... | Fixe GridFs and clearstatcache to mogile fs adapter | KnpLabs_Gaufrette | train |
5fca3b0876ab0e4ab1934fb414eaf1855456abfb | diff --git a/lib/transport.js b/lib/transport.js
index <HASH>..<HASH> 100644
--- a/lib/transport.js
+++ b/lib/transport.js
@@ -161,7 +161,7 @@ module.exports = {
var request = this._getRequestObject();
var req;
- if ((!options || !options.basicAuth) && !this._getAuth().isAuthenticated()) {
+ if ((!opt... | Fix outdated auth check in request() | podio_podio-js | train |
7468db3711c5346bc43d8198cbd5cd758b05e7cf | diff --git a/weld/src/main/java/org/jboss/as/weld/deployment/processors/ExternalBeanArchiveProcessor.java b/weld/src/main/java/org/jboss/as/weld/deployment/processors/ExternalBeanArchiveProcessor.java
index <HASH>..<HASH> 100644
--- a/weld/src/main/java/org/jboss/as/weld/deployment/processors/ExternalBeanArchiveProcess... | AS7-<I> Fix case where both WEB-INF/beans.xml and META-INF/beans.xml is present | wildfly_wildfly | train |
72fd4ce75772f5b4dc2efb236b9bd0eb764bcce8 | diff --git a/climlab/radiation/__init__.py b/climlab/radiation/__init__.py
index <HASH>..<HASH> 100644
--- a/climlab/radiation/__init__.py
+++ b/climlab/radiation/__init__.py
@@ -1,4 +1,3 @@
from AplusBT import AplusBT
-from grey_radiation import GreyRadiation_LW, GreyRadiation_SW
from insolation import FixedInsolati... | Fixed bug with import climlab due to missing grey_radiation.py module | brian-rose_climlab | train |
b83fa0ac08379f4d1bb6e6186607e35a6d4f3770 | diff --git a/rapidoid-web/src/main/java/org/rapidoid/web/DefaultPageRenderer.java b/rapidoid-web/src/main/java/org/rapidoid/web/DefaultPageRenderer.java
index <HASH>..<HASH> 100644
--- a/rapidoid-web/src/main/java/org/rapidoid/web/DefaultPageRenderer.java
+++ b/rapidoid-web/src/main/java/org/rapidoid/web/DefaultPageRen... | Fixed "full page" detector: ignoring HTML comments. | rapidoid_rapidoid | train |
8c852acc5281f30b8bd3ef1288b19cfa18d310f1 | diff --git a/nidmresults/exporter.py b/nidmresults/exporter.py
index <HASH>..<HASH> 100644
--- a/nidmresults/exporter.py
+++ b/nidmresults/exporter.py
@@ -22,6 +22,10 @@ import csv
import tempfile
import zipfile
from builtins import input
+# Needed for export using JSON-LD 1.1
+import pyld as ld
+# Needed to read c... | Add export to JSON-LD file using <I> spec | incf-nidash_nidmresults | train |
f50d49a9b59b4d9a078a51ae2736e480039d6d4e | diff --git a/core/src/main/java/com/contentful/vault/LinkResolver.java b/core/src/main/java/com/contentful/vault/LinkResolver.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/contentful/vault/LinkResolver.java
+++ b/core/src/main/java/com/contentful/vault/LinkResolver.java
@@ -89,9 +89,9 @@ final class Lin... | Fix link resolution for arrays of resources | contentful_vault | train |
b4eac137de9ccca5ad60cf028882fb0c0d87523a | diff --git a/src/components/backdrop/backdrop.scss b/src/components/backdrop/backdrop.scss
index <HASH>..<HASH> 100644
--- a/src/components/backdrop/backdrop.scss
+++ b/src/components/backdrop/backdrop.scss
@@ -1,5 +1,8 @@
md-backdrop {
z-index: $z-index-backdrop;
+ &.md-menu-backdrop {
+ z-index: $z-index-menu... | fix(disableScroll): fix scroll mask z-index blocking backdrops
closes #<I>, closes #<I>, closes #<I> | angular_material | train |
8f7ac73100ef39013a94369cd6bb7a99be70e4ed | diff --git a/doc/conf.py b/doc/conf.py
index <HASH>..<HASH> 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -46,6 +46,7 @@ MOCK_MODULES = [
'yaml',
'yaml.constructor',
'yaml.nodes',
+ 'yaml.scanner',
'zmq',
# modules, renderers, states, returners, et al
'django', | Mock yaml.scanner in docs conf.py | saltstack_salt | train |
dd2a5d4b68892456c7d80e5bbd7043112abe3471 | diff --git a/mac.js b/mac.js
index <HASH>..<HASH> 100644
--- a/mac.js
+++ b/mac.js
@@ -35,7 +35,8 @@ function buildMacApp (opts, cb, newApp) {
var paths = {
info1: path.join(newApp, 'Contents', 'Info.plist'),
info2: path.join(newApp, 'Contents', 'Frameworks', 'Electron Helper.app', 'Contents', 'Info.plist'... | Fix #<I>: Rename Helper application on Mac OS X
This fixes the helper process showing up in Activity Monitor as
"Electron Helper"; it will now show up as "<appname> Helper". | jiahaog_nativefier | train |
23ac8ecd61894c69c3c835e061a73eb352449969 | diff --git a/src/entity/files.js b/src/entity/files.js
index <HASH>..<HASH> 100644
--- a/src/entity/files.js
+++ b/src/entity/files.js
@@ -2,10 +2,11 @@
* The files portion of the entity generator
*/
module.exports = async function (generator, igniteContext) {
+ const semver = require('semver')
const pluralize... | update microservice paths for jhipster v6 | ruddell_ignite-jhipster | train |
226ab7bf4f418bdca91e23cb9b5dd67229ab4ba4 | diff --git a/jquery.fileupload-ui.js b/jquery.fileupload-ui.js
index <HASH>..<HASH> 100644
--- a/jquery.fileupload-ui.js
+++ b/jquery.fileupload-ui.js
@@ -1,5 +1,5 @@
/*
- * jQuery File Upload User Interface Plugin 1.1
+ * jQuery File Upload User Interface Plugin 1.2
*
* Copyright 2010, Sebastian Tschan, AQUANTUM
... | Move file normalization (for legacy uploads) from jquery.fileupload-ui.js to jquery-fileupload.js. | blueimp_jQuery-File-Upload | train |
9792b73e258da634146e41da658fa89591456ae1 | diff --git a/src/base/tool.js b/src/base/tool.js
index <HASH>..<HASH> 100644
--- a/src/base/tool.js
+++ b/src/base/tool.js
@@ -32,15 +32,19 @@ define([
this.model = new ToolModel(options, {
'change': function(evt, val) {
if (_this._ready) {
- _th... | hotfix: Partially fixes multiple update. Still being called twice | vizabi_vizabi | train |
288945217ea74b213a8cdb2b429a94ccb218df96 | diff --git a/ca/certificate-authority.go b/ca/certificate-authority.go
index <HASH>..<HASH> 100644
--- a/ca/certificate-authority.go
+++ b/ca/certificate-authority.go
@@ -59,9 +59,7 @@ const (
metricHSMFaultRejected = "CA.OCSP.HSMFault.Rejected"
)
-// HSM faults tend to be persistent. If we observe one, we will r... | Allow configuration of the HSM timeout | letsencrypt_boulder | train |
35a120831ed87db468e0ad22bb91464baff2fa75 | diff --git a/core/src/test/java/com/graphhopper/routing/PathTest.java b/core/src/test/java/com/graphhopper/routing/PathTest.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/com/graphhopper/routing/PathTest.java
+++ b/core/src/test/java/com/graphhopper/routing/PathTest.java
@@ -24,7 +24,6 @@ import com.graphhop... | Reenable instructions tests (#<I>) | graphhopper_graphhopper | train |
7d29b72cb4fc4df0da5c99ea8b9e83d7c6c63b2e | diff --git a/gcalcli/argparsers.py b/gcalcli/argparsers.py
index <HASH>..<HASH> 100644
--- a/gcalcli/argparsers.py
+++ b/gcalcli/argparsers.py
@@ -5,6 +5,7 @@ from gcalcli import utils
from gcalcli.deprecations import parser_allow_deprecated, DeprecatedStoreTrue
from gcalcli.printer import valid_color_name
from oaut... | Automatically use available console width (#<I>)
If there is no -w nor --width specified calculate maximum console width
that is available, but no less then <I> columns for `cal_width`. | insanum_gcalcli | train |
c8bcb20ce7030e9f75a9a0c090bcad1864166b1d | diff --git a/lib/capybara/poltergeist/client/browser.coffee b/lib/capybara/poltergeist/client/browser.coffee
index <HASH>..<HASH> 100644
--- a/lib/capybara/poltergeist/client/browser.coffee
+++ b/lib/capybara/poltergeist/client/browser.coffee
@@ -250,7 +250,7 @@ class Poltergeist.Browser
@page.setScrollPosition(le... | Refactor render method for selector
Remove a few ensure blocks from tests because capybara should reset session automatically | teampoltergeist_poltergeist | train |
94130dfd412847e2bb99aecacae697d8b5d11fab | diff --git a/src/utils/exec.js b/src/utils/exec.js
index <HASH>..<HASH> 100644
--- a/src/utils/exec.js
+++ b/src/utils/exec.js
@@ -25,7 +25,7 @@ export async function exec (command) {
}
export async function execWinShellUtf8 (command) {
- var setCodePageCmd = `FOR /F "tokens=2 delims=:" %i in ('chcp') do (c... | The recovering of the original codepage has been fixed (closes #<I>) | DevExpress_testcafe-browser-tools | train |
9ddb6635cc2abd3fc92c450590ecbd0aba535b7a | diff --git a/HipChat.php b/HipChat.php
index <HASH>..<HASH> 100644
--- a/HipChat.php
+++ b/HipChat.php
@@ -103,6 +103,18 @@ class HipChat {
return ($response->status == 'sent');
}
+ /**
+ * Get chat history for a room
+ *
+ * @see https://www.hipchat.com/docs/api/method/rooms/history
+ */
+ public ... | Added 'rooms/history' endpoint support | hipchat_hipchat-php | train |
fbaab99f791a383bf4ed4c2d0fa29336101baa3a | diff --git a/test-app/app/src/main/assets/internal/ts_helpers.js b/test-app/app/src/main/assets/internal/ts_helpers.js
index <HASH>..<HASH> 100644
--- a/test-app/app/src/main/assets/internal/ts_helpers.js
+++ b/test-app/app/src/main/assets/internal/ts_helpers.js
@@ -119,9 +119,10 @@
}
}
- global.__native = _... | feat(typescript): Play nice with tslib (#<I>)
AngularApp started adding tslib in the web pack project.
This PR will set the __native, __extends and __decorate on the global using Object.defineProperty,
so the tslib won't be able to overwrite them.
Ideally adding tslib to a project should bring support for async/awa... | NativeScript_android-runtime | train |
a89938ed01e8a2765e7c894478fc4339b5914a57 | diff --git a/src/Client/Client.js b/src/Client/Client.js
index <HASH>..<HASH> 100644
--- a/src/Client/Client.js
+++ b/src/Client/Client.js
@@ -349,8 +349,8 @@ export default class Client extends EventEmitter {
}
// def setTopic
- setTopic(channel, topic, callback = (/*err*/) => {}) {
- return this.internal.setTo... | setChannelTopic, not setTopic | discordjs_discord.js | train |
355cbd8dda59be9b5542d5c3d1d532dff8f1c472 | 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 +1,2 @@
-require 'marky_markov'
+require_relative '../lib/marky_markov'
+require 'rspec/autorun' | Spec Helper calls proper files/now has autorun. | zolrath_marky_markov | train |
cce4c0cb87b25c9f0065487e808561c309dc2244 | diff --git a/src/Analyse/Model.php b/src/Analyse/Model.php
index <HASH>..<HASH> 100644
--- a/src/Analyse/Model.php
+++ b/src/Analyse/Model.php
@@ -335,7 +335,7 @@ class Model extends AbstractModel
/**
* Setter for the multiline code generation.
*
- * @param string $multiLineCodeGen
+ * @param i... | Corrected a doc comment | brainworxx_kreXX | train |
a383e412bc458fc1160bea068eb841e930f84504 | diff --git a/tests/integration/integration_test.go b/tests/integration/integration_test.go
index <HASH>..<HASH> 100644
--- a/tests/integration/integration_test.go
+++ b/tests/integration/integration_test.go
@@ -412,7 +412,6 @@ func TestStackDependencyGraph(t *testing.T) {
assert.NotNil(t, stackInfo.Deployment)
... | Do not print resources to stdout in a test
Since we now include output from `go test` (so we can see progress
from our integration tests as they run) we shouldn't print large blobs
of uninteresting JSON data. | pulumi_pulumi | train |
3a07cea2ee78c7d5de4ffaec85b775d1bd4c6ecb | diff --git a/microphone/__init__.py b/microphone/__init__.py
index <HASH>..<HASH> 100644
--- a/microphone/__init__.py
+++ b/microphone/__init__.py
@@ -1,2 +1,4 @@
-from .audioengine_plugin import AudioEnginePlugin, AudioEngineDevice
+from microphone.audioengine_plugin import (AudioEnginePlugin,
+ ... | all relative imports to explict imports | benhoff_microphone | train |
6bcfb9cb8052f85b46c820314a5a8f10ea799dd7 | diff --git a/openquake/engine/calculators/hazard/event_based/core.py b/openquake/engine/calculators/hazard/event_based/core.py
index <HASH>..<HASH> 100644
--- a/openquake/engine/calculators/hazard/event_based/core.py
+++ b/openquake/engine/calculators/hazard/event_based/core.py
@@ -316,11 +316,16 @@ class EventBasedHaz... | Moved both computation and saving in post_execute
Former-commit-id: <I>d9a3f<I>ba7a6d1f<I>e<I>f<I>e<I>a1f | gem_oq-engine | train |
de105595e2788b5614081a295268cdb75964ee06 | diff --git a/version/version.go b/version/version.go
index <HASH>..<HASH> 100644
--- a/version/version.go
+++ b/version/version.go
@@ -16,7 +16,7 @@ var Version = "1.1.0"
// A pre-release marker for the version. If this is "" (empty string)
// then it means that it is a final release. Otherwise, this is a pre-release... | Cleanup after <I>-alpha<I> release | hashicorp_terraform | train |
4f870d295d302342c9ddc69cbfb3f96b3e464bd9 | diff --git a/gotwilio.go b/gotwilio.go
index <HASH>..<HASH> 100644
--- a/gotwilio.go
+++ b/gotwilio.go
@@ -25,9 +25,14 @@ type Exception struct {
}
// Create a new Twilio struct.
-func NewTwilioClient(accountSid, authToken string) *Twilio {
+func NewTwilioClient(accountSid, authToken string, HTTPClient *http.Client... | Allows user-configured http.Client to be passed into NewTwilioClient.
Users may setup their http.Client with various useful
parameters that are not part of the http.DefaultClient (importantly
including a Timeout). Furthermore, because http.Clients are designed
to be reused and are safe across goroutines, sharing a pr... | sfreiberg_gotwilio | train |
2603a335d5e176a225acb393aa758229a3113384 | diff --git a/lib/ohai/plugins/darwin/cpu.rb b/lib/ohai/plugins/darwin/cpu.rb
index <HASH>..<HASH> 100644
--- a/lib/ohai/plugins/darwin/cpu.rb
+++ b/lib/ohai/plugins/darwin/cpu.rb
@@ -1,7 +1,7 @@
#
# Author:: Nathan L Smith (<nlloyds@gmail.com>)
-# Author:: Tim Smith (<tsmith@limelight.com>)
-# Copyright:: Copyright (... | Correctly count real vs. total vs. cores on darwin | chef_ohai | train |
c374d6e82a9f9bdb2428d30edd3e104b0ceec433 | diff --git a/__tests__/matrix.test.js b/__tests__/matrix.test.js
index <HASH>..<HASH> 100644
--- a/__tests__/matrix.test.js
+++ b/__tests__/matrix.test.js
@@ -39,6 +39,26 @@ describe("Matrix.set()", () => {
});
});
+describe("Matrix.unset()", () => {
+ test("Removes the coordinate of matrix", () => {
+ const ... | Using a safe Matrix.reduce() to preserve matrix shape. | iddan_react-spreadsheet | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.