hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
33008a04d070ffb763d5d81a7f841e9245bef32e | diff --git a/lib/json_schema/schema.rb b/lib/json_schema/schema.rb
index <HASH>..<HASH> 100644
--- a/lib/json_schema/schema.rb
+++ b/lib/json_schema/schema.rb
@@ -215,9 +215,7 @@ module JsonSchema
end
def inspect
- str = inspect_schema
- str = JSON.pretty_generate(str).gsub(/\\?"/, '') if str.is_a... | Simplify `JsonSchema#inspect`
Unfortunately, our recursive inspect seems to cause trouble in some
cases (see interagent/committee#<I>). Even when it doesn't, it's quite
expensive to produce and can cause some trouble when higher level
libraries call it automatically.
This simplifies `#inspect` to produce a minimal re... | brandur_json_schema | train |
036f6c9d473fc8fad8ef3e5d8b03ce3ac9303d6f | diff --git a/src/Piano.js b/src/Piano.js
index <HASH>..<HASH> 100644
--- a/src/Piano.js
+++ b/src/Piano.js
@@ -1,7 +1,5 @@
-// noreintegrate can override sounds
-// noreintegrate active notes
+// noreintegrate keyboard bindings
// noreintegrate have auto-width vs manual width settings
-// noreintegrate UI - bottom bor... | fix border by adding gutter and box shadow | kevinsqi_react-piano | train |
65cb94ff773dbba5b41028bf635c6e23e42e8e94 | diff --git a/src/transformers/pipelines/base.py b/src/transformers/pipelines/base.py
index <HASH>..<HASH> 100644
--- a/src/transformers/pipelines/base.py
+++ b/src/transformers/pipelines/base.py
@@ -742,6 +742,8 @@ class Pipeline(_ScikitCompat):
self.model.config.update(task_specific_params.get(task))
... | Adding QoL for `batch_size` arg (like others enabled everywhere). (#<I>)
* Adding QoL for `batch_size` arg (like others enabled everywhere).
* Typo. | huggingface_pytorch-pretrained-BERT | train |
83f89e347caa707eb4afe91b7cc2a6528eb483a3 | diff --git a/spec/researches/calculateFleschReadingSpec.js b/spec/researches/calculateFleschReadingSpec.js
index <HASH>..<HASH> 100644
--- a/spec/researches/calculateFleschReadingSpec.js
+++ b/spec/researches/calculateFleschReadingSpec.js
@@ -53,6 +53,13 @@ describe( "A test that uses the Italian Flesch Reading", funct... | Add spec for Flesch assessment for Russian | Yoast_YoastSEO.js | train |
94c1f7455756475e55f7f3149cdebfb1b0dd82a7 | diff --git a/src/MetaModels/BackendIntegration/InputScreen/InputScreen.php b/src/MetaModels/BackendIntegration/InputScreen/InputScreen.php
index <HASH>..<HASH> 100644
--- a/src/MetaModels/BackendIntegration/InputScreen/InputScreen.php
+++ b/src/MetaModels/BackendIntegration/InputScreen/InputScreen.php
@@ -206,7 +206,7 ... | Remove if statement. We can trust the conditions here. | MetaModels_core | train |
0ad77d7920d24cb9a2db8edc7dae598025b0436c | diff --git a/lib/librarian/cli.rb b/lib/librarian/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/librarian/cli.rb
+++ b/lib/librarian/cli.rb
@@ -63,6 +63,7 @@ module Librarian
def install
ensure!
clean! if options["clean"]
+ resolve!
install!
end | Fix Cli#install - the install command should resolve and subsequently install. | applicationsonline_librarian | train |
46e5def71a58039d7c730e6f7ac75ded7a1db82c | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -101,7 +101,7 @@ You need to configure Doorkeeper in order to provide resource_owner model and au
``` ruby
Doorkeeper.configure do
- resource_owner_authenticator do |routes|
+ resource_owner_authenticator do
Use... | Authenticator blocks don't need to call routes.*
The engine is no longer isolated, therefore the code in authenticator
blocks has access to all the routes helpers. | doorkeeper-gem_doorkeeper | train |
9f63aa3ab3b1e9dcddd93d646636d33123ab4ec2 | diff --git a/core/src/main/java/io/undertow/protocols/http2/Http2FrameHeaderParser.java b/core/src/main/java/io/undertow/protocols/http2/Http2FrameHeaderParser.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/undertow/protocols/http2/Http2FrameHeaderParser.java
+++ b/core/src/main/java/io/undertow/protocols... | Added also check for PRIORITY frame type | undertow-io_undertow | train |
d545a30fb82e0f5fab11e8404a8270f5c6adfbea | diff --git a/lib/specjour/manager.rb b/lib/specjour/manager.rb
index <HASH>..<HASH> 100644
--- a/lib/specjour/manager.rb
+++ b/lib/specjour/manager.rb
@@ -165,7 +165,7 @@ module Specjour
yield
end
else
- block.call
+ yield
end
end
end | Start loader when outside of bundler environment | sandro_specjour | train |
b49724b8e9c674df2b3d919da491174853618bb2 | diff --git a/peru/plugins/git_plugin.py b/peru/plugins/git_plugin.py
index <HASH>..<HASH> 100755
--- a/peru/plugins/git_plugin.py
+++ b/peru/plugins/git_plugin.py
@@ -135,6 +135,7 @@ def main():
cache_path = sys.argv.pop(0)
assert sys.argv == []
clone = git_clone_if_needed(url, cache_path)
+ ... | always fetch on a reup
In theory we could avoid the fetch if your reup target is a tag or a raw
hash, but there's not really any use case for such a target. Also, tags
can actually change.
TODO: The git_plugin code is getting really nasty. Clean it up as part
of writing a shared plugin main function. | buildinspace_peru | train |
772298653a59f5f607f34344cae1a494022aaa1b | diff --git a/test/socket.router.js b/test/socket.router.js
index <HASH>..<HASH> 100644
--- a/test/socket.router.js
+++ b/test/socket.router.js
@@ -84,4 +84,45 @@ describe('socket.router', function(){
if (++complete === 2) done();
});
+ it('should handle router <-> dealer message bursts', function (done) {
+ ... | Burst test for router/dealer (#<I>)
* Burst test for router/dealer
* Made burst-test multi-part | JustinTulloss_zeromq.node | train |
70f806671b5416b96bce2c2d31180396b553cd59 | diff --git a/presto-hive/src/test/java/com/facebook/presto/hive/HiveQueryRunner.java b/presto-hive/src/test/java/com/facebook/presto/hive/HiveQueryRunner.java
index <HASH>..<HASH> 100644
--- a/presto-hive/src/test/java/com/facebook/presto/hive/HiveQueryRunner.java
+++ b/presto-hive/src/test/java/com/facebook/presto/hiv... | Add Hive integration test on max partitions per scan
- Check we can insert into table that is over the limit
- Check we cannot query exceeds max partitions
- Check we can query with partition predicate | prestodb_presto | train |
ffdee9a4bbdc065f0b1b4e3ae55933da46d36d92 | diff --git a/server/webapp/WEB-INF/rails.new/webpack/models/preferences/email_settings_model.js b/server/webapp/WEB-INF/rails.new/webpack/models/preferences/email_settings_model.js
index <HASH>..<HASH> 100644
--- a/server/webapp/WEB-INF/rails.new/webpack/models/preferences/email_settings_model.js
+++ b/server/webapp/WE... | Minor JS cleanup: no need to wrap stream functions when used as simple callbacks | gocd_gocd | train |
62c6e05420b08b2a4a51d406223a79faec7e8d57 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -197,6 +197,8 @@ try {
}
```
+**Please Note:** Meta Data must be a non-string object, or you will see unexpected results.
+
### Format Params
Lumber also allows you to use format params, that is you get the power o... | Added special case formatting for error logs | englercj_lumber | train |
63e51261cb3d82498343b671731251865dc183de | diff --git a/mingus/containers/Bar.py b/mingus/containers/Bar.py
index <HASH>..<HASH> 100644
--- a/mingus/containers/Bar.py
+++ b/mingus/containers/Bar.py
@@ -1,10 +1,9 @@
#!/usr/bin/python
# -*- coding: utf-8 -*-
"""
-
================================================================================
- mingus -... | Adding information about the mode of a bar: closes issue #<I>. | bspaans_python-mingus | train |
079fb5d5a487ea7d60a0202e1f87494b5373a841 | diff --git a/restcomm/restcomm.testsuite/src/test/java/org/restcomm/connect/testsuite/http/AccountsMigrationEndpointTest.java b/restcomm/restcomm.testsuite/src/test/java/org/restcomm/connect/testsuite/http/AccountsMigrationEndpointTest.java
index <HASH>..<HASH> 100644
--- a/restcomm/restcomm.testsuite/src/test/java/org... | Account Migration API. More fixes and test cases to cover the feature
This refer to #RESTCOMM-<I>
This refer to #RESTCOMM-<I> | RestComm_Restcomm-Connect | train |
f62a8b20ecad5287ed4bbfd32c75c0ddba481186 | diff --git a/pkg/mtu/detect_linux.go b/pkg/mtu/detect_linux.go
index <HASH>..<HASH> 100644
--- a/pkg/mtu/detect_linux.go
+++ b/pkg/mtu/detect_linux.go
@@ -59,6 +59,10 @@ func autoDetect() (int, error) {
}
}
+ if routes[0].Gw == nil {
+ return 0, fmt.Errorf("unable to find default gateway from the routes: %s", r... | Cilium-agent fails to start on nodes without default gateway
This PR fixes the problem by checking for the default gateway
in the existing routes and if gateway is absent the 'autoDetect'
fails.
When autoDetect fails we set the default 'Ethernetmtu' and will
also raise a warning message.
Fixes: #<I> | cilium_cilium | train |
9d3f9e9350cd873b66812aa67e82fe70ab99779c | diff --git a/xdr/encode.go b/xdr/encode.go
index <HASH>..<HASH> 100644
--- a/xdr/encode.go
+++ b/xdr/encode.go
@@ -426,11 +426,11 @@ func (enc *Encoder) encodeStruct(v reflect.Value) (err error) {
vt := v.Type()
for i := 0; i < v.NumField(); i++ {
// Skip unexported fields and indirect through pointers.
- vf :=... | Delay field access until after export check.
Since unexported fields are skipped, don't needlessly get the
reflect.Value for the field until after the test. | davecgh_go-xdr | train |
b5800bf40606e5567262028b98a3d0813c10db4c | diff --git a/python/test/nbla_test_utils.py b/python/test/nbla_test_utils.py
index <HASH>..<HASH> 100644
--- a/python/test/nbla_test_utils.py
+++ b/python/test/nbla_test_utils.py
@@ -237,7 +237,7 @@ def force_tuple(x):
return (x,)
-def half_test(rng, func, finputs, hinputs, func_args, func_kwargs, backward, ct... | [test][python] Allow atol option in half testing | sony_nnabla | train |
e370c6a58f2086ff878890458c8b8bfd9e554656 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
*.pyc
venv/
s2reader.egg-info/
+dist/
diff --git a/s2reader/s2reader.py b/s2reader/s2reader.py
index <HASH>..<HASH> 100644
--- a/s2reader/s2reader.py
+++ b/s2reader/s2reader.py
@@ -109,14 +109,15 @@ cla... | switched to band IDs instead of band numbers in granlue_paths() function | ungarj_s2reader | train |
e8088c39fd7c59623c66c289980a8a5bfa263b2c | diff --git a/carrot/__init__.py b/carrot/__init__.py
index <HASH>..<HASH> 100644
--- a/carrot/__init__.py
+++ b/carrot/__init__.py
@@ -3,4 +3,5 @@ VERSION = (0, 3, 0)
__version__ = ".".join(map(str, VERSION))
__author__ = "Ask Solem"
__contact__ = "askh@opera.com"
+__homepage__ = "http://github.com/ask/carrot/"
__d... | Added the homepage to setup.py | ask_carrot | train |
90a60d3b6afb9bef5b72c90b8eda27e5e00baa48 | diff --git a/cmd/admin-info-server.go b/cmd/admin-info-server.go
index <HASH>..<HASH> 100644
--- a/cmd/admin-info-server.go
+++ b/cmd/admin-info-server.go
@@ -180,7 +180,7 @@ func (u infoMessage) String() (msg string) {
downBackends := 0
for _, set := range v.Sets {
for _, s := range set {
- if strings.Con... | Avoid index out of range errors (#<I>)
Fixes #<I> | minio_mc | train |
fabe7ebd531a6237ba04efe1287e613a4ddaba93 | diff --git a/mod/scorm/version.php b/mod/scorm/version.php
index <HASH>..<HASH> 100644
--- a/mod/scorm/version.php
+++ b/mod/scorm/version.php
@@ -24,7 +24,7 @@
defined('MOODLE_INTERNAL') || die();
-$plugin->version = 2015112701; // The current module version (Date: YYYYMMDDXX).
+$plugin->version = 20160114... | MDL-<I> mod_scorm: Preventive (on rewrite) version bump to current. | moodle_moodle | train |
9c61c44fc1a55be5f56ea69c06d84d244360fd64 | diff --git a/question/type/multianswer/questiontype.php b/question/type/multianswer/questiontype.php
index <HASH>..<HASH> 100644
--- a/question/type/multianswer/questiontype.php
+++ b/question/type/multianswer/questiontype.php
@@ -715,7 +715,8 @@ function qtype_multianswer_extract_question($text) {
}
... | MDL-<I> - The closing bracket "}" can't be used in cloze question type. Now, you can excape a closing } with a backslash. Merged from MOODLE_<I>_STABLE. | moodle_moodle | train |
6cb9d20a0a054d60447e881b12d28e889f79de7f | diff --git a/packages/babel-core/src/config/option-manager.js b/packages/babel-core/src/config/option-manager.js
index <HASH>..<HASH> 100644
--- a/packages/babel-core/src/config/option-manager.js
+++ b/packages/babel-core/src/config/option-manager.js
@@ -53,7 +53,7 @@ class OptionManager {
loadPluginDescriptor(d... | Tie presets pass metadata to descriptors. | babel_babel | train |
797a8aac2972344e609091fb7b71e11ec22894c8 | diff --git a/holoviews/ipython/magics.py b/holoviews/ipython/magics.py
index <HASH>..<HASH> 100644
--- a/holoviews/ipython/magics.py
+++ b/holoviews/ipython/magics.py
@@ -340,19 +340,25 @@ class OptsCompleter(object):
@classmethod
def option_completer(cls, k,v):
"Tab completion hook for the %%opts ce... | OptsCompleter now aware of valid keywords for channel operations | pyviz_holoviews | train |
614e351c08fce6cb19add5c6e063496a34798c6c | diff --git a/utilitybelt.py b/utilitybelt.py
index <HASH>..<HASH> 100644
--- a/utilitybelt.py
+++ b/utilitybelt.py
@@ -120,7 +120,8 @@ def reverse_dns_sna(ipaddress):
names = []
for item in r.json()['answer']:
- names.append(str(item['rdata']))
+ name = str(item['rdata']).strip... | removed periods from sna response | yolothreat_utilitybelt | train |
549a5bcd7b498fe85fcab4873fb2a6bd64b1bfac | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100755
--- a/index.js
+++ b/index.js
@@ -306,7 +306,7 @@ function getOpts(input, optdef, config){
/** Special alternative: in lieu of using the matched option name, use the first --long-name instead */
if("first-only" === noAliasPropagation)
- name =... | Fix bug with "first-only" alias propagation
If the noAliasPropagation setting was "first-only", options which lacked
--long-names would be excluded from the returned results, as short names
weren't being checked for. | Alhadis_GetOptions | train |
5ec66829b8c8ff4baba616cfa476ebfe2f92c991 | diff --git a/lib/dewey/validation.rb b/lib/dewey/validation.rb
index <HASH>..<HASH> 100644
--- a/lib/dewey/validation.rb
+++ b/lib/dewey/validation.rb
@@ -7,45 +7,56 @@ module Dewey
# Utility methods to check that a format is accepted for a particular service
#
class Validation
- # Determine wether or not a... | Cleaner handling of services, especially when passed a nil value | sorentwo_dewey | train |
db626600175dedec91cdc31e0bf02083d7928878 | diff --git a/lib/chore/version.rb b/lib/chore/version.rb
index <HASH>..<HASH> 100644
--- a/lib/chore/version.rb
+++ b/lib/chore/version.rb
@@ -2,7 +2,7 @@ module Chore
module Version
MAJOR = 1
MINOR = 1
- PATCH = 6
+ PATCH = 7
STRING = [ MAJOR, MINOR, PATCH ].join('.')
end | bumping tag to <I> | Tapjoy_chore | train |
ffe84f1211eb42cc2c0db7036576f5df54ee368e | diff --git a/lib/bootstrap_validator_rails/helper.rb b/lib/bootstrap_validator_rails/helper.rb
index <HASH>..<HASH> 100644
--- a/lib/bootstrap_validator_rails/helper.rb
+++ b/lib/bootstrap_validator_rails/helper.rb
@@ -16,7 +16,8 @@ module BootstrapValidatorRails
methods = validator.attributes
methods... | Use deep merge for json merge | qcam_bootstrap_validator_rails | train |
91199c30d8ccbc9d6fef86de30a9e3450f6f170c | diff --git a/superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.js b/superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.js
index <HASH>..<HASH> 100644
--- a/superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.js
+++ b/superset-frontend/src/dashboard/util/getLeafComponentIdFromPath.... | Handle undefined (#<I>) | apache_incubator-superset | train |
9472279cdea26ee3b9e6ef25f30b5c7935a57508 | diff --git a/internal/driver/driver.go b/internal/driver/driver.go
index <HASH>..<HASH> 100644
--- a/internal/driver/driver.go
+++ b/internal/driver/driver.go
@@ -124,11 +124,11 @@ func generateReport(p *profile.Profile, cmd []string, vars variables, o *plugin.
}
func applyCommandOverrides(cmd []string, v variables... | Have peek command honor "tagfocus"
The peek command allows looking at details of a function, and it
avoids any trimming to provide full details. However, when using
tagfocus it is useful to still limit to the filtered samples.
With this change peek will honor tagfocus, but it will avoid any
other trimming. | google_pprof | train |
ece90dcf64fd533c27650afe08e1cd5ba3c59a3c | diff --git a/hcam_widgets/misc.py b/hcam_widgets/misc.py
index <HASH>..<HASH> 100644
--- a/hcam_widgets/misc.py
+++ b/hcam_widgets/misc.py
@@ -232,7 +232,10 @@ def createJSON(g, full=True):
Container with globals
"""
data = dict()
- data['gps_attached'] = 1 if g.cpars['gps_attached'] else 0
+ if 'g... | don't assume gps_attached in cpars | HiPERCAM_hcam_widgets | train |
d4c15e10eaf8fb6fc6fe3acef770b275e287134e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -15,7 +15,7 @@ setup(name='tftpy',
'Environment :: Console',
'Environment :: No Input/Output (Daemon)',
'Intended Audience :: Developers',
- 'License :: OSI-Approved Open Source :: MIT License... | Fixing the license in the setup.py | msoulier_tftpy | train |
4366c4ae6377eb24dbf9b8d7844ec8df05b1ea5c | diff --git a/grimoire/elk/git.py b/grimoire/elk/git.py
index <HASH>..<HASH> 100644
--- a/grimoire/elk/git.py
+++ b/grimoire/elk/git.py
@@ -82,10 +82,6 @@ class GitEnrich(Enrich):
"author_name": {
"type": "string",
"index":"not_analyzed"
- },
- ... | [MBox] Fix origin mapping. Undo incorrect change in enriched indexes mapping. | chaoss_grimoirelab-elk | train |
e487445588836b04cad08fe3c242399d1640366a | diff --git a/src/core/renderer.js b/src/core/renderer.js
index <HASH>..<HASH> 100644
--- a/src/core/renderer.js
+++ b/src/core/renderer.js
@@ -159,7 +159,10 @@ class Renderer {
// Performance optimization to avoid doing DFS at each feature iteration
const viewportExpressions = this._getViewportExpress... | Move feature properties & category decoding logic to expressions | CartoDB_carto-vl | train |
1f3f4ac40c0dbf9f42710aeea333e038ed8bcd91 | diff --git a/lib/bless.js b/lib/bless.js
index <HASH>..<HASH> 100644
--- a/lib/bless.js
+++ b/lib/bless.js
@@ -40,6 +40,10 @@
break;
case 'comment':
break;
+ case 'font-face':
+ break;
+ case 'keyframes':
+ break;
default:
numNestedRuleS... | Updating css dep and adding cases for keyframes and font-faces | BlessCSS_bless | train |
9ddc09afe4eccc92f4aba05ddf616e74e30f5a25 | diff --git a/lang/en_utf8/grades.php b/lang/en_utf8/grades.php
index <HASH>..<HASH> 100644
--- a/lang/en_utf8/grades.php
+++ b/lang/en_utf8/grades.php
@@ -14,7 +14,7 @@ $string['addoutcomeitem'] = 'Add outcome item';
$string['aggregateextracreditmean'] = 'Mean of grades (with extra credits)';
$string['aggregatemean']... | Merged string fix from stable <I> | moodle_moodle | train |
140b13ad759b4abfcc9ccf9b8a027753b920102d | diff --git a/lib/build-config.js b/lib/build-config.js
index <HASH>..<HASH> 100644
--- a/lib/build-config.js
+++ b/lib/build-config.js
@@ -101,7 +101,7 @@ async function createOrUpdateBuildConfig (config) {
}
// There is a buildConfig, check our "recreate" option if we need to delete and re-create
- if (config... | fix: build.recreate should also check the string version of true/false (#<I>)
fixes #<I> | nodeshift_nodeshift | train |
f50aee1558aaa8d23dec6f2db6f7ec64999ee335 | diff --git a/www/sitewaertsdocumentviewer.js b/www/sitewaertsdocumentviewer.js
index <HASH>..<HASH> 100644
--- a/www/sitewaertsdocumentviewer.js
+++ b/www/sitewaertsdocumentviewer.js
@@ -235,7 +235,10 @@ var SitewaertsDocumentViewer = {
var linkHandlers = {};
if (options.linkHandlers) {
o... | make link handler precedence consistent
always use the first matching link handler whether the pattern is identical or not | sitewaerts_cordova-plugin-document-viewer | train |
4bc83923ddd1ed7daffa0e2d5d714c78e6077c94 | diff --git a/src/mdptoolbox/mdp.py b/src/mdptoolbox/mdp.py
index <HASH>..<HASH> 100644
--- a/src/mdptoolbox/mdp.py
+++ b/src/mdptoolbox/mdp.py
@@ -798,28 +798,21 @@ class PolicyIterationModified(PolicyIteration):
# PolicyIteration doesn't pass epsilon to MDP.__init__() so we will
# check it ... | clean up PolicyIterationModified | sawcordwell_pymdptoolbox | train |
4cf5b069c81f77e6795d58996c4d323bd624a1f5 | diff --git a/addok/core.py b/addok/core.py
index <HASH>..<HASH> 100644
--- a/addok/core.py
+++ b/addok/core.py
@@ -476,7 +476,7 @@ class Search(BaseHelper):
def reduce_tokens(self):
# Only if bucket is empty or we have margin on should_match_threshold.
- if self.bucket_dry\
+ if self.bucke... | Do not try to extend results reducing token when bucket is dry
Rationale: it slows down search that have good result with bad
score. Example "bazi montbrun". | addok_addok | train |
771104eae419a10854a764c798add0cab9d723c4 | diff --git a/src/Query/AggregationQuery.php b/src/Query/AggregationQuery.php
index <HASH>..<HASH> 100644
--- a/src/Query/AggregationQuery.php
+++ b/src/Query/AggregationQuery.php
@@ -23,7 +23,7 @@ class AggregationQuery extends Query
*/
public function setOperations(array $operations)
{
- $this->... | bugfix: corrected property name typo in AggregationQuery | lexide_reposition | train |
3de4db69896438213e695840e241b15ae592a375 | diff --git a/lib/support/cli.js b/lib/support/cli.js
index <HASH>..<HASH> 100644
--- a/lib/support/cli.js
+++ b/lib/support/cli.js
@@ -135,6 +135,8 @@ module.exports.parseCommandLine = function parseCommandLine() {
/**
InfluxDB cli option
*/
+ /*
+ // Hide this until it's ready to release
... | Remove unimplemented parameters in CLI
Lets add them again when we implement them. | sitespeedio_sitespeed.io | train |
1013b77489c8afc9e30e5d8225c94cfff90a5c1c | diff --git a/turbolift/arguments/optionals.py b/turbolift/arguments/optionals.py
index <HASH>..<HASH> 100644
--- a/turbolift/arguments/optionals.py
+++ b/turbolift/arguments/optionals.py
@@ -52,6 +52,11 @@ def optional_args(parser):
default=os.getenv('TURBO_LOGS', os.getenv('HOME')),
... | added the ability to change the log file | cloudnull_turbolift | train |
b4597a46758d66d707aa3ba1215aca12248b0531 | diff --git a/vendor/k8s.io/client-go/1.4/rest/config.go b/vendor/k8s.io/client-go/1.4/rest/config.go
index <HASH>..<HASH> 100644
--- a/vendor/k8s.io/client-go/1.4/rest/config.go
+++ b/vendor/k8s.io/client-go/1.4/rest/config.go
@@ -25,6 +25,7 @@ import (
"path"
gruntime "runtime"
"strings"
+ "time"
"github.com... | UPSTREAM: <drop>: add Timeout to client-go Config
Add Timeout field to client-go Config object to keep e2e tests happy. This will
be replaced naturally during the rebase to <I>. | openshift_origin | train |
5977347377e9f6d6f2ad002b62fe45b2149b892d | diff --git a/packages/core/utils/environment.js b/packages/core/utils/environment.js
index <HASH>..<HASH> 100644
--- a/packages/core/utils/environment.js
+++ b/packages/core/utils/environment.js
@@ -3,6 +3,14 @@
export const IS_DEV = process.env.NODE_ENV === 'development';
export const IS_PROD = process.env.NODE_ENV ... | fix: update environmental check to return shadowDom support consistently | bolt-design-system_bolt | train |
a10c0daf1e032a93a8016a3aaeec9d36a8d4eebe | diff --git a/version.go b/version.go
index <HASH>..<HASH> 100644
--- a/version.go
+++ b/version.go
@@ -15,14 +15,14 @@ import (
// Version represents main version number of the current release
// of the Triton-go SDK.
-const Version = "1.3.0"
+const Version = "1.4.0"
// Prerelease adds a pre-release marker to th... | Preparing for <I> release | joyent_triton-go | train |
c9c340b48dd06aa8c005bd5b1fde58842d5e67de | diff --git a/Neos.Neos/Classes/Controller/Module/Administration/UsersController.php b/Neos.Neos/Classes/Controller/Module/Administration/UsersController.php
index <HASH>..<HASH> 100644
--- a/Neos.Neos/Classes/Controller/Module/Administration/UsersController.php
+++ b/Neos.Neos/Classes/Controller/Module/Administration/U... | BUGFIX: getAllowedRoles() no longer returns abstract roles | neos_neos-development-collection | train |
02bc1ab677b2f57768f85f3140d6b86f908cfacc | diff --git a/lib/bucket.js b/lib/bucket.js
index <HASH>..<HASH> 100644
--- a/lib/bucket.js
+++ b/lib/bucket.js
@@ -83,3 +83,12 @@ Bucket.prototype.indexOf = function(contact) {
return i;
return -1;
}
+
+Bucket.prototype.toString = function() {
+ var list = [];
+ for (var i = 0; i < this.size();... | Added better debugging, and insert lastSeen time into contact on update | nikhilm_kademlia | train |
547787cb38b60d5d12561a95c03607353850836f | diff --git a/bench/format/plot.py b/bench/format/plot.py
index <HASH>..<HASH> 100644
--- a/bench/format/plot.py
+++ b/bench/format/plot.py
@@ -298,7 +298,7 @@ class TimeSeriesCollection():
for val in self.data.iteritems():
stat_report = {}
full_series = map(lambda x: x, val[1])
- full_se... | Cut off even more data to retrieve stats (a quarter of all data now) | rethinkdb_rethinkdb | train |
de23c60cb29bee3ffab9336929543070c7d6342b | diff --git a/logger_test.go b/logger_test.go
index <HASH>..<HASH> 100644
--- a/logger_test.go
+++ b/logger_test.go
@@ -309,6 +309,12 @@ func BenchmarkLogChildChild(b *testing.B) {
}
}
+func BenchmarkLogChildChildChild(b *testing.B) {
+ for i := 0; i < b.N; i++ {
+ logMessage("BenchLogChildChildChild.Test.Test", D... | Added BenchmarkLogChildChildChild. | AlexanderThaller_logger | train |
bc38f0415a2e24462469e4df66c8a6a771b0932a | diff --git a/BimServer/www/js/bimserverapi.js b/BimServer/www/js/bimserverapi.js
index <HASH>..<HASH> 100644
--- a/BimServer/www/js/bimserverapi.js
+++ b/BimServer/www/js/bimserverapi.js
@@ -1444,7 +1444,7 @@ function BimServerWebSocket(baseUrl, bimServerApi) {
this.connect = function(callback) {
othis.openCallba... | Detection of websocket improved | opensourceBIM_BIMserver | train |
430d1269201460818e465d9659b490fd042cb57a | diff --git a/src/BackupDestination/BackupPath.php b/src/BackupDestination/BackupPath.php
index <HASH>..<HASH> 100644
--- a/src/BackupDestination/BackupPath.php
+++ b/src/BackupDestination/BackupPath.php
@@ -21,7 +21,7 @@ class BackupPath
*/
public function isBackupFile($disk, string $path) : bool
{
- ... | check zip first and fallback to mime type check | spatie_laravel-backup | train |
6fd2566ed5915294540adaec26c04a38e0f6a7bb | diff --git a/multimap.py b/multimap.py
index <HASH>..<HASH> 100644
--- a/multimap.py
+++ b/multimap.py
@@ -254,16 +254,22 @@ class MutableMultiMap(MultiMap, collections.MutableMapping):
"""
- def __delitem__(self, key):
+ def remove(self, key):
key = self._conform_key(key)
self.... | - del multimap[key] raises a KeyError if it does
nothing
- added multimap.remove(key) which is silent | mikeboers_MultiMap | train |
deef3f1b61626be8650486edacc17d3cdddcd64a | diff --git a/examples/demo-react-native/android/app/src/androidTest/java/com/example/DetoxTest.java b/examples/demo-react-native/android/app/src/androidTest/java/com/example/DetoxTest.java
index <HASH>..<HASH> 100644
--- a/examples/demo-react-native/android/app/src/androidTest/java/com/example/DetoxTest.java
+++ b/exam... | Remove excessive usage of package ID in example's DetoxTest.java | wix_Detox | train |
69e838cf2dfbfe86a5af9e704a0839e19f49553f | diff --git a/tests/test_core.py b/tests/test_core.py
index <HASH>..<HASH> 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -2,10 +2,14 @@
from __future__ import absolute_import, print_function, unicode_literals
from ._lib import assert_called_with_threshold
from cider import Cider
-from mock import MagicM... | Fix tests on python 3 | msanders_cider | train |
7c2cf5f5489180e059cdca8bc17346395525a4ef | diff --git a/staging/src/k8s.io/code-generator/cmd/client-gen/generators/generator_for_clientset.go b/staging/src/k8s.io/code-generator/cmd/client-gen/generators/generator_for_clientset.go
index <HASH>..<HASH> 100644
--- a/staging/src/k8s.io/code-generator/cmd/client-gen/generators/generator_for_clientset.go
+++ b/stag... | Let the caller handle the error
Both logging and returning an error is an antipattern | kubernetes_kubernetes | train |
d503facec47ddb059a7906d49bbfe66715d6f7d4 | diff --git a/generators/generator-constants.js b/generators/generator-constants.js
index <HASH>..<HASH> 100644
--- a/generators/generator-constants.js
+++ b/generators/generator-constants.js
@@ -23,7 +23,7 @@ const DOCKER_JAVA_JRE = 'openjdk:8-jre-alpine';
const DOCKER_MYSQL = 'mysql:5.7.20';
const DOCKER_MARIADB = '... | Upgrade to the latest MongoDB release | jhipster_generator-jhipster | train |
f4ae3e85410ca2aeb8f90f798f7d0e4f112acfc4 | diff --git a/lib/pacto/stubs/built_in.rb b/lib/pacto/stubs/built_in.rb
index <HASH>..<HASH> 100644
--- a/lib/pacto/stubs/built_in.rb
+++ b/lib/pacto/stubs/built_in.rb
@@ -9,9 +9,16 @@ module Pacto
end
def stub_request!(request, response)
- request_pattern = build_request_pattern(request, response... | BuiltIn doesn't need to return the pattern | thoughtworks_pacto | train |
3b5991e8d18455faa9cf160bd52d6bf3e1944698 | diff --git a/wsgiservice/resource.py b/wsgiservice/resource.py
index <HASH>..<HASH> 100644
--- a/wsgiservice/resource.py
+++ b/wsgiservice/resource.py
@@ -518,7 +518,7 @@ class Help(Resource):
for (param in this.method.parameters) {
var param_id = 'param_' + this.resource['... | Allow the Accept header to be set in the help interface. | pneff_wsgiservice | train |
236ad27fa892ce2e4366c8bc16d60d67a3bba096 | diff --git a/src/mg/Ding/Container/Impl/ContainerImpl.php b/src/mg/Ding/Container/Impl/ContainerImpl.php
index <HASH>..<HASH> 100644
--- a/src/mg/Ding/Container/Impl/ContainerImpl.php
+++ b/src/mg/Ding/Container/Impl/ContainerImpl.php
@@ -340,7 +340,7 @@ class ContainerImpl implements IContainer
try
{... | performance improvement when not using annotations in the container x2
speed gain | marcelog_Ding | train |
201abf73e369b8b25d61e81b993da9738b1fb3bb | diff --git a/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/SnakRdfConverter.java b/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/SnakRdfConverter.java
index <HASH>..<HASH> 100644
--- a/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/SnakRdfConverter.java
+++ b/wdtk-rdf/src/main/java/org/wikidata/wdtk/rdf/SnakRdfConverter.ja... | rdf: export SomeValue as direct bnode triple, instead of type
This is how <URL> | Wikidata_Wikidata-Toolkit | train |
c89303cf5937a4dc7cf1eda8e662dc702b5e0ad9 | diff --git a/irc3/plugins/command.py b/irc3/plugins/command.py
index <HASH>..<HASH> 100644
--- a/irc3/plugins/command.py
+++ b/irc3/plugins/command.py
@@ -267,7 +267,9 @@ class Commands(dict):
def split_command(self, data, use_shlex=None):
if data:
- if (use_shlex or self.use_shlex) is True:
... | Fixed use_shlex in Commands.split_command | gawel_irc3 | train |
c99b1c821a0ade2332a3a4e3fb1c48baa4b3e3bb | diff --git a/executor/join.go b/executor/join.go
index <HASH>..<HASH> 100644
--- a/executor/join.go
+++ b/executor/join.go
@@ -54,7 +54,6 @@ type HashJoinExec struct {
innerFinished chan error
hashJoinBuffers []*hashJoinBuffer
workerWaitGroup sync.WaitGroup // workerWaitGroup is for sync multiple join workers.
... | executor: fix hash join sqllogic test block (#<I>) | pingcap_tidb | train |
9eac0dd3c95758f8553f14e347e2fd04bb26b0bb | diff --git a/lntest/itest/lnd_macaroons_test.go b/lntest/itest/lnd_macaroons_test.go
index <HASH>..<HASH> 100644
--- a/lntest/itest/lnd_macaroons_test.go
+++ b/lntest/itest/lnd_macaroons_test.go
@@ -22,7 +22,7 @@ import (
// enabled on the gRPC interface, no requests with missing or invalid
// macaroons are allowed. ... | itest: fix crash in parallel macaroon tests | lightningnetwork_lnd | train |
a3b677e0f685671c8304d6677c9767549ba7e891 | diff --git a/pyspectral/blackbody.py b/pyspectral/blackbody.py
index <HASH>..<HASH> 100644
--- a/pyspectral/blackbody.py
+++ b/pyspectral/blackbody.py
@@ -62,7 +62,7 @@ def blackbody_wn(wavenumber, temp):
if np.isscalar(wavenumber):
wavnum = np.array([wavenumber, ], dtype='float64')
else:
- wa... | Fixing bug in and testing blackbody_wn | pytroll_pyspectral | train |
828ea1e5cd87d38350c9d1cd5df4a39472804467 | diff --git a/pkg/endpoint/bpf.go b/pkg/endpoint/bpf.go
index <HASH>..<HASH> 100644
--- a/pkg/endpoint/bpf.go
+++ b/pkg/endpoint/bpf.go
@@ -642,6 +642,13 @@ func (e *Endpoint) regenerateBPF(owner Owner, epdir, reason string) (uint64, boo
return 0, compilationExecuted, fmt.Errorf("Error while configuring proxy redirec... | endpoint: Fix deadlock and missing lock during syncPolicyMap()
Fixes a deadlock in the error path of regenerateBPF() and fixes a missing lock
on the endpoint while e.syncPolicyMap() is called which writes to the endpoint
structure.
Fixes: #<I>
Fixes: ea<I>a6b2eb2 ("endpoint: Fix sidecar proxy deadlock during BPF gene... | cilium_cilium | train |
a07c0a10c99bacda8552184bda9bc19bf5700f45 | diff --git a/servlet/src/main/java/io/undertow/servlet/spec/AsyncContextImpl.java b/servlet/src/main/java/io/undertow/servlet/spec/AsyncContextImpl.java
index <HASH>..<HASH> 100644
--- a/servlet/src/main/java/io/undertow/servlet/spec/AsyncContextImpl.java
+++ b/servlet/src/main/java/io/undertow/servlet/spec/AsyncContex... | Make sure async timeout listener is not run in the IO thread | undertow-io_undertow | train |
867447182424d525147761c5cab2c7385e90c3ee | diff --git a/src/Exportable.php b/src/Exportable.php
index <HASH>..<HASH> 100644
--- a/src/Exportable.php
+++ b/src/Exportable.php
@@ -11,7 +11,7 @@ use InvalidArgumentException;
/**
* Trait Exportable.
*
- * @property bool $with_header
+ * @property bool $with_header
* @property \Illum... | Apply fixes from StyleCI (#<I>) | rap2hpoutre_fast-excel | train |
f77a10c14f4b963fe6c6e3689ce6e3575aac5910 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -14,6 +14,8 @@ func (b *Bucket) do(k string, f func(mc *memcachedClient) error) error {
return f(b.connections[h])
}
+// Set a value in this bucket.
+// The value will be serialized into a JSON document.
func (b *Buc... | Had some docs sneak in. | couchbase_go-couchbase | train |
19ea00fa1badcc065d7e9520af9f9d35af431783 | diff --git a/hooks-admin.php b/hooks-admin.php
index <HASH>..<HASH> 100644
--- a/hooks-admin.php
+++ b/hooks-admin.php
@@ -32,6 +32,9 @@ $is_book = Book::isBook();
// Look & feel of admin interface and Dashboard
// -------------------------------------------------------------------------------------------------------... | Remove the Try Gutenberg panel everywhere (#<I>)
Not just books. Avoid confusing users who are admins. | pressbooks_pressbooks | train |
697e6057475b63c13d20b1c01d642e3bdb81c32b | diff --git a/lib/magic_lamp.rb b/lib/magic_lamp.rb
index <HASH>..<HASH> 100644
--- a/lib/magic_lamp.rb
+++ b/lib/magic_lamp.rb
@@ -49,7 +49,8 @@ module MagicLamp
def define(options = {}, &block)
raise_missing_block_error(block, __method__)
defaults_manager = DefaultsManager.new(configuration, options... | made #define execute its block in the context of the created defaults manager | crismali_magic_lamp | train |
3103dfdf1baec2c51118efcb3e9d13ec1fc6d0b5 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -4,8 +4,8 @@
# Interpreter version: python 2.7
#
# Imports =====================================================================
-from setuptools import setup, find_packages
-from docs import getVersion
+from setuptools imp... | Fixed missing docs/ imports in setup.py. | Bystroushaak_zeo_connector | train |
9b8da1a8013a2c50cf5b2be6e9155ab6d6c0a8f9 | diff --git a/src/debug/panel_js/utils.js b/src/debug/panel_js/utils.js
index <HASH>..<HASH> 100644
--- a/src/debug/panel_js/utils.js
+++ b/src/debug/panel_js/utils.js
@@ -17,7 +17,7 @@ function render() {
function gotoTab(tabName) {
var appData = require('./app_data');
- appData.changedTab = true;
+ appData.scr... | Debugger: scroll to selected view; refactor name of scroll flag | wayfair_tungstenjs | train |
a707fae6a8874c51db7edad399e0beb41ae0867a | diff --git a/vim25/soap/client.go b/vim25/soap/client.go
index <HASH>..<HASH> 100644
--- a/vim25/soap/client.go
+++ b/vim25/soap/client.go
@@ -53,6 +53,7 @@ type Client struct {
u url.URL
insecure bool
+ _ uint32 // for alignment: https://code.google.com/p/go/issues/detail?id=6404
cn uint64 ... | Fix alignment for <I>-bit go
Fixes github issue #<I> | vmware_govmomi | train |
4f58789d4646ad928f638e0cbc63e30223b39ba5 | diff --git a/packages/ember-application/lib/system/application.js b/packages/ember-application/lib/system/application.js
index <HASH>..<HASH> 100644
--- a/packages/ember-application/lib/system/application.js
+++ b/packages/ember-application/lib/system/application.js
@@ -144,9 +144,8 @@ export function _resetLegacyAddon... | [DOC release] fixed broken url in docs | emberjs_ember.js | train |
0f64237a4e416f3bf5e4a38bfb14b0864a5a363a | diff --git a/google-cloud-datastore/lib/google/cloud/datastore/v1/credentials.rb b/google-cloud-datastore/lib/google/cloud/datastore/v1/credentials.rb
index <HASH>..<HASH> 100644
--- a/google-cloud-datastore/lib/google/cloud/datastore/v1/credentials.rb
+++ b/google-cloud-datastore/lib/google/cloud/datastore/v1/credenti... | Re-generate google-cloud-datastore files (#<I>)
* Update copyright year to <I>. | googleapis_google-cloud-ruby | train |
8d47f90b82c18f61cd59e7e3ee4864583b700f1b | diff --git a/mysensors/__init__.py b/mysensors/__init__.py
index <HASH>..<HASH> 100644
--- a/mysensors/__init__.py
+++ b/mysensors/__init__.py
@@ -81,7 +81,7 @@ class Gateway(object):
self.alert(msg)
# Check if reboot is true
if self.sensors[msg.node_id].reboot:
- return msg.copy(
... | Add Message method modify (#<I>)
* Use modify to change a message attribute and return the same message
instance.
* Ensure value_type is correct type when setting. | theolind_pymysensors | train |
48d17f2d714b95a141f7026950125d2056918fbc | diff --git a/closure/goog/ui/keyboardshortcuthandler.js b/closure/goog/ui/keyboardshortcuthandler.js
index <HASH>..<HASH> 100644
--- a/closure/goog/ui/keyboardshortcuthandler.js
+++ b/closure/goog/ui/keyboardshortcuthandler.js
@@ -793,7 +793,7 @@ goog.ui.KeyboardShortcutHandler.prototype.handleGeckoKeyUp_ = function(e)... | Fix the KeyboardShortcutHandler to not fire shortcuts if AltGr is pressed together with Shift. This combination is often used for capitalized forms of the text that was inserted with just AltGr, so we shouldn't be firing shortcuts until key up so we know for sure there is no character insertion.
-------------
Created b... | google_closure-library | train |
c966a35bebda6f79c1c79a835367ba17f5d1a0d5 | diff --git a/lib/Cake/Console/Command/UpgradeShell.php b/lib/Cake/Console/Command/UpgradeShell.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Console/Command/UpgradeShell.php
+++ b/lib/Cake/Console/Command/UpgradeShell.php
@@ -702,11 +702,11 @@ class UpgradeShell extends Shell {
* @return void
*/
protected functi... | Fixed bug in UpgradeShell::findFiles().
$this->_files was reset on each loop through paths, which means, for
example, if you still had the old 'views' directory kicking around
the results from 'View' would be overwritten. | cakephp_cakephp | train |
f579f176fc3e987615440aa89bc0f250803ad037 | diff --git a/nni/algorithms/hpo/dngo_tuner.py b/nni/algorithms/hpo/dngo_tuner.py
index <HASH>..<HASH> 100644
--- a/nni/algorithms/hpo/dngo_tuner.py
+++ b/nni/algorithms/hpo/dngo_tuner.py
@@ -40,7 +40,7 @@ def _random_config(search_space, random_state):
return chosen_config
-class DngoTuner(Tuner):
+class DNGOT... | Fix DNGO tuner class name (#<I>) | Microsoft_nni | train |
25f6dcdddc349a255cc0cee828b20a98c0fbd0af | diff --git a/nhlib/geo/surface/complex_fault.py b/nhlib/geo/surface/complex_fault.py
index <HASH>..<HASH> 100644
--- a/nhlib/geo/surface/complex_fault.py
+++ b/nhlib/geo/surface/complex_fault.py
@@ -18,13 +18,10 @@ Module :mod:`nhlib.geo.surface.complex_fault` defines
:class:`ComplexFaultSurface`.
"""
import numpy
-... | geo/surface/complex_fault: removed unused imports | gem_oq-engine | train |
40687f8cc0f72bdd99e9a6a9412e249353634695 | diff --git a/system/src/Grav/Common/Flex/Types/Pages/PageIndex.php b/system/src/Grav/Common/Flex/Types/Pages/PageIndex.php
index <HASH>..<HASH> 100644
--- a/system/src/Grav/Common/Flex/Types/Pages/PageIndex.php
+++ b/system/src/Grav/Common/Flex/Types/Pages/PageIndex.php
@@ -72,11 +72,13 @@ class PageIndex extends FlexP... | Fixed caching issues with Flex index file | getgrav_grav | train |
8fdc80a7dc723226bdb9112c68d35eb0c1417aab | diff --git a/pkg/backend/snapshot.go b/pkg/backend/snapshot.go
index <HASH>..<HASH> 100644
--- a/pkg/backend/snapshot.go
+++ b/pkg/backend/snapshot.go
@@ -178,7 +178,6 @@ func (ssm *sameSnapshotMutation) mustWrite(old, new *resource.State) bool {
contract.Assert(old.URN == new.URN)
contract.Assert(old.Delete == new... | Check for input diffs when eliding same steps. (#<I>)
It is possible for the inputs of a "same" resource to have changed even
if the contents of the input bags are different if the resource's
provider deems the physical change to be semantically irrelevant. | pulumi_pulumi | train |
696fc8c4f74891c8681bdcf40d3e9be0bb63c5fb | diff --git a/build.py b/build.py
index <HASH>..<HASH> 100755
--- a/build.py
+++ b/build.py
@@ -626,7 +626,8 @@ def host_examples(t):
t.makedirs(examples_dir)
t.rm_rf(build_dir)
t.makedirs(build_dir)
- t.cp(EXAMPLES, examples_dir)
+ t.rm_rf(examples_dir)
+ t.cp_r('examples', examples_dir)
fo... | Copying data folder to hosted examples directory
We need to copy all of the examples directory, because we need
the data subdirectory. | openlayers_openlayers | train |
ebef77b96574c00ec3d83803b6da5c1f1f0bd8da | diff --git a/DataHandling/DataHandling/DataHandling.py b/DataHandling/DataHandling/DataHandling.py
index <HASH>..<HASH> 100644
--- a/DataHandling/DataHandling/DataHandling.py
+++ b/DataHandling/DataHandling/DataHandling.py
@@ -324,9 +324,6 @@ class DataObject():
return self.Radius, self.Mass, self.ConvFactor... | added getzxy with ifft filter implementation | AshleySetter_optoanalysis | train |
0c1c67e77157130597603f8a02a9a66764ea83be | diff --git a/core/src/org/nightcode/common/base/Hexs.java b/core/src/org/nightcode/common/base/Hexs.java
index <HASH>..<HASH> 100644
--- a/core/src/org/nightcode/common/base/Hexs.java
+++ b/core/src/org/nightcode/common/base/Hexs.java
@@ -141,7 +141,7 @@ public final class Hexs {
}
private String fromByteArrayI... | Fixed internal buffer capacity calculation in Hexs.fromByteArrayInternal method. | nightcode_yaranga | train |
0cfe30d86efcd3712c39080751dc6cb410375f29 | diff --git a/php/commands/transient.php b/php/commands/transient.php
index <HASH>..<HASH> 100644
--- a/php/commands/transient.php
+++ b/php/commands/transient.php
@@ -30,6 +30,8 @@ class Transient_Command extends WP_CLI_Command {
/**
* Get a transient value.
*
+ * ## OPTIONS
+ *
* <key>
* : Key for the ... | Add missing ## OPTIONS heading throughout | wp-cli_cache-command | train |
7bf1c0f32ab5dabdada659e713a14ac08cc27694 | diff --git a/spec/pathMatcher.spec.js b/spec/pathMatcher.spec.js
index <HASH>..<HASH> 100644
--- a/spec/pathMatcher.spec.js
+++ b/spec/pathMatcher.spec.js
@@ -49,16 +49,6 @@ describe('pathMatcher', function () {
expect(test('/x/y/z.txt')).toBe(true); // should match mask 2
});
- it("backslashe... | removed win-specyfic test, which will not work on nix | szwacz_fs-jetpack | train |
5b66fba60fad48a704e369275a5eee58fbf3d6cf | diff --git a/activerecord/test/cases/associations/inverse_associations_test.rb b/activerecord/test/cases/associations/inverse_associations_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/associations/inverse_associations_test.rb
+++ b/activerecord/test/cases/associations/inverse_associations_test.rb
@... | Fix inverse associations test
`InverseHasManyTests#test_parent_instance_should_be_shared_within_create_block_of_new_child`
was mistakenly the same as
`InverseHasManyTests#test_parent_instance_should_be_shared_within_build_block_of_new_child`. | rails_rails | train |
a37e7f7dd40834fac57b6a77b5ca37c14a43bd08 | diff --git a/example/example.php b/example/example.php
index <HASH>..<HASH> 100644
--- a/example/example.php
+++ b/example/example.php
@@ -1,31 +1,28 @@
<?php
/**
- * LICENSE
+ * --------------------------------------------------------------------
*
- * Copyright © 2017 Teclib'
+ * LICENSE
*
- * This file is part... | docs(example): fixed wrong licence text in example file. | glpi-project_php-library-glpi | train |
0e68223977e83280c1c529b87c6c30ff3b2fc4f0 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -11,6 +11,7 @@ mongoose.Model.prototype.save = function(cb) {
var retries = idInfo.retries;
var self = this;
function attemptSave() {
+ console.info(idInfo.... | Removed trace and fixed the custom id generation feature | jjwchoy_mongoose-shortid | train |
e744f79769586fad753ad73418b1691d84c634f1 | diff --git a/lib/runners/nodehost.js b/lib/runners/nodehost.js
index <HASH>..<HASH> 100644
--- a/lib/runners/nodehost.js
+++ b/lib/runners/nodehost.js
@@ -26,7 +26,6 @@ process.stdin.on('data', function(test) {
$LOG: function(log) {
console.log(log);
},
- require: require,
... | Don't pass require to child context, doesn't work anyway | bterlson_test262-harness | train |
52f5e216ccc791485fada5be8089ac3a3a5c5399 | diff --git a/python/nano/src/setup.py b/python/nano/src/setup.py
index <HASH>..<HASH> 100644
--- a/python/nano/src/setup.py
+++ b/python/nano/src/setup.py
@@ -74,8 +74,8 @@ def setup_package():
tensorflow_requires = ["intel-tensorflow"]
pytorch_requires = ["torch==1.8.0",
- "torchvisi... | [BIGDL NANO] fix pl version to <I> (#<I>)
* fix pl version to <I>
* fix torchvision version | intel-analytics_BigDL | train |
b74e491830959a35ff5b2cf151358b2324bad968 | diff --git a/coalaip/models.py b/coalaip/models.py
index <HASH>..<HASH> 100644
--- a/coalaip/models.py
+++ b/coalaip/models.py
@@ -240,20 +240,18 @@ def manifestation_model_factory(*, validator=validators.is_manifestation_model,
def right_model_factory(*, validator=validators.is_right_model,
- ... | fix(models): add schema.org to all models' ld_context (#<I>)
Otherwise, properties derived from schema.org's will not be picked up by
JSON-LD parsers. | COALAIP_pycoalaip | train |
572aa96dab75ec57f961fbca87254ed1facda1c2 | diff --git a/lib/native-watcher-registry.js b/lib/native-watcher-registry.js
index <HASH>..<HASH> 100644
--- a/lib/native-watcher-registry.js
+++ b/lib/native-watcher-registry.js
@@ -68,8 +68,11 @@ class RegistryTree {
for (let i = 0; i < children.length; i++) {
const childNode = children[i].node
... | Trigger reattachment after the parent watcher has started | atom_watcher | train |
d184f3c3d5a10d85195fb0edc3494b88b829fcc8 | diff --git a/test.js b/test.js
index <HASH>..<HASH> 100644
--- a/test.js
+++ b/test.js
@@ -21,7 +21,7 @@ try {
ccxt.markets.forEach (id => {
markets[id] = new (ccxt)[id] ({
- verbose: true,
+ verbose: false,
// proxy: 'https://crossorigin.me/',
// proxy: 'https://cors-anywhere.he... | switched test.js verbose mode off | ccxt_ccxt | train |
f3f1649fd593e67ec17c2e28afe00f5fdabce5b8 | diff --git a/src/main/java/com/lucidworks/spark/fusion/FusionPipelineClient.java b/src/main/java/com/lucidworks/spark/fusion/FusionPipelineClient.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/lucidworks/spark/fusion/FusionPipelineClient.java
+++ b/src/main/java/com/lucidworks/spark/fusion/FusionPipelineClien... | Change CookieSpecs to Standard to match with fusion 5 | lucidworks_spark-solr | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.