hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
b7e7d59bac6b8672d882d6c34357ea42f289bc9b | diff --git a/anndata/readwrite/h5ad.py b/anndata/readwrite/h5ad.py
index <HASH>..<HASH> 100644
--- a/anndata/readwrite/h5ad.py
+++ b/anndata/readwrite/h5ad.py
@@ -193,7 +193,9 @@ def write_series(group, key, series, dataset_kwargs=MappingProxyType({})):
write_array(group, category_key, cats, dataset_kwargs)
... | Initial support for ordered categoricals.
* IO supported via attribute on categories
* Tests now check order of categoricals | theislab_anndata | train |
057c80557d16c195e7d95f431147007857a0fcfe | diff --git a/stripe.go b/stripe.go
index <HASH>..<HASH> 100644
--- a/stripe.go
+++ b/stripe.go
@@ -426,6 +426,7 @@ func (s *BackendImplementation) Do(req *http.Request, body *bytes.Buffer, v inte
}
s.requestMetricsBuffer.inputChannel <- metrics
+ <-s.requestMetricsBuffer.done // wait for object to be placed... | add some hacky synchronization to wait for the circular buffer goroutine | stripe_stripe-go | train |
c6645d0e1d5d91b5ab0a68d9db573db9c078ded9 | diff --git a/jquery.uniform.js b/jquery.uniform.js
index <HASH>..<HASH> 100644
--- a/jquery.uniform.js
+++ b/jquery.uniform.js
@@ -768,7 +768,7 @@ Enjoy!
//noSelect v1.0
$.uniform.noSelect = function (elem) {
- var f = function () {
+ function f() {
return false;
}; | Removing code
Per Crockford,
function f () {...}
is interpreted as
var f;
f = function f () {...}
Thus, there's no point in putting var in front. | AudithSoftworks_Uniform | train |
bf33b145d910f148152b91e0ba5b490b470372c0 | diff --git a/test/safe_test.rb b/test/safe_test.rb
index <HASH>..<HASH> 100644
--- a/test/safe_test.rb
+++ b/test/safe_test.rb
@@ -30,6 +30,21 @@ class FakeFSSafeTest < Minitest::Test
refute File.exist?(path)
end
+ def test_FakeFS_method_presents_persistent_fs
+ path = 'file.txt'
+
+ FakeFS do
+ F... | Codify the fact that independent FakeFS blocks share a persistent fake system | fakefs_fakefs | train |
26917dbf250b662ae3c5891a50945f94266c3a89 | diff --git a/recipe-client-addon/test/browser/browser_PreferenceExperiments.js b/recipe-client-addon/test/browser/browser_PreferenceExperiments.js
index <HASH>..<HASH> 100644
--- a/recipe-client-addon/test/browser/browser_PreferenceExperiments.js
+++ b/recipe-client-addon/test/browser/browser_PreferenceExperiments.js
@... | recipe-client-addon: Remove watching default branch test; it cannot pass.
The implementation of Preferences.jsm doesn't support watching a
preference on the default branch, only on the combined set of
preferences. This test cannot pass. | mozilla_normandy | train |
af7803703ff991ec44a74cc621a3930f289560c3 | diff --git a/src/Pin.php b/src/Pin.php
index <HASH>..<HASH> 100644
--- a/src/Pin.php
+++ b/src/Pin.php
@@ -60,7 +60,7 @@ class Pin
*/
public function __construct($id, DateTime $time, Layout $layout)
{
- $this->time = $time->copy();
+ $this->time = clone $time;
$this->layout = ... | Clone not copy for base DateTime objects. | valorin_pinpusher | train |
52cfcd25d64fec457e910903d82ee3f358a65b15 | diff --git a/test/functional/client_side_encryption_prose_tests.js b/test/functional/client_side_encryption_prose_tests.js
index <HASH>..<HASH> 100644
--- a/test/functional/client_side_encryption_prose_tests.js
+++ b/test/functional/client_side_encryption_prose_tests.js
@@ -487,7 +487,7 @@ describe('Client Side Encrypt... | test(encryption): ensure that inserting to key vault uses w:majority | mongodb_node-mongodb-native | train |
5ef143db51e7ac57286ef2bee13b9e0c2706b0ea | diff --git a/lib/praxis/file_group.rb b/lib/praxis/file_group.rb
index <HASH>..<HASH> 100644
--- a/lib/praxis/file_group.rb
+++ b/lib/praxis/file_group.rb
@@ -5,8 +5,14 @@ module Praxis
attr_reader :groups, :base
def initialize(base, &block)
+ if base.nil?
+ raise ArgumentError, "base must not b... | Rework FileGroup to use Pathname.glob instead of Pathname#find.
Should close #<I>. | praxis_praxis | train |
037fd00f9b76f086f84620fbd8ba919548d177a2 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,22 +1,21 @@
#! /usr/bin/env python
#
from distutils.core import setup
-import version
+from ginga.version import version
setup(
name = "Ginga",
- version = version.version,
+ version = version,
author ... | Fixes to distutils script | ejeschke_ginga | train |
ef593fa8d820f5ad8468b4f5f34c680923cdad15 | diff --git a/src/Symfony/Component/Finder/Iterator/FilePathsIterator.php b/src/Symfony/Component/Finder/Iterator/FilePathsIterator.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Finder/Iterator/FilePathsIterator.php
+++ b/src/Symfony/Component/Finder/Iterator/FilePathsIterator.php
@@ -41,6 +41,11 @@ class ... | [Finder] Fixed iterator keys | symfony_symfony | train |
ed955d51807e05d17d9546eedbc5cba129d00ed2 | diff --git a/fake_filesystem_test.py b/fake_filesystem_test.py
index <HASH>..<HASH> 100755
--- a/fake_filesystem_test.py
+++ b/fake_filesystem_test.py
@@ -1570,19 +1570,29 @@ class FakeOsModuleTest(FakeOsModuleTestBase):
def testChangeCaseInCaseInsensitiveFileSystem(self):
"""Can use `rename()` to change ... | Fixed another problem with case-insensitive filesystem
- fixes #<I> | jmcgeheeiv_pyfakefs | train |
a0c2e6c99c6300798005bc82795f4889d83aaed7 | diff --git a/src/plugins/CachePluginFactory.js b/src/plugins/CachePluginFactory.js
index <HASH>..<HASH> 100644
--- a/src/plugins/CachePluginFactory.js
+++ b/src/plugins/CachePluginFactory.js
@@ -12,7 +12,7 @@ class CachePluginFactory {
if (!this.plugins[target]) {
this.plugins[target] = new CachePlugin();
... | Fix "Tapable.apply is deprecated" warning (fixes #<I>) (#<I>)
Fix ProgressPluginFactory and CachePluginFactory | webpack-contrib_grunt-webpack | train |
25d6640b71eefca97dbd7a5166aee80cc9be7e31 | diff --git a/polyaxon/db/migrations/0021_auto_20190418_1600_v05.py b/polyaxon/db/migrations/0021_auto_20190418_1600_v05.py
index <HASH>..<HASH> 100644
--- a/polyaxon/db/migrations/0021_auto_20190418_1600_v05.py
+++ b/polyaxon/db/migrations/0021_auto_20190418_1600_v05.py
@@ -55,6 +55,18 @@ def migrate_tensorboard_jobs_c... | Add migration for hptuning | polyaxon_polyaxon | train |
01cffce2d762a2e948613ae4a8aadb0904649a04 | diff --git a/bin/MigrationRunnerCommand.php b/bin/MigrationRunnerCommand.php
index <HASH>..<HASH> 100644
--- a/bin/MigrationRunnerCommand.php
+++ b/bin/MigrationRunnerCommand.php
@@ -56,6 +56,7 @@ class MigrationRunnerCommand extends Command
->addOption('db_pass', 'S', InputOption::VALUE_REQUIRED, 'Databas... | [migrations] Added driver db param. | letsdrink_ouzo | train |
124d5e02b07357f64c082926508eeee326a53731 | diff --git a/lib/jets/build/linux_ruby.rb b/lib/jets/build/linux_ruby.rb
index <HASH>..<HASH> 100644
--- a/lib/jets/build/linux_ruby.rb
+++ b/lib/jets/build/linux_ruby.rb
@@ -194,7 +194,7 @@ class Jets::Build
end
def excludes
- excludes = %w[.git tmp log]
+ excludes = %w[.git tmp log spec]
... | exclude spec folder from zipfile packaging | tongueroo_jets | train |
2f449587d9e0f05170813ef786e380ad151d4cc6 | diff --git a/nodeApps/generateSignedFile.js b/nodeApps/generateSignedFile.js
index <HASH>..<HASH> 100755
--- a/nodeApps/generateSignedFile.js
+++ b/nodeApps/generateSignedFile.js
@@ -9,6 +9,7 @@ const git = require('simple-git')()
const releaseBranch = process.env.releaseBranch || 'staging'
const name = process.env.n... | :wrench: fix relative path
left in __dir when I copied this from payframe, which made files relative to this
instead of relative to cwd | holidayextras_deployment-helpers | train |
030fa37bdcff945696719e6710fdfd38f5b28345 | diff --git a/macroeco/models/test_distributions.py b/macroeco/models/test_distributions.py
index <HASH>..<HASH> 100644
--- a/macroeco/models/test_distributions.py
+++ b/macroeco/models/test_distributions.py
@@ -369,6 +369,40 @@ class TestPlnorm(TestCase):
test = plnorm.pmf([0, 50, 1000], 2.34, 5)
asse... | Unit testing plnorm against Grundy values | jkitzes_macroeco | train |
d401ccef51be93401194e86d866993851a8cddf6 | diff --git a/mockserver-core/src/main/java/org/mockserver/mock/MockServer.java b/mockserver-core/src/main/java/org/mockserver/mock/MockServer.java
index <HASH>..<HASH> 100644
--- a/mockserver-core/src/main/java/org/mockserver/mock/MockServer.java
+++ b/mockserver-core/src/main/java/org/mockserver/mock/MockServer.java
@... | fixing issue where two tests are both resetting of deleting entries from the mock server which causes an exception | jamesdbloom_mockserver | train |
da5d251dac01b36eaf20fd7db018a50c37ae4e8e | diff --git a/core/src/main/java/com/github/srec/jemmy/JemmyDSL.java b/core/src/main/java/com/github/srec/jemmy/JemmyDSL.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/github/srec/jemmy/JemmyDSL.java
+++ b/core/src/main/java/com/github/srec/jemmy/JemmyDSL.java
@@ -42,6 +42,7 @@ import org.netbeans.jemmy.o... | Compare Menu's texts using equals | vtatai_srec | train |
b7eb8161a6374a651018a5e1e0952e661edccd94 | diff --git a/src/AdldapAuthUserProvider.php b/src/AdldapAuthUserProvider.php
index <HASH>..<HASH> 100644
--- a/src/AdldapAuthUserProvider.php
+++ b/src/AdldapAuthUserProvider.php
@@ -67,14 +67,14 @@ class AdldapAuthUserProvider extends EloquentUserProvider
$username = Arr::get($username, 0);
... | Validate that the password isn't null. | Adldap2_Adldap2-Laravel | train |
8b259b4f1474c535fe9f206559a8f7e7165486b2 | diff --git a/packages/bonde-styleguide/src/layout/Footer/Footer.js b/packages/bonde-styleguide/src/layout/Footer/Footer.js
index <HASH>..<HASH> 100644
--- a/packages/bonde-styleguide/src/layout/Footer/Footer.js
+++ b/packages/bonde-styleguide/src/layout/Footer/Footer.js
@@ -29,17 +29,17 @@ const Footer = styled(({ chil... | feat(styleguide): prepare header footer and page to work with fixed layout | nossas_bonde-client | train |
da606544820ec0c71757f2d1caf766989e164027 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2013, Chris Cornutt'
# built documents.
#
# The short X.Y version.
-version = '1.5'
+version = '1.6'
# The full version, including alpha/beta/rc tags.
-release = '1.5'
+release ... | bumping docs version up to <I> | enygma_expose | train |
8a83d0eea8d9350cd518cf814f4465abb066e754 | diff --git a/bower.json b/bower.json
index <HASH>..<HASH> 100644
--- a/bower.json
+++ b/bower.json
@@ -1,7 +1,7 @@
{
"name": "taboo",
"main": "taboo.js",
- "version": "0.0.0",
+ "version": "0.0.1",
"homepage": "https://github.com/mrmagooey/taboo",
"description": "tabular data",
"license": "MIT",
@@ -1... | Bugfix for new columns being added to existing tables, internal cleanup
of header code | mrmagooey_taboo | train |
d526fdadc1de0f612dfc291f7d391f02a6d3a056 | diff --git a/lib/Cake/Model/Model.php b/lib/Cake/Model/Model.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Model/Model.php
+++ b/lib/Cake/Model/Model.php
@@ -3485,7 +3485,7 @@ class Model extends Object implements CakeEventListener {
$this->tablePrefix = $db->config['prefix'];
}
- $this->schemaName = $db->ge... | Base model class no longer changes an already defined schemaName value | cakephp_cakephp | train |
c2c7aee70c03a20250d9eac2b379f9e8e4b6dd5f | diff --git a/pandas/core/series.py b/pandas/core/series.py
index <HASH>..<HASH> 100644
--- a/pandas/core/series.py
+++ b/pandas/core/series.py
@@ -2094,21 +2094,8 @@ class Series(generic.NDFrame):
----------
values : list-like
The sequence of values to test. Passing in a single string wil... | DOC: remove usage of code-block in docstrings (#<I>) | pandas-dev_pandas | train |
b9b206bab3f23c8580aa09fe45affeaf3cd5bfe7 | diff --git a/Parser/Crawler/CrawlerManager.php b/Parser/Crawler/CrawlerManager.php
index <HASH>..<HASH> 100755
--- a/Parser/Crawler/CrawlerManager.php
+++ b/Parser/Crawler/CrawlerManager.php
@@ -16,15 +16,27 @@ use Symfony\Component\DomCrawler\Crawler;
class CrawlerManager
{
+
+ /**
+ * @var Crawler
+ */... | reset crawlercontent when doing a 'get'
do not encode stuff here, leave it as is | ErikTrapman_CQRankingParserBundle | train |
2241d713137e398f07e327a201e086cc7a24d714 | diff --git a/pyemma/coordinates/api.py b/pyemma/coordinates/api.py
index <HASH>..<HASH> 100644
--- a/pyemma/coordinates/api.py
+++ b/pyemma/coordinates/api.py
@@ -52,6 +52,9 @@ from pyemma.coordinates.clustering.uniform_time import UniformTimeClustering as
from pyemma.coordinates.clustering.regspace import RegularSpa... | [coor/api] imported histogram function to API and deprecated hist(). | markovmodel_PyEMMA | train |
fba3f9bb6552281788adadefec7e7f947a362040 | diff --git a/jre_emul/android/platform/libcore/luni/src/test/java/libcore/java/text/NumberFormatTest.java b/jre_emul/android/platform/libcore/luni/src/test/java/libcore/java/text/NumberFormatTest.java
index <HASH>..<HASH> 100644
--- a/jre_emul/android/platform/libcore/luni/src/test/java/libcore/java/text/NumberFormatTe... | Allow multiple ICU results in number format test.
PiperOrigin-RevId: <I> | google_j2objc | train |
f3871241d648434f39310e95fcf1e442b28280a7 | diff --git a/Command/ClearChunkCommand.php b/Command/ClearChunkCommand.php
index <HASH>..<HASH> 100644
--- a/Command/ClearChunkCommand.php
+++ b/Command/ClearChunkCommand.php
@@ -18,7 +18,7 @@ class ClearChunkCommand extends ContainerAwareCommand
protected function execute(InputInterface $input, OutputInterf... | Fixed the two bundled commands for clearing chunks and orphans. | 1up-lab_OneupUploaderBundle | train |
4f46bd19d0b123327596785dc3975d5e4008d761 | diff --git a/cmd/geth/chaincmd.go b/cmd/geth/chaincmd.go
index <HASH>..<HASH> 100644
--- a/cmd/geth/chaincmd.go
+++ b/cmd/geth/chaincmd.go
@@ -99,6 +99,7 @@ func importChain(ctx *cli.Context) error {
utils.Fatalf("Failed to read database stats: %v", err)
}
fmt.Println(stats)
+ fmt.Printf("Trie cache misses: ... | cmd, core/state: allow configurable trie cache generations | ethereum_go-ethereum | train |
979f7270f662a72a414edc60693db1986ddbd690 | diff --git a/cnxepub/scripts/collated_single_html/main.py b/cnxepub/scripts/collated_single_html/main.py
index <HASH>..<HASH> 100644
--- a/cnxepub/scripts/collated_single_html/main.py
+++ b/cnxepub/scripts/collated_single_html/main.py
@@ -40,7 +40,7 @@ def main(argv=None):
binder = reconstitute(args.collated_html)... | fixup! Revised validate-collated script to print to sys.stdout | openstax_cnx-epub | train |
9a1373dabf314b0142470c757207c9e9ff1a7cf3 | diff --git a/doc/conf.py b/doc/conf.py
index <HASH>..<HASH> 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -152,6 +152,7 @@ numpydoc_validation_checks = {
"YD01", # Yields: No plan to enforce
}
numpydoc_validation_exclude = { # set of regex
+ r'\.PointSet$', # necessary for this abstract class
r'\.Plot... | Make VTK version error clear when PointSet is still abstract (#<I>)
* Move vtk version error from PointSet.__init__ to __new__
* Minor docstring tweak
* ignore documentation validation for pointset | vtkiorg_vtki | train |
5f439de97c363213af3fed743d6ed9243c2a6007 | diff --git a/resilience4j-circuitbreaker/src/main/java/io/github/resilience4j/circuitbreaker/CircuitBreakerConfig.java b/resilience4j-circuitbreaker/src/main/java/io/github/resilience4j/circuitbreaker/CircuitBreakerConfig.java
index <HASH>..<HASH> 100644
--- a/resilience4j-circuitbreaker/src/main/java/io/github/resilie... | support waitDurationInOpenState with millisecond | resilience4j_resilience4j | train |
5312bc7954b2056a782a3c64952a72354f6c3149 | diff --git a/src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Action/Full.php b/src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Action/Full.php
index <HASH>..<HASH> 100644
--- a/src/module-elasticsuite-catalog/Model/Product/Indexer/Fulltext/Action/Full.php
+++ b/src/module-elasticsuite-cata... | Ensure to process parent product when reindexing with a list of product ids. | Smile-SA_elasticsuite | train |
3fa2615c01e87d260e9d2814a52c32bf4c23b61d | diff --git a/spec/support/vcr.rb b/spec/support/vcr.rb
index <HASH>..<HASH> 100644
--- a/spec/support/vcr.rb
+++ b/spec/support/vcr.rb
@@ -11,8 +11,8 @@ VCR.configure do |vcr|
vcr.configure_rspec_metadata!
vcr.default_cassette_options = {
- :record => :new_episodes,
- #:record => :none,
+ #:record => :... | Ensure VCR is not recording on normal spec runs | brightbox_brightbox-cli | train |
72f71762a0ad804cb539811190227deda0284d9a | diff --git a/lib/JsonpMainTemplatePlugin.js b/lib/JsonpMainTemplatePlugin.js
index <HASH>..<HASH> 100644
--- a/lib/JsonpMainTemplatePlugin.js
+++ b/lib/JsonpMainTemplatePlugin.js
@@ -29,6 +29,23 @@ class JsonpMainTemplatePlugin {
const chunkMaps = chunk.getChunkMaps();
const crossOriginLoading = this.outputOpti... | remove nested template string
linter seem to have a problem with it | webpack_webpack | train |
a56586e48bf3a88dd9d19068d53fdb67f3e2faac | diff --git a/lib/crispy/crispy_internal/class_spy.rb b/lib/crispy/crispy_internal/class_spy.rb
index <HASH>..<HASH> 100644
--- a/lib/crispy/crispy_internal/class_spy.rb
+++ b/lib/crispy/crispy_internal/class_spy.rb
@@ -17,8 +17,12 @@ module Crispy
end
def define_wrapper method_name
+ #return meth... | add more codes to reproduce segfault more. | igrep_crispy | train |
c036092ae274b772826ab36e4f61a45c382726a2 | diff --git a/lib/wice_grid.rb b/lib/wice_grid.rb
index <HASH>..<HASH> 100644
--- a/lib/wice_grid.rb
+++ b/lib/wice_grid.rb
@@ -311,7 +311,15 @@ module Wice
v = ar.deep_send(*messages)
uniq_vals << v unless v.nil?
end
- return uniq_vals.to_a.map{|i|[i,i]}
+ return uniq_vals.to_a.map{|i... | Improvement to custom filters, namely to
:custom => :symbol
and
:custom => [:symbol1, :symbol2, symbol3]
flavors: if the last method returns an array of 2 elements, the first element becomes
the select option label and the second - the select option value (usually id) | leikind_wice_grid | train |
711fb32302db344604c660942429cbbf958daaab | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -124,8 +124,8 @@ def get_version_info():
vinfo = _version_helper.generate_git_version_info()
except:
vinfo = vdummy()
- vinfo.version = '1.16.6'
- vinfo.release = 'True'
+ vinfo.vers... | Set back to development (#<I>) | gwastro_pycbc | train |
9dbcc91e00942b4616454f86adf323c5f35542e7 | diff --git a/advanced_filters/tests/test_get_field_choices_view.py b/advanced_filters/tests/test_get_field_choices_view.py
index <HASH>..<HASH> 100644
--- a/advanced_filters/tests/test_get_field_choices_view.py
+++ b/advanced_filters/tests/test_get_field_choices_view.py
@@ -47,7 +47,10 @@ if sys.version_info >= (3, 5):... | fixup! test: refactor unittest test cases to pytest | modlinltd_django-advanced-filters | train |
edcde28ecdfa56cd55ed68dd4e2a6a0566e5aaa7 | diff --git a/smack-core/src/main/java/org/jivesoftware/smack/AbstractXMPPConnection.java b/smack-core/src/main/java/org/jivesoftware/smack/AbstractXMPPConnection.java
index <HASH>..<HASH> 100644
--- a/smack-core/src/main/java/org/jivesoftware/smack/AbstractXMPPConnection.java
+++ b/smack-core/src/main/java/org/jivesoft... | Set UncaughtExceptionHandler for CACHED_EXECUTOR_SERVICE
In order to avoid uncaught exceptions from terminating the
program (SMACK-<I>). | igniterealtime_Smack | train |
7e4ebbce11fe1365fd37bbc5212f090fdde7a880 | diff --git a/altimetry/tools/nctools.py b/altimetry/tools/nctools.py
index <HASH>..<HASH> 100755
--- a/altimetry/tools/nctools.py
+++ b/altimetry/tools/nctools.py
@@ -597,10 +597,10 @@ class nc :
root_grp.setncatts(attrStr)
#Get dimensions
- dimStr=data.pop('_dimensions')
- ... | RD - corrected bug when writing NC files using dataStr | rdussurget_py-altimetry | train |
3d9eafc4bd877282d289969c1b00a87323f1f5cf | diff --git a/tests/integration/modules/test_file.py b/tests/integration/modules/test_file.py
index <HASH>..<HASH> 100644
--- a/tests/integration/modules/test_file.py
+++ b/tests/integration/modules/test_file.py
@@ -211,4 +211,3 @@ class FileModuleTest(ModuleCase):
with salt.utils.fopen(self.myfile, 'r') as fp:... | Lint: Remove extra empty lines at end of files | saltstack_salt | train |
4c0fcda20c33b78d77fddee18cf7a07b6da65fe7 | diff --git a/src/php/tests/generated_code/AbstractGeneratedCodeTest.php b/src/php/tests/generated_code/AbstractGeneratedCodeTest.php
index <HASH>..<HASH> 100644
--- a/src/php/tests/generated_code/AbstractGeneratedCodeTest.php
+++ b/src/php/tests/generated_code/AbstractGeneratedCodeTest.php
@@ -39,6 +39,14 @@ abstract c... | php: add tests for waitForReady | grpc_grpc | train |
1db82083cf48a53f6d78e48e7df1faac7f6743dc | diff --git a/lib/uservoice/user_voice.rb b/lib/uservoice/user_voice.rb
index <HASH>..<HASH> 100644
--- a/lib/uservoice/user_voice.rb
+++ b/lib/uservoice/user_voice.rb
@@ -14,6 +14,7 @@ module UserVoice
end
Unauthorized = Class.new(APIError)
NotFound = Class.new(APIError)
+ ApplicationError = Class.new(APIErro... | Differentiate ApplicationError. | uservoice_uservoice-ruby | train |
0184a3fd45d3a4e8f59cdd396ec1c567374e9e8b | diff --git a/lib/blocklib.php b/lib/blocklib.php
index <HASH>..<HASH> 100644
--- a/lib/blocklib.php
+++ b/lib/blocklib.php
@@ -1785,5 +1785,5 @@ function blocks_add_default_system_blocks() {
$subpagepattern = null;
}
- $page->blocks->add_blocks(array(BLOCK_POS_RIGHT => array('myprofile', 'private_fil... | MDL-<I> Reimplementing the My Moodle default blocks for upgraded sites, to match new installs | moodle_moodle | train |
bd2a25d0d28f134f4803f3fd7acdf0d1096a5165 | diff --git a/pysat/tests/test_files.py b/pysat/tests/test_files.py
index <HASH>..<HASH> 100644
--- a/pysat/tests/test_files.py
+++ b/pysat/tests/test_files.py
@@ -1024,7 +1024,7 @@ class TestFilesRaceCondition():
# create a test instrument, make sure it is getting files from
# filesystem
- re... | STY: update new syntax from merge | rstoneback_pysat | train |
5bc64b19bb428c5e8ac442e1a1ed7b781ca38d48 | diff --git a/packages/selenium-ide/src/neo/stores/view/UiState.js b/packages/selenium-ide/src/neo/stores/view/UiState.js
index <HASH>..<HASH> 100644
--- a/packages/selenium-ide/src/neo/stores/view/UiState.js
+++ b/packages/selenium-ide/src/neo/stores/view/UiState.js
@@ -173,8 +173,12 @@ class UiState {
}
@actio... | console height bug fix when changing window size with console minimized | SeleniumHQ_selenium-ide | train |
3f9a4f74427cdb3e8d51d3a82963cf3beaf72055 | diff --git a/app/app.js b/app/app.js
index <HASH>..<HASH> 100644
--- a/app/app.js
+++ b/app/app.js
@@ -25,7 +25,6 @@ const {
dialog,
shell,
ipcMain,
- ipcRenderer,
autoUpdater,
Menu,
BrowserWindow,
@@ -106,8 +105,8 @@ function showUpdateModal () {
],
defaultId: 0,
cancelId: 1,
- tit... | Added reference to Insomnia in update notification | getinsomnia_insomnia | train |
4b3b023854485d0d8edc28b36c3faed69efbaf4f | diff --git a/lib/yelp.rb b/lib/yelp.rb
index <HASH>..<HASH> 100644
--- a/lib/yelp.rb
+++ b/lib/yelp.rb
@@ -2,6 +2,4 @@ require "yelp/version"
require 'yelp/client'
module Yelp
- class << self
- end
end
diff --git a/lib/yelp/client.rb b/lib/yelp/client.rb
index <HASH>..<HASH> 100644
--- a/lib/yelp/client.rb
+++ b... | Clean up a little bit and add comments | Yelp_yelp-ruby | train |
819810f946a964e20504270b28a3532ee893f1f5 | diff --git a/state/txns.go b/state/txns.go
index <HASH>..<HASH> 100644
--- a/state/txns.go
+++ b/state/txns.go
@@ -52,8 +52,8 @@ func (st *State) ResumeTransactions() error {
func (st *State) MaybePruneTransactions() error {
runner, closer := st.database.TransactionRunner()
defer closer()
- // Prune txns only when... | state: Prune transactions after <I>% growth since last prune
Previously we would only prune after 2x growth which wasn't aggressive
enough and made the prune process impact system resources much more
when it did run. Now that the pruning process is much more efficient
running it more often is ok. | juju_juju | train |
fd6f9ac45fb44e2af7b91931d4afdb34203f161d | diff --git a/fastlane/spec/plugins_specs/plugin_generator_spec.rb b/fastlane/spec/plugins_specs/plugin_generator_spec.rb
index <HASH>..<HASH> 100644
--- a/fastlane/spec/plugins_specs/plugin_generator_spec.rb
+++ b/fastlane/spec/plugins_specs/plugin_generator_spec.rb
@@ -273,36 +273,37 @@ describe Fastlane::PluginGenera... | Remove Bundler.setup in favor of shelling out to the Bundler in a new plugin directory in unit tests. (#<I>) | fastlane_fastlane | train |
e784fbcdad673ae24a6454e4e041cc8b2bbb63b2 | diff --git a/fullstop-jobs/src/main/java/org/zalando/stups/fullstop/jobs/iam/NoPasswordViolationWriter.java b/fullstop-jobs/src/main/java/org/zalando/stups/fullstop/jobs/iam/NoPasswordViolationWriter.java
index <HASH>..<HASH> 100644
--- a/fullstop-jobs/src/main/java/org/zalando/stups/fullstop/jobs/iam/NoPasswordViolati... | #<I> adapt csv report parser and entry | zalando-stups_fullstop | train |
a1740ab124f17ef0fc44c616d431c1a173584902 | diff --git a/lib/appsignal/transaction/params_sanitizer.rb b/lib/appsignal/transaction/params_sanitizer.rb
index <HASH>..<HASH> 100644
--- a/lib/appsignal/transaction/params_sanitizer.rb
+++ b/lib/appsignal/transaction/params_sanitizer.rb
@@ -53,6 +53,9 @@ module Appsignal
def inspected(value)
val... | Rescue failing inspects in param sanitizer | appsignal_appsignal-ruby | train |
6aa64d9e4824f782b379bf8177a5d521dc814930 | diff --git a/calendar-bundle/contao/classes/Calendar.php b/calendar-bundle/contao/classes/Calendar.php
index <HASH>..<HASH> 100644
--- a/calendar-bundle/contao/classes/Calendar.php
+++ b/calendar-bundle/contao/classes/Calendar.php
@@ -234,9 +234,7 @@ class Calendar extends \Frontend
}
// Create the file
- $obj... | [Calendar] Add the `File::putContent()` method (see #<I>) | contao_contao | train |
416eec7c4ba99178fbb1b3414cacb3b9e41ef0b1 | diff --git a/app/models/task_manager/plan.rb b/app/models/task_manager/plan.rb
index <HASH>..<HASH> 100644
--- a/app/models/task_manager/plan.rb
+++ b/app/models/task_manager/plan.rb
@@ -15,10 +15,13 @@ module TaskManager
default_value_for :ahead_of_time, 0
attr_accessible :autocompletable, :data, :last_tas... | Added `begin_to_remind` and `enabled_at` to Plan | menglifang_task-manager | train |
f39a335cbe78595427fa6b50a353543719d8faf7 | diff --git a/py3status/modules/sysdata.py b/py3status/modules/sysdata.py
index <HASH>..<HASH> 100644
--- a/py3status/modules/sysdata.py
+++ b/py3status/modules/sysdata.py
@@ -5,8 +5,8 @@ Display system RAM, SWAP and CPU utilization.
Configuration parameters:
cache_timeout: how often we refresh this module in seco... | Attempt to use `update_placeholder_format` | ultrabug_py3status | train |
2e0846743086537323a74d7acb08476cb27bdc77 | diff --git a/packages/react-admin/src/mui/input/AutocompleteInput.js b/packages/react-admin/src/mui/input/AutocompleteInput.js
index <HASH>..<HASH> 100644
--- a/packages/react-admin/src/mui/input/AutocompleteInput.js
+++ b/packages/react-admin/src/mui/input/AutocompleteInput.js
@@ -92,6 +92,7 @@ const styles = theme =>... | Make inputValue a state variable so no rerender will happen after the value has changed. | marmelab_react-admin | train |
b3676994b6c9ce715c7ea2a6e2124020af7af805 | diff --git a/squad/api/rest.py b/squad/api/rest.py
index <HASH>..<HASH> 100644
--- a/squad/api/rest.py
+++ b/squad/api/rest.py
@@ -75,7 +75,12 @@ class ProjectFilter(filters.FilterSet):
def filter_full_name(self, queryset, field_name, value):
if value:
- queryset = queryset.annotate(fullname=... | api: rest: fix project filter
An update in django filters made ProjectFilter
switch queryset's model from Project to nested, crashing
requests filtering builds by project's full_name.
This patch makes sure to use correct field name
based on queryset model. | Linaro_squad | train |
46bee075e88908275ad382fd8bef2c7e857d3a0e | diff --git a/src/sync.js b/src/sync.js
index <HASH>..<HASH> 100644
--- a/src/sync.js
+++ b/src/sync.js
@@ -330,73 +330,78 @@
return promise;
},
- autoMerge: function(obj) {
- var newValue, oldValue, i;
-
- if (!obj.remote) {
- return obj;
- }
- if (!obj.local) {
- if (... | Use more expressive naming for autoMerge method | remotestorage_remotestorage.js | train |
3fd72f979b7c1f5cc8e79961272f74b064c6ab58 | diff --git a/python/src/nnabla/core/variable_batch_size.py b/python/src/nnabla/core/variable_batch_size.py
index <HASH>..<HASH> 100644
--- a/python/src/nnabla/core/variable_batch_size.py
+++ b/python/src/nnabla/core/variable_batch_size.py
@@ -82,7 +82,8 @@ def variable_batch_size(network):
pf.args['shape']... | fix error when save network with F.mean() | sony_nnabla | train |
80004497d92318e066fb0c4392c9d2ba6b4755b2 | diff --git a/src/internal/ppsutil/util.go b/src/internal/ppsutil/util.go
index <HASH>..<HASH> 100644
--- a/src/internal/ppsutil/util.go
+++ b/src/internal/ppsutil/util.go
@@ -310,7 +310,7 @@ func UpdateJobState(pipelines col.PostgresReadWriteCollection, jobs col.ReadWrit
// Update job info
var err error
- if stat... | Fix job start time being reset during update (#<I>) | pachyderm_pachyderm | train |
ec620747c71501e65f6f4073d1ade00d557427fa | diff --git a/html/pfappserver/root/static.alt/src/views/Configuration/_api/index.js b/html/pfappserver/root/static.alt/src/views/Configuration/_api/index.js
index <HASH>..<HASH> 100644
--- a/html/pfappserver/root/static.alt/src/views/Configuration/_api/index.js
+++ b/html/pfappserver/root/static.alt/src/views/Configura... | (web admin) Fix Let's Encrypt support | inverse-inc_packetfence | train |
10a521d27029f00981051920c1ca8fc91d061876 | diff --git a/Operations/Create.php b/Operations/Create.php
index <HASH>..<HASH> 100644
--- a/Operations/Create.php
+++ b/Operations/Create.php
@@ -22,26 +22,28 @@ use \Phramework\Exceptions\RequestExceptionException;
use \Phramework\Exceptions\NotFoundException;
/**
- * create model
+ * Create operation for databas... | Improve Create operation
Add RETURN_RECORDS | phramework_database | train |
476903eaaebac0351a37c65f62013f0b29a230dc | diff --git a/lib/mini_fb.rb b/lib/mini_fb.rb
index <HASH>..<HASH> 100644
--- a/lib/mini_fb.rb
+++ b/lib/mini_fb.rb
@@ -540,13 +540,13 @@ module MiniFB
resp = RestClient.get url
end
- puts 'resp=' + resp.body.to_s if @@logging
+ puts 'resp=' + resp.to_s if @@logging
... | Changed resp.body to resp.to_s, apparently it was a mistake in a previous version of rest_client: <URL> | appoxy_mini_fb | train |
b4bca5496df592686ed039b3c595c136f9408c07 | diff --git a/hystrix-core/src/main/java/com/netflix/hystrix/strategy/concurrency/HystrixRequestContext.java b/hystrix-core/src/main/java/com/netflix/hystrix/strategy/concurrency/HystrixRequestContext.java
index <HASH>..<HASH> 100644
--- a/hystrix-core/src/main/java/com/netflix/hystrix/strategy/concurrency/HystrixReques... | href target so it opens from javadoc frame | Netflix_Hystrix | train |
25579f794844ad22613c27f425d77d63b45d3df1 | diff --git a/niworkflows/viz/utils.py b/niworkflows/viz/utils.py
index <HASH>..<HASH> 100644
--- a/niworkflows/viz/utils.py
+++ b/niworkflows/viz/utils.py
@@ -291,6 +291,8 @@ def compose_view(bg_svgs, fg_svgs, ref=0, out_file='report.svg'):
sizes.append((width, height))
nsvgs = len(bg_svgs)
+ sizes =... | convert sizes list to numpy array in compose view, new scale calculations depend on it. | poldracklab_niworkflows | train |
b166cab9a252f4093af1f33cb178a86f6047d08a | diff --git a/Parsedown.php b/Parsedown.php
index <HASH>..<HASH> 100644
--- a/Parsedown.php
+++ b/Parsedown.php
@@ -115,7 +115,7 @@ class Parsedown
# Blocks
#
- private function lines(array $lines)
+ protected function lines(array $lines)
{
$CurrentBlock = null; | Make `lines` protected to allow for extendability | erusev_parsedown | train |
f22696bff8715d388b4b51a6e349db98feb4eaca | diff --git a/src/components/VSelect/VSelect.js b/src/components/VSelect/VSelect.js
index <HASH>..<HASH> 100644
--- a/src/components/VSelect/VSelect.js
+++ b/src/components/VSelect/VSelect.js
@@ -59,6 +59,7 @@ export default {
return {
cachedItems: [],
content: {},
+ defaultColor: 'primary',
... | refactor: order of props | vuetifyjs_vuetify | train |
912c5c0dc18abf8491e9d70b6057a60176d31143 | diff --git a/remix-simulator/src/methods/blocks.js b/remix-simulator/src/methods/blocks.js
index <HASH>..<HASH> 100644
--- a/remix-simulator/src/methods/blocks.js
+++ b/remix-simulator/src/methods/blocks.js
@@ -1,6 +1,7 @@
var Web3 = require("web3")
-var Blocks = function (options) {
+var Blocks = function (_options... | fix calls to coinbase and blockNumber method | ethereum_remix | train |
675f967d4a56874792f19bab4601d7d14da6983d | diff --git a/util/btcctl/btcctl.go b/util/btcctl/btcctl.go
index <HASH>..<HASH> 100644
--- a/util/btcctl/btcctl.go
+++ b/util/btcctl/btcctl.go
@@ -7,6 +7,7 @@ import (
"fmt"
"github.com/conformal/btcjson"
"github.com/conformal/btcutil"
+ "github.com/conformal/btcws"
"github.com/conformal/go-flags"
"github.com... | Add createencryptedwallet support to btcctl.
This is a btcwallet extension and will not work when talking to btcd
or bitcoind. | btcsuite_btcd | train |
37538b374cab7494098c8837fa84dca8a4f3e700 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -20,4 +20,6 @@
*/
module.exports = require('./exec.js');
module.exports.spawn = require('./spawn.js');
+module.exports.util = require('./util.js');
module.exports.progress = require('./util.js').progress;
... | Expose utilities and tilda function from index | timthesinner_exec-promised | train |
617d2891c843f2a94db33bc0a049fa9c4e8c9538 | diff --git a/lib/danger_plugin.rb b/lib/danger_plugin.rb
index <HASH>..<HASH> 100755
--- a/lib/danger_plugin.rb
+++ b/lib/danger_plugin.rb
@@ -47,12 +47,10 @@ module Danger
raise 'swiftlint is not installed' unless swiftlint.installed?
config = if config_file
- File.expand_path(config_file)
- ... | New run of autocorrect after rebase | ashfurrow_danger-ruby-swiftlint | train |
167666dc8ec69ae4f8522c7fe97ef34121333fff | diff --git a/elasticsearch-client/elasticsearch-client-v7/src/main/java/fr/pilato/elasticsearch/crawler/fs/client/v7/WorkplaceSearchClientV7.java b/elasticsearch-client/elasticsearch-client-v7/src/main/java/fr/pilato/elasticsearch/crawler/fs/client/v7/WorkplaceSearchClientV7.java
index <HASH>..<HASH> 100644
--- a/elast... | Use filename as title when no title is available
For Workplace Search, we use the name of the file if no title has been found in the document metadata. | dadoonet_fscrawler | train |
b04adc4a5b6c8535aa0d8ce1abe198f001ca48ac | diff --git a/spec/oauth2/strategy/assertion_spec.rb b/spec/oauth2/strategy/assertion_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/oauth2/strategy/assertion_spec.rb
+++ b/spec/oauth2/strategy/assertion_spec.rb
@@ -1,3 +1,5 @@
+require 'jwt'
+
RSpec.describe OAuth2::Strategy::Assertion do
subject { client.assertion... | Include JWT for spec assertions | oauth-xx_oauth2 | train |
3e9b10f562009fcf2bf6e9b1318f00154f2fb849 | diff --git a/rig/machine_control/scp_connection.py b/rig/machine_control/scp_connection.py
index <HASH>..<HASH> 100644
--- a/rig/machine_control/scp_connection.py
+++ b/rig/machine_control/scp_connection.py
@@ -1,11 +1,8 @@
"""A blocking implementation of the SCP protocol.
"""
-import logging
import socket
from . i... | @mossblaser suggestions.
Removes logging from tests. | project-rig_rig | train |
c8034603eae3d532c464808eef980c25f2f37b92 | diff --git a/sdk/python/sawtooth_sdk/client/stream.py b/sdk/python/sawtooth_sdk/client/stream.py
index <HASH>..<HASH> 100644
--- a/sdk/python/sawtooth_sdk/client/stream.py
+++ b/sdk/python/sawtooth_sdk/client/stream.py
@@ -73,13 +73,16 @@ class _SendReceiveThread(Thread):
message_list = validator_pb2.Messa... | Ensure same event loop and avoid exceptions | hyperledger_sawtooth-core | train |
8704bf3f3e3b30a4f00d9efe41ffd70801f78dec | diff --git a/inginious/frontend/pages/course_admin/task_list.py b/inginious/frontend/pages/course_admin/task_list.py
index <HASH>..<HASH> 100644
--- a/inginious/frontend/pages/course_admin/task_list.py
+++ b/inginious/frontend/pages/course_admin/task_list.py
@@ -9,7 +9,7 @@ from collections import OrderedDict
import b... | Move task list structure check to task dispenser | UCL-INGI_INGInious | train |
0abeeed4db10ba6789aa6ba83c673cf4b848eec5 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,3 +15,4 @@ spec/reports
test/tmp
test/version_tmp
tmp
+*.swp
diff --git a/lib/rack/route.rb b/lib/rack/route.rb
index <HASH>..<HASH> 100644
--- a/lib/rack/route.rb
+++ b/lib/rack/route.rb
@@ -37,10 +37,13 @@ mod... | Added support for an optional format param based on the extension of the path | pjb3_rack-router | train |
bfcbc5e741a4d7c8fc2d478262c8dcbe3d07143d | diff --git a/lib/devices/air-purifier.js b/lib/devices/air-purifier.js
index <HASH>..<HASH> 100644
--- a/lib/devices/air-purifier.js
+++ b/lib/devices/air-purifier.js
@@ -2,6 +2,13 @@
const Device = require('../device');
+/**
+ * Abstraction over a Mi Air Purifier.
+ *
+ * Air Purifiers have a mode that indicates ... | Updating the air purifier device to map temp_dec differently | aholstenson_miio | train |
05197bd861728d37c26e8372589f15c6688043a1 | diff --git a/app/models/tag.rb b/app/models/tag.rb
index <HASH>..<HASH> 100644
--- a/app/models/tag.rb
+++ b/app/models/tag.rb
@@ -18,6 +18,7 @@ class Tag
index :tag_type
validates_presence_of :tag_id, :title, :tag_type
+ validates_uniqueness_of :tag_id, scope: :tag_type
validates_with TagIdValidator
val... | Validate tag ids are unique within their tag type
We already have a uniqueness index on this, but we should catch this
at validation time too. | alphagov_govuk_content_models | train |
84cb89d12bcaf6ddef2047b17a893d3fca0a6239 | diff --git a/lib/exceptions/backends/rollbar.rb b/lib/exceptions/backends/rollbar.rb
index <HASH>..<HASH> 100644
--- a/lib/exceptions/backends/rollbar.rb
+++ b/lib/exceptions/backends/rollbar.rb
@@ -51,12 +51,9 @@ module Exceptions
if error_class_or_exception_or_string.is_a?(Exception)
error_class_o... | don't gen anonymous classes when reporting manual errors
we were seeing an uptick in OOMs in r<I>-api around the same time we
released <URL> | remind101_exceptions | train |
f42c4357fdc4f00d548361f212b687a705ad6774 | diff --git a/src/modules/abstract-row-col-model/abstract-row-col-model.spec.js b/src/modules/abstract-row-col-model/abstract-row-col-model.spec.js
index <HASH>..<HASH> 100644
--- a/src/modules/abstract-row-col-model/abstract-row-col-model.spec.js
+++ b/src/modules/abstract-row-col-model/abstract-row-col-model.spec.js
@... | have selection model for rows and cols | gridgrid_grid | train |
03c050ddde273de0b2d9cd32d78486b1613a338b | diff --git a/test/signal-exit-test.js b/test/signal-exit-test.js
index <HASH>..<HASH> 100644
--- a/test/signal-exit-test.js
+++ b/test/signal-exit-test.js
@@ -20,7 +20,7 @@ describe('signal-exit', function () {
it('receives an exit event when a process is terminated with sigint', function (done) {
exec(proces... | interesting how error object differs on OSX vs. linux | tapjs_signal-exit | train |
110d040d888b26aec133b327d8d16d674e2610d5 | diff --git a/conf/global_settings.py b/conf/global_settings.py
index <HASH>..<HASH> 100644
--- a/conf/global_settings.py
+++ b/conf/global_settings.py
@@ -220,7 +220,7 @@ ACCOUNTS_ORG_NAME = 'Example'
#
# default: ALLOW_REGISTRATIONS = False
#
-# ALLOW_REGISTRATIONS = False
+# ALLOW_REGISTRATIONS = True
# Do we ... | Change commented out value of ALLOW_REGISTRATIONS.
Makes no sense to have it the default value.
Change-Id: I7c0b<I>ebd7c<I>fce<I>a3f1f<I>ceb<I>a9b5b6 | Karaage-Cluster_karaage | train |
103136d05cea7977e5c2e653e174e91e137892da | diff --git a/luigi/scheduler.py b/luigi/scheduler.py
index <HASH>..<HASH> 100644
--- a/luigi/scheduler.py
+++ b/luigi/scheduler.py
@@ -474,6 +474,12 @@ class SimpleTaskState(object):
def get_active_tasks_by_status(self, *statuses):
return itertools.chain.from_iterable(six.itervalues(self._status_tasks[sta... | Speed up task_list when beyond limit (#<I>)
When the number of tasks get into the millions, even refreshing the
visualizer can take a minute or more, causing havoc in the pipeline.
Since all we really want in these situations is the counts, we can skip
the more expensive bits of computation and just return the size... | spotify_luigi | train |
12a18a0321c90e8ffe33be22a8072d30450a70d7 | diff --git a/resources/views/admin/shop/edit.php b/resources/views/admin/shop/edit.php
index <HASH>..<HASH> 100644
--- a/resources/views/admin/shop/edit.php
+++ b/resources/views/admin/shop/edit.php
@@ -225,7 +225,7 @@ $view->layout();
</label>
<div class="col-lg-4">
- <p class="js-li... | refactoring: form-control-static => form-control-plaintext | miaoxing_shop | train |
9fca7d690fbb1a3018762eb736eced966b121f26 | diff --git a/src/Storage/EntityManager.php b/src/Storage/EntityManager.php
index <HASH>..<HASH> 100644
--- a/src/Storage/EntityManager.php
+++ b/src/Storage/EntityManager.php
@@ -211,6 +211,16 @@ class EntityManager
}
/**
+ * Gets the DBAL Driver Connection.
+ *
+ * @return Connection
+ */
+... | Getter for the DBAL driver connection | bolt_bolt | train |
fa5cfa3fa5377f2a8e0af2541dfc5a3a8f9e4b4f | diff --git a/src/main/java/me/normanmaurer/niosmtp/transport/DeliveryMode.java b/src/main/java/me/normanmaurer/niosmtp/transport/DeliveryMode.java
index <HASH>..<HASH> 100644
--- a/src/main/java/me/normanmaurer/niosmtp/transport/DeliveryMode.java
+++ b/src/main/java/me/normanmaurer/niosmtp/transport/DeliveryMode.java
@... | Make sure we only handle one response per callback in all cases | normanmaurer_niosmtp | train |
0247ddff18806ad8ea653424e8bf7123c4fbbea2 | diff --git a/database/ldb/block.go b/database/ldb/block.go
index <HASH>..<HASH> 100644
--- a/database/ldb/block.go
+++ b/database/ldb/block.go
@@ -202,14 +202,9 @@ func (db *LevelDb) ExistsSha(sha *btcwire.ShaHash) (bool, error) {
// returns true if it is present in the database.
// CALLED WITH LOCK HELD
func (db *L... | Use the goleveldb Has() API.
This change converts the leveldb database's ExistsSha() and
ExistsTxSha to use the goleveldb API. Has() only returns if
the key exists and does not need to read the entire value into
memory resulting in less disk i/o and much less GC. | btcsuite_btcd | train |
1fdd09896ff14c4c8f6cefa68f55dbd4e77df0d8 | diff --git a/lib/multirepo/git/git.rb b/lib/multirepo/git/git.rb
index <HASH>..<HASH> 100644
--- a/lib/multirepo/git/git.rb
+++ b/lib/multirepo/git/git.rb
@@ -15,7 +15,12 @@ module MultiRepo
def self.run_in_working_dir(path, git_command, show_output)
full_command = "git -C \"#{path}\" #{git_command}";... | Added a comment describing the pre-commit hook bug with a link to the git mailing list reply that provided the correct fix. | fortinmike_git-multirepo | train |
6c9bd6be743b836d60fcd6df0b19da42f91cb4d4 | diff --git a/src/ploneintranet/workspace/tests/base.py b/src/ploneintranet/workspace/tests/base.py
index <HASH>..<HASH> 100644
--- a/src/ploneintranet/workspace/tests/base.py
+++ b/src/ploneintranet/workspace/tests/base.py
@@ -34,7 +34,7 @@ class BaseTestCase(unittest.TestCase):
def logout(self):
z2.logou... | we do not have to pass in a group to add a user | ploneintranet_ploneintranet.workspace | train |
1eef3bd900a488de39ecdb1dc36d9f66c0c3a017 | diff --git a/src/org/opencms/db/CmsSecurityManager.java b/src/org/opencms/db/CmsSecurityManager.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/db/CmsSecurityManager.java
+++ b/src/org/opencms/db/CmsSecurityManager.java
@@ -1096,7 +1096,11 @@ public final class CmsSecurityManager {
byte[] content,
... | Fixed DB corruption problem with creating folders having the same name
as deleted files. | alkacon_opencms-core | train |
c51f9b579664d17e285d08b1930bd8f49987a99b | diff --git a/src/web/org/codehaus/groovy/grails/web/metaclass/TagLibMetaClass.java b/src/web/org/codehaus/groovy/grails/web/metaclass/TagLibMetaClass.java
index <HASH>..<HASH> 100644
--- a/src/web/org/codehaus/groovy/grails/web/metaclass/TagLibMetaClass.java
+++ b/src/web/org/codehaus/groovy/grails/web/metaclass/TagLib... | fixed problem where you have to pass an empty closure when invoking another tag that has no body
git-svn-id: <URL> | grails_grails-core | train |
69f4fec007989f2ce47a59abf84a98bd02ed8fac | diff --git a/src/java/org/apache/cassandra/tools/NodeCmd.java b/src/java/org/apache/cassandra/tools/NodeCmd.java
index <HASH>..<HASH> 100644
--- a/src/java/org/apache/cassandra/tools/NodeCmd.java
+++ b/src/java/org/apache/cassandra/tools/NodeCmd.java
@@ -539,19 +539,19 @@ public class NodeCmd
switch (command... | Do not allow extra params to nodetool commands to prevent confusion.
Patch by Jon Hermes, reviewed by brandonwilliams for CASSANDRA-<I>
git-svn-id: <URL> | Stratio_stratio-cassandra | train |
0bea680c6de7953ded739f68d4a21dc86c6bfe5e | diff --git a/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php b/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php
+++ b/src/Illuminate/Database/Eloquent/Relations/HasManyThrough.php
@@ -138,7 +138,7 ... | Fix #<I> by considering local key in the relation (#<I>) | laravel_framework | train |
15692c71e082bae098ffad8da9d3a86f1ba2d165 | diff --git a/raven/contrib/django/client.py b/raven/contrib/django/client.py
index <HASH>..<HASH> 100644
--- a/raven/contrib/django/client.py
+++ b/raven/contrib/django/client.py
@@ -18,6 +18,7 @@ from django.template.loader import LoaderOrigin
from raven.base import Client
from raven.contrib.django.utils import ge... | Move request threadlocal extraction for Django into Client | getsentry_raven-python | train |
6c5baac11e9a58d8802c27101c53414f7ed218d8 | diff --git a/gromacs/utilities.py b/gromacs/utilities.py
index <HASH>..<HASH> 100644
--- a/gromacs/utilities.py
+++ b/gromacs/utilities.py
@@ -119,7 +119,13 @@ class AttributeDict(dict):
try:
super(AttributeDict,self).__setitem__(name, value)
except KeyError:
- super(AttributeD... | AttributeDict can be pickled | Becksteinlab_GromacsWrapper | train |
264bb030ef9291c620678b1cced015ebfdf12d7c | diff --git a/lib/drizzlepac/adriz_versions.py b/lib/drizzlepac/adriz_versions.py
index <HASH>..<HASH> 100644
--- a/lib/drizzlepac/adriz_versions.py
+++ b/lib/drizzlepac/adriz_versions.py
@@ -10,7 +10,7 @@ else:
__version__ = '1.1.5dev'
__full_version__ = __version__+sversion
-__vdate__ = '23-Oct-2012'
+__vdate__ = ... | Update astrodrizzle to correctly report the exposure time, exposure start, and exposure end for the single drizzle products, in addition to insuring the final drizzle values remain correct.
This revision also includes initial changes to safeguard the C code from getting improperly cast values from the configObj inpu... | spacetelescope_drizzlepac | train |
d2528dd03522c553e5d22d6f7ea73460483ecd75 | diff --git a/xwiki-commons-tools/xwiki-commons-tool-xar/xwiki-commons-tool-xar-plugin/src/main/java/org/xwiki/tool/xar/AbstractVerifyMojo.java b/xwiki-commons-tools/xwiki-commons-tool-xar/xwiki-commons-tool-xar-plugin/src/main/java/org/xwiki/tool/xar/AbstractVerifyMojo.java
index <HASH>..<HASH> 100644
--- a/xwiki-commo... | XCOMMONS-<I>: Ensure that technical pages are hidden
* Updated the javadoc to reflect the change in priority between content pages and technical pages for determining the language that a page should have | xwiki_xwiki-commons | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.