hash stringlengths 40 40 | diff stringlengths 131 26.7k | message stringlengths 7 694 | project stringlengths 5 67 | split stringclasses 1
value | diff_languages stringlengths 2 24 |
|---|---|---|---|---|---|
fc8d0755c48abc61a2f0e660d2210b4d70aad4c0 | diff --git a/worldengine/cli/main.py b/worldengine/cli/main.py
index <HASH>..<HASH> 100644
--- a/worldengine/cli/main.py
+++ b/worldengine/cli/main.py
@@ -125,12 +125,23 @@ def operation_ancient_map(world, map_filename, resize_factor, sea_color):
print("+ ancient map generated in '%s'" % map_filename)
+def __g... | implemented methods to recognize pickle files
Former-commit-id: <I>d1faee4a<I>a9ba6defaa1afc<I> | Mindwerks_worldengine | train | py |
e54c4517a78ea87e6611784f9900e82f60a23303 | diff --git a/docker/daemon_freebsd.go b/docker/daemon_freebsd.go
index <HASH>..<HASH> 100644
--- a/docker/daemon_freebsd.go
+++ b/docker/daemon_freebsd.go
@@ -1,6 +1,6 @@
// +build daemon
-package docker
+package main
// notifySystem sends a message to the host when the server is ready to be used
func notifySyst... | Fix "./docker" package name on freebsd
This fixes "can't load package: package ./docker: found packages client.go (main) and daemon_freebsd.go (docker)" | moby_moby | train | go |
7646cac558771ad36c6d70877a5192b9a0c0fc02 | diff --git a/lib/Thelia/Action/Module.php b/lib/Thelia/Action/Module.php
index <HASH>..<HASH> 100644
--- a/lib/Thelia/Action/Module.php
+++ b/lib/Thelia/Action/Module.php
@@ -129,7 +129,12 @@ class Module extends BaseAction implements EventSubscriberInterface
$modules = $moduleValidator->getModulesDependOf();
... | Removed PHP <I> dependency, fixing #<I>. | thelia_core | train | php |
40805037efdec7ae6cf893242fa21c3df2f27fa3 | diff --git a/src/Modal.js b/src/Modal.js
index <HASH>..<HASH> 100644
--- a/src/Modal.js
+++ b/src/Modal.js
@@ -21,7 +21,7 @@ import Footer from './ModalFooter';
import BaseModal from 'react-overlays/lib/Modal';
import isOverflowing from 'react-overlays/lib/utils/isOverflowing';
-import pick from 'lodash/object/pick... | Require lodash-compat instead of lodash from Modal.js
lodash-compat is what's listed under package.json. This matches how `pick` is imported from other source files in react-bootstrap too. | react-bootstrap_react-bootstrap | train | js |
415afb502969b00a0170598f19f53f32a5ac917b | diff --git a/lib/clamp/help.rb b/lib/clamp/help.rb
index <HASH>..<HASH> 100644
--- a/lib/clamp/help.rb
+++ b/lib/clamp/help.rb
@@ -1,3 +1,5 @@
+require 'stringio'
+
module Clamp
module Help | Oops ... I'd forgotten to require 'stringio'. | mdub_clamp | train | rb |
22cdba9db5ca13cc02d7067083a50a2623defc7b | diff --git a/src/DOM.js b/src/DOM.js
index <HASH>..<HASH> 100644
--- a/src/DOM.js
+++ b/src/DOM.js
@@ -243,8 +243,8 @@ Crafty.extend({
*/
inner: function(obj) {
var rect = obj.getBoundingClientRect(),
- x = rect.left,
- y = rect.top,
+ x = rect.left + window.pageXOffset,
+ y = rect.top + window.p... | * getBoundingRect includes scroll | craftyjs_Crafty | train | js |
2e1e061222f1e614bcb43eb6ea2f7ef020b9dc41 | diff --git a/test/plugins/anonymizeTest.js b/test/plugins/anonymizeTest.js
index <HASH>..<HASH> 100644
--- a/test/plugins/anonymizeTest.js
+++ b/test/plugins/anonymizeTest.js
@@ -12,7 +12,9 @@ const anonymize = require('../../plugins/anonymize'),
const browser = browserModule();
const dummyCfg = {
- forum: '... | Fixing dummyCfg for tests | SockDrawer_SockBot | train | js |
2bcb24d69f0f7bc07b466ee141f46aa08eb038ca | diff --git a/podcast/templatetags/podcast_tags.py b/podcast/templatetags/podcast_tags.py
index <HASH>..<HASH> 100644
--- a/podcast/templatetags/podcast_tags.py
+++ b/podcast/templatetags/podcast_tags.py
@@ -16,10 +16,7 @@ def show_url(context, *args, **kwargs):
"""Return the show feed URL with different protocol."... | Request has been in context since <I> | richardcornish_django-applepodcast | train | py |
964b65f98464f3b4f1a18e66144c3ce4db301704 | diff --git a/src/Core_Command.php b/src/Core_Command.php
index <HASH>..<HASH> 100644
--- a/src/Core_Command.php
+++ b/src/Core_Command.php
@@ -1263,8 +1263,9 @@ EOT;
}
$locale_subdomain = 'en_US' === $locale ? '' : substr( $locale, 0, 2 ) . '.';
+ $locale_suffix = 'en_US' === $locale ? '' : "-{$locale}";
... | Fix locale suffix for download URLs | wp-cli_core-command | train | php |
86128f544ee356d6ce04a4aed550b598d2d65be5 | diff --git a/src/Database/CollectionDelegator.php b/src/Database/CollectionDelegator.php
index <HASH>..<HASH> 100644
--- a/src/Database/CollectionDelegator.php
+++ b/src/Database/CollectionDelegator.php
@@ -225,7 +225,7 @@ class CollectionDelegator implements IteratorAggregate
*/
public function group()
... | fix CollectionDelegator's 'group' method alias | doubleleft_hook | train | php |
794f8afa584438f60e587396b570d1770c8a16a0 | diff --git a/sevenbridges/meta/fields.py b/sevenbridges/meta/fields.py
index <HASH>..<HASH> 100644
--- a/sevenbridges/meta/fields.py
+++ b/sevenbridges/meta/fields.py
@@ -64,9 +64,10 @@ class CompoundField(Field):
self.cls = cls
def __get__(self, instance, owner):
- if instance._data[self.name] i... | Fix __get__ methods empty check for CompoundField and CompoundListField | sbg_sevenbridges-python | train | py |
368e200bc952c02c44b6f549e6ed6ed4b6c050b5 | diff --git a/go/vt/vttablet/tabletserver/tabletserver.go b/go/vt/vttablet/tabletserver/tabletserver.go
index <HASH>..<HASH> 100644
--- a/go/vt/vttablet/tabletserver/tabletserver.go
+++ b/go/vt/vttablet/tabletserver/tabletserver.go
@@ -719,7 +719,11 @@ func (tsv *TabletServer) Execute(ctx context.Context, target *queryp... | changed the database name in vttablet | vitessio_vitess | train | go |
0bde38d3b182f6fc799eb98b4a56f40223bf708f | diff --git a/djangocms_installer/django/__init__.py b/djangocms_installer/django/__init__.py
index <HASH>..<HASH> 100644
--- a/djangocms_installer/django/__init__.py
+++ b/djangocms_installer/django/__init__.py
@@ -206,6 +206,8 @@ def _build_settings(config_data):
def setup_database(config_data):
with chdir(con... | Properly setup environment in djangocms_installer.django.setup_database | nephila_djangocms-installer | train | py |
8d1018ed6636e44530a04a221b73b1899f4bd2ac | diff --git a/pythran/toolchain.py b/pythran/toolchain.py
index <HASH>..<HASH> 100644
--- a/pythran/toolchain.py
+++ b/pythran/toolchain.py
@@ -261,14 +261,12 @@ def compile_cxxcode(cxxcode, module_so=None, keep_temp=False,
# Get a temporary C++ file to compile
fd, fdpath = _get_temp(cxxcode)
- try:
- ... | keep cpp files when compilation failed
* needed and really usefull for debug | serge-sans-paille_pythran | train | py |
a20e6fbd4827a67019cd516133db50de74b63aef | diff --git a/src/list.js b/src/list.js
index <HASH>..<HASH> 100644
--- a/src/list.js
+++ b/src/list.js
@@ -45,7 +45,6 @@ List.prototype.update = function (data) {
var view = views[i] || (views[i] = new View(initData, item, i));
}
var el = view.el;
- view.el = el;
el.__redom_view = view;
vi... | Remove a line that has no effect | redom_redom | train | js |
9e5c6735c3cb284cb87352a8160f49b9c4dad13b | diff --git a/lib/jsi/schema/application/child_application/draft06.rb b/lib/jsi/schema/application/child_application/draft06.rb
index <HASH>..<HASH> 100644
--- a/lib/jsi/schema/application/child_application/draft06.rb
+++ b/lib/jsi/schema/application/child_application/draft06.rb
@@ -4,6 +4,7 @@ module JSI
module Sche... | Schema::Application::ChildApplication::Draft<I> include ChildApplication::Contains | notEthan_jsi | train | rb |
889f017a4e34a838281886cb5d061ec81e87767c | diff --git a/lib/validate.js b/lib/validate.js
index <HASH>..<HASH> 100644
--- a/lib/validate.js
+++ b/lib/validate.js
@@ -94,10 +94,15 @@ function validateString(css, filename) {
}
function validateFile(filename) {
- var css = fs.readFileSync(filename, 'utf-8');
var result = {};
+ var css;
- result... | change validateFile to handle possible read file exception | csstree_validator | train | js |
6bbccf856dcc5301bce50970e7a099094357bbe2 | diff --git a/liquibase-core/src/main/java/liquibase/database/core/DB2Database.java b/liquibase-core/src/main/java/liquibase/database/core/DB2Database.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/database/core/DB2Database.java
+++ b/liquibase-core/src/main/java/liquibase/database/core/DB... | CORE-<I> Multi-schema improvements: DB2 schemas come through as catalogs sometimes | liquibase_liquibase | train | java |
aba95934df7857fb26ce6f0da96af534bbe16282 | diff --git a/tests/Installation/Commands/InstallCommandTest.php b/tests/Installation/Commands/InstallCommandTest.php
index <HASH>..<HASH> 100644
--- a/tests/Installation/Commands/InstallCommandTest.php
+++ b/tests/Installation/Commands/InstallCommandTest.php
@@ -166,7 +166,7 @@ class InstallCommandTest extends PHPUnit_... | for ci debugging commit | Wandu_Framework | train | php |
c23076af255c7992fec22eea582d3ad9eeb325cb | diff --git a/spec/support/database_access.rb b/spec/support/database_access.rb
index <HASH>..<HASH> 100644
--- a/spec/support/database_access.rb
+++ b/spec/support/database_access.rb
@@ -32,8 +32,8 @@ module DatabaseAccess
##
# Resets member and admin lists for the test database to [].
def clear_security
- ... | PUT /_security messup: the key is "names", not "users". | yipdw_analysand | train | rb |
489efe9c49a5c8943e25857ab2d84d2c6438da94 | diff --git a/bzr_commit_handler.py b/bzr_commit_handler.py
index <HASH>..<HASH> 100644
--- a/bzr_commit_handler.py
+++ b/bzr_commit_handler.py
@@ -604,8 +604,9 @@ class InventoryDeltaCommitHandler(GenericCommitHandler):
def record_delete(self, path, ie):
self._add_entry((path, None, ie.file_id, None))
... | fix inv-delta generation when deleting directories | jelmer_python-fastimport | train | py |
3a8c1264e87d965ea527d085d8749768db7d20a9 | diff --git a/src/com/opencms/template/cache/CmsUri.java b/src/com/opencms/template/cache/CmsUri.java
index <HASH>..<HASH> 100644
--- a/src/com/opencms/template/cache/CmsUri.java
+++ b/src/com/opencms/template/cache/CmsUri.java
@@ -1,7 +1,7 @@
/*
* File : $Source: /alkacon/cvs/opencms/src/com/opencms/template/cache/... | bugfix: accessrights in element cache now checks all groups the user is in. | alkacon_opencms-core | train | java |
60c0d29585a0a077729cf56e5e438c386b4cf255 | diff --git a/pyprophet/export.py b/pyprophet/export.py
index <HASH>..<HASH> 100644
--- a/pyprophet/export.py
+++ b/pyprophet/export.py
@@ -57,7 +57,7 @@ def export_tsv(infile, outfile, format, outcsv, ipf, peptide, protein):
protein_present = False
if protein:
- peptide_present = _check_sqlite_table(... | [FIX] Export protein q-values when present | PyProphet_pyprophet | train | py |
848940a24a816c605199e78e23f4b6f6860c7fa0 | diff --git a/core/Version.php b/core/Version.php
index <HASH>..<HASH> 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -20,5 +20,5 @@ final class Piwik_Version
* Current Piwik version
* @var string
*/
- const VERSION = '1.12-b19';
+ const VERSION = '1.12-b20';
} | Beta <I> (last beta hopefully!) | matomo-org_matomo | train | php |
d81881e43ea4d6ed9967d485c396c644e6eb78f1 | diff --git a/tweepy/client.py b/tweepy/client.py
index <HASH>..<HASH> 100644
--- a/tweepy/client.py
+++ b/tweepy/client.py
@@ -195,15 +195,15 @@ class Client(BaseClient):
Parameters
----------
bearer_token : str | None
- Twitter API Bearer Token
+ Twitter API OAuth 2.0 Bearer Token / Access... | Improve documentation for Client parameters
Specify OAuth <I>a or <I> and indicate bearer_token as OAuth <I> access token as well | tweepy_tweepy | train | py |
0e50ec8e43d786b4aa88bddc26a84733e2fd250f | diff --git a/src/foundations/core.py b/src/foundations/core.py
index <HASH>..<HASH> 100644
--- a/src/foundations/core.py
+++ b/src/foundations/core.py
@@ -190,11 +190,15 @@ def getCodeLayerName():
@return: Code layer name. ( String )
"""
- for frameIndex in range(len(inspect.stack())):
- frame = getFrame(frameIn... | Replace "getCodeLayerName" definition "for" loop by special "while" infinite loop resulting in approximately 4 time speed increase. | KelSolaar_Foundations | train | py |
0537306605873e8e18bc658045a6022cc20d5beb | diff --git a/p2p/net/swarm/swarm.go b/p2p/net/swarm/swarm.go
index <HASH>..<HASH> 100644
--- a/p2p/net/swarm/swarm.go
+++ b/p2p/net/swarm/swarm.go
@@ -90,6 +90,7 @@ type Swarm struct {
limiter *dialLimiter
gater connmgr.ConnectionGater
+ closeOnce sync.Once
ctx context.Context // is canceled when Close ... | cancel the ctx when closing, use a sync.Once to only close once | libp2p_go-libp2p | train | go |
9d5f4754a8450375c6a28028df683a95ceaa10aa | diff --git a/moneta-core/src/main/java/module-info.java b/moneta-core/src/main/java/module-info.java
index <HASH>..<HASH> 100644
--- a/moneta-core/src/main/java/module-info.java
+++ b/moneta-core/src/main/java/module-info.java
@@ -18,7 +18,7 @@ module org.javamoney.moneta {
exports org.javamoney.moneta.format;
... | Adjusted package name to common practice for JSRs | JavaMoney_jsr354-ri | train | java |
53ea1008eb132ad1465eb013dc3c214587a8de92 | diff --git a/build/tasks/build.js b/build/tasks/build.js
index <HASH>..<HASH> 100644
--- a/build/tasks/build.js
+++ b/build/tasks/build.js
@@ -34,7 +34,7 @@ gulp.task('concatDeps', ['bundleSfx'], function() {
gulp.src(JS_DEV_DEPS.concat([paths.redocBuilt]))
.pipe(sourcemaps.init({loadMaps: true}))
.pipe(concat... | Fix source map appended as base<I> | Rebilly_ReDoc | train | js |
f9760bc410ca6ca1bb2b637bf76d2afc5ee2d4d8 | diff --git a/src/Guzzle/Plugin/Cache/DefaultRevalidation.php b/src/Guzzle/Plugin/Cache/DefaultRevalidation.php
index <HASH>..<HASH> 100644
--- a/src/Guzzle/Plugin/Cache/DefaultRevalidation.php
+++ b/src/Guzzle/Plugin/Cache/DefaultRevalidation.php
@@ -100,7 +100,7 @@ class DefaultRevalidation implements RevalidationInte... | Fixing If-None-Match ETag | guzzle_guzzle3 | train | php |
baa6e64547085cdab48b974e0eb18941fdbb77d0 | diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index <HASH>..<HASH> 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -109,8 +109,12 @@ class ReplyCommand(Command):
else:
quotestring = 'Quoting %s (%s)\n' % (name, timestamp)
mailcontent = quotestring
- ... | use hook text_quote for quoting a messag body | pazz_alot | train | py |
5da6c5a095fca9fdd6457e981cd2caf4b2c29eee | diff --git a/cli/Valet/PhpFpm.php b/cli/Valet/PhpFpm.php
index <HASH>..<HASH> 100644
--- a/cli/Valet/PhpFpm.php
+++ b/cli/Valet/PhpFpm.php
@@ -44,7 +44,6 @@ class PhpFpm
}
$this->files->ensureDirExists('/usr/local/var/log', user());
- $this->files->ensureDirExists('/var/run/valet', user());
... | Move php-fpm socket
Subdirectories in /var/run are deleted on reboot. That causes php-fpm to fail after reboot, because the socket in /var/run/valet can't be created, since the subdirecotry does not exist. The php-fpm socket should be moved directly to /var/run. | laravel_valet | train | php |
63c119881400eef854a0ef379cd83c6734186d23 | diff --git a/app.rb b/app.rb
index <HASH>..<HASH> 100644
--- a/app.rb
+++ b/app.rb
@@ -10,7 +10,7 @@ require "lib/models"
require "lib/path"
require "lib/overrides"
-set :cache_enabled, (Nesta::Config.cache == "true")
+set :cache_enabled, Nesta::Config.cache
helpers do
def set_from_config(*variables) | Fixed caching bug; you could never enable it. | gma_nesta | train | rb |
f1ebfef24dcf22986660c2f1a65cbffe9a75dc7a | diff --git a/peyotl/api/phylesystem_api.py b/peyotl/api/phylesystem_api.py
index <HASH>..<HASH> 100644
--- a/peyotl/api/phylesystem_api.py
+++ b/peyotl/api/phylesystem_api.py
@@ -21,7 +21,6 @@ _REFR_NEVER, _REFR_SESSION, _REFR_ALWAYS = range(3)
_REFRESH_VALUES = ('never', # *DEFAULT* never call "git pull"
... | bug fix to bug in previous commit - need to know the repo_nexml2json to create a default schema | OpenTreeOfLife_peyotl | train | py |
6e87beff39bdba284893d99f3faedec054469bfa | diff --git a/lib/butterfli/caching.rb b/lib/butterfli/caching.rb
index <HASH>..<HASH> 100644
--- a/lib/butterfli/caching.rb
+++ b/lib/butterfli/caching.rb
@@ -8,7 +8,12 @@ module Butterfli::Caching
@cache = p
end
def cache
- return @cache || (self.cache = ( Butterfli.configuration.cache && Butterf... | Changed: Default to memory cache if no cache is configured | delner_butterfli | train | rb |
18dede0cfb33f9cd703b94b1e954169b01a95676 | diff --git a/elasticsearch-api/utils/thor/generate_source.rb b/elasticsearch-api/utils/thor/generate_source.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-api/utils/thor/generate_source.rb
+++ b/elasticsearch-api/utils/thor/generate_source.rb
@@ -154,12 +154,12 @@ module Elasticsearch
return termvectors_pa... | [API] Generator: Use array to store already used paths | elastic_elasticsearch-ruby | train | rb |
7e51a7cc4dc6073d41d6139879f348870bd77036 | diff --git a/build-coordinator/src/main/java/org/jboss/pnc/coordinator/builder/datastore/DatastoreAdapter.java b/build-coordinator/src/main/java/org/jboss/pnc/coordinator/builder/datastore/DatastoreAdapter.java
index <HASH>..<HASH> 100644
--- a/build-coordinator/src/main/java/org/jboss/pnc/coordinator/builder/datastore... | [NCL-<I>] made the database to store buildContentId even if build failed or smth went wrong | project-ncl_pnc | train | java |
d0123524ce53c533e23dec137cf7981895a45462 | diff --git a/lib/reporters/html/index.js b/lib/reporters/html/index.js
index <HASH>..<HASH> 100644
--- a/lib/reporters/html/index.js
+++ b/lib/reporters/html/index.js
@@ -47,9 +47,12 @@ var fs = require('fs'),
*/
PostmanHTMLReporter = function (newman, options) {
// @todo throw error here or simply don't catch ... | Added partial configuration to html report maker | postmanlabs_newman | train | js |
db0dd55c9c30f209daff71764779f5e5620f7572 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -36,6 +36,9 @@ setup(name='mappyfile',
author_email='sethg@geographika.co.uk',
license='MIT',
packages=['mappyfile'],
- # dependency_links=["http://github.com/erezsh/lark/tarball/master#egg=package-1.... | Add new client scripts to setup.py | geographika_mappyfile | train | py |
46f79d490733779100ae1516baa327e54ea34bbe | diff --git a/examples/11_to_10_downgrade/openioc_11_to_10.py b/examples/11_to_10_downgrade/openioc_11_to_10.py
index <HASH>..<HASH> 100644
--- a/examples/11_to_10_downgrade/openioc_11_to_10.py
+++ b/examples/11_to_10_downgrade/openioc_11_to_10.py
@@ -136,7 +136,7 @@ class ioc_manager:
for link in metadata.... | Fix error in downgrade script when making links. | mandiant_ioc_writer | train | py |
2e7cdc61fe71bcd1810f210c5b2de13ddc949a8e | diff --git a/system/Test/bootstrap.php b/system/Test/bootstrap.php
index <HASH>..<HASH> 100644
--- a/system/Test/bootstrap.php
+++ b/system/Test/bootstrap.php
@@ -59,10 +59,5 @@ $loader->initialize(new Config\Autoload(), new Config\Modules());
// Register the loader with the SPL autoloader stack.
$loader->register();... | call routes->getRoutes() in test bootstrap | codeigniter4_CodeIgniter4 | train | php |
939ae1760437aa02566f00a929640ac74054875a | diff --git a/tests/Channels/PresenceChannelReplicationTest.php b/tests/Channels/PresenceChannelReplicationTest.php
index <HASH>..<HASH> 100644
--- a/tests/Channels/PresenceChannelReplicationTest.php
+++ b/tests/Channels/PresenceChannelReplicationTest.php
@@ -50,9 +50,9 @@ class PresenceChannelReplicationTest extends Te... | Apply fixes from StyleCI (#<I>) | beyondcode_laravel-websockets | train | php,php |
2c9abf9a0fccff0957843b7a600a796097fe6933 | diff --git a/allennlp/commands/elmo.py b/allennlp/commands/elmo.py
index <HASH>..<HASH> 100644
--- a/allennlp/commands/elmo.py
+++ b/allennlp/commands/elmo.py
@@ -184,7 +184,9 @@ class ElmoEmbedder():
layer_activations = bilm_output['activations']
mask_with_bos_eos = bilm_output['mask']
- # w... | Minor change of a comment (#<I>)
Original comment here about tensor size was a bit confusing. | allenai_allennlp | train | py |
a6f44a6a61f2eb2fcdf0c87f08ee860242e25d70 | diff --git a/lib/knode.js b/lib/knode.js
index <HASH>..<HASH> 100644
--- a/lib/knode.js
+++ b/lib/knode.js
@@ -257,7 +257,7 @@ exports.KNode.prototype.connect = function(address, port, cb) {
assert.ok(this.self.nodeID);
var contact = util.make_contact(address, port);
this._updateContact(contact, _.bind(f... | call iterativeFindNode with nodeID and not contact | nikhilm_kademlia | train | js |
25bd011aeb85796a112dfb03474e25d23c52237c | diff --git a/demo/TestSuites/PlayBack/Selection/TestScript.py b/demo/TestSuites/PlayBack/Selection/TestScript.py
index <HASH>..<HASH> 100644
--- a/demo/TestSuites/PlayBack/Selection/TestScript.py
+++ b/demo/TestSuites/PlayBack/Selection/TestScript.py
@@ -22,7 +22,7 @@ def step1():
@expected Description of the exp... | #<I> Fix a regression introduced - wrong tab selection | qspin_qtaste | train | py |
30f4d108319b0cd28ae5662947e300aad98c32e9 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -62,8 +62,8 @@ requirements = [
pytorch_dep,
]
-# Excluding 8.3.0 because of https://github.com/pytorch/vision/issues/4146
-pillow_ver = " >= 5.3.0, !=8.3.0"
+# Excluding 8.3.* because of https://github.com/pytorch/vis... | Updates PIL version specifier to prevent issues with padding when image mode = P (#<I>)
* chore: Updated pillow version specifier
* docs: Updated issue ref in comment | pytorch_vision | train | py |
2d3c198643db4550e785e04145266d6cb6217cd6 | diff --git a/lib/alipay/client.rb b/lib/alipay/client.rb
index <HASH>..<HASH> 100644
--- a/lib/alipay/client.rb
+++ b/lib/alipay/client.rb
@@ -150,6 +150,7 @@ module Alipay
# params = {
# out_trade_no: '20160401000000',
# trade_status: 'TRADE_SUCCESS'
+ # sign_type: 'RSA2',
# si... | Add sign_type in client verify comment | chloerei_alipay | train | rb |
a9a3c990886c353f8ce64dab6a8857d28463253f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -13,6 +13,7 @@ install_requires = [
'ConfigArgParse==0.12.0',
'tabulate>=0.7.7',
'humanize',
+ 'yarl>=1.1.1',
]
dev_requires = [
] | Add yarl as explicit dependency (#<I>) | lablup_backend.ai-client-py | train | py |
87de2e77766b8a537b3bbbcf3533bbc4ee528a3e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -133,6 +133,9 @@ setup(
'invenio_base.apps': [
'invenio_db = invenio_db:InvenioDB',
],
+ 'invenio_base.api_apps': [
+ 'invenio_db = invenio_db:InvenioDB',
+ ],
},
... | installation: api application entry points
* Adds entry point for API application to discover extension. | inveniosoftware_invenio-db | train | py |
747b603d0aafde49dbb9d8d703cafd25aa849570 | diff --git a/Form/Type/ModelType.php b/Form/Type/ModelType.php
index <HASH>..<HASH> 100644
--- a/Form/Type/ModelType.php
+++ b/Form/Type/ModelType.php
@@ -18,7 +18,7 @@ use Symfony\Component\Form\FormFactoryInterface;
use Symfony\Component\Form\AbstractType;
use Symfony\Component\Form\FormInterface;
use Symfony\Comp... | Changed the namespace for the options class used in form types to keep up with the <I> symfony master | sonata-project_SonataAdminBundle | train | php,php |
ad1b6310deb6ccaec16016e999049fa307a8a61c | diff --git a/examples/with-google-analytics/pages/_app.js b/examples/with-google-analytics/pages/_app.js
index <HASH>..<HASH> 100644
--- a/examples/with-google-analytics/pages/_app.js
+++ b/examples/with-google-analytics/pages/_app.js
@@ -10,8 +10,10 @@ const App = ({ Component, pageProps }) => {
gtag.pageview(u... | add support for changing /route/#hashes (#<I>)
update with-google-analytics example to also fire events when the hash section of the URL changes. | zeit_next.js | train | js |
cbbe27dcd4d496ba76b34f5d000804dd4151f990 | diff --git a/host_source.go b/host_source.go
index <HASH>..<HASH> 100644
--- a/host_source.go
+++ b/host_source.go
@@ -97,10 +97,6 @@ func (h *ringDescriber) run(sleep time.Duration) {
}
for {
- select {
- case <-h.closeChan:
- return
- }
// if we have 0 hosts this will return the previous list of hosts t... | Moved select statement to end of loop | gocql_gocql | train | go |
e04d158eaa36339dfeca1795b6fa443a2194ac1b | diff --git a/test/function/algebra/rationalize.test.js b/test/function/algebra/rationalize.test.js
index <HASH>..<HASH> 100644
--- a/test/function/algebra/rationalize.test.js
+++ b/test/function/algebra/rationalize.test.js
@@ -110,6 +110,8 @@ describe('rationalize', function () {
})
it('processing tougher expre... | Some larger timeouts for tests to prevent accidental failure on IE/Edge | josdejong_mathjs | train | js |
c1cc27c697cd2d9de2ba38e5b66e0b78fee774a2 | diff --git a/bundles/org.eclipse.orion.client.javascript/web/js-tests/javascript/files/require_dep3.js b/bundles/org.eclipse.orion.client.javascript/web/js-tests/javascript/files/require_dep3.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.javascript/web/js-tests/javascript/files/require_dep3.js
+... | [nobug] - Open implementation test can pass if constructor set on prototype. | eclipse_orion.client | train | js |
a93380570d99e1260fcd47c6d7380c95b58f6e7a | diff --git a/vendor/joomla/libraries/joomla/user/authentication.php b/vendor/joomla/libraries/joomla/user/authentication.php
index <HASH>..<HASH> 100644
--- a/vendor/joomla/libraries/joomla/user/authentication.php
+++ b/vendor/joomla/libraries/joomla/user/authentication.php
@@ -115,6 +115,9 @@ class JAuthentication ext... | fix: if the plugin class doesn't exist then skip instead of calling methods on stdclass | anahitasocial_anahita | train | php |
e91eee4fbbe1ce0b463045ec7763c2e8225b78d4 | diff --git a/lib/parser.js b/lib/parser.js
index <HASH>..<HASH> 100644
--- a/lib/parser.js
+++ b/lib/parser.js
@@ -51,9 +51,9 @@ export default function parse(str) {
while (node.firstChild) {
ctx.appendChild(node.firstChild);
}
- // for convenience, groups can be joined with optional `+` operator
- ... | Support siblings after a group repeater | emmetio_abbreviation | train | js |
386560a12b46fb719e3bc31c1e909d1c6bf5e04c | diff --git a/src/java/voldemort/utils/ConsistencyCheck.java b/src/java/voldemort/utils/ConsistencyCheck.java
index <HASH>..<HASH> 100644
--- a/src/java/voldemort/utils/ConsistencyCheck.java
+++ b/src/java/voldemort/utils/ConsistencyCheck.java
@@ -605,4 +605,3 @@ public class ConsistencyCheck {
}
}
}
- | Updated ConsistencyCheck.java for new feature | voldemort_voldemort | train | java |
402238e7e271acf5f66b59b4335c9c1b398a4e1a | diff --git a/tmuxp/testsuite/test_window.py b/tmuxp/testsuite/test_window.py
index <HASH>..<HASH> 100644
--- a/tmuxp/testsuite/test_window.py
+++ b/tmuxp/testsuite/test_window.py
@@ -91,17 +91,13 @@ class NewTest2(TmuxTestCase):
window = self.session.new_window(window_name='test', attach=True)
self.as... | fix bad test with blank select_layout calls | tmux-python_tmuxp | train | py |
b95c3ab89671f5e40be6f2f427c831209b01ad24 | diff --git a/login/index.php b/login/index.php
index <HASH>..<HASH> 100644
--- a/login/index.php
+++ b/login/index.php
@@ -6,10 +6,10 @@
if (! record_exists("user", "username", "guest")) {
$guest->username = "guest";
$guest->password = md5("guest");
- $guest->firstname = get_strin... | Add slashes to data when setting up guest account | moodle_moodle | train | php |
cafed90e83150614d9894d4fe4d9f33aeb454df8 | diff --git a/src/Reports/Format.php b/src/Reports/Format.php
index <HASH>..<HASH> 100644
--- a/src/Reports/Format.php
+++ b/src/Reports/Format.php
@@ -78,7 +78,7 @@ class Format
{
$list = static::loadConstants();
- return in_array($value,$list);
+ return in_array($value,$list) || in_array(... | Update
Format can be passed either in upper or lower cases | Edujugon_laravel-google-ads | train | php |
c4d7c0bc29a48e27c6e7bd649b361a776adfa521 | diff --git a/src/Plugin.php b/src/Plugin.php
index <HASH>..<HASH> 100644
--- a/src/Plugin.php
+++ b/src/Plugin.php
@@ -109,8 +109,7 @@ class Plugin implements PluginInterface, EventSubscriberInterface
$this->project = preg_replace('/^drupal\//', '', $name);
$this->version = $extra['dru... | $this->datestamp = time() | drustack_composer-generate-metadata | train | php |
1635b0d269f7787e8aef64e4449f048cb02c3e94 | diff --git a/internal/config/apparmor/apparmor.go b/internal/config/apparmor/apparmor.go
index <HASH>..<HASH> 100644
--- a/internal/config/apparmor/apparmor.go
+++ b/internal/config/apparmor/apparmor.go
@@ -9,12 +9,8 @@ import (
v1 "k8s.io/api/core/v1"
)
-const (
- // DefaultProfile is the default profile name
- D... | Switch to Kubernetes AppArmor unconfined const
This makes the definition of an own `unconfined` value obsolete by
sticking to the predefined ones in Kubernetes. | cri-o_cri-o | train | go |
caa9f54badb0b4e693e3b0633541ec768d0cf606 | diff --git a/classes/phing/tasks/ext/PhpCodeSnifferTask.php b/classes/phing/tasks/ext/PhpCodeSnifferTask.php
index <HASH>..<HASH> 100644
--- a/classes/phing/tasks/ext/PhpCodeSnifferTask.php
+++ b/classes/phing/tasks/ext/PhpCodeSnifferTask.php
@@ -327,7 +327,7 @@ class PhpCodeSnifferTask extends Task {
* Deter... | Replaced phpcs --version by PHP_CodeSniffer::VERSION in version check to improve Composer compatibility. | phingofficial_phing | train | php |
4993e90eda88c20380ff747c8274175a1e5e08d0 | diff --git a/lib/haml/parser.rb b/lib/haml/parser.rb
index <HASH>..<HASH> 100644
--- a/lib/haml/parser.rb
+++ b/lib/haml/parser.rb
@@ -168,8 +168,8 @@ module Haml
return @template_tabs + 1 if flat? && line.whitespace =~ /^#{@flat_spaces}/
message = Error.message(:inconsistent_indentation,
- Haml:... | Don't fully qualify method name since we already import Haml::Utils | haml_haml | train | rb |
18833dac5d97088dab1205f7d0896efd2a7a6ef4 | diff --git a/app/controllers/deploys_controller.rb b/app/controllers/deploys_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/deploys_controller.rb
+++ b/app/controllers/deploys_controller.rb
@@ -17,7 +17,7 @@ class DeploysController < ShipitController
def create
return redirect_to new_stack_depl... | Pass env as a named argument | Shopify_shipit-engine | train | rb,rb |
f81eafb50d2041ccdde0a5c875c80ad59c588d04 | diff --git a/spec/factories.rb b/spec/factories.rb
index <HASH>..<HASH> 100644
--- a/spec/factories.rb
+++ b/spec/factories.rb
@@ -9,22 +9,22 @@ FactoryGirl.define do
factory :draft do
date 1.week.ago
- round rand(100000)
- pick rand(100000)
- overall rand(100000)
+ sequence(:round)
+ sequence(... | FactoryGirl <I> + Ruby <I> seems to not like rand :( | sferik_rails_admin | train | rb |
821c2a906279fdcf51f3f06e0fb068417a052700 | diff --git a/lib/justin_french/formtastic.rb b/lib/justin_french/formtastic.rb
index <HASH>..<HASH> 100644
--- a/lib/justin_french/formtastic.rb
+++ b/lib/justin_french/formtastic.rb
@@ -108,7 +108,7 @@ module JustinFrench #:nodoc:
raise NoMethodError unless @object.respond_to?(method)
optio... | Switching humanize to titleize, as for the one example I have, it fits better (Password Confirmation). Let me know if you think otherwise | justinfrench_formtastic | train | rb |
67352079366c3b449a6250d26de2e1e9bf252960 | diff --git a/www/windows8/InAppBrowserProxy.js b/www/windows8/InAppBrowserProxy.js
index <HASH>..<HASH> 100644
--- a/www/windows8/InAppBrowserProxy.js
+++ b/www/windows8/InAppBrowserProxy.js
@@ -19,7 +19,7 @@ cordova.define("org.apache.cordova.core.inappbrowser.InAppBrowserProxy", functio
*
*/
-/*global Windows:tr... | [windows8] commandProxy was moved | Prasannaa1991_cordova-inappbrowser | train | js |
23b9aba5609e9e40f16ad088dc1f923970a52d2e | diff --git a/subliminal/videos.py b/subliminal/videos.py
index <HASH>..<HASH> 100644
--- a/subliminal/videos.py
+++ b/subliminal/videos.py
@@ -144,7 +144,7 @@ class Video(object):
return results
def __unicode__(self):
- return to_unicode(self.path)
+ return to_unicode(self.path or self.rel... | Fix unicode representation of Video when it does not exist | Diaoul_subliminal | train | py |
72a641bd9ec0a16ced4979c7a2c56e836cca24c7 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,7 @@ setup(
install_requires=[
"alembic>=0.9.6",
"microcosm>=2.0.0",
- "psycopg2>=2.7.3.2",
+ "psycopg2-binary>=2.7.4",
"python_dateutil>=2.6.1",
"pytz>=2017.3",... | Upgrade to psycopg2-binary | globality-corp_microcosm-postgres | train | py |
72633628ad8720077f001c82911b72dae37c93cc | diff --git a/src/Distill/Extractor/Adapter/AbstractAdapter.php b/src/Distill/Extractor/Adapter/AbstractAdapter.php
index <HASH>..<HASH> 100644
--- a/src/Distill/Extractor/Adapter/AbstractAdapter.php
+++ b/src/Distill/Extractor/Adapter/AbstractAdapter.php
@@ -45,8 +45,6 @@ abstract class AbstractAdapter implements Adapt... | [tar.bz2] Fixed tar command option | raulfraile_distill | train | php,php |
649b8bdb13a746f1884c31d1091edda10a8a5c3f | diff --git a/shared/common-adapters/dropdown.native.js b/shared/common-adapters/dropdown.native.js
index <HASH>..<HASH> 100644
--- a/shared/common-adapters/dropdown.native.js
+++ b/shared/common-adapters/dropdown.native.js
@@ -123,10 +123,14 @@ class Dropdown extends Component<void, Props, State> {
}
_renderAnd... | Fix dropdown picker on android (#<I>) | keybase_client | train | js |
410a363cb2aac1a9d0434cd6df34d5c8fef5c3f3 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -18,7 +18,8 @@ setup(
'scikit-learn',
'scipy',
'pandas',
- 'networkx'
+ 'networkx',
+ 'joblib'
],
classifiers=(
"Programming Language :: Python :: 3", | Hard dependency on joblib added to setup | SpikeInterface_spiketoolkit | train | py |
62c5e65433ffb1d033b5e69f0552599fbf4cc438 | diff --git a/lib/setup.php b/lib/setup.php
index <HASH>..<HASH> 100644
--- a/lib/setup.php
+++ b/lib/setup.php
@@ -91,6 +91,12 @@ if (!defined('NO_DEBUG_DISPLAY')) {
define('NO_DEBUG_DISPLAY', false);
}
+// Servers should define a default timezone in php.ini, but if they don't then make sure something is define... | MDL-<I> Avoid timezone notices from PHP when PHP doesn't have a default timezone set | moodle_moodle | train | php |
ad05447130b72742680121f764a1a4d0c97ef124 | diff --git a/src/com/google/javascript/jscomp/AngularPass.java b/src/com/google/javascript/jscomp/AngularPass.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/AngularPass.java
+++ b/src/com/google/javascript/jscomp/AngularPass.java
@@ -30,7 +30,9 @@ import java.util.List;
/**
* Compiler pass f... | Add a little more JavaDoc to AngularPass, describing what problem it solves.
-------------
Created by MOE: <URL> | google_closure-compiler | train | java |
d75ae0f14f28c2c9e994aa870b7f370eb119bacf | diff --git a/packages/ui-toolkit/src/base/global.js b/packages/ui-toolkit/src/base/global.js
index <HASH>..<HASH> 100644
--- a/packages/ui-toolkit/src/base/global.js
+++ b/packages/ui-toolkit/src/base/global.js
@@ -26,6 +26,7 @@ export default ({ theme }) => css`
padding: 0;
background: ${theme.background};
... | feat(instances): Adds font antialiasing. closes #<I> | yldio_joyent-portal | train | js |
b21428ea0df04701af37dab5f4c1646585f35f7a | diff --git a/src/image/transform/resizeBinary.js b/src/image/transform/resizeBinary.js
index <HASH>..<HASH> 100644
--- a/src/image/transform/resizeBinary.js
+++ b/src/image/transform/resizeBinary.js
@@ -16,14 +16,15 @@ export default function resizeBinary(scale = 0.5, options = {}) {
let width = Math.floor(this.... | Set correctly the parent when doing resizeBinary. The resulting image itself is just shifted based on the resizing while the absolute position into an image will be decided by the history of the hierarchy in parent. | image-js_image-js | train | js |
f5d8c655b9b0ad1c83673756fbdcd3163f8d2465 | diff --git a/app/code/community/Jowens/JobQueue/Model/Worker.php b/app/code/community/Jowens/JobQueue/Model/Worker.php
index <HASH>..<HASH> 100644
--- a/app/code/community/Jowens/JobQueue/Model/Worker.php
+++ b/app/code/community/Jowens/JobQueue/Model/Worker.php
@@ -53,7 +53,7 @@ class Jowens_JobQueue_Model_Worker exte... | Fixing timezone gap when selecting scheduled jobs to run | jkowens_magento-jobqueue | train | php |
30d62e2caa419453046efe156222993aa9e397c8 | diff --git a/device.js b/device.js
index <HASH>..<HASH> 100644
--- a/device.js
+++ b/device.js
@@ -346,7 +346,7 @@ function readMessageInChunksFromOutbox(message_hash, len, handleMessage){
function readChunk(){
db.query("SELECT SUBSTR(message, ?, ?) AS chunk FROM outbox WHERE message_hash=?", [start, CHUNK_LEN, me... | better logging of 0 msgs by hash | byteball_ocore | train | js |
812dc72793c4f0eda69850c4492e96ef7ec65b21 | diff --git a/core/Version.php b/core/Version.php
index <HASH>..<HASH> 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -17,5 +17,5 @@
*/
final class Piwik_Version
{
- const VERSION = '1.7-b7';
+ const VERSION = '1.7-b8';
} | <I>b8 to be deployed on demo, containing few important fixes since last beta
git-svn-id: <URL> | matomo-org_matomo | train | php |
0d55f2729409a02893c02e8dea50a05b6b2b2340 | diff --git a/Routine/Controller/RoutineViewsController.php b/Routine/Controller/RoutineViewsController.php
index <HASH>..<HASH> 100644
--- a/Routine/Controller/RoutineViewsController.php
+++ b/Routine/Controller/RoutineViewsController.php
@@ -158,9 +158,9 @@ abstract class RoutineViewsController extends ViewsController... | Apply fixes from StyleCI (#<I>) | PHPColibri_framework | train | php |
76d5f22c9bdc1a901a38b5e1c0b169653f693a22 | diff --git a/src/AbstractContainer.php b/src/AbstractContainer.php
index <HASH>..<HASH> 100644
--- a/src/AbstractContainer.php
+++ b/src/AbstractContainer.php
@@ -319,7 +319,13 @@ abstract class AbstractContainer
$config = $this->resolveDependencies($config);
- return static::configure($object, $con... | Moved `init()` to allow call configure from init | yiisoft_di | train | php |
1f9196b882aeb96a1bd0c0657cd8f387b30a480a | diff --git a/Lib/fontbakery/commands/check_specification.py b/Lib/fontbakery/commands/check_specification.py
index <HASH>..<HASH> 100644
--- a/Lib/fontbakery/commands/check_specification.py
+++ b/Lib/fontbakery/commands/check_specification.py
@@ -192,9 +192,6 @@ def main(specification=None, values=None):
value... | [check-specification] move 'fonts' validation to the spec, where the dependency originates | googlefonts_fontbakery | train | py,py |
2e88817e5bdda15f0f2ca10fcfbb77078a106368 | diff --git a/src/main/java/nl/topicus/jdbc/CloudSpannerPooledConnection.java b/src/main/java/nl/topicus/jdbc/CloudSpannerPooledConnection.java
index <HASH>..<HASH> 100644
--- a/src/main/java/nl/topicus/jdbc/CloudSpannerPooledConnection.java
+++ b/src/main/java/nl/topicus/jdbc/CloudSpannerPooledConnection.java
@@ -550,6... | added nested comments to explain no-op | olavloite_spanner-jdbc | train | java |
8b09c4a81bedbc9868c89898c6a1c7b4c40fc28a | diff --git a/pyes/connection_http.py b/pyes/connection_http.py
index <HASH>..<HASH> 100644
--- a/pyes/connection_http.py
+++ b/pyes/connection_http.py
@@ -9,6 +9,7 @@ from urlparse import urlparse
import random
import threading
import urllib3
+import heapq
__all__ = ["connect"]
@@ -105,12 +106,12 @@ class Conne... | Use heapq operations on the _inactive_servers list, to ensure that we work with the server with the lowest timeout | aparo_pyes | train | py |
e78303f29edda776d79c6c03ecb6c0b809642d08 | diff --git a/SwatDB/SwatDBDataObject.php b/SwatDB/SwatDBDataObject.php
index <HASH>..<HASH> 100644
--- a/SwatDB/SwatDBDataObject.php
+++ b/SwatDB/SwatDBDataObject.php
@@ -58,13 +58,6 @@ class SwatDBDataObject extends SwatObject implements Serializable
protected $table = null;
protected $id_field = null;
- /**
- ... | This is better. Parallel to getSerializableSubDataObjects() and doesn't introduce private data that itself needs serializing.
svn commit r<I> | silverorange_swat | train | php |
2e31f3c8624685a5d48c9e8f9b9ca4c1614d0752 | diff --git a/salt/utils/__init__.py b/salt/utils/__init__.py
index <HASH>..<HASH> 100644
--- a/salt/utils/__init__.py
+++ b/salt/utils/__init__.py
@@ -118,3 +118,16 @@ def profile_func(filename=None):
return retval
return profiled_func
return proffunc
+
+def which(exe):
+ '''
+ Python c... | Add salt.utils.which for returning full paths to executables | saltstack_salt | train | py |
7760e52ec9a8146684373ed683613cddf810dbd0 | diff --git a/round.js b/round.js
index <HASH>..<HASH> 100644
--- a/round.js
+++ b/round.js
@@ -355,6 +355,9 @@ function getAllCoinbaseRatioByRoundIndex(conn, roundIndex, callback){
throw Error("Can not find any trustme units ");
var totalCountOfTrustMe = 0;
... | when supernote's all trustme units of a round aren't on mainchain bug | trustnote_trustnote-pow-common | train | js |
2b6fb578c3d9689461040881ed2e41aa91d1e319 | diff --git a/core/dnsserver/server_https.go b/core/dnsserver/server_https.go
index <HASH>..<HASH> 100644
--- a/core/dnsserver/server_https.go
+++ b/core/dnsserver/server_https.go
@@ -119,6 +119,14 @@ func (s *ServerHTTPS) ServeHTTP(w http.ResponseWriter, r *http.Request) {
// We should expect a packet to be returned ... | DoH: Fixing panic in case if there's no response (#<I>)
* Fixing panic in case if there's no response
There could be a situation when there's no response after ServeDNS call. With the current implementation, this leads to panic.
* Add comment | coredns_coredns | train | go |
b38943187501005bc37fc1e67a6e0c5e00eee17e | diff --git a/osrframework/utils/platforms.py b/osrframework/utils/platforms.py
index <HASH>..<HASH> 100644
--- a/osrframework/utils/platforms.py
+++ b/osrframework/utils/platforms.py
@@ -215,7 +215,7 @@ class Platform():
qURL = qURI
else:
qURL, query = self.createURL(word=... | Search launcher message change
It is now only shown when conducting searchfy searches. | i3visio_osrframework | train | py |
110ffb69dee696dca305167d0167c4c78462fde8 | diff --git a/pkg/services/notifications/webhook.go b/pkg/services/notifications/webhook.go
index <HASH>..<HASH> 100644
--- a/pkg/services/notifications/webhook.go
+++ b/pkg/services/notifications/webhook.go
@@ -3,6 +3,7 @@ package notifications
import (
"bytes"
"context"
+ "crypto/tls"
"fmt"
"io"
"io/ioutil"... | Fix bug tls renegociation problem in Notification channel (webhook) #<I> | grafana_grafana | train | go |
5c335420c81f0b9dfa6a22336a21dce1912e5c7f | diff --git a/activesupport/lib/active_support/callbacks.rb b/activesupport/lib/active_support/callbacks.rb
index <HASH>..<HASH> 100644
--- a/activesupport/lib/active_support/callbacks.rb
+++ b/activesupport/lib/active_support/callbacks.rb
@@ -1,3 +1,4 @@
+require 'thread_safe'
require 'active_support/concern'
require... | attempt to fix slow runner name method | rails_rails | train | rb |
5042888f5159d3216cea8861ac5affa117e4c6b4 | diff --git a/spec/connection_spec.rb b/spec/connection_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/connection_spec.rb
+++ b/spec/connection_spec.rb
@@ -58,4 +58,11 @@ describe AnsibleTowerClient::Connection do
end
end
end
+
+ it ".new doesn't cache credentials across all instances" do
+ conn_1 = d... | Add spec to verify that the connection and api objects are unique | ansible_ansible_tower_client_ruby | train | rb |
2bc9a1ff06170b94edf24a33ff66797d2417a95a | diff --git a/Resolver/Factory.php b/Resolver/Factory.php
index <HASH>..<HASH> 100644
--- a/Resolver/Factory.php
+++ b/Resolver/Factory.php
@@ -46,6 +46,16 @@ class Factory
protected function addPortToServerIfMissing($nameserver)
{
- return false === strpos($nameserver, ':') ? "$nameserver:53" : $name... | Fix adding port to IPv6 addresses | reactphp_dns | train | php |
60f147b7c1342dfb69a1bb8af4b716219962cf72 | diff --git a/py/testdir_single_jvm/test_model_management.py b/py/testdir_single_jvm/test_model_management.py
index <HASH>..<HASH> 100644
--- a/py/testdir_single_jvm/test_model_management.py
+++ b/py/testdir_single_jvm/test_model_management.py
@@ -416,6 +416,7 @@ class ApiTestCase(ModelManagementTestCase):
... | Due to a change in the core the training_duration_in_ms disappeared from GLM. Check for the key before checking its value is > 0. | h2oai_h2o-2 | train | py |
bed7c4f75738345d565f05f72b363399c76e55f2 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -261,8 +261,8 @@ def get_version_info():
# If this is a release or another kind of source distribution of PyCBC
except:
- version = '1.7.0dev'
- release = 'False'
+ version = '1.6.2'
+ r... | Set for <I> release (#<I>) | gwastro_pycbc | train | py |
47f8b0cd79b511805fa0cdbcf86c0ac2ae2eed1a | diff --git a/builtin/providers/aws/resource_aws_ecs_service_test.go b/builtin/providers/aws/resource_aws_ecs_service_test.go
index <HASH>..<HASH> 100644
--- a/builtin/providers/aws/resource_aws_ecs_service_test.go
+++ b/builtin/providers/aws/resource_aws_ecs_service_test.go
@@ -6,6 +6,7 @@ import (
"testing"
"git... | provider/aws: fix ECS service CheckDestroy in tests | hashicorp_terraform | train | go |
c2e5daeb4c099c75957b42ac24cfb767a5417cda | diff --git a/guest/index.js b/guest/index.js
index <HASH>..<HASH> 100644
--- a/guest/index.js
+++ b/guest/index.js
@@ -45,6 +45,18 @@ module.exports = function storageGuest(source, parent) {
return;
}
+ if (response.connectError) {
+ for (var key in callbacks) {
+ ... | call all callbacks on connect error | MatthewLarner_cross-domain-storage | train | js,js |
e03cdeff7d0e6c8aef027b9ed28bf86190dc37e2 | diff --git a/test/unexpected.spec.js b/test/unexpected.spec.js
index <HASH>..<HASH> 100644
--- a/test/unexpected.spec.js
+++ b/test/unexpected.spec.js
@@ -3407,10 +3407,7 @@ describe('unexpected', function () {
});
});
- // It is very hard to get this working as we... | Removed skip on test that works now | unexpectedjs_unexpected | train | js |
ffad3cdcb96a097457b2186117cc60b1e901cb44 | diff --git a/blimpy/filterbank.py b/blimpy/filterbank.py
index <HASH>..<HASH> 100755
--- a/blimpy/filterbank.py
+++ b/blimpy/filterbank.py
@@ -730,7 +730,7 @@ class Filterbank(object):
# Reverse oder if vertical orientation.
if orientation is not None:
if 'v' in orientation:
- ... | Bugfix. Also related to the time flip bug. | UCBerkeleySETI_blimpy | train | py |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.