hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
3baad2a2cadc249ed0e8cf8fa890b10998168f0a | diff --git a/Model/Service/TransactionHandlerService.php b/Model/Service/TransactionHandlerService.php
index <HASH>..<HASH> 100755
--- a/Model/Service/TransactionHandlerService.php
+++ b/Model/Service/TransactionHandlerService.php
@@ -519,12 +519,14 @@ class TransactionHandlerService
// Refund
... | chore: order status comment fixed for final partial refund from hub | checkout_checkout-magento2-plugin | train |
5de8fe05f39a5ada05c633f31b378d403b26aad6 | diff --git a/src/main/java/net/snowflake/client/core/SFStatement.java b/src/main/java/net/snowflake/client/core/SFStatement.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/snowflake/client/core/SFStatement.java
+++ b/src/main/java/net/snowflake/client/core/SFStatement.java
@@ -21,8 +21,6 @@ import net.snowflak... | SNOW-<I>: make sure memoryLimit can avoid OOM for Arrow buffer | snowflakedb_snowflake-jdbc | train |
2278677d2d3789c7e251755bd2d1c63af531dd76 | diff --git a/tests/mocha-reporter.js b/tests/mocha-reporter.js
index <HASH>..<HASH> 100644
--- a/tests/mocha-reporter.js
+++ b/tests/mocha-reporter.js
@@ -60,7 +60,7 @@ module.exports = class ServerlessSpec extends Spec {
// Mocha ignores uncaught exceptions if they happen in conext of skipped test, expose t... | Expose errors during suite abort phase | serverless_serverless | train |
7cc72af508f149bc86df5b3ac5c6de3836579e70 | diff --git a/modules/engine.py b/modules/engine.py
index <HASH>..<HASH> 100644
--- a/modules/engine.py
+++ b/modules/engine.py
@@ -83,7 +83,7 @@ class PygletLoop (object):
def play(self, frames_per_sec=50):
import pyglet
- self.window = pyglet.window.Window()
+ self.window = pyglet.window.... | Make the pyglet window hidden on construction. | kxgames_kxg | train |
388f2dcf8dad1f4e6881911393ca30c898fd33c1 | diff --git a/http/sys_auth.go b/http/sys_auth.go
index <HASH>..<HASH> 100644
--- a/http/sys_auth.go
+++ b/http/sys_auth.go
@@ -13,9 +13,7 @@ func handleSysAuth(core *vault.Core) http.Handler {
switch r.Method {
case "GET":
handleSysListAuth(core).ServeHTTP(w, r)
- case "POST":
- fallthrough
- case "DELETE... | http: PUT to sys/auth should be the same as POST | hashicorp_vault | train |
c35316f1582de2c25b9e3c0ec99ba356b444806a | diff --git a/socketIO_client/__init__.py b/socketIO_client/__init__.py
index <HASH>..<HASH> 100644
--- a/socketIO_client/__init__.py
+++ b/socketIO_client/__init__.py
@@ -3,7 +3,10 @@ import json
import requests
import time
from collections import namedtuple
-from urlparse import urlparse
+try:
+ from urlparse impor... | Run under Python 3
This will make the code I wrote in :
<URL> | invisibleroads_socketIO-client | train |
2e9403b047d926d39d5b299abc071f3c29627fc6 | diff --git a/buildfile.go b/buildfile.go
index <HASH>..<HASH> 100644
--- a/buildfile.go
+++ b/buildfile.go
@@ -313,10 +313,11 @@ func (b *buildFile) Build(dockerfile, context io.Reader) (string, error) {
for {
line, err := file.ReadString('\n')
if err != nil {
- if err == io.EOF {
+ if err == io.EOF && line... | build: don't ignore last line in Dockerfile when it doesn't end with \n | containers_storage | train |
da8734a6f9213cfdcf92b63fe8d014989e0ced18 | diff --git a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ServerDowngrader.java b/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ServerDowngrader.java
index <HASH>..<HASH> 100644
--- a/codec-http2/src/main/java/io/netty/handler/codec/http2/Http2ServerDowngrader.java
+++ b/codec-http2/src/mai... | codec-http2: Mark requests as chunked in Http2ServerDowngrader
Motivation:
Http2ServerDowngrader doesn't mark chunked requests as chunked, even
though the natural conversion from http/2 requests to http/<I> requests
is to chunked ones.
Modifications:
Mark requests that aren't already complete as chunked.
Result:
... | netty_netty | train |
20e5a4c557879d674dcdce2a671cd5fcd098bbfd | diff --git a/notify_js.go b/notify_js.go
index <HASH>..<HASH> 100644
--- a/notify_js.go
+++ b/notify_js.go
@@ -36,7 +36,7 @@ func Notify(title, message, appIcon string) (err error) {
n.New(js.ValueOf(title), opts)
} else {
var f js.Func
- f = js.FuncOf(func(this js.Value, args []js.Value) any {
+ f = js.FuncO... | s/any/interface{} | gen2brain_beeep | train |
62c09895afd72ec9620031cd9dfb8ca9823d1287 | diff --git a/src/Service/Client/Cache/ExpireResolver.php b/src/Service/Client/Cache/ExpireResolver.php
index <HASH>..<HASH> 100644
--- a/src/Service/Client/Cache/ExpireResolver.php
+++ b/src/Service/Client/Cache/ExpireResolver.php
@@ -41,12 +41,14 @@ class ExpireResolver
*/
public function getExpire($request... | correct resolver empty modify value for request | anime-db_ani-db-browser-bundle | train |
4dcb23cfe521f344ac1412c8831b92585bce3695 | diff --git a/instaloader/structures.py b/instaloader/structures.py
index <HASH>..<HASH> 100644
--- a/instaloader/structures.py
+++ b/instaloader/structures.py
@@ -75,13 +75,13 @@ class Post:
"""Create a post object from a given mediaid"""
return cls.from_shortcode(context, mediaid_to_shortcode(mediaid... | {Post,Profile,StoryItem}.get_node() -> ._as_dict()
This is consistend with namedtuple._as_dict() and marks it as a
protected member, which is good as it should be only accessed by
save_structure_to_file(). | instaloader_instaloader | train |
ccb8966321a27a8340a6fa48ab414b8f78d559e0 | diff --git a/pyinfra_cli/prints.py b/pyinfra_cli/prints.py
index <HASH>..<HASH> 100644
--- a/pyinfra_cli/prints.py
+++ b/pyinfra_cli/prints.py
@@ -38,12 +38,18 @@ def _get_group_combinations(inventory):
return group_combinations
-def _jsonify(data, *args, **kwargs):
- data = {
- key.name if isinstanc... | Handle JSONifying of `Host` objects. | Fizzadar_pyinfra | train |
245ec739ca9b574f367e1201b02079e7737a78d4 | diff --git a/cmd/minikube/cmd/start.go b/cmd/minikube/cmd/start.go
index <HASH>..<HASH> 100644
--- a/cmd/minikube/cmd/start.go
+++ b/cmd/minikube/cmd/start.go
@@ -322,7 +322,7 @@ func prepareNone() {
console.OutLn("")
console.OutStyle("command", "sudo mv %s/.kube %s/.minikube $HOME", home, home)
- console.OutS... | chown command should be against user $HOME, not roots home directory. | kubernetes_minikube | train |
df333caaa3764a962ecc926a1255f94d4831af4b | diff --git a/app/controllers/releaf/base_controller.rb b/app/controllers/releaf/base_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/releaf/base_controller.rb
+++ b/app/controllers/releaf/base_controller.rb
@@ -104,14 +104,17 @@ module Releaf
def edit
raise FeatureDisabled unless @features... | Load @resource only if it's not existing before | cubesystems_releaf | train |
1b5ff1102c179c1940dc3f4bd57839dc1c559cdd | diff --git a/libzfs/zpool.py b/libzfs/zpool.py
index <HASH>..<HASH> 100644
--- a/libzfs/zpool.py
+++ b/libzfs/zpool.py
@@ -1,6 +1,7 @@
-from .bindings import manager
+from .bindings import manager, enums
from .handle import LibZFSHandle
-from . import enums
+
+from .nvpair import NVList
c_libzfs = manager.libzfs
f... | -Add: ZPool.config settings.
skipping unknown, for now, as we lack a fair few converters still. | Xaroth_libzfs-python | train |
2adf0b02be3c422b204a4f8914697efb78d250f7 | diff --git a/cocaine/proxy/proxy.py b/cocaine/proxy/proxy.py
index <HASH>..<HASH> 100644
--- a/cocaine/proxy/proxy.py
+++ b/cocaine/proxy/proxy.py
@@ -649,7 +649,8 @@ class LogLevel(web.RequestHandler): # pylint: disable=W0223
self.write("No such level %s" % lvlname)
return
- logging... | fix(proxy): change loglevel for all loggers | cocaine_cocaine-tools | train |
7b0d039fb0f611076236a975e0931f236daa18ee | diff --git a/lib/logger.js b/lib/logger.js
index <HASH>..<HASH> 100644
--- a/lib/logger.js
+++ b/lib/logger.js
@@ -34,7 +34,7 @@ logger.setLevel = function (level) {
/* Verbose and debug have not exactly the same semantic in Mailin and
* Winston, so handle that. */
if (logger.transports.cons... | Fix python scripts paths | Flolagale_mailin | train |
722d8562f046fcf58791ce0f679999425a57e11f | diff --git a/src/test/java/org/mariadb/jdbc/integration/Common.java b/src/test/java/org/mariadb/jdbc/integration/Common.java
index <HASH>..<HASH> 100644
--- a/src/test/java/org/mariadb/jdbc/integration/Common.java
+++ b/src/test/java/org/mariadb/jdbc/integration/Common.java
@@ -140,13 +140,12 @@ public class Common {
... | [misc] removing ssl status from test | MariaDB_mariadb-connector-j | train |
3e6e63b70ebab0f02ec555721ec69e74f1d8cc2d | diff --git a/bdata/bmerged.py b/bdata/bmerged.py
index <HASH>..<HASH> 100644
--- a/bdata/bmerged.py
+++ b/bdata/bmerged.py
@@ -27,6 +27,7 @@ class bmerged(bdata):
idx = np.argsort(runs)
bdata_list = np.array(bdata_list)[idx]
runs = np.array(runs)[idx]
+ years = np.array([b.year for b i... | bmerged.py: updated years to be appended | dfujim_bdata | train |
886ac48dc26f949f6379822347527085c983b2d6 | diff --git a/tests/scripts/selenium/fuzzer.rb b/tests/scripts/selenium/fuzzer.rb
index <HASH>..<HASH> 100644
--- a/tests/scripts/selenium/fuzzer.rb
+++ b/tests/scripts/selenium/fuzzer.rb
@@ -1,4 +1,3 @@
-require 'debugger'
require 'selenium-webdriver'
require_relative 'selenium_adapter'
@@ -116,8 +115,11 @@ if repl... | Bug fixes.
Need to initialize doc_length of adapter when we set the delta on scribe in
preparation of a replay. In cases where multiple lines are inserted, need to
highlight each line individually to correctly remove the automatically applied
formatting. | quilljs_quill | train |
e58c4b345126aa19fd7c6dd4a63a5c4222e78507 | diff --git a/css_to_inline_styles.php b/css_to_inline_styles.php
index <HASH>..<HASH> 100755
--- a/css_to_inline_styles.php
+++ b/css_to_inline_styles.php
@@ -12,7 +12,8 @@
* If you report a bug, make sure you give me enough information (include your code).
*
* Changelog since 1.0.3
- * - fixed some code-styling ... | Added support for multiple values for the same property | tijsverkoyen_CssToInlineStyles | train |
667325db43962f4e20ddaaa7f89de2dfbbf8edfd | diff --git a/pyontutils/docs.py b/pyontutils/docs.py
index <HASH>..<HASH> 100644
--- a/pyontutils/docs.py
+++ b/pyontutils/docs.py
@@ -56,7 +56,7 @@ def renderMarkdown(path, title=None, authors=None, date=None, **kwargs):
mdfile = path.as_posix()
# TODO fix relative links to point to github
- pandoc = ['... | docs pandoc up column width to prevent spurious line splits | tgbugs_pyontutils | train |
91342a0430119d3884ac7d6bf4078fcf38e401fa | diff --git a/ethereum/pow/chain.py b/ethereum/pow/chain.py
index <HASH>..<HASH> 100644
--- a/ethereum/pow/chain.py
+++ b/ethereum/pow/chain.py
@@ -76,8 +76,12 @@ class Chain(object):
initialize(self.state)
self.new_head_cb = new_head_cb
-
- assert self.state.block_number == self.state.prev_he... | fixed off by one error for genesis with state in chain init | ethereum_pyethereum | train |
e9afe9168ef04fcf172b1298cde15bf3d011cf5a | diff --git a/tests/unit/modules/test_netmiko_mod.py b/tests/unit/modules/test_netmiko_mod.py
index <HASH>..<HASH> 100644
--- a/tests/unit/modules/test_netmiko_mod.py
+++ b/tests/unit/modules/test_netmiko_mod.py
@@ -2,7 +2,6 @@
import logging
import salt.modules.netmiko_mod as netmiko_mod
-from salt.utils.args impor... | saltstack/salt#<I> mock prepare_connection since it depends on netmiko | saltstack_salt | train |
faf5c4b47aa8a013b62e10b66e5c1d5224638240 | diff --git a/colorz.py b/colorz.py
index <HASH>..<HASH> 100755
--- a/colorz.py
+++ b/colorz.py
@@ -312,7 +312,7 @@ def main():
# Open local file or online file
try:
- img_fd = open(args.image) if os.path.isfile(args.image) else \
+ img_fd = open(args.image, 'rb') if os.path.isfile(args.image) else \
... | hotfix: open file in binary mode to prevent Pillow bug | metakirby5_colorz | train |
bfa01848e2d68947d098da11255b60787a012979 | diff --git a/rest/src/main/java/org/jboss/pnc/rest/provider/ArtifactProvider.java b/rest/src/main/java/org/jboss/pnc/rest/provider/ArtifactProvider.java
index <HASH>..<HASH> 100644
--- a/rest/src/main/java/org/jboss/pnc/rest/provider/ArtifactProvider.java
+++ b/rest/src/main/java/org/jboss/pnc/rest/provider/ArtifactPro... | Fix bug causing duplicate entries for build record dependencies | project-ncl_pnc | train |
a90040adbdedef2c6e1de998169d26a25b839f2f | diff --git a/src/Model/Write/Products/CollectionDecorator/StockData.php b/src/Model/Write/Products/CollectionDecorator/StockData.php
index <HASH>..<HASH> 100644
--- a/src/Model/Write/Products/CollectionDecorator/StockData.php
+++ b/src/Model/Write/Products/CollectionDecorator/StockData.php
@@ -214,6 +214,9 @@ class Sto... | Added check on empty array to prevent Exception on executing max on empty array | EmicoEcommerce_Magento2TweakwiseExport | train |
6a8d4a0359d5c898301fcac0da785e9b59675dd8 | diff --git a/rack-protection/lib/rack/protection/json_csrf.rb b/rack-protection/lib/rack/protection/json_csrf.rb
index <HASH>..<HASH> 100644
--- a/rack-protection/lib/rack/protection/json_csrf.rb
+++ b/rack-protection/lib/rack/protection/json_csrf.rb
@@ -10,7 +10,7 @@ module Rack
# JSON GET APIs are volnurable to ... | fix superclass
this didn't matter, since it overrides call | sinatra_sinatra | train |
b3005af1e8d5fa32259bdb9d394401f96dbac862 | diff --git a/odl/operator/pspace_ops.py b/odl/operator/pspace_ops.py
index <HASH>..<HASH> 100644
--- a/odl/operator/pspace_ops.py
+++ b/odl/operator/pspace_ops.py
@@ -277,12 +277,46 @@ class ProductSpaceOperator(Operator):
def derivative(self, x):
"""Derivative of the product space operator.
+
+ ... | ENH: improve style of derivative doc | odlgroup_odl | train |
68ed581134ef762aa039253c16b8f3b020f7d74f | diff --git a/apiary2postman/apiary2postman.py b/apiary2postman/apiary2postman.py
index <HASH>..<HASH> 100755
--- a/apiary2postman/apiary2postman.py
+++ b/apiary2postman/apiary2postman.py
@@ -1,5 +1,5 @@
#!/usr/bin/env python
-from sys import stdin, stdout, argv, exit
+from sys import stdin, stderr, stdout, argv, exit
... | Check drafter version, not only that it is installed. Amend error message (fixes #<I>). Fix PIPE encoding issue. | thecopy_apiary2postman | train |
23eb5f8cb44bedf090cfcacbe1c5315703235a38 | diff --git a/esptool.py b/esptool.py
index <HASH>..<HASH> 100755
--- a/esptool.py
+++ b/esptool.py
@@ -1902,7 +1902,7 @@ def elf2image(args):
e = ELFFile(args.input)
if args.chip == 'auto': # Default to ESP8266 for backwards compatibility
print("Creating image for ESP8266...")
- args.chip == ... | Fix assignment to args.chip. | espressif_esptool | train |
9f2ebe742de448f296150a0f59fc590fdc55833a | diff --git a/lib/context.js b/lib/context.js
index <HASH>..<HASH> 100644
--- a/lib/context.js
+++ b/lib/context.js
@@ -103,6 +103,12 @@ class Context {
this.res.status(err.status);
+ let contentType = this.res.get('Content-Type');
+ if ('string' === typeof contentType) {
+ this.req.headers.accept = ... | fixed json error messages, also override accept if specified earlier | SandJS_http | train |
411c51358a86769877f30877d415ae8d1ddf4688 | diff --git a/src/InfoViz/Native/ParallelCoordinates/index.js b/src/InfoViz/Native/ParallelCoordinates/index.js
index <HASH>..<HASH> 100644
--- a/src/InfoViz/Native/ParallelCoordinates/index.js
+++ b/src/InfoViz/Native/ParallelCoordinates/index.js
@@ -69,6 +69,7 @@ export function toColorArray(colorString) {
function p... | fix(ParallelCoordinates): Add support for annotation edit and defaultScore update | Kitware_paraviewweb | train |
85dcdf21a8c7522c3296c3c928e16b207b609161 | diff --git a/src/main/java/org/codehaus/groovy/control/customizers/SecureASTCustomizer.java b/src/main/java/org/codehaus/groovy/control/customizers/SecureASTCustomizer.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/codehaus/groovy/control/customizers/SecureASTCustomizer.java
+++ b/src/main/java/org/codehaus/g... | Trivial refactoring: Simplify the code | apache_groovy | train |
d5d0b05f704ef5121dab3b9220df2a5f48b963fa | diff --git a/treeinterpreter/treeinterpreter.py b/treeinterpreter/treeinterpreter.py
index <HASH>..<HASH> 100644
--- a/treeinterpreter/treeinterpreter.py
+++ b/treeinterpreter/treeinterpreter.py
@@ -10,7 +10,7 @@ from sklearn.ensemble import RandomForestRegressor
from sklearn.ensemble import RandomForestClassifier
... | Pep improvements, main method for quick test | andosa_treeinterpreter | train |
78718fffefd96399952c706b034c86d4b1020783 | diff --git a/cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/applications/DefaultApplications.java b/cloudfoundry-operations/src/main/java/org/cloudfoundry/operations/applications/DefaultApplications.java
index <HASH>..<HASH> 100644
--- a/cloudfoundry-operations/src/main/java/org/cloudfoundry/operatio... | Handle Crash Events
Previously application events were limited to 'happy path' events such as state changes.
We discarded other events most notably application crashes. This commit adds reporting for
the supporting information around crashes.
[resolves #<I>] | cloudfoundry_cf-java-client | train |
9ea0d8f0e9a9cff65ab34a54dd5f797402983aa3 | diff --git a/src/oauth2server/Server.php b/src/oauth2server/Server.php
index <HASH>..<HASH> 100644
--- a/src/oauth2server/Server.php
+++ b/src/oauth2server/Server.php
@@ -179,7 +179,7 @@ class Server
return $params;
}
- function newAuthoriseRequest(string $typeId, array $authoriseParams)
+ public ... | Added scope to newAuthoriseRequst function | thephpleague_oauth2-server | train |
69a8bf404a08690e9d0d8a92a3913522b239b1b0 | diff --git a/publify_core/spec/factories.rb b/publify_core/spec/factories.rb
index <HASH>..<HASH> 100644
--- a/publify_core/spec/factories.rb
+++ b/publify_core/spec/factories.rb
@@ -58,7 +58,7 @@ FactoryGirl.define do
extended 'extended content for fun'
guid
permalink 'a-big-article'
- published_at D... | Don't set system timestamps in factories | publify_publify | train |
a9f056067e065dabc6868614b3abacf8b483f427 | diff --git a/example/index/app.js b/example/index/app.js
index <HASH>..<HASH> 100644
--- a/example/index/app.js
+++ b/example/index/app.js
@@ -59,6 +59,9 @@ require(['../../IDBStore.js'], function(IDBStore){
['customerid','firstname','lastname', 'age'].forEach(function(key){
var value = nodeCache[key].value.trim... | Go back to numeric ids | jensarps_IDBWrapper | train |
d8a10a391953102552902c6c511aaa347a88eb18 | diff --git a/src/validator.js b/src/validator.js
index <HASH>..<HASH> 100644
--- a/src/validator.js
+++ b/src/validator.js
@@ -921,15 +921,6 @@
if ( 'undefined' === typeof value )
throw new Violation( this, value );
- try {
- if ( 'string' === typeof value )
- new Assert... | Simplify Required assert
This commit updates the Required assert to check only if the property is
defined. | guillaumepotier_validator.js | train |
cef7b0f6000e48e0d837ee0127d9283f7ea697b8 | diff --git a/src/base/PopupButton.js b/src/base/PopupButton.js
index <HASH>..<HASH> 100644
--- a/src/base/PopupButton.js
+++ b/src/base/PopupButton.js
@@ -9,7 +9,7 @@ import {
raiseChangeEvents,
render,
state,
- template,
+ template
} from "./internal.js";
import KeyboardMixin from "./KeyboardMixin.js";
i... | Use DelegateFocusMixin to keep focus on inner button. | elix_elix | train |
5073999a014d3e4e6ce6eee6f94e353b27708cb3 | diff --git a/aws_syncr/amazon/iam.py b/aws_syncr/amazon/iam.py
index <HASH>..<HASH> 100644
--- a/aws_syncr/amazon/iam.py
+++ b/aws_syncr/amazon/iam.py
@@ -137,7 +137,7 @@ class Iam(AmazonMixin, object):
current_attached_policies = []
with self.ignore_missing():
- current_attached_policies... | Seems the PathPrefix isn't needed and it makes it come up with empty results | delfick_aws_syncr | train |
d6483529b2b1f8ae8d626bd71b068cf3d226b62f | diff --git a/app/controllers/kuhsaft/cms/admin_controller.rb b/app/controllers/kuhsaft/cms/admin_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/kuhsaft/cms/admin_controller.rb
+++ b/app/controllers/kuhsaft/cms/admin_controller.rb
@@ -1,7 +1,6 @@
module Kuhsaft
module Cms
class AdminController ... | do not use inherited_resources in kuhsaft | brandleadership_kuhsaft | train |
ac7cc1a9c69ae618107284deb4e3ae80c90fd47b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@
from distutils.core import setup
setup(name='trans-notify',
- version='0.1',
+ version='0.2',
description='Mobile Notifications for Transmission Downloads',
author='Micah Ransdell',
... | bumped to version <I> | micahr_herald | train |
0ed30ce5a02e4c8a9a54d7ee51d256377a65ee7e | diff --git a/lib/discourse/oneboxer/handlebars_onebox.rb b/lib/discourse/oneboxer/handlebars_onebox.rb
index <HASH>..<HASH> 100644
--- a/lib/discourse/oneboxer/handlebars_onebox.rb
+++ b/lib/discourse/oneboxer/handlebars_onebox.rb
@@ -44,10 +44,10 @@ module Discourse
args[:host] = nice_host
Handleba... | This is a really bad idea, it causes exceptions to go silent | discourse_onebox | train |
8574e5de3642313cc0da098c5cd328fe4a3e22bd | diff --git a/lib/chef/provider/package/portage.rb b/lib/chef/provider/package/portage.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/provider/package/portage.rb
+++ b/lib/chef/provider/package/portage.rb
@@ -92,7 +92,7 @@ class Chef
@candidate_version = pkginfo.stdout.split(/(?<=-)/).last(2).join
... | Fix style issues reported by travis-ci. | chef_chef | train |
465a424cc318617953b5712719a1b393b6108540 | diff --git a/PHPGangsta/GoogleAuthenticator.php b/PHPGangsta/GoogleAuthenticator.php
index <HASH>..<HASH> 100644
--- a/PHPGangsta/GoogleAuthenticator.php
+++ b/PHPGangsta/GoogleAuthenticator.php
@@ -77,7 +77,7 @@ class PHPGangsta_GoogleAuthenticator
public function getQRCodeGoogleUrl($name, $secret, $title = null)... | urlencode title
Otherwise we might occur problems when using things like whitespaces. | PHPGangsta_GoogleAuthenticator | train |
5c9d1dbb5c89ad6e685a5b20f89e97b2030ed282 | diff --git a/activerecord/lib/active_record/named_scope.rb b/activerecord/lib/active_record/named_scope.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/named_scope.rb
+++ b/activerecord/lib/active_record/named_scope.rb
@@ -1,10 +1,10 @@
module ActiveRecord
module NamedScope
- # All subclasses... | escaping otherwise autolinked "scopes" in named_scope.rb (we can now assume rdoc is <I>) | rails_rails | train |
0957568d3ac5f01fa5958c42db1b00efdf17c51f | diff --git a/question/type/ddimageortext/edit_ddimageortext_form.php b/question/type/ddimageortext/edit_ddimageortext_form.php
index <HASH>..<HASH> 100644
--- a/question/type/ddimageortext/edit_ddimageortext_form.php
+++ b/question/type/ddimageortext/edit_ddimageortext_form.php
@@ -298,8 +298,8 @@ class qtype_ddimageor... | MDL-<I> ddimageortext: NOBUG need to use <I> yui url to access <I> yui which is the latest available in
MOODLE_<I>_STABLE | moodle_moodle | train |
a2fe113558d14379b72e4c3353e6b83c833f8906 | diff --git a/tests/test_core.py b/tests/test_core.py
index <HASH>..<HASH> 100644
--- a/tests/test_core.py
+++ b/tests/test_core.py
@@ -161,3 +161,16 @@ def test_resample_matched():
assert y.flags['OWNDATA']
# x and y are distinct objects
assert y is not x
+
+
+def test_resample_axis():
+ # derived fro... | adding a high-dimension resampling test | bmcfee_resampy | train |
bcd8d41048cfd5755459707da1731280a9678861 | diff --git a/lib/kamaze/project/tasks/gem.rb b/lib/kamaze/project/tasks/gem.rb
index <HASH>..<HASH> 100644
--- a/lib/kamaze/project/tasks/gem.rb
+++ b/lib/kamaze/project/tasks/gem.rb
@@ -6,19 +6,16 @@
# This is free software: you are free to change and redistribute it.
# There is NO WARRANTY, to the extent permitted ... | gem (tasks) bugfix + unclutter | SwagDevOps_kamaze-project | train |
4498fd79da2058b83e5b3caa8b7e60223112a245 | diff --git a/shield/utils.py b/shield/utils.py
index <HASH>..<HASH> 100644
--- a/shield/utils.py
+++ b/shield/utils.py
@@ -2,7 +2,7 @@
from __future__ import absolute_import, unicode_literals, division
import operator
from six.moves import map, reduce
-from ._registry import registry, expression
+from ._registry imp... | Fix registration function to use new registry definition | concordusapps_python-shield | train |
e40e07a7997a97f542b4243a73ff4583018f3ad5 | diff --git a/intranet/apps/search/views.py b/intranet/apps/search/views.py
index <HASH>..<HASH> 100644
--- a/intranet/apps/search/views.py
+++ b/intranet/apps/search/views.py
@@ -1,6 +1,7 @@
import elasticsearch
from django.contrib.auth.decorators import login_required
from django.shortcuts import render
+from intra... | Add search by student id (not functional yet) | tjcsl_ion | train |
d0223ef41aa4a0fe44565daa83e31eff3069555b | diff --git a/Kwc/Directories/Item/Directory/FormController.php b/Kwc/Directories/Item/Directory/FormController.php
index <HASH>..<HASH> 100644
--- a/Kwc/Directories/Item/Directory/FormController.php
+++ b/Kwc/Directories/Item/Directory/FormController.php
@@ -42,7 +42,7 @@ class Kwc_Directories_Item_Directory_FormContro... | add missing trlStaticExecute | koala-framework_koala-framework | train |
bdd015c6ef20cd0b952403ad5afe21d1d8864668 | diff --git a/src/Factory/Mail/ConfirmationFactory.php b/src/Factory/Mail/ConfirmationFactory.php
index <HASH>..<HASH> 100644
--- a/src/Factory/Mail/ConfirmationFactory.php
+++ b/src/Factory/Mail/ConfirmationFactory.php
@@ -23,7 +23,7 @@ use Laminas\ServiceManager\Factory\FactoryInterface;
*/
class ConfirmationFactor... | fix(Applications): Confirmation mail factory is incompatible with Factory Interface. | yawik_applications | train |
0aaac84a42f6af11d2c0d70ea378f0bf25d254b7 | diff --git a/lxd/cluster/upgrade.go b/lxd/cluster/upgrade.go
index <HASH>..<HASH> 100644
--- a/lxd/cluster/upgrade.go
+++ b/lxd/cluster/upgrade.go
@@ -65,6 +65,10 @@ func MaybeUpdate(state *state.State) error {
return nil
}
+ if state.Cluster == nil {
+ return fmt.Errorf("Failed checking cluster update, state n... | lxd/cluster/upgrade: Prevents crash if heartbeat occurs before dqlite init | lxc_lxd | train |
a6cc4b3c03601affe7d36b4fde45f6bf48de04d1 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -7,6 +7,9 @@ from setuptools import setup, find_packages
with open('.project_metadata.json') as meta_file:
project_metadata = json.loads(meta_file.read())
+with open('README.rst') as readme_file:
+ long_description ... | Issue #<I> Updated long description | dusktreader_flask-praetorian | train |
2623b636a9667e28ee585b0d757a414b293e8999 | diff --git a/packages/react/src/components/Select/Select.js b/packages/react/src/components/Select/Select.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/Select/Select.js
+++ b/packages/react/src/components/Select/Select.js
@@ -21,20 +21,20 @@ const Select = React.forwardRef(function Select(
{
... | docs(select): add playground story, controls (#<I>)
* docs(select): add playground story, controls
* fix(select): remove unused playground argtypes
* fix(select): ensure string controls work, remove unecessary props from controls | carbon-design-system_carbon-components | train |
5771da7a0b19eeaeac1a87f1d66ea0339f912ea0 | diff --git a/model/ZipExporter.php b/model/ZipExporter.php
index <HASH>..<HASH> 100644
--- a/model/ZipExporter.php
+++ b/model/ZipExporter.php
@@ -136,8 +136,6 @@ class ZipExporter implements tao_models_classes_export_ExportHandler
}
if ($zip->numFiles === 0) {
- $nbFiles = 0;
-
... | Switching to stream instead of plain string | oat-sa_extension-tao-mediamanager | train |
b3f6363c418eb280fb78c216f10cb50b93a330b2 | diff --git a/thermo/utils.py b/thermo/utils.py
index <HASH>..<HASH> 100644
--- a/thermo/utils.py
+++ b/thermo/utils.py
@@ -2139,11 +2139,12 @@ class TDependentProperty(object):
@method.setter
def method(self, method):
if method not in self.all_methods and method != POLY_FIT and method is not None:
- ... | finallize changes to work with tests | CalebBell_thermo | train |
770d43443a7554b0953e1c2f0d272dfb163f7b02 | diff --git a/lib/cabiri.rb b/lib/cabiri.rb
index <HASH>..<HASH> 100644
--- a/lib/cabiri.rb
+++ b/lib/cabiri.rb
@@ -11,6 +11,8 @@ module Cabiri
# - self_pipe: a pipe that is used by the main process to implement a blocking wait for the
# wait_until_finished method. Both endpoints hav... | fix how processes are scheduled to prevent race conditions | vaneyckt_Cabiri | train |
ff0dd280fc383798e41719c88df3661fbb71986a | diff --git a/src/AwsS3V3/AwsS3V3Adapter.php b/src/AwsS3V3/AwsS3V3Adapter.php
index <HASH>..<HASH> 100644
--- a/src/AwsS3V3/AwsS3V3Adapter.php
+++ b/src/AwsS3V3/AwsS3V3Adapter.php
@@ -195,6 +195,7 @@ class AwsS3V3Adapter implements FilesystemAdapter
private function createOptionsFromConfig(Config $config): array
... | [AWS S3] Use globally configured options. | thephpleague_flysystem | train |
b7bc83e1172f26b36f22d54e30c2eb04a6645170 | diff --git a/openpnm/models/geometry/conduit_hydraulic_coefficient.py b/openpnm/models/geometry/conduit_hydraulic_coefficient.py
index <HASH>..<HASH> 100644
--- a/openpnm/models/geometry/conduit_hydraulic_coefficient.py
+++ b/openpnm/models/geometry/conduit_hydraulic_coefficient.py
@@ -2,19 +2,6 @@ import numpy as _np
... | [ci skip] add spheres_and_cylinders_2D to hydraulic coeff | PMEAL_OpenPNM | train |
757d284759549d1efc0e0539643d1ec72c6f2cf4 | diff --git a/opts/opts.go b/opts/opts.go
index <HASH>..<HASH> 100644
--- a/opts/opts.go
+++ b/opts/opts.go
@@ -8,7 +8,7 @@ import (
"strconv"
"strings"
- "github.com/docker/docker/pkg/blkiodev"
+ "github.com/docker/docker/api/types/blkiodev"
"github.com/docker/go-units"
)
diff --git a/opts/throttledevice.go ... | Move blkiodev package to types. | docker_cli | train |
473236ca9f3a0d5435c1c28c0125af919e544047 | diff --git a/easybatch-core/src/main/java/org/easybatch/core/util/Utils.java b/easybatch-core/src/main/java/org/easybatch/core/util/Utils.java
index <HASH>..<HASH> 100644
--- a/easybatch-core/src/main/java/org/easybatch/core/util/Utils.java
+++ b/easybatch-core/src/main/java/org/easybatch/core/util/Utils.java
@@ -25,6 ... | add utility method to check if an Object is a Record | j-easy_easy-batch | train |
42bdbccac2a8f9e63f1fa8f12316db191215e040 | diff --git a/lib/active_merchant/billing/gateways/micropayment.rb b/lib/active_merchant/billing/gateways/micropayment.rb
index <HASH>..<HASH> 100644
--- a/lib/active_merchant/billing/gateways/micropayment.rb
+++ b/lib/active_merchant/billing/gateways/micropayment.rb
@@ -80,7 +80,6 @@ module ActiveMerchant #:nodoc:
... | Micropayment: Cleanup a little | activemerchant_active_merchant | train |
57c276c80aba6cb13a859369f4f194470df594d7 | diff --git a/src/trumbowyg.js b/src/trumbowyg.js
index <HASH>..<HASH> 100644
--- a/src/trumbowyg.js
+++ b/src/trumbowyg.js
@@ -1376,10 +1376,25 @@ Object.defineProperty(jQuery.trumbowyg, 'defaultOptions', {
var t = this,
prefix = t.o.prefix,
fullscreenCssClass = prefix + '... | fix: add a placeholder while fullscreen to keep editor space
fix #<I> | Alex-D_Trumbowyg | train |
a2286a6d6d9aa9c251a272fbe9dbcf77669ce51f | diff --git a/test/action_view_extensions/builder_test.rb b/test/action_view_extensions/builder_test.rb
index <HASH>..<HASH> 100644
--- a/test/action_view_extensions/builder_test.rb
+++ b/test/action_view_extensions/builder_test.rb
@@ -49,8 +49,7 @@ class BuilderTest < ActionView::TestCase
end
test "collection r... | Cleanup user building a little bit | plataformatec_simple_form | train |
13dee96b293c1b60d10035eee2ac7f6f36108a61 | diff --git a/tests/Plugins/Autolink/ParserTest.php b/tests/Plugins/Autolink/ParserTest.php
index <HASH>..<HASH> 100644
--- a/tests/Plugins/Autolink/ParserTest.php
+++ b/tests/Plugins/Autolink/ParserTest.php
@@ -100,6 +100,14 @@ class ParserTest extends Test
'[url=http://example.com]Non-existent URL tag[/url]',
... | Added Autolink test for links in brackets. Turns out it groks them | s9e_TextFormatter | train |
e25d82a03d8a45058e183244edde85f98b815145 | diff --git a/sqlg-postgres-parent/sqlg-postgres-dialect/src/main/java/org/umlg/sqlg/sql/dialect/PostgresDialect.java b/sqlg-postgres-parent/sqlg-postgres-dialect/src/main/java/org/umlg/sqlg/sql/dialect/PostgresDialect.java
index <HASH>..<HASH> 100644
--- a/sqlg-postgres-parent/sqlg-postgres-dialect/src/main/java/org/um... | added more postgis spacial tables to ignore | pietermartin_sqlg | train |
5f36f79b55b1be07f3e363b7e3c3a307ab1fda04 | diff --git a/tests/test_client.py b/tests/test_client.py
index <HASH>..<HASH> 100644
--- a/tests/test_client.py
+++ b/tests/test_client.py
@@ -52,10 +52,16 @@ def test_connect(corenlp_client):
def test_context_manager():
- with corenlp.CoreNLPClient(annotators="tokenize,ssplit") as context_client:
+ with cor... | Add a test for duplicate servers failing, move the context manager test to a different port | stanfordnlp_stanza | train |
d2cc5a048a37e1abc23a50c259cd1fe2e16ada63 | diff --git a/src/Symfony/Bundle/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php b/src/Symfony/Bundle/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Bundle/DoctrineBundle/Command/LoadDataFixturesDoctrineCommand.php
+++ b/src/Symfony/Bundle/DoctrineBund... | [DoctrineBundle] Improving error exceptions thrown when loading data fixtures. | symfony_symfony | train |
bb2f6ae824661b4c65da82001a78a6b5561685ea | diff --git a/definitions/npm/history_v5.x.x/flow_v0.104.x-/history_v5.x.x.js b/definitions/npm/history_v5.x.x/flow_v0.104.x-/history_v5.x.x.js
index <HASH>..<HASH> 100644
--- a/definitions/npm/history_v5.x.x/flow_v0.104.x-/history_v5.x.x.js
+++ b/definitions/npm/history_v5.x.x/flow_v0.104.x-/history_v5.x.x.js
@@ -20,8 ... | [history_v5.x.x] Fix back() and forward() type definitions (#<I>) | flow-typed_flow-typed | train |
6d75c3a4324fcc968ec26c986dcdcb4ec2f8c2ff | diff --git a/test/clientTests.js b/test/clientTests.js
index <HASH>..<HASH> 100644
--- a/test/clientTests.js
+++ b/test/clientTests.js
@@ -1,24 +1,45 @@
var async = require('async');
var util = require('util');
var Client = require('../index.js').Client;
+var Connection = require('../index.js').Connection;
var ... | Client tests: Use a Connection to setup the test keyspace | jorgebay_node-cassandra-cql | train |
f8e0e008cdb32f929050ef8311e293499df1d7b0 | diff --git a/src/connectors/price-ranges/connectPriceRanges.js b/src/connectors/price-ranges/connectPriceRanges.js
index <HASH>..<HASH> 100644
--- a/src/connectors/price-ranges/connectPriceRanges.js
+++ b/src/connectors/price-ranges/connectPriceRanges.js
@@ -158,13 +158,15 @@ export default function connectPriceRanges(... | fix(connectors): prefer wrappers over bind (#<I>)
* fix(connectors): prefer wrappers over bind
Previously we were using bind, which will be applied at each init. This
is ok for one time mount, but since we can mount and unmount dynamically
now, it's a problem.
* chore: fix test for price-range and toggle widgets... | algolia_instantsearch.js | train |
ab2badb8e3e5439a327f1d778ea875148520e355 | diff --git a/lib/components/narrative/line-itin/connected-itinerary-body.js b/lib/components/narrative/line-itin/connected-itinerary-body.js
index <HASH>..<HASH> 100644
--- a/lib/components/narrative/line-itin/connected-itinerary-body.js
+++ b/lib/components/narrative/line-itin/connected-itinerary-body.js
@@ -68,7 +68,... | fix(ItineraryBody): Pass time/date format to TripDetails component. | opentripplanner_otp-react-redux | train |
1fe2c9886f76f51e1e459fe97f2ac360869deb19 | diff --git a/daemons/startstop/simple.py b/daemons/startstop/simple.py
index <HASH>..<HASH> 100644
--- a/daemons/startstop/simple.py
+++ b/daemons/startstop/simple.py
@@ -16,6 +16,11 @@ from ..interfaces import startstop
LOG = logging.getLogger(__name__)
+SUCCESS_MSG = "an integer is required"
+
+if sys.version_in... | Python <I>'s os.kill() throws a TypeError with a different message than older Python versions | kevinconway_daemons | train |
b2423f4cce50689ce0430211869f62470a963fd6 | diff --git a/lib/xclarity_client/xclarity_base.rb b/lib/xclarity_client/xclarity_base.rb
index <HASH>..<HASH> 100644
--- a/lib/xclarity_client/xclarity_base.rb
+++ b/lib/xclarity_client/xclarity_base.rb
@@ -16,7 +16,11 @@ module XClarityClient
def connection_builder(conf, uri)
$lxca_log.info "XClarityClient... | Adjust the connection url to append https://
if a prefix has not been given. If http:// has been added it will not be modified and the connection
should fail gracefully | lenovo_xclarity_client | train |
0481dff83f4a7a83ca1444cda5a9552788cf14e3 | diff --git a/openquake/engine/calculators/hazard/event_based/core.py b/openquake/engine/calculators/hazard/event_based/core.py
index <HASH>..<HASH> 100644
--- a/openquake/engine/calculators/hazard/event_based/core.py
+++ b/openquake/engine/calculators/hazard/event_based/core.py
@@ -163,14 +163,17 @@ def compute_ses_and... | Special weight for characteristic sources and better logging | gem_oq-engine | train |
b2a48efa9ec98275d0689c633b244e8a771da601 | diff --git a/nameko/legacy/consuming.py b/nameko/legacy/consuming.py
index <HASH>..<HASH> 100644
--- a/nameko/legacy/consuming.py
+++ b/nameko/legacy/consuming.py
@@ -38,5 +38,10 @@ def queue_iterator(queue, no_ack=False, timeout=None):
yield msg
except socket.timeout:
if timeout is not None:... | add comment explaining re-raise of socket.timeout as a different error | nameko_nameko | train |
606909cbe53d8b10c7aa7de8d78f686af5f4a498 | diff --git a/go/vt/tabletmanager/after_action.go b/go/vt/tabletmanager/after_action.go
index <HASH>..<HASH> 100644
--- a/go/vt/tabletmanager/after_action.go
+++ b/go/vt/tabletmanager/after_action.go
@@ -141,7 +141,8 @@ func (agent *ActionAgent) loadKeyspaceAndBlacklistRules(tablet *pbt.Tablet, blac
return nil
}
-f... | log reasons for shutting down query service | vitessio_vitess | train |
1efaff8f7f4a87daaff9636a426f22a14ce1574c | diff --git a/changeset/changeset.go b/changeset/changeset.go
index <HASH>..<HASH> 100644
--- a/changeset/changeset.go
+++ b/changeset/changeset.go
@@ -31,3 +31,7 @@ func (changeset *Changeset) Changes() map[string]interface{} {
func (changeset *Changeset) Values() map[string]interface{} {
return changeset.values
}
... | always clone changes, put created_at and updated_at | Fs02_grimoire | train |
393a4d8d567fcaa1ab4334b22a0e80c8a13b76f6 | diff --git a/regions/io/crtf/read.py b/regions/io/crtf/read.py
index <HASH>..<HASH> 100644
--- a/regions/io/crtf/read.py
+++ b/regions/io/crtf/read.py
@@ -67,7 +67,7 @@ def read_crtf(filename, errors='strict'):
raise CRTFRegionParserError('Every CRTF Region must start with "#CRTF" ')
-class CRTFParser:... | explicitly inheriting from object for backward compatibility | astropy_regions | train |
0e053a151d3455132b26151240936a1ca375f224 | diff --git a/pkts-streams/src/main/java/io/pkts/streams/SipStream.java b/pkts-streams/src/main/java/io/pkts/streams/SipStream.java
index <HASH>..<HASH> 100644
--- a/pkts-streams/src/main/java/io/pkts/streams/SipStream.java
+++ b/pkts-streams/src/main/java/io/pkts/streams/SipStream.java
@@ -7,7 +7,7 @@ import io.pkts.pa... | changed to List instead since the packets in a stream is ordered | aboutsip_pkts | train |
1815bd7fbda932933fed604579e955a8c4d7c021 | diff --git a/lark/exceptions.py b/lark/exceptions.py
index <HASH>..<HASH> 100644
--- a/lark/exceptions.py
+++ b/lark/exceptions.py
@@ -97,10 +97,10 @@ class UnexpectedToken(ParseError, UnexpectedInput):
super(UnexpectedToken, self).__init__(message)
class VisitError(LarkError):
- def __init__(self, tree,... | Support for token visitation in internal transformers, as an alternative mechanism for lexer_callbacks | lark-parser_lark | train |
60e794664ae6b31f1552f181131be19febc59d14 | diff --git a/aeron-archive/src/main/java/io/aeron/archive/ArchiveConductor.java b/aeron-archive/src/main/java/io/aeron/archive/ArchiveConductor.java
index <HASH>..<HASH> 100644
--- a/aeron-archive/src/main/java/io/aeron/archive/ArchiveConductor.java
+++ b/aeron-archive/src/main/java/io/aeron/archive/ArchiveConductor.ja... | [Java] Fix lifecycle tracking of Aeron resources in Archive on close. | real-logic_aeron | train |
0ca7e6b0c4450fe6614826a925243f92d19be659 | 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
@@ -443,6 +443,7 @@ class DataFlowKernel(object):
executor = self.executors[executor_label]
except Exception:
logger.exception("Task {... | Better error handling when app 'executors' parameter is wrong (#<I>)
With these changes, exceptions still happen in the same circumstances
as before (when a user supplies an incorrect executors value to an
app definition) but with better explanations: they are reported as the
type being wrong, rather than some late... | Parsl_parsl | train |
0f9411f5f359145abed595f42a011bd8bc680924 | diff --git a/lib/moog.js b/lib/moog.js
index <HASH>..<HASH> 100644
--- a/lib/moog.js
+++ b/lib/moog.js
@@ -134,7 +134,7 @@ module.exports = function(options) {
self.options.sections = self.options.sections || [];
self.options.unparsedSections = self.options.unparsedSections || [];
- const validKeys = [ '... | instantiate was inadvertently left off the valid keys list for modules | apostrophecms_apostrophe | train |
1bf888cb126871f8bb55deae830e19125fbac989 | diff --git a/ldap_sync/management/commands/syncldap.py b/ldap_sync/management/commands/syncldap.py
index <HASH>..<HASH> 100644
--- a/ldap_sync/management/commands/syncldap.py
+++ b/ldap_sync/management/commands/syncldap.py
@@ -19,10 +19,12 @@ class Command(NoArgsCommand):
def handle_noargs(self, **options):
... | Skip user/group sync if the filter is not configured | jbittel_django-ldap-sync | train |
c7f2cd0211fa09cba52b9483f221fa92f421c17c | diff --git a/api/http_lifecycle.go b/api/http_lifecycle.go
index <HASH>..<HASH> 100644
--- a/api/http_lifecycle.go
+++ b/api/http_lifecycle.go
@@ -19,6 +19,9 @@ type HttpLifecycle struct {
root *url.URL
// client is the *http.Client used to execute these requests.
client *http.Client
+ // authenticateRequests sto... | api/http_lifecycle: make internal methods, add an ASK for @sinbad | git-lfs_git-lfs | train |
dfe7a55c1032521c1c3817a10fd2c8e51b8b4cbd | diff --git a/RELEASE.rst b/RELEASE.rst
index <HASH>..<HASH> 100644
--- a/RELEASE.rst
+++ b/RELEASE.rst
@@ -192,6 +192,8 @@ pandas 0.9.0
- Various fixes by upcasting of date -> datetime (#1395)
- Raise better exception when passing multiple functions with the same name,
such as lambdas, to GroupBy.aggregate
+... | BUG: set index name/names in DataFrame.from_records. close #<I> | pandas-dev_pandas | train |
c8be6cc65124773c28c83d3881e468e2c0ddd137 | diff --git a/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySessionTest.java b/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySessionTest.java
index <HASH>..<HASH> 100644
--- a/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySessionTest.java
+++ b/aeron-archiver/src/test/java/io/aeron/archiver/ReplaySe... | [Java] constant should be private | real-logic_aeron | train |
ba554d49c9aa5ecfa6d123e1b3baa3871926d98c | diff --git a/raiden/network/rpc/client.py b/raiden/network/rpc/client.py
index <HASH>..<HASH> 100644
--- a/raiden/network/rpc/client.py
+++ b/raiden/network/rpc/client.py
@@ -252,7 +252,6 @@ class JSONRPCClient:
if self.nonce_last_update > query_time:
# Python's 2.7 time is not monotonic a... | bugfix: nonce queried from server
Raiden must wait until all the sent transactions are registered as
pending, therefor the condition should include the latest used nonce::
nonce <= self.nonce_current_value | raiden-network_raiden | train |
3e9714a932a9e01d43fba89590ffb27a67c9612c | diff --git a/packages/ember-metal/lib/array.js b/packages/ember-metal/lib/array.js
index <HASH>..<HASH> 100644
--- a/packages/ember-metal/lib/array.js
+++ b/packages/ember-metal/lib/array.js
@@ -70,6 +70,12 @@ var arrayIndexOf = isNativeFunc(Array.prototype.indexOf) ? Array.prototype.index
return -1;
};
+/**
+ A... | adding docs for Ember.ArrayPolyfills | emberjs_ember.js | train |
6f15ac85df1ab1e3855c5066ab63ea8832171a93 | diff --git a/extension/rsb/com/src/main/java/org/openbase/jul/extension/rsb/com/RSBRemoteService.java b/extension/rsb/com/src/main/java/org/openbase/jul/extension/rsb/com/RSBRemoteService.java
index <HASH>..<HASH> 100644
--- a/extension/rsb/com/src/main/java/org/openbase/jul/extension/rsb/com/RSBRemoteService.java
+++ ... | made sync task more nice and optimized logging, reset transaction id on reconnect. | openbase_jul | train |
4fce18cfe0248072bd17b222cb33aabdf1f3731f | diff --git a/src/MarkerClusterGroup.js b/src/MarkerClusterGroup.js
index <HASH>..<HASH> 100644
--- a/src/MarkerClusterGroup.js
+++ b/src/MarkerClusterGroup.js
@@ -527,7 +527,7 @@ L.MarkerClusterGroup = L.FeatureGroup.extend({
if (layer._icon && this._map.getBounds().contains(layer.getLatLng())) {
//Layer is visi... | Added missing rounding to map._zoom
and replaced map.getZoom() by map._zoom direct access for consistency. | Leaflet_Leaflet.markercluster | train |
c143a7d30d569ede3d5204378ad66b96de785d1c | diff --git a/src/Models/Traits/SupportsCertificateCheck.php b/src/Models/Traits/SupportsCertificateCheck.php
index <HASH>..<HASH> 100644
--- a/src/Models/Traits/SupportsCertificateCheck.php
+++ b/src/Models/Traits/SupportsCertificateCheck.php
@@ -9,7 +9,6 @@ use Spatie\UptimeMonitor\Events\CertificateCheckFailed;
use ... | Fix: "SSL check fails if an invalid domain is detected" (#<I>)
* Catch any exception on checkCertificate()
* remove unused import
* [OT] tests fail on php <I>/<I> - as mentioned here: <URL> | spatie_laravel-uptime-monitor | train |
b231530f9de127c58c2b010f92fd2c7763cd3b49 | diff --git a/src/geo/cartodb-layer-group-base.js b/src/geo/cartodb-layer-group-base.js
index <HASH>..<HASH> 100644
--- a/src/geo/cartodb-layer-group-base.js
+++ b/src/geo/cartodb-layer-group-base.js
@@ -17,22 +17,14 @@ var CartoDBLayerGroupBase = Backbone.Model.extend({
this.layers = new Backbone.Collection(opti... | Reset internal collection of CartoDB layers when
layers change (to keep them in the right order). | CartoDB_carto.js | train |
b096e548775093ee35e56887a2c641af752e4644 | diff --git a/lib/nuggets/cli.rb b/lib/nuggets/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/nuggets/cli.rb
+++ b/lib/nuggets/cli.rb
@@ -25,10 +25,10 @@
###############################################################################
#++
+require 'safe_yaml/load'
require 'optparse'
-require 'yaml'
-require 'zlib'
re... | lib/nuggets/cli.rb (load_config): Use SafeYAML. | blackwinter_nuggets | train |
52ed790560419874ea3bca7063cc4919624c444e | diff --git a/alerta/webhooks/custom.py b/alerta/webhooks/custom.py
index <HASH>..<HASH> 100644
--- a/alerta/webhooks/custom.py
+++ b/alerta/webhooks/custom.py
@@ -16,7 +16,7 @@ def custom(webhook):
try:
incomingAlert = custom_webhooks.webhooks[webhook].incoming(
query_string=request.args,
- ... | Use 'request.form' method instead of 'request.values' to simplify returned data structure (#<I>) | alerta_alerta | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.