hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
a4cc4ab12dfa0bcd283b443135ecb87fec958239 | diff --git a/guacamole/src/main/webapp/app/rest/services/permissionService.js b/guacamole/src/main/webapp/app/rest/services/permissionService.js
index <HASH>..<HASH> 100644
--- a/guacamole/src/main/webapp/app/rest/services/permissionService.js
+++ b/guacamole/src/main/webapp/app/rest/services/permissionService.js
@@ -2... | GUAC-<I>: Update permission service to use Permission class. | glyptodon_guacamole-client | train |
cc69e6115174b1103b5b3c372e467e8cde0e229d | diff --git a/isort/parse.py b/isort/parse.py
index <HASH>..<HASH> 100644
--- a/isort/parse.py
+++ b/isort/parse.py
@@ -410,9 +410,14 @@ def file_contents(contents: str, config: Config = DEFAULT_CONFIG) -> ParsedConte
f"{top_level_module}.__combined_as__", []
... | Update output to take into account difference between as and non as import statements | timothycrosley_isort | train |
d7a67a3b8e596e32e09274e233f3cb0ae3c581c8 | diff --git a/pkg/kubelet/pod/mirror_client.go b/pkg/kubelet/pod/mirror_client.go
index <HASH>..<HASH> 100644
--- a/pkg/kubelet/pod/mirror_client.go
+++ b/pkg/kubelet/pod/mirror_client.go
@@ -42,7 +42,7 @@ type MirrorClient interface {
DeleteMirrorPod(podFullName string, uid *types.UID) (bool, error)
}
-// nodeGett... | change log line to print actual pod uid instead of address of the pod uid | kubernetes_kubernetes | train |
74a846b3003b0deda9283ddab499cb50fb6b026b | diff --git a/graphics/histogram.py b/graphics/histogram.py
index <HASH>..<HASH> 100644
--- a/graphics/histogram.py
+++ b/graphics/histogram.py
@@ -40,14 +40,15 @@ opts(title='$title')
ggsave('$outfile')
"""
-def stem_leaf_plot(data, bins, char="="):
+def stem_leaf_plot(data, bins, vmin=None, vmax=None, char="="):
... | pass vmin and vmax to graphics.histogram() | tanghaibao_jcvi | train |
6c506b8c2327029fef13f073e0a7f01e05bca26a | diff --git a/tracer/runner.py b/tracer/runner.py
index <HASH>..<HASH> 100644
--- a/tracer/runner.py
+++ b/tracer/runner.py
@@ -34,6 +34,8 @@ class Runner(object):
self._record_trace = record_trace
self.trace = None
self.reg_vals = None
+ self._state = None
+ self.memory = None
... | Runner now also allows querying the memory at the time of crash | angr_angr | train |
62456d7cc60f18f0de6331bdcfc97c8e8d0a7293 | diff --git a/src/AutoUpdate.php b/src/AutoUpdate.php
index <HASH>..<HASH> 100644
--- a/src/AutoUpdate.php
+++ b/src/AutoUpdate.php
@@ -691,7 +691,6 @@ class AutoUpdate
// Check if install should be simulated
if ($simulateInstall && !$this->_simulateInstall($updateFile)) {
$this->_log->add... | Do not close zip archive before it is created, #<I> | VisualAppeal_PHP-Auto-Update | train |
73b34fcbdd4342c5dd3e32931b85d6e231a994ef | diff --git a/dftimewolf/lib/collectors/gce_disk_copy.py b/dftimewolf/lib/collectors/gce_disk_copy.py
index <HASH>..<HASH> 100644
--- a/dftimewolf/lib/collectors/gce_disk_copy.py
+++ b/dftimewolf/lib/collectors/gce_disk_copy.py
@@ -139,6 +139,8 @@ class GCEDiskCopy(module.ThreadAwareModule):
message=f'Insta... | Dedupe containers in GCEDiskCopy module (#<I>)
* Added in the ability to Dedupe containers in state
* Dedupe containers in GCEDiskCopy module
* Finish the test | log2timeline_dftimewolf | train |
248383dc1e1bcd2720dfabe48f4ccd0a959ca42e | diff --git a/src/loaders/support/LoaderWorkerSupport.js b/src/loaders/support/LoaderWorkerSupport.js
index <HASH>..<HASH> 100644
--- a/src/loaders/support/LoaderWorkerSupport.js
+++ b/src/loaders/support/LoaderWorkerSupport.js
@@ -355,11 +355,16 @@ THREE.LoaderSupport.WorkerSupport = (function () {
if ( this.logg... | Chooses correct runnerImpl based on environment too | kaisalmen_WWOBJLoader | train |
a0701b6e67e22beb5230613cb516b297f3e3d06d | diff --git a/theanets/flags.py b/theanets/flags.py
index <HASH>..<HASH> 100644
--- a/theanets/flags.py
+++ b/theanets/flags.py
@@ -64,8 +64,6 @@ g.add_argument('-m', '--momentum', type=float, default=0.9, metavar='V',
help='train the network with momentum of V')
g.add_argument('--min-improvement', type... | Remove elementwise gradient clipping; just use norm clipping. | lmjohns3_theanets | train |
222d414bc1aabd9a68b90c9061d2547291ece2ad | diff --git a/src/java/org/apache/cassandra/db/ColumnFamilyStore.java b/src/java/org/apache/cassandra/db/ColumnFamilyStore.java
index <HASH>..<HASH> 100644
--- a/src/java/org/apache/cassandra/db/ColumnFamilyStore.java
+++ b/src/java/org/apache/cassandra/db/ColumnFamilyStore.java
@@ -1633,30 +1633,6 @@ public class Colum... | r/m unused renameSSTables code
patch by Marcus Eriksson; reviewed by jbellis for CASSANDRA-<I>
git-svn-id: <URL> | Stratio_stratio-cassandra | train |
edb8d069765ae855d016937a75b70b594780e708 | diff --git a/dependencies/__init__.py b/dependencies/__init__.py
index <HASH>..<HASH> 100644
--- a/dependencies/__init__.py
+++ b/dependencies/__init__.py
@@ -64,11 +64,17 @@ class InjectorBase(type):
attribute = self.__rawattr__(attrname)
if inspect.isclass(attribute):
- cons... | Support args and kwargs unboxing. | dry-python_dependencies | train |
93e2548735978904932a0706823db82737d5c156 | diff --git a/openquake/engine/calculators/hazard/disaggregation/core.py b/openquake/engine/calculators/hazard/disaggregation/core.py
index <HASH>..<HASH> 100644
--- a/openquake/engine/calculators/hazard/disaggregation/core.py
+++ b/openquake/engine/calculators/hazard/disaggregation/core.py
@@ -353,9 +353,11 @@ def coll... | Added monitoring of the arrange phase
Former-commit-id: <I>fa1c<I>c<I>ec6bce2b9e<I>a5ab6f<I> | gem_oq-engine | train |
dfb845bf41112cfc9879cd5653af5d02811b6670 | diff --git a/lib/amee/data_item_value.rb b/lib/amee/data_item_value.rb
index <HASH>..<HASH> 100644
--- a/lib/amee/data_item_value.rb
+++ b/lib/amee/data_item_value.rb
@@ -7,6 +7,7 @@ module AMEE
@type = data ? data[:type] : nil
@from_profile = data ? data[:from_profile] : nil
@from_data = dat... | Added startdate support to get and posts. | OpenAMEE_amee-ruby | train |
5d8e51fa0903184a45eede61a86591637cefdd67 | diff --git a/src/Illuminate/Http/Client/PendingRequest.php b/src/Illuminate/Http/Client/PendingRequest.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Http/Client/PendingRequest.php
+++ b/src/Illuminate/Http/Client/PendingRequest.php
@@ -707,7 +707,10 @@ class PendingRequest
{
return $this->promise =... | async call should send event too (#<I>) | laravel_framework | train |
fd71963ccc13640b58aef561cd98cd172d5a110a | diff --git a/cqlengine/columns.py b/cqlengine/columns.py
index <HASH>..<HASH> 100644
--- a/cqlengine/columns.py
+++ b/cqlengine/columns.py
@@ -213,23 +213,22 @@ class Column(object):
return val is None
-class Bytes(Column):
+class Blob(Column):
db_type = 'blob'
- class Quoter(ValueQuoter):
- ... | fixing up the bytes column, now blob | cqlengine_cqlengine | train |
2418b6d0587194a97104fa1e9fabf6a652cb0ade | diff --git a/aws/resource_aws_qldb_stream_test.go b/aws/resource_aws_qldb_stream_test.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_qldb_stream_test.go
+++ b/aws/resource_aws_qldb_stream_test.go
@@ -169,7 +169,6 @@ func TestAccAWSQLDBStream_basic(t *testing.T) {
})
}
-// reference: testAccCheckAWSLedgerDes... | Update resource_aws_qldb_stream_test.go | terraform-providers_terraform-provider-aws | train |
ac59cfa25b14d87008ef3a16fb4cf2d550468763 | diff --git a/telethon/events/callbackquery.py b/telethon/events/callbackquery.py
index <HASH>..<HASH> 100644
--- a/telethon/events/callbackquery.py
+++ b/telethon/events/callbackquery.py
@@ -1,4 +1,5 @@
import re
+import struct
from .common import EventBuilder, EventCommon, name_inner_event
from .. import utils
@@... | Return chat from inline queries that "don't have it" | LonamiWebs_Telethon | train |
05b989ab73380effefcd7d407bc10da3bdf7b06b | diff --git a/openquake/hazardlib/source/base.py b/openquake/hazardlib/source/base.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/source/base.py
+++ b/openquake/hazardlib/source/base.py
@@ -108,9 +108,6 @@ class BaseSeismicSource(metaclass=abc.ABCMeta):
:param ir_monitor: a monitor object for .iter_ru... | Removed comment [skip CI]
Former-commit-id: e<I>c<I>c<I>b8fb<I>dcc<I>c1c8e0 [formerly 3d2d<I>dbf3fec<I>e3a2c<I>caf6ae<I>]
Former-commit-id: <I>a<I>f0b9f<I>c<I>c<I>e<I>d7bf7af | gem_oq-engine | train |
e94333a5b5db455111149940d9b1fadfdef41a78 | diff --git a/Gemfile.lock b/Gemfile.lock
index <HASH>..<HASH> 100644
--- a/Gemfile.lock
+++ b/Gemfile.lock
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
- locomotivecms-search (0.3.5)
+ locomotivecms-search (0.3.6)
activesearch (~> 0.3.2)
GEM
diff --git a/app/models/locomotive/content_entry.rb b/app/mode... | do not index content entries which don't have at least a searchable field | Papipo_locomotivecms-search | train |
1e38be4165383850c2ff50aa58c8e9b12caa48c6 | diff --git a/command/v7/apply_manifest_command.go b/command/v7/apply_manifest_command.go
index <HASH>..<HASH> 100644
--- a/command/v7/apply_manifest_command.go
+++ b/command/v7/apply_manifest_command.go
@@ -3,6 +3,7 @@ package v7
import (
"os"
+ "code.cloudfoundry.org/cli/api/cloudcontroller/ccerror"
"code.cloud... | CLI user can still apply a manifest if generating the diff <I>s
When the API returns an unknown error (<I>) when we try to generate the
manifest diff, we just print a warning and move on. We still try to
apply the manifest. The goal is to be defensive against potential bugs
in this experimental API endpoint (we don't ... | cloudfoundry_cli | train |
b5c1b44d6327aa058a9d152136cce555dff49ce4 | diff --git a/swagger/src/test/java/ws/ament/hammock/test/swagger/SwaggerTest.java b/swagger/src/test/java/ws/ament/hammock/test/swagger/SwaggerTest.java
index <HASH>..<HASH> 100644
--- a/swagger/src/test/java/ws/ament/hammock/test/swagger/SwaggerTest.java
+++ b/swagger/src/test/java/ws/ament/hammock/test/swagger/Swagge... | Fixing swagger test (#<I>) | hammock-project_hammock | train |
aecde03e0adef91d345caadab9984fad7eae6d15 | diff --git a/malcolm/modules/scanning/controllers/runnablecontroller.py b/malcolm/modules/scanning/controllers/runnablecontroller.py
index <HASH>..<HASH> 100644
--- a/malcolm/modules/scanning/controllers/runnablecontroller.py
+++ b/malcolm/modules/scanning/controllers/runnablecontroller.py
@@ -649,15 +649,24 @@ class R... | RunnableController: now remain in Finished state when Pause is called without explicit step to rewind to | dls-controls_pymalcolm | train |
0771fe41e843bdff65b48e828a7555dd28af6e77 | diff --git a/app/services/katello/pulp/smart_proxy_repository.rb b/app/services/katello/pulp/smart_proxy_repository.rb
index <HASH>..<HASH> 100644
--- a/app/services/katello/pulp/smart_proxy_repository.rb
+++ b/app/services/katello/pulp/smart_proxy_repository.rb
@@ -58,7 +58,7 @@ module Katello
end
def ... | Fixes #<I> - properly remove uneeded repos from FPC | Katello_katello | train |
5e0864b4058988b88c88fdcc77dafbf4515d5cce | diff --git a/gargoyle/operators/comparable.py b/gargoyle/operators/comparable.py
index <HASH>..<HASH> 100644
--- a/gargoyle/operators/comparable.py
+++ b/gargoyle/operators/comparable.py
@@ -7,7 +7,7 @@ class Equals(object):
self.value = value
def applies_to(self, argument):
- return self.value =... | Swap order of arguments for comparable operator. | disqus_gutter | train |
8f0882aa4d2906bd34eb9f0e891a9c3ce12ecea0 | diff --git a/app/views/google-map/info-window.js b/app/views/google-map/info-window.js
index <HASH>..<HASH> 100644
--- a/app/views/google-map/info-window.js
+++ b/app/views/google-map/info-window.js
@@ -9,6 +9,7 @@ var alias = computed.alias;
var oneWay = computed.oneWay;
var InfoWindowView = Ember.View.extend(Goog... | [MISC] Add a class for info windows main element | huafu_ember-google-map | train |
e2ada3c59be9bff7e1963477935f6c735228f910 | diff --git a/tsdb/engine/tsm1/tsm1.go b/tsdb/engine/tsm1/tsm1.go
index <HASH>..<HASH> 100644
--- a/tsdb/engine/tsm1/tsm1.go
+++ b/tsdb/engine/tsm1/tsm1.go
@@ -173,7 +173,9 @@ func (e *Engine) Path() string { return e.path }
func (e *Engine) PerformMaintenance() {
if f := e.WAL.shouldFlush(); f != noFlush {
go fun... | Log errors when flushes fail
There errors were getting silently dropped which might be hiding
problems. | influxdata_influxdb | train |
fcb059c7b9e30c35595b8ea1ace424e3366ae264 | diff --git a/src/org/jgroups/protocols/dns/DNS_PING.java b/src/org/jgroups/protocols/dns/DNS_PING.java
index <HASH>..<HASH> 100644
--- a/src/org/jgroups/protocols/dns/DNS_PING.java
+++ b/src/org/jgroups/protocols/dns/DNS_PING.java
@@ -67,7 +67,9 @@ public class DNS_PING extends Discovery {
@Override
public ... | JGRP-<I> DNS_PING#destroy could yield NPE hiding the root cause | belaban_JGroups | train |
a7c68f28b46ccc50b230e5df48403c68f5139127 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -8,7 +8,7 @@ export default class Inter {
Vue.mixin({
beforeCreate() {
this.$inter =
- this.$options.inter || (this.$parent && this.$parent.$options.inter)
+ this.$options... | correctly find inter instance from parent instance, closed #2 | egoist_vue-inter | train |
1fa3034e769a4dc1d2cb10ee2e675efdec341075 | diff --git a/SlevomatCodingStandard/Sniffs/PHP/UselessParenthesesSniff.php b/SlevomatCodingStandard/Sniffs/PHP/UselessParenthesesSniff.php
index <HASH>..<HASH> 100644
--- a/SlevomatCodingStandard/Sniffs/PHP/UselessParenthesesSniff.php
+++ b/SlevomatCodingStandard/Sniffs/PHP/UselessParenthesesSniff.php
@@ -58,6 +58,7 @@... | UselessParenthesesSniff: Fixed false positive | slevomat_coding-standard | train |
2a824f60e5f9ae323eec3d92b0a47aca79d08c07 | diff --git a/salt/client/ssh/state.py b/salt/client/ssh/state.py
index <HASH>..<HASH> 100644
--- a/salt/client/ssh/state.py
+++ b/salt/client/ssh/state.py
@@ -94,7 +94,8 @@ def lowstate_file_refs(chunks, extras=''):
extra_refs = extras.split(',')
if extra_refs:
for env in refs:
- ... | More pylint violations in salt/client/ssh/state.py and salt/states/dockerio.py | saltstack_salt | train |
3e0cf7dd4758ef33f585743eb9013d4b280967c6 | diff --git a/lib/mxit_rails/version.rb b/lib/mxit_rails/version.rb
index <HASH>..<HASH> 100644
--- a/lib/mxit_rails/version.rb
+++ b/lib/mxit_rails/version.rb
@@ -1,3 +1,3 @@
module MxitRails
- VERSION = "0.4.2"
+ VERSION = "0.4.3"
end | Bumped version to <I> | linsen_mxit-rails | train |
f14a59b034dbf3b64ee3301d5025ec6c8133360c | diff --git a/lib/ohai/plugins/solaris2/platform.rb b/lib/ohai/plugins/solaris2/platform.rb
index <HASH>..<HASH> 100644
--- a/lib/ohai/plugins/solaris2/platform.rb
+++ b/lib/ohai/plugins/solaris2/platform.rb
@@ -28,8 +28,6 @@ popen4("#{uname_exec} -X") do |pid, stdin, stdout, stderr|
stdin.close
stdout.each do |li... | Enhanced Ohai platform detection for Solaris-based distributions to set 'platform' attribute to the distribution name. | chef_ohai | train |
b0cc58bb93da576b7f92c3650d1795f51414705b | diff --git a/desktop/ui/src/main/java/org/datacleaner/output/datastore/DatastoreCreationDelegateImpl.java b/desktop/ui/src/main/java/org/datacleaner/output/datastore/DatastoreCreationDelegateImpl.java
index <HASH>..<HASH> 100644
--- a/desktop/ui/src/main/java/org/datacleaner/output/datastore/DatastoreCreationDelegateIm... | Issue #<I>: Throwing exception instead of logging error | datacleaner_DataCleaner | train |
16eceb66c126b8d2762826c9bc059eca13132bc1 | diff --git a/lib/rrj/init.rb b/lib/rrj/init.rb
index <HASH>..<HASH> 100644
--- a/lib/rrj/init.rb
+++ b/lib/rrj/init.rb
@@ -39,8 +39,6 @@ module RubyRabbitmqJanus
# => #<RubyRabbitmqJanus::RRJ:0x007 @session=123>
def initialize
@option = Tools::Option.new
- ObjectSpace.define_finalizer(self, RRJ.... | Delete action when RRJ is destroyed | dazzl-tv_ruby-rabbitmq-janus | train |
3a98a843cf925bd6c719090b8aa67da10aa844da | diff --git a/go/service/gregor_test.go b/go/service/gregor_test.go
index <HASH>..<HASH> 100644
--- a/go/service/gregor_test.go
+++ b/go/service/gregor_test.go
@@ -141,20 +141,27 @@ func (n *nlistener) getBadgeState(t *testing.T) keybase1.BadgeState {
type showTrackerPopupIdentifyUI struct {
kbtest.FakeIdentifyUI
-... | fix tracker popup test (#<I>) | keybase_client | train |
6274b42ae8c71f30441c4f3507bd80dc21e679d1 | diff --git a/src/Context/RawWordpressContext.php b/src/Context/RawWordpressContext.php
index <HASH>..<HASH> 100644
--- a/src/Context/RawWordpressContext.php
+++ b/src/Context/RawWordpressContext.php
@@ -29,6 +29,12 @@ class RawWordpressContext extends RawMinkContext implements WordpressAwareInterf
/**
+ * ... | Add a constructor to the RawWPContext to keep the Behat-generated subclass happy. | paulgibbs_behat-wordpress-extension | train |
cd8ea3b15110dee93f70e0c29afb474e0241e27b | diff --git a/vaderSentiment/vaderSentiment.py b/vaderSentiment/vaderSentiment.py
index <HASH>..<HASH> 100644
--- a/vaderSentiment/vaderSentiment.py
+++ b/vaderSentiment/vaderSentiment.py
@@ -680,8 +680,9 @@ if __name__ == '__main__':
response_json = json.loads(response.text)
translatio... | added check for translation is not none to prevent error | cjhutto_vaderSentiment | train |
9293f3dce706aa3c232958ad516d58ab1cfb9f6d | diff --git a/resources/lang/no-NO/cachet.php b/resources/lang/no-NO/cachet.php
index <HASH>..<HASH> 100644
--- a/resources/lang/no-NO/cachet.php
+++ b/resources/lang/no-NO/cachet.php
@@ -75,10 +75,11 @@ return [
// Subscriber
'subscriber' => [
- 'subscribe' => 'Abonner for å få de siste oppdatering... | New translations cachet.php (Norwegian) | CachetHQ_Cachet | train |
9f20e210baef9ca44f5445e85a046deec9a0876e | diff --git a/lib/her/api.rb b/lib/her/api.rb
index <HASH>..<HASH> 100644
--- a/lib/her/api.rb
+++ b/lib/her/api.rb
@@ -27,7 +27,7 @@ module Her
end # }}}
# Define a custom parsing procedure. The procedure is passed the response object and is
- # expected to return hash with three keys: a main resource Ha... | Fix a typo (but this is an excuse to trigger Travis) | remiprev_her | train |
0953362e8a0ecf36774a5d4ed4cea518fc9f906c | diff --git a/conn.go b/conn.go
index <HASH>..<HASH> 100644
--- a/conn.go
+++ b/conn.go
@@ -30,6 +30,9 @@ var ErrClosed = errors.New("dbus: connection closed by user")
type Conn struct {
transport
+ ctx context.Context
+ cancelCtx context.CancelFunc
+
busObj BusObject
unixFD bool
uuid string
@@ -210,6... | conn: add a context to the connection | godbus_dbus | train |
c572f2af366df5bf22fe60834a98061daec5811d | diff --git a/neural/afni.py b/neural/afni.py
index <HASH>..<HASH> 100644
--- a/neural/afni.py
+++ b/neural/afni.py
@@ -32,9 +32,16 @@ def _dset_raw_info(dset):
return subprocess.check_output(['3dinfo','-verb',dset])
class DsetInfo:
- ''' contains organized output from ``3dinfo`` '''
+ ''' contains organized output... | added stuff to dset_info | azraq27_neural | train |
25097f9933a931af10561f8531590bf1d233d38c | diff --git a/tests/support/parser/__init__.py b/tests/support/parser/__init__.py
index <HASH>..<HASH> 100644
--- a/tests/support/parser/__init__.py
+++ b/tests/support/parser/__init__.py
@@ -193,7 +193,7 @@ class SaltTestingParser(optparse.OptionParser):
'--name',
dest='name',
act... | Make sure from-filenames intersect with names-file
When both names-file an from-names are defined we want to make sure the
tests that from-filenames returns intersect with the test in the names
file. | saltstack_salt | train |
94707ca3c9a45a50519bb514bb0662b6424014e0 | diff --git a/mistletoe/core_tokens.py b/mistletoe/core_tokens.py
index <HASH>..<HASH> 100644
--- a/mistletoe/core_tokens.py
+++ b/mistletoe/core_tokens.py
@@ -49,7 +49,7 @@ def find_core_tokens(string):
i += 1
if in_delimiter_run:
delimiters.append(Delimiter(start, i, string))
- process_emphas... | stack_bottom should be None when traversing the whole stack | miyuchina_mistletoe | train |
79eb80cfcf77694c1aacbddb9dba6eeb23457a28 | diff --git a/src/test/java/com/j256/ormlite/dao/JdbcBaseDaoImplTest.java b/src/test/java/com/j256/ormlite/dao/JdbcBaseDaoImplTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/j256/ormlite/dao/JdbcBaseDaoImplTest.java
+++ b/src/test/java/com/j256/ormlite/dao/JdbcBaseDaoImplTest.java
@@ -3025,7 +3025,13 @@ pu... | Fixed multi-threaded race condition with field and constructor accessibility. Thanks to Jeroen Rakhorst. Fixes bug #<I>. | j256_ormlite-jdbc | train |
c6f3175c00a7e2b30e4ff5ab0e61c39967366c81 | diff --git a/pylama/lint/pylama_pyflakes.py b/pylama/lint/pylama_pyflakes.py
index <HASH>..<HASH> 100644
--- a/pylama/lint/pylama_pyflakes.py
+++ b/pylama/lint/pylama_pyflakes.py
@@ -9,7 +9,6 @@ m = checker.messages
CODES = {
m.UnusedImport.message: "W0611",
m.RedefinedWhileUnused.message: "W0404",
- m.Re... | Remove messages that were removed at pyflakes <I> | klen_pylama | train |
b55fa5579b409be76f551cbb3c1e46e1ad71bdfd | diff --git a/js/src/tab.js b/js/src/tab.js
index <HASH>..<HASH> 100644
--- a/js/src/tab.js
+++ b/js/src/tab.js
@@ -44,7 +44,7 @@ const Tab = (($) => {
const Selector = {
DROPDOWN : '.dropdown',
NAV_LIST_GROUP : '.nav, .list-group',
- ACTIVE : '.active',
+ ACTIVE ... | tabs: make the `active` selector more restrictive again.
When one uses say a carousel inside a tab, the `.active` selector previously matches the carousel ones too leading to broken tabs.
It's not the perfect solution but should the job for now. | twbs_bootstrap | train |
bcd2619e4e7280ae24a680b4f01a253a22f2a599 | diff --git a/uproot/_connect/to_pandas.py b/uproot/_connect/to_pandas.py
index <HASH>..<HASH> 100644
--- a/uproot/_connect/to_pandas.py
+++ b/uproot/_connect/to_pandas.py
@@ -150,9 +150,6 @@ def futures2df(futures, outputtype, entrystart, entrystop, flatten, flatname, aw
interpretations.append(interpretati... | Removed stray print and unneeded default length | scikit-hep_uproot | train |
7a0ed88e1775429ce283cc315cc05ea3dbde229f | diff --git a/tests/response_construction_tests.py b/tests/response_construction_tests.py
index <HASH>..<HASH> 100644
--- a/tests/response_construction_tests.py
+++ b/tests/response_construction_tests.py
@@ -7,9 +7,12 @@ from .test_views import TestProxy
class ResponseConstructionTest(TestCase, RequestPatchMixin):
... | Add test coverage for <I> CONTENT_LENGTH hack | thomasw_djproxy | train |
2d2426fef5f96b3be210c9687f5e7375b8c41d24 | diff --git a/peewee.py b/peewee.py
index <HASH>..<HASH> 100644
--- a/peewee.py
+++ b/peewee.py
@@ -4303,6 +4303,8 @@ class ForeignKeyField(Field):
def field_type(self):
if not isinstance(self.rel_field, AutoField):
return self.rel_field.field_type
+ elif isinstance(self.rel_field, BigA... | Ensure that we use BigInt for BigAutoField foreign-keys.
Fixes #<I>. | coleifer_peewee | train |
52989217b5ca0e84650b1b91bb947aac45a36d54 | diff --git a/lib/breach_mitigation/length_hiding.rb b/lib/breach_mitigation/length_hiding.rb
index <HASH>..<HASH> 100644
--- a/lib/breach_mitigation/length_hiding.rb
+++ b/lib/breach_mitigation/length_hiding.rb
@@ -38,7 +38,7 @@ module BreachMitigation
# The length of the padding should be strongly random, but t... | Use MAX_LENGTH constant for random length max
`MAX_LENGTH` wasn't being used. | meldium_breach-mitigation-rails | train |
915ce16eb6e64a80205761faafb7e27544cb568f | diff --git a/pyxmpp/clientstream.py b/pyxmpp/clientstream.py
index <HASH>..<HASH> 100644
--- a/pyxmpp/clientstream.py
+++ b/pyxmpp/clientstream.py
@@ -77,7 +77,7 @@ class ClientStream(Stream):
self.server=server
if port:
self.port=port
- Stream._connect(self,self.server,self.port,self.jid.domain)
+ Stream.... | - SRV support (some polishing still needed, but works) | Jajcus_pyxmpp2 | train |
9e1638a0d55e0d4a2ff89cd0791f79d191ab9b38 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -264,6 +264,12 @@ func (c *Client) Queues() ([]*Queue, error) {
return queues, nil
}
+func (c *Client) QueueCount(jobName string) (int64, error) {
+ conn := c.pool.Get()
+ defer conn.Close()
+ return redis.Int64(conn.... | Helper that just returns the count in a queue. This is useful because we don't need to ensure it's part of known_jobs and it's really useful for testing | gocraft_work | train |
25161444de02baaf51f991bbe49dd53d9ddcd644 | diff --git a/.travis.yml b/.travis.yml
index <HASH>..<HASH> 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -22,7 +22,7 @@ before_install:
script:
- go test -v -race ./...
- go vet ./...
-- errcheck github.com/Shopify/sarama/
+- errcheck github.com/Shopify/sarama/...
- if [[ -n $(go fmt ./...) ]]; then echo "Please r... | Enable errcheck on subpackages, and address error handling that was missed before. | Shopify_sarama | train |
de3cb60fa68c3d5c000f39063ffa143bd1ad3781 | diff --git a/src/components/InternalDropdown/placeholderOption.js b/src/components/InternalDropdown/placeholderOption.js
index <HASH>..<HASH> 100644
--- a/src/components/InternalDropdown/placeholderOption.js
+++ b/src/components/InternalDropdown/placeholderOption.js
@@ -1,17 +1,16 @@
import React from 'react';
import... | fix: make the MultiSelect header fixed when scrolling (#<I>)
fix: #<I> | 90milesbridge_react-rainbow | train |
b177a08d2d3aae053c84a211f42f29fcecf19110 | diff --git a/package.json b/package.json
index <HASH>..<HASH> 100644
--- a/package.json
+++ b/package.json
@@ -56,8 +56,10 @@
"debug": "^2.2.0",
"ipfs-merkle-dag": "^0.5.0",
"ipfs-unixfs": "^0.1.0",
+ "isstream": "^0.1.2",
"readable-stream": "^1.1.13",
"run-series": "^1.1.4",
+ "streamifi... | Support content as a Buffer. | ipfs_js-ipfs-unixfs-importer | train |
deb24a48f156dead2c937d358267a8185f7df940 | diff --git a/src/Records/Traits/HasTypes/RecordsTrait.php b/src/Records/Traits/HasTypes/RecordsTrait.php
index <HASH>..<HASH> 100644
--- a/src/Records/Traits/HasTypes/RecordsTrait.php
+++ b/src/Records/Traits/HasTypes/RecordsTrait.php
@@ -6,6 +6,7 @@ use ByTIC\Common\Records\Properties\Types\Generic as GenericType;
... | refactor getting types in record trait | bytic_Common | train |
a07da12106f1007507ad51c395891371641e6baf | diff --git a/test/extended/operators/operators.go b/test/extended/operators/operators.go
index <HASH>..<HASH> 100644
--- a/test/extended/operators/operators.go
+++ b/test/extended/operators/operators.go
@@ -58,11 +58,6 @@ var _ = g.Describe("[Feature:Platform][Smoke] Managed cluster should", func() {
cv := objx.Map... | CHECK(cvo): extended: remove non-functional CVO status check failing with today's objx lib
Our old objx dependency was from <I>. In the current version, `nil.String()` returns empty string, not `<nil>` anymore, making the test fail. | openshift_origin | train |
22f6df01a0b022e3b605039f17d130c013fe975f | diff --git a/tests/unit/auth_mock.py b/tests/unit/auth_mock.py
index <HASH>..<HASH> 100644
--- a/tests/unit/auth_mock.py
+++ b/tests/unit/auth_mock.py
@@ -33,5 +33,4 @@ if 'GBDX_MOCK' not in os.environ:
mock_gbdx_session = get_mock_gbdx_session(token='dummytoken')
gbdx = Interface(gbdx_connection=mock_gbdx_se... | fixing the ipe image test that was failing for a still unknown reason | DigitalGlobe_gbdxtools | train |
63151fce7e4773f1b475db74bbd8975af3994bb6 | diff --git a/libaio/__init__.py b/libaio/__init__.py
index <HASH>..<HASH> 100644
--- a/libaio/__init__.py
+++ b/libaio/__init__.py
@@ -1,4 +1,4 @@
-# Copyright (C) 2017-2018 Vincent Pelletier <plr.vincent@gmail.com>
+# Copyright (C) 2017-2019 Vincent Pelletier <plr.vincent@gmail.com>
#
# This file is part of python... | all: Bump copyright year. | vpelletier_python-libaio | train |
a8e18c73136c1f2afaee623d645722d14b894f41 | diff --git a/scripts/miRNA.simulator.py b/scripts/miRNA.simulator.py
index <HASH>..<HASH> 100644
--- a/scripts/miRNA.simulator.py
+++ b/scripts/miRNA.simulator.py
@@ -53,6 +53,8 @@ parser.add_option("-s", "--species", dest="species",
help="", metavar="FILE")
parser.add_option("-e", "--... | Create fa and fq output. | lpantano_seqcluster | train |
ca18a975c049fb97ff06345283845c79c85f987b | diff --git a/core/bases.py b/core/bases.py
index <HASH>..<HASH> 100755
--- a/core/bases.py
+++ b/core/bases.py
@@ -14,8 +14,9 @@ using shelve|PyTables|pandas HDFStore
'''
from pandas import DataFrame as DF
from numpy import nan, unravel_index
-from pylab import sca
+import pylab as pl
from GoreUtilities.util import... | First go at fixing axis limits for the plot function. | eyurtsev_FlowCytometryTools | train |
c9c357d6b774083a660424226ceff143cbde9579 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -558,6 +558,9 @@ async function activate() {
let CHANGELOG = await askForChangelog( VERSION_TYPE, NEXT_VERSION );
+ if ( CHANGELOG )
+ fs.writeFileSync( 'CHANGELOG.md.draft', CHANGELOG, 'UTF-8' );
+
//
// ---... | A draft changelog will be saved for future use when the user writes an entry and then aborts the update | Zelgadis87_npm-versionator | train |
8927b2ba2203b4e787008e7f5162a35c85dffcd3 | diff --git a/lib/fromPgn.js b/lib/fromPgn.js
index <HASH>..<HASH> 100644
--- a/lib/fromPgn.js
+++ b/lib/fromPgn.js
@@ -312,16 +312,16 @@ class Parser extends EventEmitter {
delete pgn.format
const res = this._parse(pgn, bs, data.length, false, cb, pgn_data)
if ( res ) {
- debug('pars... | fix: reporting for YDGW parser errors incorrect (#<I>) | canboat_canboatjs | train |
55471785fbd70546178e2d740025bb0835d8e9a5 | diff --git a/notifications/__init__.py b/notifications/__init__.py
index <HASH>..<HASH> 100644
--- a/notifications/__init__.py
+++ b/notifications/__init__.py
@@ -10,4 +10,4 @@
# PEP 386-compliant version number: N.N[.N]+[{a|b|c|rc}N[.N]+][.postN][.devN]
__version__ = '1.4.0'
-default_app_config = 'notifications.ap... | Improve code quality on __init__.py, admin.py and apps.py | django-notifications_django-notifications | train |
e07c6162fd0c095b4fd6bebb28033b02125e10b5 | diff --git a/cilium-health/launch/endpoint.go b/cilium-health/launch/endpoint.go
index <HASH>..<HASH> 100644
--- a/cilium-health/launch/endpoint.go
+++ b/cilium-health/launch/endpoint.go
@@ -177,8 +177,6 @@ func LaunchAsEndpoint(owner endpoint.Owner, hostAddressing *models.NodeAddressin
log.WithError(err).Fatal("Err... | k8s: CEP controller detects and handles health ep
The health endpoint has a corresponding CEP but isn't part of the
orchestration system (in this case, k8s). It isn't initialized to work
with the default CEP naming scheme, and requires special casing. | cilium_cilium | train |
ea975129d9c7fdfe0ea8719b91f9937422845d6a | diff --git a/netpyne/plotting/plotter.py b/netpyne/plotting/plotter.py
index <HASH>..<HASH> 100644
--- a/netpyne/plotting/plotter.py
+++ b/netpyne/plotting/plotter.py
@@ -73,6 +73,13 @@ class MetaFigure:
self.fig, self.ax = plt.subplots(nrows, ncols, figsize=figSize, dpi=dpi)
+ # Add a metafig attri... | fixed bug in plotting when overlaying axes | Neurosim-lab_netpyne | train |
f1662ee73045214eba2de197828f08650f96e44d | diff --git a/lib/mini_readline/read_line/edit/auto_complete/array_source.rb b/lib/mini_readline/read_line/edit/auto_complete/array_source.rb
index <HASH>..<HASH> 100644
--- a/lib/mini_readline/read_line/edit/auto_complete/array_source.rb
+++ b/lib/mini_readline/read_line/edit/auto_complete/array_source.rb
@@ -17,11 +17... | Refactored array source too. | PeterCamilleri_mini_readline | train |
76626c9934dcfdc4d81afd1e8c9480bec871e35e | diff --git a/src/Illuminate/Queue/SerializesModels.php b/src/Illuminate/Queue/SerializesModels.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Queue/SerializesModels.php
+++ b/src/Illuminate/Queue/SerializesModels.php
@@ -64,7 +64,8 @@ trait SerializesModels
protected function getRestoredPropertyValue($value)... | Ensure ModelIdentifier use write PDO connection.
When working with SerializesModels, it is possible that when Queue attempts to work on the job
the model is yet available on the read PDO connection, therefore `findOrFail()` would just fail,
On heavy server load, it is possible that the latency is big enough the max o... | laravel_framework | train |
a725da2002767e4bfe2bd032e07678375ae5c398 | diff --git a/tests/unit/MailboxTest.php b/tests/unit/MailboxTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/MailboxTest.php
+++ b/tests/unit/MailboxTest.php
@@ -527,6 +527,7 @@ final class MailboxTest extends TestCase
['=?ISO-8859-1?Q?Max_J=F8rn_Simsen?= <max.joern.s@example.dk>', 'Max Jørn Simsen <m... | add additional test case for barbushin/php-imap#<I> | barbushin_php-imap | train |
1b5f9da8575f7a3605a56aea74d29d36c2b8337b | diff --git a/experiment/generate_tests.py b/experiment/generate_tests.py
index <HASH>..<HASH> 100755
--- a/experiment/generate_tests.py
+++ b/experiment/generate_tests.py
@@ -43,13 +43,13 @@ PROW_CONFIG_TEMPLATE = """
- generated # AUTO-GENERATED by experiment/generate_tests.py - DO NOT EDIT!
interval:
a... | add service-account to generate jobs | kubernetes_test-infra | train |
22b06ad76bdbfb73ae7a4ab3708183d981444351 | diff --git a/pyocd/tools/pyocd.py b/pyocd/tools/pyocd.py
index <HASH>..<HASH> 100755
--- a/pyocd/tools/pyocd.py
+++ b/pyocd/tools/pyocd.py
@@ -1671,6 +1671,7 @@ class PyOCDCommander(object):
addr = self.convert_value(args[0])
else:
addr = self.target.read_core_register('pc')
+ ... | Commander: 'where' command prints offset from start of symbol. | mbedmicro_pyOCD | train |
598fcca346535040416d01aa6d2da53f8b1e8422 | diff --git a/event/event.js b/event/event.js
index <HASH>..<HASH> 100644
--- a/event/event.js
+++ b/event/event.js
@@ -65,8 +65,8 @@ if ( $.browser == "mozilla" ) {
} else if ( $.browser == "msie" ) {
// Only works if you document.write() it
- document.write('<script id="__ie_init" defer="true" ' +
- 'src="javas... | Added some of the fixes discussed over at Dean's blog, concerning DOM Ready. | jquery_jquery | train |
08367d1fcf89b2fac23bd7113cce2a54af1ee490 | diff --git a/lib/action_kit_rest/pages/event_campaign_page.rb b/lib/action_kit_rest/pages/event_campaign_page.rb
index <HASH>..<HASH> 100644
--- a/lib/action_kit_rest/pages/event_campaign_page.rb
+++ b/lib/action_kit_rest/pages/event_campaign_page.rb
@@ -27,7 +27,8 @@ module ActionKitRest
def event_create_page_p... | Set title on event & signup create pages | controlshift_action_kit_rest | train |
fcadd1806933ba710b71e15198e9d5ddfbd8def7 | diff --git a/dvc/prompt.py b/dvc/prompt.py
index <HASH>..<HASH> 100644
--- a/dvc/prompt.py
+++ b/dvc/prompt.py
@@ -7,7 +7,7 @@ except NameError:
pass
-def prompt(msg, default=False):
+def prompt(msg, default=False): # pragma: no cover
if not sys.stdout.isatty():
return default | coverage: ignore code dependent on tty | iterative_dvc | train |
ec8f3d5f70cfdc45d61ac7c92dbff1a2bf568051 | diff --git a/eng/mgmt/automation/generate.py b/eng/mgmt/automation/generate.py
index <HASH>..<HASH> 100755
--- a/eng/mgmt/automation/generate.py
+++ b/eng/mgmt/automation/generate.py
@@ -85,7 +85,7 @@ def generate(
def compile_package(sdk_root, service):
module = ARTIFACT_FORMAT.format(service)
if os.system(... | mgmt script, add "no-transfer-progress" to mvn call (#<I>) | Azure_azure-sdk-for-java | train |
1331c8f52f115a600c28fb0c58d19979e54d44be | diff --git a/src/Image/Transformation/SmartSize.php b/src/Image/Transformation/SmartSize.php
index <HASH>..<HASH> 100644
--- a/src/Image/Transformation/SmartSize.php
+++ b/src/Image/Transformation/SmartSize.php
@@ -181,6 +181,9 @@ class SmartSize extends Transformation {
case 'wide':
retur... | Allow full crop for no zoom on smartSize | imbo_imbo | train |
9bbc9c32c6bb8da6c57f138d7e079ce33f6990ae | diff --git a/lib/active_merchant/billing/gateways/paypal.rb b/lib/active_merchant/billing/gateways/paypal.rb
index <HASH>..<HASH> 100644
--- a/lib/active_merchant/billing/gateways/paypal.rb
+++ b/lib/active_merchant/billing/gateways/paypal.rb
@@ -11,14 +11,14 @@ module ActiveMerchant #:nodoc:
self.homepage_url =... | added patch support created by kevin and altered by Jon Pospischil to support reference transactions in paypal gateway | activemerchant_active_merchant | train |
e8db0311120d5e9a545fde5862f8a16b07760697 | diff --git a/tags.go b/tags.go
index <HASH>..<HASH> 100644
--- a/tags.go
+++ b/tags.go
@@ -70,11 +70,11 @@ func (store *TagStore) LookupImage(name string) (*Image, error) {
if err != nil {
// FIXME: standardize on returning nil when the image doesn't exist, and err for everything else
// (so we can pass all err... | Fixed tag parsing when the repos name contains both a port and a tag | containers_storage | train |
3b44b4dcb6c00477273595c312908e2412d07da6 | diff --git a/parser/parser_test.go b/parser/parser_test.go
index <HASH>..<HASH> 100644
--- a/parser/parser_test.go
+++ b/parser/parser_test.go
@@ -1015,6 +1015,15 @@ func TestPosition(t *testing.T) {
node = program.Body[0].(*ast.ExpressionStatement).Expression.(*ast.DotExpression).Left.(*ast.ThisExpression)
is(no... | fix idx of throw and if (#<I>)
* fix idx of throw and if
* add test to cover if/throw statement idx | robertkrimen_otto | train |
e11be48dfce79642b4247dbf59815df7efcb216f | diff --git a/core/src/main/java/org/powermock/core/MockGateway.java b/core/src/main/java/org/powermock/core/MockGateway.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/powermock/core/MockGateway.java
+++ b/core/src/main/java/org/powermock/core/MockGateway.java
@@ -33,6 +33,14 @@ import java.lang.reflect.M... | Optimizations in powermock-reflect (#<I>)
* Optimize MockGateway.calledFromMockito()
* Cache results of WhiteboxImpl.getAllMethods() | powermock_powermock | train |
305b99bda998adb062cb0373851aefdd3f37585e | diff --git a/src/pybel/parser/parse_control.py b/src/pybel/parser/parse_control.py
index <HASH>..<HASH> 100644
--- a/src/pybel/parser/parse_control.py
+++ b/src/pybel/parser/parse_control.py
@@ -234,9 +234,9 @@ class ControlParser(BaseParser):
else:
if 3 == len(values):
- logger.w... | Change logging level
[skip ci] | pybel_pybel | train |
6a8053e467141893f77d728b25dcf776124f1f83 | diff --git a/src/drawing.js b/src/drawing.js
index <HASH>..<HASH> 100644
--- a/src/drawing.js
+++ b/src/drawing.js
@@ -292,7 +292,7 @@ Crafty.DrawManager = (function() {
* Returns coords
*/
boundingRect: function(set) {
- if (!set.length) return;
+ if (!set || !set.length) return;
var newset = [], i = ... | Particles: Take viewport scrolling correctly into account. | craftyjs_Crafty | train |
28a879963c12ce194efa27da1e642070402d935c | diff --git a/Gemfile b/Gemfile
index <HASH>..<HASH> 100644
--- a/Gemfile
+++ b/Gemfile
@@ -8,7 +8,7 @@ group :test do
gem "rspec" , "~> 2.11"
gem 'eventmachine', '1.0.0'
gem 'evented-spec', '~> 0.9.0'
- gem 'zk-server', '~> 1.0'
+ gem 'zk-server', '~> 1.0', :git => 'https://github.com/zk-ruby/zk-server.git'
... | Trying to get java to work | zk-ruby_zookeeper | train |
7a4d0df7375a55b65b5cd057096e2f3577b25741 | diff --git a/dipper/sources/OMIMSource.py b/dipper/sources/OMIMSource.py
index <HASH>..<HASH> 100644
--- a/dipper/sources/OMIMSource.py
+++ b/dipper/sources/OMIMSource.py
@@ -139,7 +139,7 @@ class OMIMSource(Source):
src_key = 'mimtitles'
- self.get_files(is_dl_forced=True, files=self.mimfiles)
+ ... | removed is_dl_forced from get_files() call in populate_omim_type() | monarch-initiative_dipper | train |
fb19f0cb32e2d1862e0723b01130575834ffa034 | diff --git a/test/serial/raw/to.js b/test/serial/raw/to.js
index <HASH>..<HASH> 100644
--- a/test/serial/raw/to.js
+++ b/test/serial/raw/to.js
@@ -51,9 +51,8 @@ describe("serial/raw/to", function () {
true,
"",
"Hello World",
- new Date(),
- function () {},
-... | gpf.serial.toRaw with converter test (#<I>) | ArnaudBuchholz_gpf-js | train |
87451f2764e02d743bac957beff5a6cc82c87024 | diff --git a/python_jsonschema_objects/classbuilder.py b/python_jsonschema_objects/classbuilder.py
index <HASH>..<HASH> 100644
--- a/python_jsonschema_objects/classbuilder.py
+++ b/python_jsonschema_objects/classbuilder.py
@@ -67,6 +67,9 @@ class ProtocolBase(collections.MutableMapping):
return self.as_dict()
... | Update __eq__ to check class type first. | cwacek_python-jsonschema-objects | train |
1d8231bd115c970a8697302cf3c5a14e24d93e1c | diff --git a/frontend/app/map/map/map.js b/frontend/app/map/map/map.js
index <HASH>..<HASH> 100644
--- a/frontend/app/map/map/map.js
+++ b/frontend/app/map/map/map.js
@@ -297,6 +297,8 @@ fm.app.directive("facilmap", function(fmUtils, fmMapMessages, fmMapMarkers, $com
let listenClick = (e) => {
this.interacti... | Disable almostOver while waiting for click | FacilMap_facilmap2 | train |
4594c1c261e05b9f128d04467a254d9260e77c88 | diff --git a/catalog/app/containers/Bucket/PackageList.js b/catalog/app/containers/Bucket/PackageList.js
index <HASH>..<HASH> 100644
--- a/catalog/app/containers/Bucket/PackageList.js
+++ b/catalog/app/containers/Bucket/PackageList.js
@@ -321,7 +321,7 @@ export default function PackageList({
const computedPage = pag... | PackageList: longer debounce (<I>) (#<I>) | quiltdata_quilt | train |
47444ca7e447f915587d0e8d095292a604988d7d | diff --git a/puni.py b/puni.py
index <HASH>..<HASH> 100644
--- a/puni.py
+++ b/puni.py
@@ -74,19 +74,23 @@ class UserNotes:
global warning_types
- self.cache_timeout = 0
+ self.cache_timeout = 30
+ self.last_visited = 0
self.num_retries = 2
self.cached_json = self.ge... | Made cache timeout independant of PRAW's, added __repr__ methods | teaearlgraycold_puni | train |
c04960b78951f2579d5b5dc05284221b11b732e1 | diff --git a/code/AssetsFolderExtension.php b/code/AssetsFolderExtension.php
index <HASH>..<HASH> 100644
--- a/code/AssetsFolderExtension.php
+++ b/code/AssetsFolderExtension.php
@@ -52,7 +52,8 @@ class AssetsFolderExtension extends DataExtension {
}
}
if ($isPage) {
- $fields->addFieldToTab('Root.Main', $h... | fixing upload dir editing
...with TreeDropdownField | titledk_silverstripe-uploaddirrules | train |
040e1653cc19f8ed1aa3c9e28d639fbe99ee9a3b | diff --git a/lib/entry.js b/lib/entry.js
index <HASH>..<HASH> 100644
--- a/lib/entry.js
+++ b/lib/entry.js
@@ -37,6 +37,11 @@ Ep.addSetters = function (setters) {
};
Ep.addSetter = function (name, setter) {
+ if (name === "__esModule") {
+ // Ignore any requests for the exports.__esModule property."
+ return... | Don't let the exports.__esModule property be imported. | benjamn_reify | train |
33400ea323769bf422b6985714a483be4b23f4bf | diff --git a/core/src/main/java/org/cache2k/core/threading/Locks.java b/core/src/main/java/org/cache2k/core/threading/Locks.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/cache2k/core/threading/Locks.java
+++ b/core/src/main/java/org/cache2k/core/threading/Locks.java
@@ -20,6 +20,8 @@ package org.cache2k... | Fix detection of StampedLock, Android was broken | cache2k_cache2k | train |
d7855a3a9aa814b29cf11f07c0fc005d5de959ee | diff --git a/rolepermissions/migrations/0001_initial.py b/rolepermissions/migrations/0001_initial.py
index <HASH>..<HASH> 100644
--- a/rolepermissions/migrations/0001_initial.py
+++ b/rolepermissions/migrations/0001_initial.py
@@ -5,13 +5,27 @@ from south.v2 import SchemaMigration
from django.db import models
+# S... | fixing south migrations to be conpatible with django <I> | vintasoftware_django-role-permissions | train |
21c20b25bd6e189c570826b40c0f99dbc8f910a7 | diff --git a/template/index.php b/template/index.php
index <HASH>..<HASH> 100644
--- a/template/index.php
+++ b/template/index.php
@@ -77,18 +77,32 @@ function jsonp_decode($jsonp) {
return json_decode($jsonp, true);
}
+function decode_file($filename) {
+ if (file_exists($filename)) {
+ return jsonp_decode(fi... | Handle file-not-found in index.php. | senchalabs_jsduck | train |
e33ba9917a9aee4227e67d37e170536c13c956c5 | diff --git a/spec/mailers/peoplefinder/user_update_mailer_spec.rb b/spec/mailers/peoplefinder/user_update_mailer_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/mailers/peoplefinder/user_update_mailer_spec.rb
+++ b/spec/mailers/peoplefinder/user_update_mailer_spec.rb
@@ -9,11 +9,6 @@ RSpec.shared_examples "observe token... | Shared spec to check for multipart emails
I'm going to extract this to somewhere else tomorrow. Just placing it here for now. | ministryofjustice_peoplefinder | train |
0c2b0a86dd8e6da163a027e43d3983dfa60f25eb | diff --git a/tests/Balanced/SuiteTest.php b/tests/Balanced/SuiteTest.php
index <HASH>..<HASH> 100644
--- a/tests/Balanced/SuiteTest.php
+++ b/tests/Balanced/SuiteTest.php
@@ -253,20 +253,11 @@ class SuiteTest extends \PHPUnit_Framework_TestCase
self::_createBuyer();
}
- function testCreateCusotmerWit... | disable legacy test that sometimes stops on travis | balanced_balanced-php | train |
0ad450ac0b0d0a8dfca25f79d1a708b18cc8c6e7 | diff --git a/shmooze/wsgi/__main__.py b/shmooze/wsgi/__main__.py
index <HASH>..<HASH> 100644
--- a/shmooze/wsgi/__main__.py
+++ b/shmooze/wsgi/__main__.py
@@ -1,5 +1,5 @@
-import musicazoo.wsgi
-import musicazoo.settings
+import shmooze.wsgi
+import shmooze.settings
import werkzeug.serving
-werkzeug.serving.run_simp... | refactored wsgi | zbanks_shmooze | train |
181b3886aad548d5fbb43b0c2d96b1f38c681485 | diff --git a/lib/FaceOverlayFilter.js b/lib/FaceOverlayFilter.js
index <HASH>..<HASH> 100644
--- a/lib/FaceOverlayFilter.js
+++ b/lib/FaceOverlayFilter.js
@@ -19,7 +19,9 @@ var inherits = require('inherits');
var checkType = require('checktype');
-var Filter = require('kurento-client-core').abstracts.Filter;
+var ... | Generated code from c1b<I>e<I>cf<I>dd<I>e<I>ae2c<I>c<I>fb<I>c<I> | Kurento_kurento-client-filters-js | train |
09df20cd1fb695afccff0c1aa4886a6462b7e260 | diff --git a/dosagelib/plugins/gocomics.py b/dosagelib/plugins/gocomics.py
index <HASH>..<HASH> 100644
--- a/dosagelib/plugins/gocomics.py
+++ b/dosagelib/plugins/gocomics.py
@@ -194,7 +194,6 @@ add('Dromo', '/dro-mo')
add('DudeandDude', '/dudedude')
add('DumbQuestionBadAnswer', '/dumb-question-bad-answer')
add('Dus... | Fix some comics and increase travis test number. | wummel_dosage | train |
752797c2d3384bad81add1878d3d503b192e1514 | diff --git a/lib/puppet/plugins/data_providers/data_provider.rb b/lib/puppet/plugins/data_providers/data_provider.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/plugins/data_providers/data_provider.rb
+++ b/lib/puppet/plugins/data_providers/data_provider.rb
@@ -111,7 +111,7 @@ module Puppet::Plugins::DataProviders
... | (PUP-<I>) Fix wording in some comments | puppetlabs_puppet | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.