hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
248887d92b5c99f871b3a47e2418733ce49a1077 | diff --git a/library/CM/Model/Splittest/RequestClient.php b/library/CM/Model/Splittest/RequestClient.php
index <HASH>..<HASH> 100644
--- a/library/CM/Model/Splittest/RequestClient.php
+++ b/library/CM/Model/Splittest/RequestClient.php
@@ -26,4 +26,12 @@ class CM_Model_Splittest_RequestClient extends CM_Model_Splittest ... | Added a method to convert as a user from a requestClient splittest | cargomedia_cm | train |
fa6be600d7bc327dd80640dc474c7170825d6008 | diff --git a/greg/greg.py b/greg/greg.py
index <HASH>..<HASH> 100755
--- a/greg/greg.py
+++ b/greg/greg.py
@@ -331,8 +331,8 @@ feedparser.registerDateHandler(FeedburnerDateHandler)
def sanitize(data):
# sanestring = ''.join([x if x.isalnum() else "_" for x in string])
sanestring = ''.join(x if x.isalnum() els... | download_handler() and substitute_placeholders() seem to be doing what they
should | manolomartinez_greg | train |
4bf05830bc03f0425b847757372c9ca95f8abe5c | diff --git a/voodoo.py b/voodoo.py
index <HASH>..<HASH> 100644
--- a/voodoo.py
+++ b/voodoo.py
@@ -741,8 +741,8 @@ if __name__ == '__main__':
interp_head_addr = get_symbol_through_libpython(pid, 'interp_head')
if args.greenlets:
- generations_addr = get_symbol_through_libpython(pid, 'generations')
- ... | Use _PyGC_generation0 instead which is common for static and dynamic linked pythons | notsorandomname_pytb | train |
19037ed61ae6ed27200441f74276dff431bb9a83 | diff --git a/yubico/yubico.py b/yubico/yubico.py
index <HASH>..<HASH> 100644
--- a/yubico/yubico.py
+++ b/yubico/yubico.py
@@ -194,13 +194,12 @@ class Yubico():
if signature != generated_signature:
raise SignatureVerificationError(generated_signature,
... | Only check otp and nonce if they are present in the response. | Kami_python-yubico-client | train |
121f0d3fcf6224b46aa78ec8dc704fa224c2c9c3 | diff --git a/types/util.go b/types/util.go
index <HASH>..<HASH> 100644
--- a/types/util.go
+++ b/types/util.go
@@ -3,6 +3,7 @@ package types
import (
"bytes"
"encoding/json"
+ "sort"
)
//------------------------------------------------------------------------------
@@ -10,6 +11,14 @@ import (
// Validators is... | types: compile time assert to, and document sort.Interface
Fixes #<I>
Declare the purpose of the Less, Len, Swap methods
so that readers can see why they are defined.
Raised by an auditor in their report, as it looked like a security
concern but actually sort.Interface requires those methods implemented. | tendermint_abci | train |
31f83f52a36b38a9d44c6f4751d8f62a77a37283 | diff --git a/src/Codeception/Module/Db.php b/src/Codeception/Module/Db.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Module/Db.php
+++ b/src/Codeception/Module/Db.php
@@ -176,7 +176,7 @@ class Db extends CodeceptionModule implements DbInterface
);
}
$sql = file_get_con... | #<I> Fixed stack overflow too comples regex (#<I>)
Simple lazy/non-greedy match-all instead of complex non-capturing negative lookahead.
Still matches both single line and multiline comments. Just like it did before.
Matching single-line comments should not be required, but excluding them would make regex more com... | Codeception_Codeception | train |
c289179c99c9b66f798f19e8bc39152a6d4d0ed3 | diff --git a/cobraadaptor/adaptor.go b/cobraadaptor/adaptor.go
index <HASH>..<HASH> 100644
--- a/cobraadaptor/adaptor.go
+++ b/cobraadaptor/adaptor.go
@@ -38,6 +38,7 @@ func NewCobraAdaptor(clientFlags *cliflags.ClientFlags) CobraAdaptor {
container.NewDiffCommand(dockerCli),
container.NewExportCommand(dockerCli)... | Use spf<I>/cobra for docker port
This fix is part of the effort to convert commands to spf<I>/cobra #<I>.
Thif fix coverted command `docker port` to use spf<I>/cobra
Note: As part of this fix, a new function `RequiresMinMaxArgs(min int, max int)`
has been added in cli/required.go. This function restrict the args
to ... | docker_cli | train |
544940a27a88b4dceb5ed3110fd79f7bee1dd9cb | diff --git a/packages/utiljs-urls/lib/Urls.js b/packages/utiljs-urls/lib/Urls.js
index <HASH>..<HASH> 100644
--- a/packages/utiljs-urls/lib/Urls.js
+++ b/packages/utiljs-urls/lib/Urls.js
@@ -4,33 +4,10 @@ module.exports = Urls;
function Urls(options) {
this.decodeURI = decodeURI;
- this.decodeURIComponent = deco... | Reorganize methods in Urls | creemama_utiljs | train |
e0a1b0b9764cf3cd28fb6962e3a29e9f3e2bd04c | diff --git a/src/functions.php b/src/functions.php
index <HASH>..<HASH> 100644
--- a/src/functions.php
+++ b/src/functions.php
@@ -331,7 +331,7 @@ function run(string $command, ?array $options = [], ?int $timeout = null, ?int $
}
$options = array_merge($namedArguments, $options);
$run = function ($comman... | Use current host in runLocally | deployphp_deployer | train |
179e065221590b27093ab6b42a6ef3cf58ea5c52 | diff --git a/lib/hostess.rb b/lib/hostess.rb
index <HASH>..<HASH> 100644
--- a/lib/hostess.rb
+++ b/lib/hostess.rb
@@ -2,7 +2,7 @@ require 'sinatra/base'
class Hostess < Sinatra::Base
def serve
- send_file(File.expand_path(File.join(Geminabox.data, *request.path_info)))
+ send_file(File.expand_path(File.joi... | Fix 'Unknown media type: ".rz"' Errors.
Sinatra <I> bails violently when mime type not given explicitly. | geminabox_geminabox | train |
4d9e9295155ea421ffe5a9df4715a575c480ce6b | diff --git a/spec/unit/pops/types/type_calculator_spec.rb b/spec/unit/pops/types/type_calculator_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/pops/types/type_calculator_spec.rb
+++ b/spec/unit/pops/types/type_calculator_spec.rb
@@ -1725,6 +1725,11 @@ describe 'The type calculator' do
expect(calculator.str... | (PUP-<I>) Improve testing of empty array
This adds inference tests for infer, and infer_set of an empty array.
A test is also added that an empty array in string form is
Array[Unit, 0, 0] | puppetlabs_puppet | train |
d3adf5ddc1b76c13195a9611404f62a3bd0a7bff | diff --git a/alot/account.py b/alot/account.py
index <HASH>..<HASH> 100644
--- a/alot/account.py
+++ b/alot/account.py
@@ -167,7 +167,7 @@ class SendmailAccount(Account):
def errb(failure):
termobj = failure.value
errmsg = '%s failed with code %s:\n%s' % \
- (self.cmd, ... | dont use trace as notification string
closes #<I> | pazz_alot | train |
e328c0b4afb2000c9993b64162effa86de368454 | diff --git a/tests/MinifyClosureCompilerTest.php b/tests/MinifyClosureCompilerTest.php
index <HASH>..<HASH> 100644
--- a/tests/MinifyClosureCompilerTest.php
+++ b/tests/MinifyClosureCompilerTest.php
@@ -39,7 +39,7 @@ class MinifyClosureCompilerTest extends TestCase
*/
public function test2()
{
- ... | YUI test: ensure jar is in test dir as closure compiler test | mrclay_minify | train |
8e23e2922d4e6f2fc561ce83f99d3d251040241e | diff --git a/closure/goog/ui/scrollfloater.js b/closure/goog/ui/scrollfloater.js
index <HASH>..<HASH> 100644
--- a/closure/goog/ui/scrollfloater.js
+++ b/closure/goog/ui/scrollfloater.js
@@ -298,8 +298,14 @@ goog.ui.ScrollFloater.prototype.startFloating_ = function() {
'cssFloat': 'none'
});
- elem.parentNod... | Added check for same parents between placeholder and elem to avoid moving
elem in DOM if possible. Helps to prevent issues with Flash reloading when
elem is removed and inserted.
R=nicksantos,bca,arv,cberry
DELTA=<I> (<I> added, 0 deleted, 3 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
g... | google_closure-library | train |
3d991f5faaa65d1c4af0bf076646d36e66daa130 | diff --git a/src/transform/object.js b/src/transform/object.js
index <HASH>..<HASH> 100644
--- a/src/transform/object.js
+++ b/src/transform/object.js
@@ -34,10 +34,10 @@ function createWeakSet() {
}
var cache = [];
- this.add = function (value) { cache.push(value) };
- this.has = function (value) { return ca... | fix(transform): Wrong scope in WeekSet polyfill | megahertz_electron-log | train |
adbddf6a4f49bdcce09aae2c673486cf6b2b5f66 | diff --git a/grimoire_elk/arthur.py b/grimoire_elk/arthur.py
index <HASH>..<HASH> 100755
--- a/grimoire_elk/arthur.py
+++ b/grimoire_elk/arthur.py
@@ -323,7 +323,6 @@ def refresh_identities(enrich_backend, filter_author=None):
def update_items(new_filter_author):
- print("Updating identities in items", ... | [enriched] Fix stale print command.
A print command was included for tracing. This is just to remove it. | chaoss_grimoirelab-elk | train |
edf487058430bb15056da8cce4d831ea0c512365 | diff --git a/biggus/tests/test_adapter.py b/biggus/tests/test_adapter.py
index <HASH>..<HASH> 100644
--- a/biggus/tests/test_adapter.py
+++ b/biggus/tests/test_adapter.py
@@ -177,7 +177,7 @@ class _TestAdapter(object):
return self.wrap(ndarray, keys)
def arange_adapter(self, shape, keys):
- size ... | py3k: Remove call to removed reduce function. | SciTools_biggus | train |
79b1e9ae5eb82d0f96c04d2bbf4c248f3836272c | diff --git a/server/server.go b/server/server.go
index <HASH>..<HASH> 100644
--- a/server/server.go
+++ b/server/server.go
@@ -300,32 +300,37 @@ func reportUsageStats(bi BuildInfo, logger chronograf.Logger) {
rand.Seed(time.Now().UTC().UnixNano())
serverID := strconv.FormatUint(uint64(rand.Int63()), 10)
reporter ... | Fix reporting stats to update uptime | influxdata_influxdb | train |
a92297678d12588e4fda136b38761a1eb17b29be | diff --git a/lib/upnp/control_point.rb b/lib/upnp/control_point.rb
index <HASH>..<HASH> 100644
--- a/lib/upnp/control_point.rb
+++ b/lib/upnp/control_point.rb
@@ -27,10 +27,12 @@ module UPnP
end
# @param [String] search_type
+ # @param [Fixnum] max_wait_time The MX value to use for searching.
+ # @par... | Added params to #find_devices to pass on to SSDP.search. | turboladen_playful | train |
3af93dddfc8fd21d9803a4182dfa8d1869882621 | diff --git a/pytry/many.py b/pytry/many.py
index <HASH>..<HASH> 100644
--- a/pytry/many.py
+++ b/pytry/many.py
@@ -10,7 +10,11 @@ def execute(cmd, checked=None):
else:
c = cmd.pop(0)
if c.startswith('[') and c.endswith(']'):
- opts = c[1:-1].split('~')
+ if ':' in c:
+ ... | Added a:b notation to many | tcstewar_pytry | train |
dfdce437e3db1c0b1ee13cc9578f7ffd38698ae0 | diff --git a/src/Bootstrap.php b/src/Bootstrap.php
index <HASH>..<HASH> 100644
--- a/src/Bootstrap.php
+++ b/src/Bootstrap.php
@@ -234,7 +234,13 @@ class Bootstrap
$options['bootstrap'] = '';
}
- $options['configuration'] = isset($options['configuration']) ? $options['configuration'] : ''... | Added support for local configuration file ".test-flight.json" | cundd_test-flight | train |
cef44533d91ab83bdd39c386e726cc47426c62b4 | diff --git a/ghost/admin/app/services/members-utils.js b/ghost/admin/app/services/members-utils.js
index <HASH>..<HASH> 100644
--- a/ghost/admin/app/services/members-utils.js
+++ b/ghost/admin/app/services/members-utils.js
@@ -3,6 +3,7 @@ import {inject as service} from '@ember/service';
export default class MembersUt... | Moved `portal_products` in preview behind feature flag
no refs
- only uses `portalProducts` value in portal preview url if the multiple products flag is turned on | TryGhost_Ghost | train |
f43719d99e40b221fdb7fe798d7e4f3c46fd9282 | diff --git a/bundles/target/src/main/java/org/jscsi/target/storage/JCloudsStorageModule.java b/bundles/target/src/main/java/org/jscsi/target/storage/JCloudsStorageModule.java
index <HASH>..<HASH> 100644
--- a/bundles/target/src/main/java/org/jscsi/target/storage/JCloudsStorageModule.java
+++ b/bundles/target/src/main/j... | [MOD] removed NullBlob | sebastiangraf_jSCSI | train |
b196ffd8e2655aba0d224f05316b7de0d57b121a | diff --git a/lib/imap/backup/configuration.rb b/lib/imap/backup/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/imap/backup/configuration.rb
+++ b/lib/imap/backup/configuration.rb
@@ -30,7 +30,7 @@ module Imap::Backup
def save
ensure_loaded!
- FileUtils.mkdir(path) if !File.directory?(path)
+ ... | Allow configuration save when the parent directory doesn't exist | joeyates_imap-backup | train |
21a1f1a017ed162e243e491d15a03df0dc7a218b | diff --git a/src/Arguments/ArgumentsReader.php b/src/Arguments/ArgumentsReader.php
index <HASH>..<HASH> 100644
--- a/src/Arguments/ArgumentsReader.php
+++ b/src/Arguments/ArgumentsReader.php
@@ -69,7 +69,7 @@ class ArgumentsReader implements ArgumentsReaderInterface
$propertyName = key($input['parts']);
... | Make sure index exists before accessing
While playing around with the demo app I got
```
PHP Notice: Undefined offset: 0 in /.../soap-client-demo/vendor/goetas-webservices/soap-client/src/Arguments/ArgumentsReader.php on line <I>
```
this should fix it :) | goetas-webservices_soap-client | train |
a95c211117bb9296c91068ff5a4a20b991bc392d | diff --git a/PyFunceble/__init__.py b/PyFunceble/__init__.py
index <HASH>..<HASH> 100644
--- a/PyFunceble/__init__.py
+++ b/PyFunceble/__init__.py
@@ -94,7 +94,7 @@ from PyFunceble.whois import Whois
# We set our project name.
NAME = "PyFunceble"
# We set out project version.
-VERSION = "1.70.0.dev -- 2_0_0_rc22 -- ... | Fix issue with the counter updater.
Indeed before this patch when `sqlite` was used as database type, the counters
were wrong because of the case of retested sujects which are still INACTIVE
or INVALID. | funilrys_PyFunceble | train |
04581475ac24621c2fd635e432fec835429912e0 | diff --git a/lib/limelight/dsl/prop_builder.rb b/lib/limelight/dsl/prop_builder.rb
index <HASH>..<HASH> 100644
--- a/lib/limelight/dsl/prop_builder.rb
+++ b/lib/limelight/dsl/prop_builder.rb
@@ -14,8 +14,10 @@ module Limelight
#
def self.build_scene(root, options={}, &block)
loader = options.delete(:build_lo... | instance variables can be installed into PropBuilder | slagyr_limelight | train |
2f06ce99968426172f9fd00dd20c6235f6327415 | diff --git a/.storybook/manager.js b/.storybook/manager.js
index <HASH>..<HASH> 100644
--- a/.storybook/manager.js
+++ b/.storybook/manager.js
@@ -1,6 +1,6 @@
import { create } from "@storybook/theming"
-import "@storybook/addon-actions/register";
import "@storybook/addon-knobs/register";
+import "@storybook/addon-ac... | chore(Storybook): open 'Knobs' panel by default (#<I>) | kiwicom_orbit-components | train |
d92a5726944689198ca229c581560531b154ad52 | diff --git a/select2.js b/select2.js
index <HASH>..<HASH> 100755
--- a/select2.js
+++ b/select2.js
@@ -434,21 +434,6 @@
});
/**
- * Closes any opened Select2s when the window is resized
- */
- $(window).resize(debounce(100, function() {
- $(".select2-container.select2-dropdown-open").selec... | close on scroll and resize. fixes #<I> | select2_select2 | train |
efd99113cb80b1fa57f6f69146838c882f181ade | diff --git a/examples/example_semaphore_release.rb b/examples/example_semaphore_release.rb
index <HASH>..<HASH> 100755
--- a/examples/example_semaphore_release.rb
+++ b/examples/example_semaphore_release.rb
@@ -8,13 +8,9 @@ require 'dev/consul'
@locked = false
@lock_time = 10
-@semaphore = DaemonRunner::Semaphore.s... | Allow an optional block to be passed
This change allows an optional block to be passed to `lock`. `lock` now
behaves very much the same as `File.open`, it now releases the lock at
the end of the block.
Fixes #<I> | rapid7_daemon_runner | train |
e8daad8961a8cc5d83d968e62dd4f2605b27bc9f | diff --git a/src/test/org/codehaus/groovy/classgen/DumpingClassLoader.java b/src/test/org/codehaus/groovy/classgen/DumpingClassLoader.java
index <HASH>..<HASH> 100644
--- a/src/test/org/codehaus/groovy/classgen/DumpingClassLoader.java
+++ b/src/test/org/codehaus/groovy/classgen/DumpingClassLoader.java
@@ -23,8 +23,9 @@... | adapt classes to asm <I> | groovy_groovy-core | train |
15afa6c1c47e13fcd48ce7cdc3603fbfa72f0339 | diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index <HASH>..<HASH> 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -195,7 +195,7 @@ function zip() {
var moveImages = gulp.src(sourcePath)
.pipe($.htmlSrc({ selector: 'img'}))
.pipe($.rename(function (path) {
- path.dirname = fileN... | Zip: The archived images follow the folder structure they initially have on src | zurb_foundation-emails-template | train |
6284b72e843939026999f0e631623c2875069d6c | diff --git a/src/components/button/Button.js b/src/components/button/Button.js
index <HASH>..<HASH> 100644
--- a/src/components/button/Button.js
+++ b/src/components/button/Button.js
@@ -5,7 +5,7 @@ import { tip } from "../tooltip/Tooltip";
import ObjectUtils from '../utils/ObjectUtils';
import { Ripple } from '../ri... | Remove SplitButton FindDOMNode, forward Button ref to DOM Element | primefaces_primereact | train |
d33e28f27409199ea1e1120a179aee01e3b2994a | diff --git a/rb/spec/integration/selenium/webdriver/driver_spec.rb b/rb/spec/integration/selenium/webdriver/driver_spec.rb
index <HASH>..<HASH> 100644
--- a/rb/spec/integration/selenium/webdriver/driver_spec.rb
+++ b/rb/spec/integration/selenium/webdriver/driver_spec.rb
@@ -163,7 +163,7 @@ module Selenium
it '... | Add specs for relative locator using other root locator than tag_name | SeleniumHQ_selenium | train |
dfe6f87a2745df978b100d0451da733562d63fed | diff --git a/lib/Form/Field/DatePicker.php b/lib/Form/Field/DatePicker.php
index <HASH>..<HASH> 100644
--- a/lib/Form/Field/DatePicker.php
+++ b/lib/Form/Field/DatePicker.php
@@ -24,6 +24,10 @@ class Form_Field_DatePicker extends Form_Field_Line {
public $options=array();
function init(){
parent::ini... | allow extenders to remove the button on datepicker | atk4_atk4 | train |
f9322b62fced15ffeecd2d113360b15d449e44be | diff --git a/src/edeposit/amqp/pdfgen/resources/review_style.json b/src/edeposit/amqp/pdfgen/resources/review_style.json
index <HASH>..<HASH> 100644
--- a/src/edeposit/amqp/pdfgen/resources/review_style.json
+++ b/src/edeposit/amqp/pdfgen/resources/review_style.json
@@ -30,9 +30,9 @@
}
},
"pageSetup"... | Added annotation to review. Fixed #<I>. | edeposit_edeposit.amqp.pdfgen | train |
a86b2a0d5e22b0daab93ebc3d9e085fe9d024f19 | diff --git a/tests/Database/DatabaseEloquentModelTest.php b/tests/Database/DatabaseEloquentModelTest.php
index <HASH>..<HASH> 100755
--- a/tests/Database/DatabaseEloquentModelTest.php
+++ b/tests/Database/DatabaseEloquentModelTest.php
@@ -91,6 +91,16 @@ class DatabaseEloquentModelTest extends TestCase
$this->a... | Added test for float comparison null checks (#<I>) | laravel_framework | train |
adf52b1b8d2db154dcb84c65c89018327d674ebf | diff --git a/emir/recipes/image/shared.py b/emir/recipes/image/shared.py
index <HASH>..<HASH> 100644
--- a/emir/recipes/image/shared.py
+++ b/emir/recipes/image/shared.py
@@ -163,29 +163,13 @@ class DirectImageCommon(object):
window = tuple((0, siz) for siz in baseshape)
- print clip_sli... | Stare and MicroDither working with window | guaix-ucm_pyemir | train |
018355ccd39b29fe8d2dccdc6cf479626b97d106 | diff --git a/test_projects/django/testproj/someapp/tasks.py b/test_projects/django/testproj/someapp/tasks.py
index <HASH>..<HASH> 100644
--- a/test_projects/django/testproj/someapp/tasks.py
+++ b/test_projects/django/testproj/someapp/tasks.py
@@ -1,8 +1,14 @@
import string
import random
+from django.utils import si... | fix leaky_global building for py3 memory sizes | PolicyStat_jobtastic | train |
d542ee14528a5aed323b4382d0e14751977872ff | diff --git a/querybuilder/query.py b/querybuilder/query.py
index <HASH>..<HASH> 100644
--- a/querybuilder/query.py
+++ b/querybuilder/query.py
@@ -689,25 +689,3 @@ class Query(object):
inner_queries.append(inner_query)
inner_queries += inner_query['table'].get_inner_queries()
... | * Moved query window class to window functions file | ambitioninc_django-query-builder | train |
c96f45105db8c2eaeffcdb91e73dd95841a03905 | diff --git a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/Constants.java b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/Constants.java
index <HASH>..<HASH> 100644
--- a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/Constants.java
+++ b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/Constants.java
@@ -1,5 +1,12... | Fix: Added missing Named-Annotation and use Constants.LANGUAGE_NAME instead of literal | eclipse_xtext-core | train |
644823659a6aa350e159ca662c0fd84db852ef48 | diff --git a/jenetics/build.gradle.kts b/jenetics/build.gradle.kts
index <HASH>..<HASH> 100644
--- a/jenetics/build.gradle.kts
+++ b/jenetics/build.gradle.kts
@@ -47,5 +47,5 @@ dependencies {
tasks.test { dependsOn(tasks.compileJmhJava) }
jmh {
- includes.set(listOf(".*CombinatoricsPerf.*"))
+ includes.set(listOf("... | #<I>: Some code cleanup. | jenetics_jenetics | train |
b29a60702c425ee1d86d4241a4a2ea815b296151 | diff --git a/src/main/java/io/github/astrapi69/swing/component/JMTextArea.java b/src/main/java/io/github/astrapi69/swing/component/JMTextArea.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/github/astrapi69/swing/component/JMTextArea.java
+++ b/src/main/java/io/github/astrapi69/swing/component/JMTextArea.java
@... | formatted, sort members and organize imports | lightblueseas_swing-components | train |
ee2923f591c5963674654e584c041d6d7c149898 | diff --git a/loomengine/client/server.py b/loomengine/client/server.py
index <HASH>..<HASH> 100755
--- a/loomengine/client/server.py
+++ b/loomengine/client/server.py
@@ -330,7 +330,7 @@ class LocalServerControls(BaseServerControls):
raise Exception('No local server deploy settings found. Create them with ... | Fixed bug in loom server delete for local server. | StanfordBioinformatics_loom | train |
c76d36600a9a3bdc77e8a2667aefe575a8f492cd | diff --git a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/ElementHelper.java b/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/ElementHelper.java
index <HASH>..<HASH> 100644
--- a/gremlin-core/src/main/java/org/apache/tinkerpop/gremlin/structure/util/ElementHelper.java
+... | Make ElementHelper.areEqual(Property, Object) handle nulls so that it can
be used correctly in equals() methods of Property impls.
Added test methods for additional equality "scenarios" in ElementHelper. | apache_tinkerpop | train |
fdc20754ae5fc88dcaf0cfd62490514bd28eca03 | diff --git a/test_pimento.py b/test_pimento.py
index <HASH>..<HASH> 100644
--- a/test_pimento.py
+++ b/test_pimento.py
@@ -12,6 +12,7 @@ import pimento
# [ Tests ]
def test_menu_accepts_full_response():
+ # yes
p = pexpect.spawn('python test_pimento.py')
p.expect_exact('yes or no?')
p.expect_exact... | expanded full-response test | toejough_pimento | train |
b218f9c8a67994825f1554cf6637b67fa7afaa82 | diff --git a/lib/postalcoder/formats.rb b/lib/postalcoder/formats.rb
index <HASH>..<HASH> 100644
--- a/lib/postalcoder/formats.rb
+++ b/lib/postalcoder/formats.rb
@@ -30,7 +30,8 @@ module PostalCoder
def self.instantiate(postal_code, format_symbol = nil)
unless postal_code.is_a?(String)
- raise Arg... | Added tests for Resolver, changed Formats.instantiate to return MalformedPostalCodeError instead of ArgumentError when passed nil. | heycarsten_gcoder | train |
24bea9533c68200b657704c93759cb263a9fdbf2 | diff --git a/fabfile.py b/fabfile.py
index <HASH>..<HASH> 100644
--- a/fabfile.py
+++ b/fabfile.py
@@ -21,7 +21,6 @@ def docker_exec(cmdline):
local('docker exec -ti pynb {}'.format(cmdline))
-@task
def inc_version():
"""
Increment micro release version (in 'major.minor.micro') in version.py and re-... | more small fixes to versioning with tagging | elehcimd_pynb | train |
9219d404783c5fd5542ec62d1e0330d80577eaf0 | diff --git a/src/main/java/org/aerogear/connectivity/rest/registry/instances/MobileVariantInstanceEndpoint.java b/src/main/java/org/aerogear/connectivity/rest/registry/instances/MobileVariantInstanceEndpoint.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/aerogear/connectivity/rest/registry/instances/MobileVar... | Adding RESTful respose codes to device registration endpoint | aerogear_aerogear-unifiedpush-server | train |
2ca497b522eca7110d7a234c4233ee7e49f65c57 | diff --git a/xmlnuke-php5/src/com.xmlnuke/database/database.dbsqlrelaydriver.class.php b/xmlnuke-php5/src/com.xmlnuke/database/database.dbsqlrelaydriver.class.php
index <HASH>..<HASH> 100644
--- a/xmlnuke-php5/src/com.xmlnuke/database/database.dbsqlrelaydriver.class.php
+++ b/xmlnuke-php5/src/com.xmlnuke/database/datab... | Added commit and rollback to SQLRelayDriver | byjg_xmlnuke | train |
273be475168147e1fe8ba268fb41684c19605428 | diff --git a/numina/core/recipeinout.py b/numina/core/recipeinout.py
index <HASH>..<HASH> 100644
--- a/numina/core/recipeinout.py
+++ b/numina/core/recipeinout.py
@@ -135,4 +135,32 @@ class define_input(object):
return klass
-define_requirements = define_input
\ No newline at end of file
+define_requiremen... | Add two decorators to insert Products and Requirements | guaix-ucm_numina | train |
c800634fdde1fefdf81cf50aa403ae38630cb492 | diff --git a/ipdata/cli.py b/ipdata/cli.py
index <HASH>..<HASH> 100644
--- a/ipdata/cli.py
+++ b/ipdata/cli.py
@@ -3,7 +3,9 @@ import json
import multiprocessing
import os
import sys
+from gzip import GzipFile
from ipaddress import ip_address
+from itertools import chain, islice
from pathlib import Path
from sys ... | Writes batch output with --output-format JSON to gzipped list of JSON results each on new line.
Improved ip list file iteration. | ipdata_python | train |
680129a467600d81592d90fa17b6e47aa6252301 | diff --git a/headerfs/index.go b/headerfs/index.go
index <HASH>..<HASH> 100644
--- a/headerfs/index.go
+++ b/headerfs/index.go
@@ -223,7 +223,7 @@ func (h *headerIndex) chainTip() (*chainhash.Hash, uint32, error) {
var tipKey []byte
// Based on the specified index type of this instance of the
- // index, we'll... | update index.go - spelling fix in comments | lightninglabs_neutrino | train |
6b5693cefa55d73d61ce7f026b9e9b62102042d4 | diff --git a/moufla.php b/moufla.php
index <HASH>..<HASH> 100644
--- a/moufla.php
+++ b/moufla.php
@@ -65,24 +65,21 @@ class plgSystemMoufla extends JPlugin {
$moufla = new Moufla();
$response = $moufla->searchForRoute();
+ // If the request is a normal Joomla request
if ($response->... | adding js/css files includes in joomla template | thecodingmachine_integration.joomla.moufla-joomlaplugin | train |
7b49f7d84ecf8be7b5dc03172d0bc5228a4fbf0d | diff --git a/src/core/Application.php b/src/core/Application.php
index <HASH>..<HASH> 100644
--- a/src/core/Application.php
+++ b/src/core/Application.php
@@ -65,6 +65,7 @@ class Application extends ServiceLocator
protected $dispatcher;
protected $bootstrapped = false;
protected $refreshing = [];
+ pr... | Catch possible exception when application bootstrapping | bixuehujin_blink | train |
29dd537e0f6d4e63f0f1890e5666d3a68391985f | diff --git a/src/LumenPassport.php b/src/LumenPassport.php
index <HASH>..<HASH> 100644
--- a/src/LumenPassport.php
+++ b/src/LumenPassport.php
@@ -72,7 +72,7 @@ class LumenPassport
*/
public static function routes($callback = null, array $options = [])
{
- if ($callback instanceof Application && ... | Fix regex to call router on Lumen 6 | dusterio_lumen-passport | train |
197f9f7c726f48cc5a98394d04048953685b9cb0 | diff --git a/test/EntityTest.js b/test/EntityTest.js
index <HASH>..<HASH> 100644
--- a/test/EntityTest.js
+++ b/test/EntityTest.js
@@ -14,6 +14,7 @@ describe('js.data.Entity', function () {
before(function (done) {
testRunner.requireClasses({
Entity: 'js/data/Entity',
+ Model: 'js/... | added test for entity.clone | rappid_rAppid.js | train |
466c73fa3b1bec69259c05334f1b8d636626b42d | diff --git a/util/clusterauth/clusterauth_test.go b/util/clusterauth/clusterauth_test.go
index <HASH>..<HASH> 100644
--- a/util/clusterauth/clusterauth_test.go
+++ b/util/clusterauth/clusterauth_test.go
@@ -55,6 +55,135 @@ func TestParseServiceAccountToken(t *testing.T) {
assert.Equal(t, testClaims, *claims)
}
+fu... | chore: Code coverage offensive <I>: util/clusterauth (#<I>)
* Add first batch of clusterauth tests
* More tests | argoproj_argo-cd | train |
d3bed17202460babde80c3804bdbeeea17d2fad2 | diff --git a/graphql.go b/graphql.go
index <HASH>..<HASH> 100644
--- a/graphql.go
+++ b/graphql.go
@@ -83,6 +83,10 @@ type Schema struct {
subscribeResolverTimeout time.Duration
}
+func (s *Schema) ASTSchema() *types.Schema {
+ return s.schema
+}
+
// SchemaOpt is an option to pass to ParseSchema or MustParseSche... | add getter for the types.Schema field
This additive function shouldn't break backward compatibility will allow those
who want access to the types to get at an AST version of the `types.Schema` | graph-gophers_graphql-go | train |
75c2ece8c610377c43641e82b6a38ea289609a05 | diff --git a/h2o-genmodel/src/main/java/hex/genmodel/algos/glm/GlmMojoModel.java b/h2o-genmodel/src/main/java/hex/genmodel/algos/glm/GlmMojoModel.java
index <HASH>..<HASH> 100644
--- a/h2o-genmodel/src/main/java/hex/genmodel/algos/glm/GlmMojoModel.java
+++ b/h2o-genmodel/src/main/java/hex/genmodel/algos/glm/GlmMojoMode... | minor: reformat to be more readable (#<I>) | h2oai_h2o-3 | train |
456b283da7b8b305b74f976a554aa02214b28b10 | diff --git a/i18n/src/test/java/net/time4j/format/expert/AdjacentDigitParsingTest.java b/i18n/src/test/java/net/time4j/format/expert/AdjacentDigitParsingTest.java
index <HASH>..<HASH> 100644
--- a/i18n/src/test/java/net/time4j/format/expert/AdjacentDigitParsingTest.java
+++ b/i18n/src/test/java/net/time4j/format/expert... | extra test for adjacent digit parsing | MenoData_Time4J | train |
2a2f681534f178648055ecf7807d362a744b5563 | diff --git a/src/GrumPHP/Composer/GrumPHPPlugin.php b/src/GrumPHP/Composer/GrumPHPPlugin.php
index <HASH>..<HASH> 100644
--- a/src/GrumPHP/Composer/GrumPHPPlugin.php
+++ b/src/GrumPHP/Composer/GrumPHPPlugin.php
@@ -21,7 +21,6 @@ use GrumPHP\Console\Command\Git\InitCommand;
use GrumPHP\Locator\ExternalCommand;
use Sym... | Fixed: Use config path from composer's extra at config command | phpro_grumphp | train |
0ec64b79e4a0e5463ad6a5d5ef9cab51e0915271 | diff --git a/tests/common/test_account.py b/tests/common/test_account.py
index <HASH>..<HASH> 100644
--- a/tests/common/test_account.py
+++ b/tests/common/test_account.py
@@ -218,7 +218,7 @@ class StorageAccountTest(StorageTestCase):
self.assertIsNotNone(resp.last_modified)
# Act Read
- ... | Minor fix for sas test | Azure_azure-storage-python | train |
64a31e52b6f0419f562645b7b50d0ad4f38c2bad | diff --git a/lib/kubeclient/common.rb b/lib/kubeclient/common.rb
index <HASH>..<HASH> 100644
--- a/lib/kubeclient/common.rb
+++ b/lib/kubeclient/common.rb
@@ -4,6 +4,10 @@ module Kubeclient
# Common methods
module ClientMixin
attr_reader :api_endpoint
+ attr_reader :ssl_options
+ attr_reader :auth_opti... | add attr accessors
We expose these parameters so they can be used by external applications
in combination with the kubernetes proxies. | abonas_kubeclient | train |
87c2ad0f0987b71f2bb01a5907b97750af125ccf | diff --git a/lib/oxidized/node.rb b/lib/oxidized/node.rb
index <HASH>..<HASH> 100644
--- a/lib/oxidized/node.rb
+++ b/lib/oxidized/node.rb
@@ -11,7 +11,7 @@ module Oxidized
def initialize opt
@name = opt[:name]
@ip = IPAddr.new(opt[:ip]).to_s rescue nil
- @ip ||= ... | Resolves #<I> | ytti_oxidized | train |
e7cb085eee295c6bd3ddf93de2e01d807a5e2885 | diff --git a/lxd/operations/operations.go b/lxd/operations/operations.go
index <HASH>..<HASH> 100644
--- a/lxd/operations/operations.go
+++ b/lxd/operations/operations.go
@@ -254,7 +254,7 @@ func (op *Operation) done() {
err := removeDBOperation(op)
if err != nil {
- logger.Warnf("Failed to delete operation %... | lxd/operations/operations: Convert to contextual logging for operation remove warning | lxc_lxd | train |
2d1c91dbab0120e86e639ef3ad148188357866fa | diff --git a/jaraco/util/editor.py b/jaraco/util/editor.py
index <HASH>..<HASH> 100644
--- a/jaraco/util/editor.py
+++ b/jaraco/util/editor.py
@@ -64,7 +64,7 @@ class EditableFile(object):
cmd = [editor, self.name]
try:
res = subprocess.call(cmd)
- except Exception, e:
+ except Exception as e:
... | Made some progress toward native Python 3 support | jaraco_jaraco.ui | train |
f2252e4d136e63c5e192d5816ee485660644654a | diff --git a/src/core/Overlay.js b/src/core/Overlay.js
index <HASH>..<HASH> 100644
--- a/src/core/Overlay.js
+++ b/src/core/Overlay.js
@@ -8,6 +8,9 @@ import { Popper, type PopperChildrenProps } from 'react-popper';
import type { OverlayProps } from '../types';
+// `Element` is not defined during server-side rende... | Fix undefined `Element` during SSR (#<I>) | ericgio_react-bootstrap-typeahead | train |
04958b5575515e27ed74a56cddadcd3d74bc99fd | diff --git a/spec/stackup/stack_spec.rb b/spec/stackup/stack_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/stackup/stack_spec.rb
+++ b/spec/stackup/stack_spec.rb
@@ -84,6 +84,10 @@ describe Stackup::Stack do
let(:template) { "stack template" }
+ def deploy
+ stack.deploy(template)
+ end
+
... | Extract #deploy action methods. | realestate-com-au_stackup | train |
4af72040060e09097d86380b89766878d380be13 | diff --git a/src/main/java/com/turn/ttorrent/client/Client.java b/src/main/java/com/turn/ttorrent/client/Client.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/turn/ttorrent/client/Client.java
+++ b/src/main/java/com/turn/ttorrent/client/Client.java
@@ -94,7 +94,7 @@ public class Client implements Runnable,
... | refactoring: renamed threadNameSuffix field to myClientNameSuffix | mpetazzoni_ttorrent | train |
cc470c7ba61e1e0d53a58c93a790273fd7b01e76 | diff --git a/OpenPNM/Utilities/misc.py b/OpenPNM/Utilities/misc.py
index <HASH>..<HASH> 100644
--- a/OpenPNM/Utilities/misc.py
+++ b/OpenPNM/Utilities/misc.py
@@ -218,7 +218,8 @@ def amalgamate_data(objs=[]):
dict_name = key
data_amalgamated.update({dict_name : item... | don't print failed amalgamated data | PMEAL_OpenPNM | train |
e0dc4d497a171a585b0760e572f0c461d3aaf28b | diff --git a/dbaas_credentials/models.py b/dbaas_credentials/models.py
index <HASH>..<HASH> 100644
--- a/dbaas_credentials/models.py
+++ b/dbaas_credentials/models.py
@@ -26,7 +26,7 @@ class CredentialType(BaseModel):
(ZABBIX, 'Zabbix'),
(FLIPPER, 'Flipper'),
(VM, 'Initial credentials Virtual... | Add DATABASEINFRA and VM as CredentialType | globocom_dbaas-credentials | train |
b83ea01a3e76b3b19643b39a1912fec68ef5226c | diff --git a/parsl/dataflow/dflow.py b/parsl/dataflow/dflow.py
index <HASH>..<HASH> 100644
--- a/parsl/dataflow/dflow.py
+++ b/parsl/dataflow/dflow.py
@@ -182,43 +182,40 @@ class DataFlowKernel(object):
memo_cbk(Bool) : Indicates that the call is coming from a memo update,
that does not requ... | Moving task status update and removing a redundant check
Moving task state update pending->running from submit to launch
to avoid a race condition where fast task state is reset to
running because their result is handled before AppFuture is created in submit.
Removed a redundant check for task_fu.done() in handle_upd... | Parsl_parsl | train |
af383e222a0ae224c952c1f4710dae139c05269d | diff --git a/lib/vagrant/actions/vm/move_hard_drive.rb b/lib/vagrant/actions/vm/move_hard_drive.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/actions/vm/move_hard_drive.rb
+++ b/lib/vagrant/actions/vm/move_hard_drive.rb
@@ -26,7 +26,7 @@ module Vagrant
def clone_and_attach
logger.info "Cloning ... | Get rid of more references to Vagrant.config. Only one remains. | hashicorp_vagrant | train |
b8bf4db3479da545a7ea151e48ee6708e8c06d2f | diff --git a/cmd/tiller/environment/environment.go b/cmd/tiller/environment/environment.go
index <HASH>..<HASH> 100644
--- a/cmd/tiller/environment/environment.go
+++ b/cmd/tiller/environment/environment.go
@@ -38,7 +38,13 @@ type ReleaseStorage interface {
//
// A KubeClient must be concurrency safe.
type KubeClien... | fix(environment): make KubeClient take multiple files
Rather than just taking a []byte for Install, take a map of
filenames->contents. | helm_helm | train |
9d44c515dbb253e214ac0cd1145bddacc2586380 | diff --git a/example/urls.py b/example/urls.py
index <HASH>..<HASH> 100644
--- a/example/urls.py
+++ b/example/urls.py
@@ -1,5 +1,6 @@
from django.conf.urls.defaults import patterns, include, url
from django.contrib import admin
+from django.views.generic import RedirectView
admin.autodiscover()
urlpatterns = pat... | Fix running the example project with Django <I> | django-fluent_django-fluent-comments | train |
a09dcda7f39cb750461218d3aa5ea6c1196a4097 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -709,7 +709,7 @@ Client.prototype.setPromotion = function (promotionId, callback) {
if (self.options.version === 'v1') return
- path = '/v1/grant/' + self.state.properties.wallet.paymentId
+ path = '/v1/grants/' + sel... | <I>: Fix grant claim route in setPromotion (#<I>) | brave-intl_bat-client | train |
063b3d657456e35a61250d9952b9691394f8876f | diff --git a/impl-base/src/test/java/org/jboss/shrinkwrap/impl/base/exporter/ExplodedExporterTestCase.java b/impl-base/src/test/java/org/jboss/shrinkwrap/impl/base/exporter/ExplodedExporterTestCase.java
index <HASH>..<HASH> 100644
--- a/impl-base/src/test/java/org/jboss/shrinkwrap/impl/base/exporter/ExplodedExporterTes... | SHRINKWRAP-<I> TestCase that expose bug | shrinkwrap_shrinkwrap | train |
e8661d564d100b848fe814cda66ce7500961e849 | diff --git a/src/EventListener/NotFoundListener.php b/src/EventListener/NotFoundListener.php
index <HASH>..<HASH> 100644
--- a/src/EventListener/NotFoundListener.php
+++ b/src/EventListener/NotFoundListener.php
@@ -13,8 +13,8 @@ use Symfony\Component\HttpKernel\Event\GetResponseForExceptionEvent;
use Symfony\Component... | Removed the unneeded hasTemplate call from NotFoundListener. | bolt_bolt | train |
6bc41384c7a53b458d094a820020a7546eb544fb | diff --git a/src/Storage/Repository.php b/src/Storage/Repository.php
index <HASH>..<HASH> 100644
--- a/src/Storage/Repository.php
+++ b/src/Storage/Repository.php
@@ -246,11 +246,13 @@ class Repository implements ObjectRepository
*/
public function insert($entity)
{
+ $querySet = new QuerySet();
... | rewrite insert and update to execute a QuerySet rather than a single QueryBuilder query | bolt_bolt | train |
d9d960fa9cb1a43ac1e5672b0443cac8a79ac441 | diff --git a/slither/printers/summary/function_ids.py b/slither/printers/summary/function_ids.py
index <HASH>..<HASH> 100644
--- a/slither/printers/summary/function_ids.py
+++ b/slither/printers/summary/function_ids.py
@@ -3,6 +3,8 @@
"""
import collections
from prettytable import PrettyTable
+
+from slither.core.so... | Fix functionid printer to account for getters having parameters (key is input in mappings, uint<I> index is input for arrays). | crytic_slither | train |
38cd9cf1691e5e0e9b13ec29f4def13ff6a42da0 | diff --git a/DrdPlus/Tables/Partials/AbstractTable.php b/DrdPlus/Tables/Partials/AbstractTable.php
index <HASH>..<HASH> 100644
--- a/DrdPlus/Tables/Partials/AbstractTable.php
+++ b/DrdPlus/Tables/Partials/AbstractTable.php
@@ -43,25 +43,27 @@ abstract class AbstractTable extends StrictObject implements Table
$... | fix: Only header names included both in rows header and columns header are taken just once | drdplusinfo_tables | train |
2d7cf1f9a6fec9c04591f977a4509e4fae85bb09 | diff --git a/Command/GenerateEntitiesDoctrineCommand.php b/Command/GenerateEntitiesDoctrineCommand.php
index <HASH>..<HASH> 100644
--- a/Command/GenerateEntitiesDoctrineCommand.php
+++ b/Command/GenerateEntitiesDoctrineCommand.php
@@ -112,8 +112,11 @@ EOT
$basename = substr($m->name, strrpos($m->name, ... | Fixed problem with multiple occurences of a given namespace. fix #<I> | doctrine_DoctrineBundle | train |
d09bf019c5f44e9577a7ed75de4c7f86ec4fb7fa | diff --git a/src/Illuminate/Queue/CallQueuedHandler.php b/src/Illuminate/Queue/CallQueuedHandler.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Queue/CallQueuedHandler.php
+++ b/src/Illuminate/Queue/CallQueuedHandler.php
@@ -31,13 +31,6 @@ class CallQueuedHandler
protected $container;
/**
- * Indi... | [8.x] Ensure ShouldBeUniqueUntilProcessing job lock is released once (#<I>)
* [8.x] Ensure unique lock is released once
* Update CallQueuedHandler.php | laravel_framework | train |
9701b0f52f0f7a52831844dc582ab81863faeb18 | diff --git a/apps/advanced/console/migrations/m130524_201442_init.php b/apps/advanced/console/migrations/m130524_201442_init.php
index <HASH>..<HASH> 100644
--- a/apps/advanced/console/migrations/m130524_201442_init.php
+++ b/apps/advanced/console/migrations/m130524_201442_init.php
@@ -1,8 +1,9 @@
<?php
use yii\db\... | Initial migration code must match code generated by console migration controller.
Minor consistency issue. See the following files for more details:
1. framework/views/migration.php
2. framework/console/controllers/MigrateController.php | yiisoft_yii-core | train |
24aa482d97e32d9bca581827a6e44632b8eee531 | diff --git a/app/publisher/fileembed.go b/app/publisher/fileembed.go
index <HASH>..<HASH> 100644
--- a/app/publisher/fileembed.go
+++ b/app/publisher/fileembed.go
@@ -15,9 +15,12 @@ limitations under the License.
*/
/*
+The publisher application serves and renders items published by Camlistore.
+That is, items that... | Fix file embedding I broke with previous commit
oops. <URL> | perkeep_perkeep | train |
4ebf6cac9c3e28ec76f33fb49e89a9a85e840dc6 | diff --git a/restcomm/restcomm.interpreter/src/main/java/org/mobicents/servlet/restcomm/interpreter/BaseVoiceInterpreter.java b/restcomm/restcomm.interpreter/src/main/java/org/mobicents/servlet/restcomm/interpreter/BaseVoiceInterpreter.java
index <HASH>..<HASH> 100644
--- a/restcomm/restcomm.interpreter/src/main/java/o... | RESTCOMM-<I> #Resolved Fixed
(cherry picked from commit f8a0f<I>d9cd2cc5fd5e<I>b9ce<I>df<I>d6f0a<I>) | RestComm_Restcomm-Connect | train |
ee50ef0235ef6aba92ea6d516bbd8832cec1a951 | diff --git a/src/constructor/constructor_test.js b/src/constructor/constructor_test.js
index <HASH>..<HASH> 100644
--- a/src/constructor/constructor_test.js
+++ b/src/constructor/constructor_test.js
@@ -132,5 +132,6 @@ QUnit.test("Adds data to canWait.data", function(){
connection.get({ id: 2 });
}).then(function(... | Add canWait.data as pageData
Since different code can add to canWait.data we need to namespace it, so
using `pageData` to signal this data's purpose. | canjs_can-connect | train |
3778f3ab4bb90a26908fcbbb86dc461a3c8179f9 | diff --git a/src/main/java/pl/project13/jgit/DescribeCommand.java b/src/main/java/pl/project13/jgit/DescribeCommand.java
index <HASH>..<HASH> 100644
--- a/src/main/java/pl/project13/jgit/DescribeCommand.java
+++ b/src/main/java/pl/project13/jgit/DescribeCommand.java
@@ -48,6 +48,7 @@ import java.util.*;
public class D... | Use a single instance of JGitCommon | git-commit-id_maven-git-commit-id-plugin | train |
c29131f6df3262bcaf309ffc4c72513a4b5aeef6 | diff --git a/src/Mcfedr/QueueManagerBundle/DependencyInjection/McfedrQueueManagerExtension.php b/src/Mcfedr/QueueManagerBundle/DependencyInjection/McfedrQueueManagerExtension.php
index <HASH>..<HASH> 100644
--- a/src/Mcfedr/QueueManagerBundle/DependencyInjection/McfedrQueueManagerExtension.php
+++ b/src/Mcfedr/QueueMan... | Check that classes exists before creating listeners for doctrine/swift | mcfedr_queue-manager-bundle | train |
8fe02f8ef5a475e264d56bbbadb9ac1e780e97ce | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -12,7 +12,7 @@ def readme():
base_requirements = [
'attrs~=17.4',
- 'conformity~=1.12',
+ 'conformity~=1.13',
'currint~=1.6',
'enum34;python_version<"3.4"',
'msgpack-python~=0.4', | [MINOR] Bump Conformity | eventbrite_pysoa | train |
6b73dc6e3b32672b23eb68dbf0f53d9264d237be | diff --git a/openstack_dashboard/dashboards/project/loadbalancers/workflows.py b/openstack_dashboard/dashboards/project/loadbalancers/workflows.py
index <HASH>..<HASH> 100644
--- a/openstack_dashboard/dashboards/project/loadbalancers/workflows.py
+++ b/openstack_dashboard/dashboards/project/loadbalancers/workflows.py
@... | Fix Typo in loadbalancers/workflow.py
The split-line string neglected a space between
words, resulting in an incorrect string. Found
during translation. This patch simply adds a
single space.
Change-Id: I<I>f<I>e8fb<I>cd0f<I>b<I>b0da<I>c<I>ab | openstack_horizon | train |
52cf97e7b954de23e6c289ec0e0c7f8a8bd9e786 | diff --git a/public/js/modern/input-control.js b/public/js/modern/input-control.js
index <HASH>..<HASH> 100644
--- a/public/js/modern/input-control.js
+++ b/public/js/modern/input-control.js
@@ -26,55 +26,55 @@
* initialize text input element behavior
*/
var initTextInput = function () {
- ... | some optimization
preparing to jquery <I> | olton_Metro-UI-CSS | train |
2b63b96380586b71f530d5174a8493b6b024e959 | diff --git a/docx.py b/docx.py
index <HASH>..<HASH> 100755
--- a/docx.py
+++ b/docx.py
@@ -8,18 +8,27 @@ Part of Python's docx module - http://github.com/mikemaccana/python-docx
See LICENSE for licensing information.
"""
-import logging
+import os
+import re
+import time
+import shutil
+import zipfile
+
from lxml ... | Apply EXIF orientation information in the rot, flipH and flipV properties of
the xfrm element when creating the shape properties of an image.
See: <URL> | mikemaccana_python-docx | train |
a2854ec66e8f92917a8b279552f1d4bc8b67a81f | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -190,7 +190,7 @@ def install(**kwargs):
kwargs['packages'] = packages
cmdclass = {'install_lib': MyInstallLib,
'build_py': build_py}
- if easy_install:
+ if easy_install_lib:
cmdclass[... | Check for easy_install_lib instead of easy_install, the latter might not exist. | PyCQA_pylint | train |
8cd16296bc355965a40647352d8169933254b1a8 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -5,3 +5,4 @@
/vendor
composer.lock
npm-debug.log
+package-lock.json
diff --git a/src/Intuition.php b/src/Intuition.php
index <HASH>..<HASH> 100644
--- a/src/Intuition.php
+++ b/src/Intuition.php
@@ -824,6 +824,11 @@... | Intuition: Fix file_get_contents warning in loadMessageFile
This often happens for domains that are not yet fully translated.
When setting the user preference centrally to a language that doesn't
yet have any translations for a particular domain, loading that domain
in a tool will fail due to the specific JSON file no... | Krinkle_intuition | train |
c7e7c5f27ab19b7cd8aef90cd114668f5ea8b16f | diff --git a/quilt/cli/top.py b/quilt/cli/top.py
index <HASH>..<HASH> 100644
--- a/quilt/cli/top.py
+++ b/quilt/cli/top.py
@@ -19,13 +19,19 @@
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
# 02110-1301 USA
-from optparse import OptionParser
+from quilt.cli.meta import Command
+from quilt.db impor... | Convert quilt.cli.top into Command class | bjoernricks_python-quilt | train |
2241fa072f284182248acc82ff3c624fa32c6270 | diff --git a/src/transformers/jasmine-globals.js b/src/transformers/jasmine-globals.js
index <HASH>..<HASH> 100644
--- a/src/transformers/jasmine-globals.js
+++ b/src/transformers/jasmine-globals.js
@@ -490,5 +490,37 @@ export default function jasmineGlobals(fileInfo, api, options) {
});
});
+ root.f... | Add support for migrating jasmine.createSpyObj | skovhus_jest-codemods | train |
e2fedbb38280328db8110cfeaaa2519352c70e28 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -1,15 +1,14 @@
const visitedObjectsSymbol = Symbol('visitedObjects')
const currentPathSymbol = Symbol('currentPath')
-module.exports = function decircularize(input, options = {}) {
- const visitedObjects = options[visitedObj... | Fixed an issue where duplicates would be treated as circular refs | fizker_decircularize | train |
77daef3a5fe6a3438fd2863fb1b67758282ed1fd | diff --git a/PHPCI/Command/DaemoniseCommand.php b/PHPCI/Command/DaemoniseCommand.php
index <HASH>..<HASH> 100644
--- a/PHPCI/Command/DaemoniseCommand.php
+++ b/PHPCI/Command/DaemoniseCommand.php
@@ -76,6 +76,7 @@ class DaemoniseCommand extends Command
$this->run = true;
$this->sleep = 0;
$r... | Fixing daemonise mode, forcing RunCommand to only get one build at a time when running under daemon mode | dancryer_PHPCI | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.