hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
af8574a55aff5653a323360fafa9e7a258ec79b5 | diff --git a/foolbox/attacks/adef_attack.py b/foolbox/attacks/adef_attack.py
index <HASH>..<HASH> 100644
--- a/foolbox/attacks/adef_attack.py
+++ b/foolbox/attacks/adef_attack.py
@@ -191,26 +191,6 @@ class ADefAttack(Attack):
.. [2]_ https://gitlab.math.ethz.ch/tandrig/ADef/tree/master
- Parameters
- ---... | included topk classes for the untargetted attack | bethgelab_foolbox | train |
9c70d6798b64b577f2f5f1094f732a9f0ce7842b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -22,8 +22,8 @@ A highly efficient and modular mail delivery framework for
Python 2.6+ and 3.1+, formerly called TurboMail.""",
author="Alice Bevan-McGregor",
author_email="alice+marrow@gothcandy.com",
- url="",
-... | Added URLs and updated development status to beta. | marrow_mailer | train |
4ca36232c4e9835e688a89d15c184d5ed1404468 | diff --git a/src/Illuminate/Bus/Queueable.php b/src/Illuminate/Bus/Queueable.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Bus/Queueable.php
+++ b/src/Illuminate/Bus/Queueable.php
@@ -21,7 +21,7 @@ trait Queueable
/**
* The number of seconds before the job should be made available.
*
- * @va... | DateTime delay (#<I>) | laravel_framework | train |
6c62e38ceade749ae2e91d0e1475cb5953a7cab3 | diff --git a/tap/tests/test_plugin.py b/tap/tests/test_plugin.py
index <HASH>..<HASH> 100644
--- a/tap/tests/test_plugin.py
+++ b/tap/tests/test_plugin.py
@@ -56,8 +56,8 @@ class TestPlugin(unittest.TestCase):
self.assertTrue(
True, 'Pass because this Python does not support SkipTest.')
... | Tox does not like to mock tap.
Something strange happens when attempting to mock the tap package.
For some reason, it is mistaken as a module. I'm guessing it has
something to do with how nose imports the plugin. I'm not interested
enough to dig at the problem. | python-tap_tappy | train |
3c8dcf8cd66e279603f77b8d8157e74082086e6d | diff --git a/audio.go b/audio.go
index <HASH>..<HASH> 100644
--- a/audio.go
+++ b/audio.go
@@ -2,6 +2,13 @@ package audio
import "math"
+var (
+ // RootA or concert A is the reference frequency for A4.
+ // Modify this package variable if you need to change it to 435 (classical) or
+ // 415 (baroque). Methods refe... | set the root A value in the top package
so it can be changed in a single place. | mattetti_audio | train |
f0e0fa0effc4ae54aff059caeef9efcb2068356f | diff --git a/Otherfiles/notebook_check.py b/Otherfiles/notebook_check.py
index <HASH>..<HASH> 100644
--- a/Otherfiles/notebook_check.py
+++ b/Otherfiles/notebook_check.py
@@ -19,9 +19,9 @@ EXTENSION = ".ipynb"
if __name__ == "__main__":
tprint("PYCM","bulbhead")
tprint("Document","bulbhead")
- ep = Execut... | fix : minor edit in notebook_check script | sepandhaghighi_pycm | train |
c446f7cd30f39f56f2c0fbd290a831f8ee6ed1e8 | diff --git a/test/tests/delegateTest.js b/test/tests/delegateTest.js
index <HASH>..<HASH> 100644
--- a/test/tests/delegateTest.js
+++ b/test/tests/delegateTest.js
@@ -12,6 +12,7 @@ setupHelper.setUp = function() {
'<div id="container1">'
+ '<div id="delegate-test-clickable" class="delegate-test-clickable"><... | Added test to assert that custom events do work correctly (fixes #<I>) | Financial-Times_ftdomdelegate | train |
cedee4ce37db25d42d5f8946bee3ba3c52b2fa10 | diff --git a/txaws/testing/s3.py b/txaws/testing/s3.py
index <HASH>..<HASH> 100644
--- a/txaws/testing/s3.py
+++ b/txaws/testing/s3.py
@@ -109,7 +109,7 @@ class _MemoryS3Client(MemoryClient):
prefix = b""
if marker is None:
- keys_after = u""
+ keys_after = b""
els... | Consistently consider marker to be bytes | twisted_txaws | train |
ac48e583e9de55371faecec428b1c0ef56a1db57 | diff --git a/nosedjango/nosedjango.py b/nosedjango/nosedjango.py
index <HASH>..<HASH> 100644
--- a/nosedjango/nosedjango.py
+++ b/nosedjango/nosedjango.py
@@ -469,6 +469,9 @@ class SetupCacheTesting():
settings.CACHE_BACKEND = 'locmem://'
settings.DISABLE_QUERYSET_CACHE = True
+ from django.core.cac... | Made the cache testing plugin clear the cache between tests. | nosedjango_nosedjango | train |
ef3eefaeb41c7c3d71b8789b69c227cf02561653 | diff --git a/src/Illuminate/Hashing/BcryptHasher.php b/src/Illuminate/Hashing/BcryptHasher.php
index <HASH>..<HASH> 100755
--- a/src/Illuminate/Hashing/BcryptHasher.php
+++ b/src/Illuminate/Hashing/BcryptHasher.php
@@ -62,14 +62,16 @@ class BcryptHasher implements HasherContract {
}
/**
- * Set the default crypt... | Cleaning up the setRounds method. | laravel_framework | train |
4a2a24c1bbdb96aa3d9f74e31d2fb53ef7d6421a | diff --git a/rpc/rpc_test.go b/rpc/rpc_test.go
index <HASH>..<HASH> 100644
--- a/rpc/rpc_test.go
+++ b/rpc/rpc_test.go
@@ -308,7 +308,7 @@ func (c customMethodCaller) Call(objId string, arg reflect.Value) (reflect.Value
if reflect.TypeOf(obj) != c.expectedType {
logger.Errorf("got the wrong type back, expected %s ... | respond to Dimiter's review comments on formatting issues. | juju_juju | train |
2da4aaeb05d5849f915fa18ba8657bed786e4ef3 | diff --git a/Tests/Extension/TwigExtensionTest.php b/Tests/Extension/TwigExtensionTest.php
index <HASH>..<HASH> 100644
--- a/Tests/Extension/TwigExtensionTest.php
+++ b/Tests/Extension/TwigExtensionTest.php
@@ -49,7 +49,7 @@ class TwigExtensionTest extends ExtensionTestCase
public function testTwigDiscoveryGetsMap... | Move ui download and caching to the standard cache directory | LastCallMedia_Mannequin-Twig | train |
c736cd9a97741a0e8be359f32135499a3b71342b | diff --git a/pages/lib/pages/marketable_routes.rb b/pages/lib/pages/marketable_routes.rb
index <HASH>..<HASH> 100644
--- a/pages/lib/pages/marketable_routes.rb
+++ b/pages/lib/pages/marketable_routes.rb
@@ -1,6 +1,6 @@
# Determines whether marketable urls are in use.
if ::Refinery::Page.use_marketable_urls?
- ::Refi... | [marketable routes] Fix marketable routes issue really really this time??? Hell I don't know...works for me for now. | refinery_refinerycms | train |
f88c2150dd4095e8d53290daf250cfb2c778c041 | diff --git a/yarpcerrors/codes.go b/yarpcerrors/codes.go
index <HASH>..<HASH> 100644
--- a/yarpcerrors/codes.go
+++ b/yarpcerrors/codes.go
@@ -185,6 +185,9 @@ var (
// the most specific error code that applies. For example, prefer
// `OutOfRange` over `FailedPrecondition` if both codes apply.
// Similarly prefer `No... | Add documentation to yarpcerrors.Code to note that the Codes match gRPC status codes (#<I>) | yarpc_yarpc-go | train |
055909dbbc9db57305953a0cede09bde4bcf2243 | diff --git a/aframe.js b/aframe.js
index <HASH>..<HASH> 100644
--- a/aframe.js
+++ b/aframe.js
@@ -207,12 +207,10 @@ var aFrame = function(){
*
* @class
* @private
- * @todo determine if this can be done with an associative Array better
*/
var cache = {
/**
- * Array of responses
- * @private
+ ... | Completed the cache{} / client{} refactoring. Exposing an object from cache.get() with headers and response. | avoidwork_abaaso | train |
4e6ddb47375b3ed215d0dde8656f05ab2cd8bbe7 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -1,13 +1,13 @@
'use strict';
+const Path = require('path');
const Objection = require('objection');
const Knex = require('knex');
-const Path = require('path');
const Hoek = require('hoek');
const Joi = ... | For model, compute jsonAttributes and allow proper validation of patch()es. Closes #4, closes #5 | hapipal_schwifty | train |
826c884c50da2e45e1a1a3803c8f275a41e5ac32 | diff --git a/potsdb.py b/potsdb.py
index <HASH>..<HASH> 100644
--- a/potsdb.py
+++ b/potsdb.py
@@ -16,7 +16,7 @@ _valid_metric_chars = set(string.ascii_letters + string.digits + '-_./')
def _mksocket(host, port, q, done, parent_thread):
"""Returns a tcp socket to (host/port). Retries forever every 5 seconds if conne... | added check for parent thread == alive to _mksocket | orionvm_potsdb | train |
1534d31a045962469a75222c1cb71a237f7bf96a | diff --git a/public/js/plugins.js b/public/js/plugins.js
index <HASH>..<HASH> 100755
--- a/public/js/plugins.js
+++ b/public/js/plugins.js
@@ -9,6 +9,17 @@ window.log = function(){
(function(b){function c(){}for(var d="assert,count,debug,dir,dirxml,error,exception,group,groupCollapsed,groupEnd,info,log,markTimeline,pr... | Added function that doesn't seem to exist in IE, and Ace was complaining about (trimRight) | dmfrancisco_escrito | train |
3420f696442d8764a3d28f5144505cee9e5dd7ed | diff --git a/lib/boxr/events.rb b/lib/boxr/events.rb
index <HASH>..<HASH> 100644
--- a/lib/boxr/events.rb
+++ b/lib/boxr/events.rb
@@ -1,14 +1,14 @@
module Boxr
class Client
- def user_events(stream_position, stream_type: :all, limit: 100)
+ def user_events(stream_position, stream_type: :all, limit: 800)
... | updated defaults to better reflect best practices of event limit and refresh period | cburnette_boxr | train |
b257d11a26a8f423836392e51d9998cb1026be10 | diff --git a/app/models/agents/post_agent.rb b/app/models/agents/post_agent.rb
index <HASH>..<HASH> 100644
--- a/app/models/agents/post_agent.rb
+++ b/app/models/agents/post_agent.rb
@@ -70,9 +70,9 @@ module Agents
incoming_events.each do |event|
outgoing = interpolated(event.payload)['payload'].presenc... | allow the PostAgent to accept interpolation in post_url | huginn_huginn | train |
944da5b98a381199bf5feda1718a053323dd1084 | diff --git a/_pytest/assertion/rewrite.py b/_pytest/assertion/rewrite.py
index <HASH>..<HASH> 100644
--- a/_pytest/assertion/rewrite.py
+++ b/_pytest/assertion/rewrite.py
@@ -163,9 +163,9 @@ class AssertionRewritingHook(object):
self.session = session
del session
else:... | Avoid rewrite warning for inline runs
When running pytest inline/inprocess we plugins have already been
imported and re-writen, so avoid the warning. | pytest-dev_pytest | train |
2a44360735f6f4af0d6c65dfaaece9fec3004341 | diff --git a/scripts/audit.js b/scripts/audit.js
index <HASH>..<HASH> 100644
--- a/scripts/audit.js
+++ b/scripts/audit.js
@@ -26,7 +26,8 @@ if (args[0] === 'clean') {
const { error: yarnInstallError, status: yarnInstallStatus } = spawnSync('yarn', ['install', '--force'], {
cwd: process.cwd(),
- stdio: 'in... | use shell:true in scripts to make it working on win | jsreport_jsreport | train |
677e63aa5562fc2db5223d94744d1f884506f45e | diff --git a/dist/axios.js b/dist/axios.js
index <HASH>..<HASH> 100644
--- a/dist/axios.js
+++ b/dist/axios.js
@@ -1,3 +1,4 @@
+/* axios v0.7.0 | (c) 2015 by Matt Zabriskie */
(function webpackUniversalModuleDefinition(root, factory) {
if(typeof exports === 'object' && typeof module === 'object')
module.exports =... | Update axios.js | axios_axios | train |
7a0e54fb62bf513d34148f6c1f3e087fdebad4e4 | diff --git a/spec/plsql/procedure_spec.rb b/spec/plsql/procedure_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/plsql/procedure_spec.rb
+++ b/spec/plsql/procedure_spec.rb
@@ -2253,6 +2253,15 @@ describe "PLS_INTEGER/SIMPLE_INTEGER should be nullable" do
end
describe '#get_argument_metadata' do
+ before(:all) do
+ ... | Fixed failing tests - not connected. | rsim_ruby-plsql | train |
f634d1a0ca378033cc6714d08725e1cccd164242 | diff --git a/lib/slaw/extract/extractor.rb b/lib/slaw/extract/extractor.rb
index <HASH>..<HASH> 100644
--- a/lib/slaw/extract/extractor.rb
+++ b/lib/slaw/extract/extractor.rb
@@ -1,4 +1,5 @@
require 'open3'
+require 'tempfile'
module Slaw
module Extract
@@ -46,14 +47,23 @@ module Slaw
#
# @return [... | Use gs to strip passwords from pdf | longhotsummer_slaw | train |
fcd28d9f29365e6c84280d7bec1cb0d438b57531 | diff --git a/implementations/micrometer-registry-statsd/src/main/java/io/micrometer/statsd/internal/BufferingFlux.java b/implementations/micrometer-registry-statsd/src/main/java/io/micrometer/statsd/internal/BufferingFlux.java
index <HASH>..<HASH> 100644
--- a/implementations/micrometer-registry-statsd/src/main/java/io... | Fix BufferingFlux to properly flush buffered values after maxMillisecondsBetweenEmits (#<I>)
* Added a test that shows an issue with the BufferingFlux when metrics are updated at a shorter interval than the maxMillisecondsBetweenEmits | micrometer-metrics_micrometer | train |
435c4dc1d778245ee412a9909e671308469fa109 | diff --git a/tests/SchemaTest.php b/tests/SchemaTest.php
index <HASH>..<HASH> 100644
--- a/tests/SchemaTest.php
+++ b/tests/SchemaTest.php
@@ -68,7 +68,7 @@ class SchemaTest extends TestCase
public function testValidateInvalidResources()
{
$this->assertValidationErrors(
- 'error loading de... | fix expected error messages to be platform independent | frictionlessdata_tableschema-php | train |
7ab504463ce881ff13cd4b3094692a2d438d5985 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -27,7 +27,7 @@ Or install it yourself as:
In the metrics world there are two types of things: Gauges and Counters.
Gauges are time senstive and represent something at a specific point in
time. Counters keep track of thi... | Use #to_f for better resolution | ahawkins_harness | train |
ef56d0a5351c86b987b3f729e562732890abe423 | diff --git a/image.go b/image.go
index <HASH>..<HASH> 100644
--- a/image.go
+++ b/image.go
@@ -496,7 +496,7 @@ func (i *Image) ColorModel() color.Model {
//
// At can't be called outside the main loop (ebiten.Run's updating function) starts (as of version 1.4.0-alpha).
func (i *Image) At(x, y int) color.Color {
- if... | Refactoring: isRunning -> isImageAvailable | hajimehoshi_ebiten | train |
816ef4e4dc5518acab9e97e799a86a3a960a4582 | diff --git a/cli.js b/cli.js
index <HASH>..<HASH> 100644
--- a/cli.js
+++ b/cli.js
@@ -14,7 +14,7 @@ lx.on('bulbonoff', function(b) {
});
lx.on('bulb', function(b) {
- console.log('New bulb found: ' + b.name);
+ console.log('New bulb found: ' + b.name + " : " + b.addr.toString("hex"));
});
lx.on('gateway', func... | Force protocol 0x<I> for now | magicmonkey_lifxjs | train |
2b23af1bd0d96c8309885a275dd586aa728c92fb | diff --git a/butterknife/src/main/java/butterknife/internal/TargetClass.java b/butterknife/src/main/java/butterknife/internal/TargetClass.java
index <HASH>..<HASH> 100644
--- a/butterknife/src/main/java/butterknife/internal/TargetClass.java
+++ b/butterknife/src/main/java/butterknife/internal/TargetClass.java
@@ -110,7... | Do no emit redudant cast to view inside of method click handler. | JakeWharton_butterknife | train |
74633211b463a8a816463e71064c286ea281f74f | diff --git a/lib/sync.js b/lib/sync.js
index <HASH>..<HASH> 100644
--- a/lib/sync.js
+++ b/lib/sync.js
@@ -92,9 +92,11 @@ Function.prototype.async = function(obj)
return fn.apply(obj, args);
}, cb)
}
- // Call synchronously
+ // Call synchronously in new fiber
... | call async() function in new Fiber even if it is already in a Fiber (blocking issue) | ybogdanov_node-sync | train |
608cdb078174627b29bd1e17ece42433a72afd18 | diff --git a/src/sd_plot.py b/src/sd_plot.py
index <HASH>..<HASH> 100644
--- a/src/sd_plot.py
+++ b/src/sd_plot.py
@@ -11,7 +11,7 @@ import crtomo.grid as CRGrid
import matplotlib.pyplot as plt
import matplotlib
import math
-import edf.main.units as units
+import reda.main.units as units
import crtomo.mpl as mpl_st... | fix some imports from edf to reda | geophysics-ubonn_crtomo_tools | train |
17ac25f6124a232e697dc60feb2cb440181e11fa | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -5,11 +5,14 @@ import sys
import codecs
import platform
from glob import glob
+import warnings
+import exceptions
from setuptools import setup
from setuptools import Extension
from setuptools.command.build_ext import b... | [setup] inform user about feature being turned on/off (currently only numpy) | jpype-project_jpype | train |
f11f2fe2ab7e8149813b887543b84946da7c617f | diff --git a/gulpfile.babel.js b/gulpfile.babel.js
index <HASH>..<HASH> 100644
--- a/gulpfile.babel.js
+++ b/gulpfile.babel.js
@@ -93,7 +93,7 @@ gulp.task('copy:.htaccess', () =>
gulp.task('copy:index.html', (done) =>
sri.hash('node_modules/jquery/dist/jquery.min.js', (err, hash) => {
- if (err) throw er... | Fixed JSHint errors (#<I>) | h5bp_html5-boilerplate | train |
865807b155f981ad590c01690af69ed86d051155 | diff --git a/bundles/org.eclipse.orion.client.ui/web/css/images.css b/bundles/org.eclipse.orion.client.ui/web/css/images.css
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.ui/web/css/images.css
+++ b/bundles/org.eclipse.orion.client.ui/web/css/images.css
@@ -18,6 +18,8 @@
vertical-align: middle;... | Bug <I> - [Navigator]Expanding a folder needs progressing indication. | eclipse_orion.client | train |
223ec28965661e36da68476bf1cb50d5719e34a2 | diff --git a/Commands/ConfigTrait.php b/Commands/ConfigTrait.php
index <HASH>..<HASH> 100644
--- a/Commands/ConfigTrait.php
+++ b/Commands/ConfigTrait.php
@@ -26,7 +26,7 @@ trait ConfigTrait
->addOption('bootstrap', null, InputOption::VALUE_OPTIONAL, 'The class that will be used to bootstrap your applicati... | Added functionality back where it was possible to have ppm.json inside dependency.
Fixed #<I> | php-pm_php-pm | train |
fddaec1c624c057e6d34ca5dd5bf1598bbe724d4 | diff --git a/mzidplus.py b/mzidplus.py
index <HASH>..<HASH> 100755
--- a/mzidplus.py
+++ b/mzidplus.py
@@ -46,13 +46,12 @@ parser.add_argument('-c', dest='command', type=str,
'PSMs. Needs to be passed a lookup db with --dbfile,\n'
'which has to contain quant information, and\n'... | Some changes in mzidplus executable | glormph_msstitch | train |
5af1fa99c567f6747e38897334dfee360ffa9a31 | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -1,5 +1,5 @@
const path = require('path')
-const UglifyJsPlugin = require("uglifyjs-webpack-plugin")
+const UglifyJsPlugin = require('uglifyjs-webpack-plugin')
var NPM_RUN = process.env.... | style(webpack.config): use single quotes | clappr_dash-shaka-playback | train |
ee2dd78b3dcd0560c8aecbb5ab51ac5860846d20 | diff --git a/modules/backend/widgets/Lists.php b/modules/backend/widgets/Lists.php
index <HASH>..<HASH> 100644
--- a/modules/backend/widgets/Lists.php
+++ b/modules/backend/widgets/Lists.php
@@ -921,6 +921,16 @@ class Lists extends WidgetBase
}
/**
+ * Common mistake, relation is not a valid list column... | Exception handling for type: relation
It would appear many plugins incorrectly use type: relation as a list column, when this does nothing. Previously it would fallback to the text type, now that invalid types fail hard, this adds a softer landing by spamming the trace log instead.
Refs #<I> | octobercms_october | train |
ed4acc940a229186288eaf201caad3ab6c47475d | diff --git a/carmen/cli.py b/carmen/cli.py
index <HASH>..<HASH> 100644
--- a/carmen/cli.py
+++ b/carmen/cli.py
@@ -62,7 +62,7 @@ def main():
resolvers.append(ProfileResolver())
resolver = LocationResolver(resolvers)
for line in args.locations_file:
- resolver.add_location(Location(**json.loads... | Set Location.known to True where appropriate | mdredze_carmen-python | train |
466cfa2df4d03dfd3af303679fb42f488680ba0f | diff --git a/bugwarrior/db.py b/bugwarrior/db.py
index <HASH>..<HASH> 100644
--- a/bugwarrior/db.py
+++ b/bugwarrior/db.py
@@ -242,6 +242,52 @@ def find_local_uuid(tw, keys, issue, legacy_matching=True):
)
+def merge_annotations(remote_issue, local_task):
+ """ Merge annotations from the local task into the... | Break out and fix "merge_annotations" | ralphbean_bugwarrior | train |
6264f51ba157479b0aa22b47bc670379ed385e36 | diff --git a/providers/peerconnection.unprivileged.js b/providers/peerconnection.unprivileged.js
index <HASH>..<HASH> 100644
--- a/providers/peerconnection.unprivileged.js
+++ b/providers/peerconnection.unprivileged.js
@@ -125,7 +125,10 @@ PeerConnection_unprivileged.prototype.makeAnswer = function() {
PeerConnectio... | messages weren't always getting serialized in transit | freedomjs_freedom | train |
09aacf7a80949a5c941dfafe8174d1c561e3e036 | diff --git a/lib/rspec/benchmark/timing_matcher.rb b/lib/rspec/benchmark/timing_matcher.rb
index <HASH>..<HASH> 100644
--- a/lib/rspec/benchmark/timing_matcher.rb
+++ b/lib/rspec/benchmark/timing_matcher.rb
@@ -24,7 +24,7 @@ module RSpec
return false unless block.is_a?(Proc)
@bench = ::Benchmark::... | Remove error confidence from timing matcher. | piotrmurach_rspec-benchmark | train |
2484443aa84c0e0e2e88a401cefc8062f54a0374 | diff --git a/activerecord/lib/active_record/core.rb b/activerecord/lib/active_record/core.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/core.rb
+++ b/activerecord/lib/active_record/core.rb
@@ -350,9 +350,7 @@ module ActiveRecord
# Initialize an empty model object from +attributes+.
# +at... | Bring ActiveRecord::Core's API document back [ci skip]
If exist `:nodoc:` before method define, it affects all subsequent
method definitions. | rails_rails | train |
c770578d4eac6fb403f0bdc5ef95cb0caac07ed4 | diff --git a/build/rpm.rb b/build/rpm.rb
index <HASH>..<HASH> 100644
--- a/build/rpm.rb
+++ b/build/rpm.rb
@@ -58,7 +58,7 @@ namespace :package do
test_setup
create_tarball(@verbosity)
# Add a single -v for some feedback
- noisy_system(*(%w{./rpm/release/build.rb --single} + @build_verbosity))
+ noisy_system... | Change the staging directory to "pkg" for the package:rpm rake task. | phusion_passenger | train |
310b4a69d9defeb91f141583b3a8fcccc7301daa | diff --git a/spec/dummy/app/controllers/application_controller.rb b/spec/dummy/app/controllers/application_controller.rb
index <HASH>..<HASH> 100644
--- a/spec/dummy/app/controllers/application_controller.rb
+++ b/spec/dummy/app/controllers/application_controller.rb
@@ -2,16 +2,4 @@ class ApplicationController < Action... | Rescues removed from dummy. | rjurado01_rails_jwt_auth | train |
5283ec938a5f2663126061e3f43bc85c0ded3af1 | diff --git a/pkg/option/config.go b/pkg/option/config.go
index <HASH>..<HASH> 100644
--- a/pkg/option/config.go
+++ b/pkg/option/config.go
@@ -1230,7 +1230,7 @@ type DaemonConfig struct {
RunDir string // Cilium runtime directory
NAT46Prefix *net.IPNet // NAT46 IPv6 Prefix
Devices ... | datapath: Introduce DirectRoutingDeviceRequired helper
The Direct Routing Device is currently used by BPF Host
Routing and BPF Node Port. With both features, we don't
need it for tunneling mode. The DirectRoutingDeviceRequired
helper function checks the above conditions and returns if
the Direct Routing Device is requ... | cilium_cilium | train |
96ba8cd595ac47706416013f42730f77f04bf2cc | diff --git a/eureka-client/src/main/java/com/netflix/discovery/DiscoveryClient.java b/eureka-client/src/main/java/com/netflix/discovery/DiscoveryClient.java
index <HASH>..<HASH> 100644
--- a/eureka-client/src/main/java/com/netflix/discovery/DiscoveryClient.java
+++ b/eureka-client/src/main/java/com/netflix/discovery/Di... | Thread pools in eureka-client create non-daemon threads | Netflix_eureka | train |
6397a7f5e82d24b0929aee1a5ecc4b7de5c78e96 | diff --git a/views/js/controller/creator/main.js b/views/js/controller/creator/main.js
index <HASH>..<HASH> 100755
--- a/views/js/controller/creator/main.js
+++ b/views/js/controller/creator/main.js
@@ -212,8 +212,10 @@ define([
//"post-render it" to initialize the widget
... | render xinclude in all composing elements of the item | oat-sa_extension-tao-itemqti | train |
46c1378f345c8290fa34fc7f756ef6fafa8e2aa8 | diff --git a/lucid/modelzoo/aligned_activations.py b/lucid/modelzoo/aligned_activations.py
index <HASH>..<HASH> 100644
--- a/lucid/modelzoo/aligned_activations.py
+++ b/lucid/modelzoo/aligned_activations.py
@@ -32,6 +32,5 @@ def get_aligned_activations(layer):
PATH_TEMPLATE.format(sanitize(layer.model_class.na... | Remove stray print statement O_o | tensorflow_lucid | train |
d2ce5a01a47debb9739e287c8a4ca43d77c2dad6 | diff --git a/lib/mpv/mpv.js b/lib/mpv/mpv.js
index <HASH>..<HASH> 100644
--- a/lib/mpv/mpv.js
+++ b/lib/mpv/mpv.js
@@ -87,62 +87,78 @@ mpv.prototype = Object.assign({
})
);
}
+ else{
+ // socket to observe the command
+ const observeSocket = net.Socket();
+ observeSocket.connect({path: this.op... | Fixed a bug with load() and append()
If the mode was set to 'append-play' and the track was not the only one in the playlist the promise did not resolve. This is fixed | 00SteinsGate00_Node-MPV | train |
1ea5f990e54d8feee7f2e821f070765145eafd71 | diff --git a/src/audio_metadata/formats/mp3.py b/src/audio_metadata/formats/mp3.py
index <HASH>..<HASH> 100644
--- a/src/audio_metadata/formats/mp3.py
+++ b/src/audio_metadata/formats/mp3.py
@@ -508,7 +508,7 @@ class MP3StreamInfo(StreamInfo):
if frame._xing:
break
data.seek(frame._start + frame._... | Catch bitstruct.error when trying to load MPEG frames
Prevents failures when trying to detect false positives. | thebigmunch_audio-metadata | train |
90eeb8902853e46417596e7c5aedf2d7b4f26232 | diff --git a/cyipopt/utils.py b/cyipopt/utils.py
index <HASH>..<HASH> 100644
--- a/cyipopt/utils.py
+++ b/cyipopt/utils.py
@@ -10,9 +10,6 @@ from functools import wraps
from ipopt_wrapper import Problem
-__all__ = ["problem"]
-
-
def deprecated_warning(new_name):
"""Decorator that issues a FutureWarning for ... | Remove __all__ as empty | matthias-k_cyipopt | train |
a425ca934f00b3064fc58ae90e0214ed905c33d5 | diff --git a/shared/util_linux.go b/shared/util_linux.go
index <HASH>..<HASH> 100644
--- a/shared/util_linux.go
+++ b/shared/util_linux.go
@@ -453,7 +453,7 @@ func Major(dev uint64) int {
}
func Minor(dev uint64) int {
- return int((dev & 0xff) | ((dev >> 12) & (0xfff00)))
+ return int((dev & 0xff) | ((dev >> 12) &... | Take all <I> bits of minor device number | lxc_lxd | train |
6a2f22f10d79b035627491611b501dd110b4b70f | diff --git a/lib/flipper/spec/shared_adapter_specs.rb b/lib/flipper/spec/shared_adapter_specs.rb
index <HASH>..<HASH> 100644
--- a/lib/flipper/spec/shared_adapter_specs.rb
+++ b/lib/flipper/spec/shared_adapter_specs.rb
@@ -259,12 +259,9 @@ RSpec.shared_examples_for 'a flipper adapter' do
expect(subject.add(flipper... | Minor tweaks to shared specs/tests | jnunemaker_flipper | train |
0b8659f448843b9b421d3bff56dc40c369988628 | diff --git a/src/main/java/org/fit/layout/cssbox/BoxNode.java b/src/main/java/org/fit/layout/cssbox/BoxNode.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/fit/layout/cssbox/BoxNode.java
+++ b/src/main/java/org/fit/layout/cssbox/BoxNode.java
@@ -1039,6 +1039,16 @@ public class BoxNode extends DefaultTreeNode<o... | New substring bounds API in Box | FitLayout_layout-cssbox | train |
c2696bdcec45e4f5d0d53848e9d91582da6485dc | diff --git a/lib/synvert/core/rewriter.rb b/lib/synvert/core/rewriter.rb
index <HASH>..<HASH> 100644
--- a/lib/synvert/core/rewriter.rb
+++ b/lib/synvert/core/rewriter.rb
@@ -163,7 +163,7 @@ module Synvert::Core
# Process the rewriter.
# It will call the block.
def process
- instance_eval &@block
+ ... | Auto corrected by following Lint Ruby Lint/AmbiguousOperator | xinminlabs_synvert-core | train |
67c1d79c5c2b56ac48758340b7c79eec5983e274 | diff --git a/extensions/tags/js/admin/src/components/EditTagModal.js b/extensions/tags/js/admin/src/components/EditTagModal.js
index <HASH>..<HASH> 100644
--- a/extensions/tags/js/admin/src/components/EditTagModal.js
+++ b/extensions/tags/js/admin/src/components/EditTagModal.js
@@ -9,8 +9,8 @@ import tagLabel from 'fla... | Initialise component state in init() instead of constructor | flarum_core | train |
e2cdbf1ec74576f3a3dd88149050871a66b1d8f4 | diff --git a/sqlite.js b/sqlite.js
index <HASH>..<HASH> 100644
--- a/sqlite.js
+++ b/sqlite.js
@@ -57,8 +57,10 @@ DatabaseSync.prototype.query = function (sql, bindings, callback) {
function SQLTransactionSync(db, txCallback, errCallback, successCallback) {
this.database = db;
this.executeSql = function(sqlState... | Better conformance to HTML5 for transaction() | mapbox_node-sqlite3 | train |
e98c4b910440d3bf9028686fa86b41710aca924c | diff --git a/test/com/google/javascript/jscomp/ControlStructureCheckTest.java b/test/com/google/javascript/jscomp/ControlStructureCheckTest.java
index <HASH>..<HASH> 100644
--- a/test/com/google/javascript/jscomp/ControlStructureCheckTest.java
+++ b/test/com/google/javascript/jscomp/ControlStructureCheckTest.java
@@ -1... | Verify some tests that have been fixed by rhino changes.
Fixes issue <I>
Fixes issue <I>
R=johnlenz
DELTA=<I> (<I> added, 0 deleted, 0 changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> | google_closure-compiler | train |
af7956e1903ccabcf93a2c0b4a8babd92509f8dc | diff --git a/src/main/java/net/dv8tion/jda/internal/requests/restaction/MessageActionImpl.java b/src/main/java/net/dv8tion/jda/internal/requests/restaction/MessageActionImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/dv8tion/jda/internal/requests/restaction/MessageActionImpl.java
+++ b/src/main/java/net/d... | Attempt a fix for overriding messages | DV8FromTheWorld_JDA | train |
5458e5e0d6aa0bc4b71cafcb529fcb24839b198f | diff --git a/lib/web/web.go b/lib/web/web.go
index <HASH>..<HASH> 100644
--- a/lib/web/web.go
+++ b/lib/web/web.go
@@ -1045,22 +1045,18 @@ func (m *Handler) siteSessionStreamGet(w http.ResponseWriter, r *http.Request, p
var writer io.Writer = w
for _, acceptedEnc := range strings.Split(r.Header.Get("Accept-Encoding... | Properly set content-type for gzipped responses
Fixes #<I> | gravitational_teleport | train |
1b8650a027769263780d2ada4e783d906a246434 | diff --git a/lib/travis/cli/command.rb b/lib/travis/cli/command.rb
index <HASH>..<HASH> 100644
--- a/lib/travis/cli/command.rb
+++ b/lib/travis/cli/command.rb
@@ -149,8 +149,8 @@ module Travis
data = data.gsub(/<\[\[/, '<%=').gsub(/\]\]>/, '%>')
end
- def template(file)
- File.read... | remove unicode, to much hassle | travis-ci_travis.rb | train |
19a56d55a5e24430820ed552dacb76c2e9a7a68a | diff --git a/xunit/crypto.py b/xunit/crypto.py
index <HASH>..<HASH> 100644
--- a/xunit/crypto.py
+++ b/xunit/crypto.py
@@ -13,7 +13,7 @@ import unittest2
# Python patterns, scenario unit-testing
from python_patterns.unittest.scenario import ScenarioMeta, ScenarioTest
-from bitcoin.crypto import merkle
+from bitcoin... | Switch to import-all, since we need to make sure that the API endpoints are are using are in fact caught by a wildcard import. | maaku_python-bitcoin | train |
f70d518dd8afd2780a2bc7655c13f452f01c14e6 | diff --git a/spec/unit/tracker/duration_tracker_spec.rb b/spec/unit/tracker/duration_tracker_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/unit/tracker/duration_tracker_spec.rb
+++ b/spec/unit/tracker/duration_tracker_spec.rb
@@ -107,7 +107,7 @@ describe RequestLogAnalyzer::Tracker::Duration do
it "should generat... | Fixed #to_yaml_objects specs to use == comparison instead of eql? | wvanbergen_request-log-analyzer | train |
9de9b88212cc5340eba580c9f4c06c80fc2f0705 | diff --git a/lib/tic-tac-toe/game.rb b/lib/tic-tac-toe/game.rb
index <HASH>..<HASH> 100755
--- a/lib/tic-tac-toe/game.rb
+++ b/lib/tic-tac-toe/game.rb
@@ -15,9 +15,7 @@ module TicTacToe
def run
setup_game
- loop do
- main_game_loop
- end
+ main_game_loop
if @game_type.play_a... | Passing tests. Fixed main_game_loop | ekosz_Erics-Tic-Tac-Toe | train |
d8f425962cfc1402bbaca5bf7adba4437963b896 | diff --git a/audio/audio.go b/audio/audio.go
index <HASH>..<HASH> 100644
--- a/audio/audio.go
+++ b/audio/audio.go
@@ -287,12 +287,18 @@ func BytesReadSeekCloser(b []uint8) ReadSeekCloser {
return &bytesReadSeekCloser{reader: bytes.NewReader(b)}
}
+type readingResult struct {
+ data []uint8
+ err error
+}
+
// P... | audio: Bug fix: players' buffer can be empty when seeking before proceeding (#<I>) | hajimehoshi_ebiten | train |
1003fb4869a60d09322f7abf00b5846d8e41f6c8 | diff --git a/Worker.php b/Worker.php
index <HASH>..<HASH> 100644
--- a/Worker.php
+++ b/Worker.php
@@ -811,7 +811,7 @@ class Worker
*
* @throws Exception
*/
- protected static function resetStd()
+ public static function resetStd()
{
if (!self::$daemonize) {
return; | Allow Log rotation by making the redirection public | walkor_Workerman | train |
9cda57fa372a0a596fff0301672fe6c7215720e0 | diff --git a/tests/base.py b/tests/base.py
index <HASH>..<HASH> 100644
--- a/tests/base.py
+++ b/tests/base.py
@@ -14,9 +14,6 @@ from django_registration import signals
from django_registration.forms import RegistrationForm
-User = get_user_model()
-
-
# django-registration needs to test that signals are sent at
... | Clean up another stray User reference in tests.base. | ubernostrum_django-registration | train |
32b119b77fe06eeaaaac84d06960384623763619 | diff --git a/elasticsearch_dsl/document.py b/elasticsearch_dsl/document.py
index <HASH>..<HASH> 100644
--- a/elasticsearch_dsl/document.py
+++ b/elasticsearch_dsl/document.py
@@ -120,6 +120,13 @@ class DocType(ObjectBase):
return getattr(self.meta, name[1:])
return super(DocType, self).__getattr__... | Fix repr for DocType and Result | elastic_elasticsearch-dsl-py | train |
4d703c51dc8c7de76fbd2b2f9f00d53e44a58418 | diff --git a/cdm/src/main/java/ucar/nc2/Group.java b/cdm/src/main/java/ucar/nc2/Group.java
index <HASH>..<HASH> 100644
--- a/cdm/src/main/java/ucar/nc2/Group.java
+++ b/cdm/src/main/java/ucar/nc2/Group.java
@@ -506,7 +506,7 @@ public class Group extends CDMNode {
if (immutable) throw new IllegalStateException("Can... | allow GRIB index files to be in different directory than data | Unidata_thredds | train |
3b2a729f0bb1723f50ad2ffc819bbcd18626130e | diff --git a/lib/machinist.rb b/lib/machinist.rb
index <HASH>..<HASH> 100644
--- a/lib/machinist.rb
+++ b/lib/machinist.rb
@@ -17,7 +17,7 @@ module Machinist
lathe.instance_eval(&named_blueprint) if named_blueprint
klass = object.class
while klass
- lathe.instance_eval(&klass.bluepri... | Made sure ActiveRecord#make works even if machinist/object isn't loaded. | notahat_machinist | train |
fcb5ea431f6cf04a88e5ced4d1f2b0242e306d33 | diff --git a/tcontainer/bytepool.go b/tcontainer/bytepool.go
index <HASH>..<HASH> 100644
--- a/tcontainer/bytepool.go
+++ b/tcontainer/bytepool.go
@@ -99,18 +99,17 @@ func (b *BytePool) Get(size int) []byte {
return []byte{}
}
- slab, normalized := b.getSlab(size)
+ slab := b.getSlab(size)
if slab == nil {
... | BytePool now preallocates to move the cost of runtime.SetFinalizer to the GC | trivago_tgo | train |
74ae5b4f8b1ba773a4add7fc479760376ba890cf | diff --git a/CHANGES.txt b/CHANGES.txt
index <HASH>..<HASH> 100644
--- a/CHANGES.txt
+++ b/CHANGES.txt
@@ -1,3 +1,7 @@
+pypet 0.1b.10
+
+* New `v_crun_` property simply returning ``'run_ALL'`` if ``v_crun`` is ``None``.
+
pypet 0.1b.9
* BUG FIX: Fixed backwards compatibility
diff --git a/pypet/naturalnaming.py ... | undid changes; but new ``v_crun_`` property. | SmokinCaterpillar_pypet | train |
9ca17c022258c874d4eaf1c99a08a0354b8acf0e | diff --git a/symfit/core/fit.py b/symfit/core/fit.py
index <HASH>..<HASH> 100644
--- a/symfit/core/fit.py
+++ b/symfit/core/fit.py
@@ -1422,10 +1422,9 @@ class Fit(HasCovarianceMatrix):
:return: FitResults instance
"""
minimizer_ans = self.minimizer.execute(**minimize_options)
- cov_ma... | Processed @pckroon's last suggestions. | tBuLi_symfit | train |
93e37f8ba24f65c497637225c99739e465822408 | diff --git a/lib/index.js b/lib/index.js
index <HASH>..<HASH> 100644
--- a/lib/index.js
+++ b/lib/index.js
@@ -168,33 +168,10 @@ HtmlDiffer.prototype.isEqual = function (html1, html2, options) {
return (diff.length === 1 && !diff[0].added && !diff[0].removed);
};
-/**
- * @deprecated
- * @param {String} html1
-... | Get rid of deprecated method 'bemDiff' | bem_html-differ | train |
47093d53724fdad3b1b9f569a8a11877b6a4cf40 | diff --git a/package.json b/package.json
index <HASH>..<HASH> 100644
--- a/package.json
+++ b/package.json
@@ -42,7 +42,6 @@
},
"dependencies": {
"abort-controller": "^3.0.0",
- "async-iterator-all": "^1.0.0",
"async-iterator-to-pull-stream": "^1.3.0",
"bignumber.js": "^9.0.0",
"bl": "^4.0.... | feat: expose import concurrency controls (#<I>) | ipfs_js-ipfs-http-client | train |
b07b34208675055e90a74de55e468101e265f89e | diff --git a/js/src/util/sanitizer.js b/js/src/util/sanitizer.js
index <HASH>..<HASH> 100644
--- a/js/src/util/sanitizer.js
+++ b/js/src/util/sanitizer.js
@@ -37,7 +37,7 @@ const allowedAttribute = (attr, allowedAttributeList) => {
if (allowedAttributeList.indexOf(attrName) !== -1) {
if (uriAttrs.indexOf(attr... | Partially Revert "Use regex.test() when we want to check for a Boolean. (#<I>)" (#<I>)
This partially reverts commit 9c2b9ac<I>d4abb5ec8b<I>de<I>d5f3a. | twbs_bootstrap | train |
26a7c5cccb8466a7e0e644ba6f9e0b258c023519 | diff --git a/App.php b/App.php
index <HASH>..<HASH> 100644
--- a/App.php
+++ b/App.php
@@ -475,8 +475,6 @@ class App implements IEventSubject, LoggerAwareInterface {
public function run($environment = 'production') {
$this->environment = $environment;
- // Error handling
-
// Throw exceptions inst... | Set time zone before enabling file logger. | jivoo_core | train |
3f639562941d06dffa85ca1841ab10fb07fd684e | diff --git a/src/Transaction.php b/src/Transaction.php
index <HASH>..<HASH> 100644
--- a/src/Transaction.php
+++ b/src/Transaction.php
@@ -8,63 +8,6 @@ use pxgamer\Arionum\Transaction\Version;
final class Transaction
{
- /**
- * @deprecated
- *
- * @see Version::STANDARD
- *
- * The transacti... | Remove deprecated Transaction class constants | pxgamer_arionum-php | train |
72812572d32a3ab6e790826a28e660f73e73199d | diff --git a/shared/actions/chat.js b/shared/actions/chat.js
index <HASH>..<HASH> 100644
--- a/shared/actions/chat.js
+++ b/shared/actions/chat.js
@@ -884,7 +884,7 @@ function * _loadInbox (action: ?LoadInbox): SagaGenerator<any, any> {
chatInboxConversation: takeFromChannelMap(loadInboxChanMap, 'chat.1.chatUi.c... | Bump inbox timeout to <I>s | keybase_client | train |
dde93d104963116541e70f2ecb4cb070a94fae02 | diff --git a/pkg/cmd/util/editor/editor.go b/pkg/cmd/util/editor/editor.go
index <HASH>..<HASH> 100644
--- a/pkg/cmd/util/editor/editor.go
+++ b/pkg/cmd/util/editor/editor.go
@@ -97,7 +97,7 @@ func (e Editor) Launch(path string) error {
cmd.Stderr = os.Stderr
cmd.Stdin = os.Stdin
glog.V(5).Infof("Opening file wit... | Check /dev/tty if STDIN is not a tty
Should allow piping input streams to edit. | openshift_origin | train |
88e874da0fbc5e14318296fc6443ae4161a1e5cb | diff --git a/modules/DOMHistory.js b/modules/DOMHistory.js
index <HASH>..<HASH> 100644
--- a/modules/DOMHistory.js
+++ b/modules/DOMHistory.js
@@ -24,9 +24,13 @@ class DOMHistory extends History {
this.scrollHistory = {};
}
+ getScrollKey(path, query, key) {
+ return key || this.makePath(path, query);
+ ... | Use location.key for storing scroll position when available | taion_rrtr | train |
8f45eae1b308f2ae9bf062643c79a366b19f680e | diff --git a/host/fei4/register.py b/host/fei4/register.py
index <HASH>..<HASH> 100644
--- a/host/fei4/register.py
+++ b/host/fei4/register.py
@@ -4,6 +4,9 @@ import re
import os
import numpy as np
import itertools
+from collections import OrderedDict
+import hashlib
+import copy
from utils.utils import st... | ENH: added possibility to set configuration restore points | SiLab-Bonn_pyBAR | train |
a1a8de1336271cf92a30a59c610fe792da66a2c5 | diff --git a/sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/tests/xunit/CxxXunitSensor.java b/sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/tests/xunit/CxxXunitSensor.java
index <HASH>..<HASH> 100644
--- a/sonar-cxx-plugin/src/main/java/org/sonar/plugins/cxx/tests/xunit/CxxXunitSensor.java
+++ b/sonar-cxx-... | ignore measures for tests that can be saved because they have been added already | SonarOpenCommunity_sonar-cxx | train |
7ed4b0ec498c33461d68071ebceaab1096c35c77 | diff --git a/AdvancedHTMLParser/Tags.py b/AdvancedHTMLParser/Tags.py
index <HASH>..<HASH> 100644
--- a/AdvancedHTMLParser/Tags.py
+++ b/AdvancedHTMLParser/Tags.py
@@ -76,6 +76,15 @@ class AdvancedTag(object):
except AttributeError:
raise AttributeError('Cannot set property %s. Use setAttribute?' %... | Implement cloneNode method, to return a copy of the node but not children (and not copy of uid). Also, implement childElementCount property of a tag, as found in JS DOM. | kata198_AdvancedHTMLParser | train |
d39a33f9210fca9ceddddbdd10dd122654763400 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -231,6 +231,8 @@ func newClient(
) (*client, error) {
if tlsConf == nil {
tlsConf = &tls.Config{}
+ } else {
+ tlsConf = tlsConf.Clone()
}
if tlsConf.ServerName == "" {
sni := host | clone TLS conf in newClient (#<I>)
Fixes #<I> | lucas-clemente_quic-go | train |
a1824cb1de627976a54141ba38025a37cdd5b2bd | diff --git a/library/src/main/java/hotchemi/android/rate/AppRate.java b/library/src/main/java/hotchemi/android/rate/AppRate.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/hotchemi/android/rate/AppRate.java
+++ b/library/src/main/java/hotchemi/android/rate/AppRate.java
@@ -204,6 +204,11 @@ public class App... | Added dialog custom theme
Based on pending PR @swellner | hotchemi_Android-Rate | train |
eeab2b0aad39cff0de1deccf6cdaba2ad04c9a24 | diff --git a/src/Raygun4php/RaygunClient.php b/src/Raygun4php/RaygunClient.php
index <HASH>..<HASH> 100644
--- a/src/Raygun4php/RaygunClient.php
+++ b/src/Raygun4php/RaygunClient.php
@@ -176,11 +176,13 @@ class RaygunClient
/**
* Stores the current user of the calling application. This will be added to any m... | udpate set user comment to include parameters | MindscapeHQ_raygun4php | train |
e654d8768cfeaee21e7046964502dfcdf1093dbc | diff --git a/src/Place/ReadModel/Relations/Doctrine/DBALRepository.php b/src/Place/ReadModel/Relations/Doctrine/DBALRepository.php
index <HASH>..<HASH> 100644
--- a/src/Place/ReadModel/Relations/Doctrine/DBALRepository.php
+++ b/src/Place/ReadModel/Relations/Doctrine/DBALRepository.php
@@ -54,24 +54,29 @@ class DBALRep... | III-<I> Implemented DBAL repository for relations of places. | cultuurnet_udb3-php | train |
02f98e08450bd7f0bba61de6d7b75cd6969388e8 | diff --git a/counterfeiter_test.go b/counterfeiter_test.go
index <HASH>..<HASH> 100644
--- a/counterfeiter_test.go
+++ b/counterfeiter_test.go
@@ -83,6 +83,15 @@ var _ = Describe("A Fake generated by counterfeiter", func() {
Expect(arg1).To(ConsistOf(byte(1)))
})
+ It("records a nil slice argument as a nil", fun... | Record a nil slice as nil (fixes #<I>) | maxbrunsfeld_counterfeiter | train |
25e822253e3953408a715f7055c2f15d40ca6e0d | diff --git a/qiskit/wrapper/jupyter/jupyter_magics.py b/qiskit/wrapper/jupyter/jupyter_magics.py
index <HASH>..<HASH> 100644
--- a/qiskit/wrapper/jupyter/jupyter_magics.py
+++ b/qiskit/wrapper/jupyter/jupyter_magics.py
@@ -81,6 +81,7 @@ class StatusMagic(Magics):
job_status = job_var.status()
... | immediately set job status value (#<I>) | Qiskit_qiskit-terra | train |
fea31914767042d0d42800ab82dc29b3e76a6a2b | diff --git a/addon/hint/javascript-hint.js b/addon/hint/javascript-hint.js
index <HASH>..<HASH> 100644
--- a/addon/hint/javascript-hint.js
+++ b/addon/hint/javascript-hint.js
@@ -108,7 +108,8 @@
if (obj.type && obj.type.indexOf("variable") === 0) {
if (options && options.additionalContext)
ba... | [javascript-hint addon] Support an option that disables use of the current global scope | codemirror_CodeMirror | train |
6be70860f87ddfbb097c9a9af1991fed8d087b42 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -53,6 +53,11 @@ if sys.version_info[0:2] == (2, 6):
import os_setup
from os_setup import shell, shell_check, import_setuptools
+if sys.version_info[0] == 2:
+ from xmlrpclib import Fault
+else:
+ from xmlrpc.client i... | Added retry in setup script for pypi xmlrpc failures. | pywbem_pywbem | train |
f1b1a43a68af3ff5abf3bd617f42bf3f0ba4c036 | diff --git a/contrib/agent/src/test/java/io/opencensus/contrib/agent/bootstrap/ContextManagerTest.java b/contrib/agent/src/test/java/io/opencensus/contrib/agent/bootstrap/ContextManagerTest.java
index <HASH>..<HASH> 100644
--- a/contrib/agent/src/test/java/io/opencensus/contrib/agent/bootstrap/ContextManagerTest.java
+... | Also test double initialization. While there, moved the initialization of ContextManager to the static initializer, otherwise the execution of test methods would matter. | census-instrumentation_opencensus-java | train |
b3350159b02909257962c166014604f71a3669d1 | diff --git a/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java b/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
index <HASH>..<HASH> 100644
--- a/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
+++ b/src/main/org/codehaus/groovy/runtime/DefaultGroovyMethods.java
@@ -9684,7 +9... | GROOVY-<I>: DGM: missing eachLine(File, String, Closure) with charset (patch by Merlyn Albery-Speyer)
git-svn-id: <URL> | groovy_groovy-core | train |
04aca5667d7ed5e8acba857a800eb294464fd501 | diff --git a/lib/Doctrine/ODM/MongoDB/Persisters/DocumentPersister.php b/lib/Doctrine/ODM/MongoDB/Persisters/DocumentPersister.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/ODM/MongoDB/Persisters/DocumentPersister.php
+++ b/lib/Doctrine/ODM/MongoDB/Persisters/DocumentPersister.php
@@ -1042,6 +1042,10 @@ class Docu... | Fix issue with nested reference queries not being prepared properly. | Briareos_mongodb-odm | train |
46a6385a33a6b9163c0637384b233815467bfdc1 | diff --git a/Swat/javascript/swat-disclosure.js b/Swat/javascript/swat-disclosure.js
index <HASH>..<HASH> 100644
--- a/Swat/javascript/swat-disclosure.js
+++ b/Swat/javascript/swat-disclosure.js
@@ -8,7 +8,7 @@ function toggleDisclosureWidget(id) {
img.alt = 'open';
} else {
div.className = 'swat-disclosure-con... | Updated SwatDisclosure javascript for renamed open triangle graphic.
svn commit r<I> | silverorange_swat | train |
ad6d945991392a575a0218e708813c98cceea065 | diff --git a/js/liqui.js b/js/liqui.js
index <HASH>..<HASH> 100644
--- a/js/liqui.js
+++ b/js/liqui.js
@@ -291,11 +291,13 @@ module.exports = class liqui extends Exchange {
symbol = market['symbol'];
let amount = trade['amount'];
let type = 'market';
+ let takerOrMaker = 'taker';
... | explicit flow to liqui fees #<I> | ccxt_ccxt | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.