hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
6bedda20f8b5698381608a0cb3723ead3b53f438 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -31,12 +31,15 @@ Currently, the supported hierarchy types are:
- county
- dependency
- disputed
+- [empire](https://www.youtube.com/watch?v=-bzWSJG93P8)
- localadmin
- locality
- macrocounty
- macrohood
- macroregi... | added support for continent, empire, ocean, marinearea | pelias_whosonfirst | train |
4ca68581a697b6288f329284dd40e49ffe7e8d47 | diff --git a/pyimgur/__init__.py b/pyimgur/__init__.py
index <HASH>..<HASH> 100644
--- a/pyimgur/__init__.py
+++ b/pyimgur/__init__.py
@@ -303,6 +303,8 @@ class Comment(Basic_object):
:ivar ups: The total number of likes (upvotes) the comment has received.
:ivar vote: The currently logged in users vote on the... | Note that Comment with id=0 should maybe be None | Damgaard_PyImgur | train |
2d272b09d5767a7e6e970e2f1dab5390645ba2b5 | diff --git a/uproot/tree.py b/uproot/tree.py
index <HASH>..<HASH> 100644
--- a/uproot/tree.py
+++ b/uproot/tree.py
@@ -1628,14 +1628,18 @@ def daskarrays(path, treepath, branches=None, chunks=None, outputtype=dict, limi
def daskframe(path, treepath, branches=None, chunks=None, limitbytes=1024**2, cache=None, basketc... | Dask DataFrame works, along with Dask Arrays; should merge | scikit-hep_uproot | train |
0549515eaf825b4935361e3e9122272ce7400585 | diff --git a/traces/timeseries.py b/traces/timeseries.py
index <HASH>..<HASH> 100644
--- a/traces/timeseries.py
+++ b/traces/timeseries.py
@@ -146,6 +146,10 @@ class TimeSeries(object):
"""Returns the last (time, value) pair of the time series."""
return self.get_by_index(-1)
+ def first(self):
+... | added first() method, to close #<I> | datascopeanalytics_traces | train |
4c6efcd1fcc2844ebceb790d47f782fbf318a01c | diff --git a/graylog2-server/src/main/java/org/graylog2/migrations/V20211221144300_GeoIpResolverConfigMigration.java b/graylog2-server/src/main/java/org/graylog2/migrations/V20211221144300_GeoIpResolverConfigMigration.java
index <HASH>..<HASH> 100644
--- a/graylog2-server/src/main/java/org/graylog2/migrations/V20211221... | Updated DB migration V<I>_GeoIpResolverConfigMigration to set default vendor after having renamed field in separate update. | Graylog2_graylog2-server | train |
12fe914161d6df2530a4e518d65c19c45718ea34 | diff --git a/lib/mwlib/src/MW/Session/Typo3.php b/lib/mwlib/src/MW/Session/Typo3.php
index <HASH>..<HASH> 100644
--- a/lib/mwlib/src/MW/Session/Typo3.php
+++ b/lib/mwlib/src/MW/Session/Typo3.php
@@ -32,15 +32,6 @@ class MW_Session_Typo3 implements MW_Session_Interface
/**
- * Stores the date into the Typo3 sessi... | Removes call to store the TYPO3 session in destructor as it leads to fatal errors | Arcavias_arcavias-core | train |
88212e6cfca9907e06daaaab52a2b5e566ca0b91 | diff --git a/big.go b/big.go
index <HASH>..<HASH> 100644
--- a/big.go
+++ b/big.go
@@ -629,7 +629,7 @@ func (x *Big) Format(s fmt.State, c rune) {
} else {
// %f's precision means "number of digits after the radix"
if x.exp > 0 {
- f.prec += x.Precision()
+ f.prec += (x.exp + x.Precision())
} else ... | format: fix precision when exponent > 0 (#<I>)
Previously we would take only precision without also considering the
exponent, meaning you would have scenarios like <I> being formatted with
`%<I>f` as just `<I>` as `x.exp` would be 2, and `x.Precision()` would be 1. | ericlagergren_decimal | train |
fb17e85fec8fab8f8059b2243b840a5dfc8ebfc5 | diff --git a/lib/flapjack/data/notification.rb b/lib/flapjack/data/notification.rb
index <HASH>..<HASH> 100644
--- a/lib/flapjack/data/notification.rb
+++ b/lib/flapjack/data/notification.rb
@@ -206,20 +206,23 @@ module Flapjack
cleaned = contact.clean_alerting_checks_for_media(media)
logger.d... | don't do rollup on pagerduty | flapjack_flapjack | train |
de57e8d7b8b870eeab1194a6c3b775eb97c3399a | diff --git a/gandi/cli/modules/iaas.py b/gandi/cli/modules/iaas.py
index <HASH>..<HASH> 100644
--- a/gandi/cli/modules/iaas.py
+++ b/gandi/cli/modules/iaas.py
@@ -1,6 +1,7 @@
""" VM commands module. """
import math
+import socket
import time
from gandi.cli.core.base import GandiModule
@@ -257,7 +258,7 @@ class ... | Test sshd connectivity to VM before trying to ssh
Replace the actual sleep delay with a real connectivity test | Gandi_gandi.cli | train |
792e9f06f967869c27c561d3d8a90ee6726fb744 | diff --git a/lib/ScriptFileStorage.js b/lib/ScriptFileStorage.js
index <HASH>..<HASH> 100644
--- a/lib/ScriptFileStorage.js
+++ b/lib/ScriptFileStorage.js
@@ -58,7 +58,7 @@ $class.save = function(path, content, callback) {
$class.load = function(path, callback) {
fs.readFile(
path,
- { encoding: 'utf-8' },
... | ScriptFileStorage: fix fs.readFile usage on <I>
Pass the fs.readFile encoding as a string instead in an options object.
The options object was introduced by Node <I> and is not available in
Node <I>. When called with the options object, Node <I> calls the
callback with a Buffer instead of a string, which causes type ... | node-inspector_node-inspector | train |
e902f6b91d08e66353983b21cdcc06af57649cf6 | diff --git a/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeElementMembers.java b/spring-boot-tools/spring-boot-configuration-processor/src/main/java/org/springframework/boot/configurationprocessor/TypeElementMembers.java
index <HASH>..<HASH> 1006... | Fix annotation processor builder setter detection
Update TypeElementMembers to correctly detect builder style setters.
The previous logic could fail because of the crazy way that TypeMirror
implements its equals() method.
Fixes gh-<I>
See gh-<I> | spring-projects_spring-boot | train |
185d0f1a232e7e3254cbf0b6e1cc4add88083ba7 | diff --git a/backtrader/cerebro.py b/backtrader/cerebro.py
index <HASH>..<HASH> 100644
--- a/backtrader/cerebro.py
+++ b/backtrader/cerebro.py
@@ -24,6 +24,7 @@ from __future__ import (absolute_import, division, print_function,
import collections
import itertools
import multiprocessing
+import threading
from .uti... | add runstop implemenation and remove original runnext | backtrader_backtrader | train |
0db54d5423b5c1c2cfa110e7d17499a7e52bda05 | diff --git a/tests/resources/test_jwt.py b/tests/resources/test_jwt.py
index <HASH>..<HASH> 100644
--- a/tests/resources/test_jwt.py
+++ b/tests/resources/test_jwt.py
@@ -58,4 +58,3 @@ class AccessTokenTest(PlivoResourceTestCase):
token.add_voice_grants(True, True)
self.assertEqual(True, token.grants[... | test_jwt: remove jwt string comparison
fails in py<I> due to different order of keys in claim dict | plivo_plivo-python | train |
a16162ffa0e68ee6370b175999c27b2d4bc52e3b | diff --git a/openapi_core/unmarshalling/schemas/factories.py b/openapi_core/unmarshalling/schemas/factories.py
index <HASH>..<HASH> 100644
--- a/openapi_core/unmarshalling/schemas/factories.py
+++ b/openapi_core/unmarshalling/schemas/factories.py
@@ -1,4 +1,4 @@
-from copy import deepcopy
+from copy import copy
import... | Format checker deepcopy to shallowcopy | p1c2u_openapi-core | train |
54b736dbdf9fb75ccbb921bcc4ece3ab4d85ab23 | diff --git a/associations/associations_for_struct.go b/associations/associations_for_struct.go
index <HASH>..<HASH> 100644
--- a/associations/associations_for_struct.go
+++ b/associations/associations_for_struct.go
@@ -3,14 +3,18 @@ package associations
import (
"fmt"
"reflect"
+ "regexp"
"strings"
"github.c... | add format validation for eager fields passed into AssociationsForStruct function | gobuffalo_pop | train |
97054254bdf9b33693603ea7ebc2007bf1622e51 | diff --git a/pygccxml/declarations/smart_pointer_traits.py b/pygccxml/declarations/smart_pointer_traits.py
index <HASH>..<HASH> 100644
--- a/pygccxml/declarations/smart_pointer_traits.py
+++ b/pygccxml/declarations/smart_pointer_traits.py
@@ -7,6 +7,7 @@ from . import templates
from . import type_traits
from . import... | Fix wrong call logic in internal_type_traits
Fixes:
Instance of 'declaration_xxx_traits' has no 'class_traits' member (no-member)
Note that we still do not have a test for that part of the code, but we should
as pyplusplus is using it. | gccxml_pygccxml | train |
62db1d2631d599f59714fd2d350605a95a3a6acb | diff --git a/lib/cukesalad/cucumber_steps.rb b/lib/cukesalad/cucumber_steps.rb
index <HASH>..<HASH> 100644
--- a/lib/cukesalad/cucumber_steps.rb
+++ b/lib/cukesalad/cucumber_steps.rb
@@ -15,7 +15,7 @@ Given /^(?:I am|you are) a ([a-zA-Z ]+)$/ do |role|
@actor = CukeSalad::Actor.new(role)
end
-When /^(?:I|you) (?:... | Tweaked "When I attempt to" step to allow task names with digits in | RiverGlide_CukeSalad | train |
109bd6f8688b78609299af8c44828399328fa6ff | diff --git a/plugins/autolinker/prism-autolinker.js b/plugins/autolinker/prism-autolinker.js
index <HASH>..<HASH> 100644
--- a/plugins/autolinker/prism-autolinker.js
+++ b/plugins/autolinker/prism-autolinker.js
@@ -7,7 +7,7 @@ if (
return;
}
-var url = /\b([a-z]{3,7}:\/\/|tel:)[\w\-+%~/.:#=?&]+/,
+var url = /\... | Autolinker Plugin: Allow more chars in query string and hash to match more URLs. Fix #<I> | PrismJS_prism | train |
f4611a9acee10947e69c807efff5053008f7e95a | diff --git a/client/moonridge-angular-mock.js b/client/moonridge-angular-mock.js
index <HASH>..<HASH> 100644
--- a/client/moonridge-angular-mock.js
+++ b/client/moonridge-angular-mock.js
@@ -34,7 +34,21 @@ angular.module('Moonridge').factory('MoonridgeMock', function ($q, $log, QueryCh
return new QueryChainable(m... | moonridge mock for unit tests better api where whole query object is available as second argument | capaj_Moonridge | train |
6965812d79de73191c17ba2d726927ef75a04bb1 | diff --git a/cmd/strelaypoolsrv/main.go b/cmd/strelaypoolsrv/main.go
index <HASH>..<HASH> 100644
--- a/cmd/strelaypoolsrv/main.go
+++ b/cmd/strelaypoolsrv/main.go
@@ -25,6 +25,7 @@ import (
type relay struct {
URL string `json:"url"`
+ uri *url.URL
}
func (r relay) String() string {
@@ -80,7 +81,7 @@ func main... | Relays are matched by ip:port pairs | syncthing_syncthing | train |
423261819c1b6e45e9b619799890077a6f5f0736 | diff --git a/pygubu/builder/tkstdwidgets.py b/pygubu/builder/tkstdwidgets.py
index <HASH>..<HASH> 100644
--- a/pygubu/builder/tkstdwidgets.py
+++ b/pygubu/builder/tkstdwidgets.py
@@ -87,6 +87,7 @@ class TKFrame(BuilderObject):
class_ = tk.Frame
container = True
properties = OPTIONS_STANDARD + OPTIONS_SPE... | Fix tk.Spinbox builder. | alejandroautalan_pygubu | train |
643fc1e0670eaa9e4a332a3a87805b03f68da74c | diff --git a/doc/source/whatsnew/v0.21.0.txt b/doc/source/whatsnew/v0.21.0.txt
index <HASH>..<HASH> 100644
--- a/doc/source/whatsnew/v0.21.0.txt
+++ b/doc/source/whatsnew/v0.21.0.txt
@@ -363,7 +363,7 @@ Additionally, DataFrames with datetime columns that were parsed by :func:`read_s
Consistency of Range Functions
^^^... | DOC: Fixes after #<I> (#<I>) | pandas-dev_pandas | train |
841f204ca658478ffeda496ed6229c1af84ea1b1 | diff --git a/application/controllers/admin/bestitamazonpay4oxid_init.php b/application/controllers/admin/bestitamazonpay4oxid_init.php
index <HASH>..<HASH> 100755
--- a/application/controllers/admin/bestitamazonpay4oxid_init.php
+++ b/application/controllers/admin/bestitamazonpay4oxid_init.php
@@ -289,6 +289,23 @@ clas... | Fix losing config settings on deactivate and activate | bestit_amazon-pay-oxid | train |
985a4172deb3da1ce25827a1db8377fd83908661 | diff --git a/src/event-bus.js b/src/event-bus.js
index <HASH>..<HASH> 100644
--- a/src/event-bus.js
+++ b/src/event-bus.js
@@ -5,7 +5,7 @@ const $safe = require('./util/typeguard')
let isSocketErrorHandled = false
class CQEventBus {
- constructor () {
+ constructor (cqbot) {
// eventType-to-handlers mapping
... | Fix response not working due to error 'this' reference | momocow_node-cq-websocket | train |
041426463114f0e52768c38de29f5bc011c24d02 | diff --git a/cdm/src/main/java/ucar/nc2/ncml/Aggregation.java b/cdm/src/main/java/ucar/nc2/ncml/Aggregation.java
index <HASH>..<HASH> 100644
--- a/cdm/src/main/java/ucar/nc2/ncml/Aggregation.java
+++ b/cdm/src/main/java/ucar/nc2/ncml/Aggregation.java
@@ -882,6 +882,12 @@ public abstract class Aggregation implements uca... | More fixes for ucar.nc2.TestAll on TeamCity. | Unidata_thredds | train |
da966b2f50e7c6f6e477ad1f6609bfaec890abbb | diff --git a/server/ctest.js b/server/ctest.js
index <HASH>..<HASH> 100644
--- a/server/ctest.js
+++ b/server/ctest.js
@@ -44,9 +44,14 @@ function testSendKeyAndCompare(test, elementId, key, expected, description){
};
function testSendClickAndCompare(test, elementId, expected, description){
+ sendClick(elemen... | "Test bool with options" | codenautas_typed-controls | train |
2d708bca0d3272c251b8a8f0592fbf4d5f5b0c6d | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -58,6 +58,9 @@ module.exports = function(kbox) {
})
.then(function(answers) {
return pantheon.auth(answers.username, answers.password);
+ })
+ .tap(function(session) {
+ return pantheon.... | Added call to setSession from auth integration method. | kalabox_kalabox-app-pantheon | train |
2e0fdc212e0ade0b95338c58139aa688ad8d2458 | diff --git a/classes/Boom/Controller/Cms/Templates.php b/classes/Boom/Controller/Cms/Templates.php
index <HASH>..<HASH> 100644
--- a/classes/Boom/Controller/Cms/Templates.php
+++ b/classes/Boom/Controller/Cms/Templates.php
@@ -165,13 +165,14 @@ class Boom_Controller_Cms_Templates extends Boom_Controller
$existing = ... | Mninor refactoring of template deletion | boomcms_boom-core | train |
3bda64c4cad34d6dbeb3f4c1a82380c0c4b377ae | diff --git a/lib/utils.js b/lib/utils.js
index <HASH>..<HASH> 100644
--- a/lib/utils.js
+++ b/lib/utils.js
@@ -17,10 +17,6 @@ const OPTIONS_KEYS = [
];
const utils = (module.exports = {
- isAuthKey: (key) => {
- return typeof key == 'string' && /^(?:[a-z]{2}_)?[A-z0-9]{32}$/.test(key);
- },
-
isOptionsHash:... | Interpret any string in options as an API Key instead of using a regex (#<I>)
* Interpret any string in options as an API Key instead of using a regex
* Remove isAuthKey entirely | stripe_stripe-node | train |
84708476250f2479b6e92afa063541db9e8a1c8c | diff --git a/trace/zipkin_tracereporter.go b/trace/zipkin_tracereporter.go
index <HASH>..<HASH> 100644
--- a/trace/zipkin_tracereporter.go
+++ b/trace/zipkin_tracereporter.go
@@ -41,22 +41,31 @@ const (
// ZipkinTraceReporter is a trace reporter that submits trace spans in to zipkin trace server.
type ZipkinTraceRe... | Fall back to tchannel.ListenIP if source IP is 0 | uber_tchannel-go | train |
81f3d7a76c95c3a95e40a8568e954f8e76a483e7 | diff --git a/cohort/edit_form.php b/cohort/edit_form.php
index <HASH>..<HASH> 100644
--- a/cohort/edit_form.php
+++ b/cohort/edit_form.php
@@ -49,7 +49,7 @@ class cohort_edit_form extends moodleform {
$mform->addElement('select', 'contextid', get_string('context', 'role'), $options);
$mform->addElem... | MDL-<I> fix invalid idnumber field type in cohort form | moodle_moodle | train |
8e6077aa7f957cc21290b02fce34bdc91aad7609 | diff --git a/pycbc/waveform/spa_tmplt_cpu.py b/pycbc/waveform/spa_tmplt_cpu.py
index <HASH>..<HASH> 100644
--- a/pycbc/waveform/spa_tmplt_cpu.py
+++ b/pycbc/waveform/spa_tmplt_cpu.py
@@ -68,7 +68,7 @@ def spa_tmplt_engine(htilde, kmin, phase_order, delta_f, piM, pfaN,
pfa6, pfl6, pfa7, v0, amp... | small performance improvement for tmplt generation | gwastro_pycbc | train |
14e53938de268a32e48460c52cc6be639c99b4aa | diff --git a/lxd/container_lxc.go b/lxd/container_lxc.go
index <HASH>..<HASH> 100644
--- a/lxd/container_lxc.go
+++ b/lxd/container_lxc.go
@@ -7650,19 +7650,26 @@ func (c *containerLXC) fillNetworkDevice(name string, m types.Device) (types.Dev
}
// Update the database
- err = query.Retry(func() error { retu... | lxd/containers: Improve hwaddr retry logic | lxc_lxd | train |
ce97c13330da70d3aad9567d5d8d2557cf9fe15e | diff --git a/state/modelgeneration.go b/state/modelgeneration.go
index <HASH>..<HASH> 100644
--- a/state/modelgeneration.go
+++ b/state/modelgeneration.go
@@ -9,6 +9,7 @@ import (
"strconv"
"github.com/juju/errors"
+ jujutxn "github.com/juju/txn"
"github.com/juju/utils/set"
"gopkg.in/juju/names.v2"
"gopkg.i... | Moves condition checks inside generation transaction builders, and refreshes from state on attempts after the first. | juju_juju | train |
4357c95a5d28614ce231da5934b938b0de3e32b4 | diff --git a/src/exp.js b/src/exp.js
index <HASH>..<HASH> 100755
--- a/src/exp.js
+++ b/src/exp.js
@@ -69,7 +69,7 @@ Command.prototype.asyncActionProjectDir = function(asyncFn) {
async function runAsync() {
try {
- Analytics.setSegmentInstance('vGu92cdmVaggGA26s3lBX6Y5fILm8SQ7');
+ Analytics.setSegmentNodeK... | Move XDE to segment
fbshipit-source-id: 8fac<I>d | expo_exp | train |
45b253566f2b8f647b21678fd88ce790800a855b | diff --git a/src/Ractive/prototype/getContext.js b/src/Ractive/prototype/getContext.js
index <HASH>..<HASH> 100644
--- a/src/Ractive/prototype/getContext.js
+++ b/src/Ractive/prototype/getContext.js
@@ -1,7 +1,10 @@
import staticContext, { getNodeInfo as staticInfo } from '../static/getContext';
+import getRactiveCont... | properly handle hasListener from a ractive context - refs #<I> | ractivejs_ractive | train |
6ff26a0920d40dc91aaac7d44e816f3eb187c682 | diff --git a/osc/osc.go b/osc/osc.go
index <HASH>..<HASH> 100644
--- a/osc/osc.go
+++ b/osc/osc.go
@@ -959,7 +959,7 @@ func readPaddedString(reader *bufio.Reader) (string, int, error) {
str = str[:len(str)-1]
// Remove the padding bytes
- padLen := padBytesNeeded(len(str))
+ padLen := padBytesNeeded(len(str) - 1)... | Try the other way to fix the calculation | hypebeast_go-osc | train |
8eded1c7d0234ab49d2830c3efdec32ee9c84903 | diff --git a/formicd/tasks.go b/formicd/tasks.go
index <HASH>..<HASH> 100644
--- a/formicd/tasks.go
+++ b/formicd/tasks.go
@@ -84,6 +84,10 @@ func (d *Deletinator) run() {
continue
}
ts := dirent.Tombstone
+ if ts == nil {
+ // TODO: probably an overwrite. just remove old file
+ continue
+ }
deleted ... | Fixed a delete bug that that crashes formic. | creiht_formic | train |
c74d3215c9727a546ef140e4a5e5772e6e1df812 | diff --git a/__init__.py b/__init__.py
index <HASH>..<HASH> 100644
--- a/__init__.py
+++ b/__init__.py
@@ -28,7 +28,9 @@ class QRCode:
However, there are cases where you may want to specify the various
properties of the created code manually, this is what the other
parameters do. Below, you w... | Updated the documentation for __init__.py. Mostly grammer fixes. | mnooner256_pyqrcode | train |
77f5e1d6803cec0da3e4b4f687a8c4aa166ca83f | diff --git a/src/streamlink_cli/argparser.py b/src/streamlink_cli/argparser.py
index <HASH>..<HASH> 100644
--- a/src/streamlink_cli/argparser.py
+++ b/src/streamlink_cli/argparser.py
@@ -541,6 +541,8 @@ def build_parser():
Write stream data to FILENAME instead of playing it. If FILENAME is set to - (dash), the... | cli.argparser: update help with dir/subdir creation info | streamlink_streamlink | train |
b482c193471fc7398e0966d22b72a51423853193 | diff --git a/alot/commands/thread.py b/alot/commands/thread.py
index <HASH>..<HASH> 100644
--- a/alot/commands/thread.py
+++ b/alot/commands/thread.py
@@ -28,6 +28,7 @@ from ..completion.contacts import ContactsCompleter
from ..completion.path import PathCompleter
from ..db.utils import decode_header
from ..db.utils... | togglemimepart: switch between html and plaintext. | pazz_alot | train |
1aa756903b35ac5f891f21a1d5b6371a0c55b51d | diff --git a/easy_thumbnails/files.py b/easy_thumbnails/files.py
index <HASH>..<HASH> 100644
--- a/easy_thumbnails/files.py
+++ b/easy_thumbnails/files.py
@@ -404,7 +404,7 @@ class Thumbnailer(File):
return None
def is_transparent(self, image):
- return (image.mode == 'RGBA' or
+ retur... | Treat images with mode == 'LA' as transparent. | SmileyChris_easy-thumbnails | train |
ae1b79b439e384b3c4459aecf9c1ca45e57bccd2 | diff --git a/org/postgresql/jdbc2/Array.java b/org/postgresql/jdbc2/Array.java
index <HASH>..<HASH> 100644
--- a/org/postgresql/jdbc2/Array.java
+++ b/org/postgresql/jdbc2/Array.java
@@ -172,7 +172,7 @@ public class Array implements java.sql.Array
retVal = new Timestamp[ count ];
StringBuffer sbuf = null;
... | fixed bug reported by Noel Rappin (<EMAIL>) java Array type handled Timestamps incorrectly | pgjdbc_pgjdbc | train |
0a08d79708902b0f24ab8007c0e9df4662cd1b53 | diff --git a/lib/split/experiment.rb b/lib/split/experiment.rb
index <HASH>..<HASH> 100644
--- a/lib/split/experiment.rb
+++ b/lib/split/experiment.rb
@@ -144,11 +144,13 @@ module Split
end
def has_winner?
- !winner.nil?
+ return @has_winner if defined? @has_winner
+ @has_winner = !winner.nil... | Cache the has_winner state for the lifetime of an Experiment instance | splitrb_split | train |
7eef14952c3c69b2cdf5ae209fb90f2f95560c41 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -101,6 +101,7 @@ SALT_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'requirements', 'base.t
SALT_CRYPTO_REQS = os.path.join(os.path.abspath(SETUP_DIRNAME), 'requirements', 'crypto.txt')
SALT_ZEROMQ_REQS = os.path.join(... | Also include req_win.txt | saltstack_salt | train |
e9aa5767b45215aa065556f51c246894ee3beae0 | diff --git a/lib/citesight.rb b/lib/citesight.rb
index <HASH>..<HASH> 100644
--- a/lib/citesight.rb
+++ b/lib/citesight.rb
@@ -22,12 +22,19 @@ class PaperCitations
Hash[clean_cites.group_by { |c| c }.map { |cit, num| [cit, num.count] }]
end
+ ## Returns array of citation locations (index) in manuscript
+ ##... | fixed index_cite regex problem (matching fragments) | soumyaray_citesight | train |
4853ad8389cde8fff94afab0495a7eeb72fd8dd7 | diff --git a/green/loader.py b/green/loader.py
index <HASH>..<HASH> 100644
--- a/green/loader.py
+++ b/green/loader.py
@@ -307,8 +307,8 @@ def loadTarget(target, file_pattern='test*.py'):
if target and (target[0] != '.'): # We don't handle relative dot objects
try:
tests = loader.loadTestsFro... | Solved the very vexing crash that for some reason only showed up on Windows. | CleanCut_green | train |
4f3ab3c37466ce8dd8cf532294daed081c8f1425 | diff --git a/src/puzzle/Puzzle.js b/src/puzzle/Puzzle.js
index <HASH>..<HASH> 100644
--- a/src/puzzle/Puzzle.js
+++ b/src/puzzle/Puzzle.js
@@ -129,7 +129,7 @@ pzpr.Puzzle.prototype =
// owner.setCanvasSizeByCellSize() セルのサイズを指定して盤面のサイズを設定する
//-------------------------------------------------------------------------... | Puzzle: Fix setCanvasSize before puzzle.open() doesn't work | sabo2_pzprjs | train |
6272c87271177062e89013ab33180704627bddc2 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -91,6 +91,21 @@ A mapping from handler to placeholder. Values can be `String` or `Buffer`. You c
A mapping from handler to the mime type. Mime type will be set as `Content-Type` header. You can disable sending any of th... | feat: set headers to prevent caching. fixes #<I> | nuxt_serve-placeholder | train |
0eb03496ebaa3d3bbd3f2f8973e40e877e17744d | diff --git a/salt/grains/core.py b/salt/grains/core.py
index <HASH>..<HASH> 100644
--- a/salt/grains/core.py
+++ b/salt/grains/core.py
@@ -2169,7 +2169,7 @@ def _hw_data(osdata):
if os.path.exists(contents_file):
try:
with salt.utils.files.fopen(contents_file, 'r') as ... | Fix grains with '\n' | saltstack_salt | train |
11008f1926ab60dc12d22f835496b140494cd0db | diff --git a/python/jsbeautifier/unpackers/packer.py b/python/jsbeautifier/unpackers/packer.py
index <HASH>..<HASH> 100644
--- a/python/jsbeautifier/unpackers/packer.py
+++ b/python/jsbeautifier/unpackers/packer.py
@@ -63,18 +63,22 @@ def unpack(source):
def _filterargs(source):
"""Juice from a source file the ... | Update packer.py
added case, that radix is [] (default), and not numeric | beautify-web_js-beautify | train |
620a7af270883f07b25675c553406726cf2d3c2d | diff --git a/annis-interfaces/src/main/java/annis/model/QueryNode.java b/annis-interfaces/src/main/java/annis/model/QueryNode.java
index <HASH>..<HASH> 100644
--- a/annis-interfaces/src/main/java/annis/model/QueryNode.java
+++ b/annis-interfaces/src/main/java/annis/model/QueryNode.java
@@ -348,11 +348,14 @@ public clas... | check for multiple named variables and make QueryNode:toAqlFragment aware of empty annotation searches | korpling_ANNIS | train |
91387a762a12ed54c39945114247c0d424316e05 | diff --git a/tests/__init__.py b/tests/__init__.py
index <HASH>..<HASH> 100644
--- a/tests/__init__.py
+++ b/tests/__init__.py
@@ -97,9 +97,9 @@ httpClient = urllib3.PoolManager(
)
# Initialize minioClient with an endpoint and access/secret keys.
-minioClient = Minio('minio:9000',
- acces... | Update to use S3 and MySQL creds from env vars. | datajoint_datajoint-python | train |
45f882716db61957433196ed8844a2d5240c551b | diff --git a/atomic_reactor/plugins/pre_distribution_scope.py b/atomic_reactor/plugins/pre_distribution_scope.py
index <HASH>..<HASH> 100644
--- a/atomic_reactor/plugins/pre_distribution_scope.py
+++ b/atomic_reactor/plugins/pre_distribution_scope.py
@@ -70,7 +70,7 @@ class DistributionScopePlugin(PreBuildPlugin):
... | distribution_scope: handle imported images
These have {'Labels': None} in their inspection data. They occur
during creation of base images (pre_add_filesystem). | projectatomic_atomic-reactor | train |
55bf846ed83a840f7d18802c11be363ef184f90e | diff --git a/jarn/mkrelease/scm.py b/jarn/mkrelease/scm.py
index <HASH>..<HASH> 100644
--- a/jarn/mkrelease/scm.py
+++ b/jarn/mkrelease/scm.py
@@ -1,4 +1,5 @@
from os.path import join, isdir
+from urlparse import urlsplit
from process import WithProcess
from dirstack import chdir
from exit import err_exit
@@ -393,2... | Choose Subversion if host or path start with 'svn'. | Jarn_jarn.mkrelease | train |
f2ecd0513b74c18ff156e44f3289fe42b61cabe2 | diff --git a/src/js/Pickers/YearPicker.js b/src/js/Pickers/YearPicker.js
index <HASH>..<HASH> 100644
--- a/src/js/Pickers/YearPicker.js
+++ b/src/js/Pickers/YearPicker.js
@@ -10,7 +10,7 @@ export default class YearPicker extends PureComponent {
static propTypes = {
calendarTempDate: PropTypes.instanceOf(Date).i... | Fixed YearPicker #<I>
I had forgotten to update the YearPicker to use yearsDisplayed instead
of initialYearsDisplayed after the prop rename.. | mlaursen_react-md | train |
57ecd23951f3805daadcf44fa39ae6e3a74830ab | diff --git a/test/hpack_test.rb b/test/hpack_test.rb
index <HASH>..<HASH> 100644
--- a/test/hpack_test.rb
+++ b/test/hpack_test.rb
@@ -1,6 +1,19 @@
require "test_helper"
class HPACKTest < Minitest::Test
+ # huffman
+ def test_hpack_huffman_encode
+ text = "\x10\x60\x2a\x1d\x94\x47\x82\x2c\x3d\x19\xbf\x8e\xd9\x... | hpack: add tests for Huffman encoding / decoding | rhenium_plum | train |
d245c9bf28ea4478483b91b5e2367bcaab38e643 | diff --git a/lib/cli.js b/lib/cli.js
index <HASH>..<HASH> 100644
--- a/lib/cli.js
+++ b/lib/cli.js
@@ -20,12 +20,12 @@ function stat(filename, source, result, time, mem) {
return String(size).replace(/\B\d{3}$/, ' $&');
}
- console.log('File: ', filename);
- console.log('Original: ', fmt(sou... | output stat in stderr | css_csso | train |
1575bd97eebdc73d5017c45c4e03352f99119cba | diff --git a/apostrophe.js b/apostrophe.js
index <HASH>..<HASH> 100644
--- a/apostrophe.js
+++ b/apostrophe.js
@@ -2686,7 +2686,15 @@ function Apos() {
// page. Your 'callback' function is called at the end with an error if any.
self.forEveryPage = function(criteria, each, callback) {
- self.pages.find(crite... | apostrophe:rescale task pulls all gif/jpg/png files out of uploadfs and reuploads them to put new uploadfs sizing and/or quality settings into effect | apostrophecms_apostrophe | train |
3d36e37341cf069d646ac5f7ed85fbb1f69ca195 | diff --git a/LiSE/LiSE/character.py b/LiSE/LiSE/character.py
index <HASH>..<HASH> 100644
--- a/LiSE/LiSE/character.py
+++ b/LiSE/LiSE/character.py
@@ -1232,8 +1232,6 @@ class Character(AbstractCharacter, DiGraph, RuleFollower):
):
if rulebook in d:
crc[rulebook] = d[ru... | Make the cache work when looking up a default character-rulebook
One that's been left at its default value, and not necessarily
written to the database yet. | LogicalDash_LiSE | train |
8a18e04321828d3ba20284e06f53a9d0cad897d0 | diff --git a/src/components/SourcesTree.js b/src/components/SourcesTree.js
index <HASH>..<HASH> 100644
--- a/src/components/SourcesTree.js
+++ b/src/components/SourcesTree.js
@@ -121,6 +121,8 @@ class SourcesTree extends Component {
return;
}
+ // TODO: do not run this every time a source is clicked,
+... | [SourceTree] fails to render the root directory (#<I>) | firefox-devtools_debugger | train |
720612037654cc65701c231b9c3edade8a495d0f | diff --git a/holoviews/core/options.py b/holoviews/core/options.py
index <HASH>..<HASH> 100644
--- a/holoviews/core/options.py
+++ b/holoviews/core/options.py
@@ -693,9 +693,6 @@ class Store(object):
load_counter_offset = None
save_option_state = False
- # Used to disable help output in testing
- _dis... | Moved _disable_info_output option to OutputMagic | pyviz_holoviews | train |
3bd2293152f902de9c67830571d3bcb3c7294d94 | diff --git a/terraform/node_module_removed.go b/terraform/node_module_removed.go
index <HASH>..<HASH> 100644
--- a/terraform/node_module_removed.go
+++ b/terraform/node_module_removed.go
@@ -85,25 +85,13 @@ func (n *EvalDeleteModule) Eval(ctx EvalContext) (interface{}, error) {
state.prune()
// find the module an... | compare module by normalized path
The onld logic for locating comparing module paths no longer worked, and
we can simplify the comparison by using the addrs.ModuleInstance string. | hashicorp_terraform | train |
207b7b682c127158f3eafbc13f41468aacc08498 | diff --git a/Classes/Emogrifier.php b/Classes/Emogrifier.php
index <HASH>..<HASH> 100644
--- a/Classes/Emogrifier.php
+++ b/Classes/Emogrifier.php
@@ -345,26 +345,10 @@ class Emogrifier
{
$xPath = new \DOMXPath($xmlDocument);
$this->clearAllCaches();
-
- // Before be begin processing the C... | [CLEANUP] Move style attributes normalization into a new private method (#<I>) | MyIntervals_emogrifier | train |
74fecb87943512ce0d30c60827f4449ad39df47e | diff --git a/icekit/plugins/links/migrations/0001_initial.py b/icekit/plugins/links/migrations/0001_initial.py
index <HASH>..<HASH> 100644
--- a/icekit/plugins/links/migrations/0001_initial.py
+++ b/icekit/plugins/links/migrations/0001_initial.py
@@ -10,7 +10,7 @@ class Migration(migrations.Migration):
('fluen... | More robust migration, and not installing Work/CreatorLink by default | ic-labs_django-icekit | train |
4506e9490922376046ed608c8cb501dc0395e561 | diff --git a/lib/rhapsody.js b/lib/rhapsody.js
index <HASH>..<HASH> 100644
--- a/lib/rhapsody.js
+++ b/lib/rhapsody.js
@@ -251,6 +251,9 @@ Rhapsody.prototype = {
rolling: true,
unset: 'destroy'
}));
+
+ //Actives req.flash() support
+ this.app.use(this.middlewares.flash());
}
//Actives... | Added req.flash() support. | rhapsodyjs_RhapsodyJS | train |
ab3f5d3b6899b14c9a3ead4461c72c7f2d738f19 | diff --git a/gosrc/gen.go b/gosrc/gen.go
index <HASH>..<HASH> 100644
--- a/gosrc/gen.go
+++ b/gosrc/gen.go
@@ -83,7 +83,7 @@ func main() {
// Get list of valid TLDs.
- resp, err := http.Get("http://data.iana.org/TLD/tlds-alpha-by-domain.txt")
+ resp, err := http.Get("https://data.iana.org/TLD/tlds-alpha-by-domain... | gosrc: Use https to get list of valid TLDs.
It seems like a good idea to use https rather than http when fetching the list of TLDs. | golang_gddo | train |
bf998b7a24f5b3f63f892f7c61e2c286114dafab | diff --git a/ext_emconf.php b/ext_emconf.php
index <HASH>..<HASH> 100644
--- a/ext_emconf.php
+++ b/ext_emconf.php
@@ -8,10 +8,6 @@ $EM_CONF[$_EXTKEY] = [
'author' => 'Ingo Renner, Timo Hund, Markus Friedrich',
'author_email' => 'ingo@typo3.org',
'author_company' => 'dkd Internet Service GmbH',
- 'mod... | [TASK] Cleanup ext_emconf (#<I>)
Remove deprecated configuration items.
Resolves: #<I> | TYPO3-Solr_ext-solr | train |
eb0ff37e052a56a01f1d59d3a302747ce8e4a681 | diff --git a/subproviders/hooked-wallet.js b/subproviders/hooked-wallet.js
index <HASH>..<HASH> 100644
--- a/subproviders/hooked-wallet.js
+++ b/subproviders/hooked-wallet.js
@@ -27,6 +27,7 @@ module.exports = HookedWalletSubprovider
// eth_signTypedData
// personal_sign
// eth_decryptMessage
+// encryption_... | Update hooked-wallet.js
Added new method "encryption_public_key". It needs for getting the public key that will be used in the encrypt/decrypt feature. This key usually will be got via `nacl` library. | MetaMask_web3-provider-engine | train |
93e128931f84ca1b921e1eb9ae4331fc207365d2 | diff --git a/test/server/SimpleServer.js b/test/server/SimpleServer.js
index <HASH>..<HASH> 100644
--- a/test/server/SimpleServer.js
+++ b/test/server/SimpleServer.js
@@ -221,7 +221,7 @@ class SimpleServer {
return;
}
response.setHeader('Cache-Control', 'public, max-age=31536000');
- respons... | test: make tests work on non-English locales (#<I>)
`Data.prototype.toString` may return non-ASCII characters, which aren't accepted by `setHeader`.
E.g., on Russian locale, it might look like this:
```
> new Date().toString()
'Thu Jun <I> <I> <I>:<I>:<I> GMT<I> (Финляндия (лето))'
``` | GoogleChrome_puppeteer | train |
ec740f3d2000933120948764144f95d485ca45a9 | diff --git a/concentration/settings.py b/concentration/settings.py
index <HASH>..<HASH> 100644
--- a/concentration/settings.py
+++ b/concentration/settings.py
@@ -28,7 +28,9 @@ for config_file_path in ('/etc/concentration.distractors', os.path.expanduser('~
for config_file_path in ('/etc/concentration.safe', os.path.e... | Fixed a bug where the whitelist domains were being added to the list of DISTRACTORS instead of being removed | timothycrosley_concentration | train |
56fbf3b99b077ee809bcde8f8f585519834e7c36 | diff --git a/src/Codeception/Application.php b/src/Codeception/Application.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Application.php
+++ b/src/Codeception/Application.php
@@ -121,9 +121,10 @@ class Application extends BaseApplication
* Search for --config Option and if found will be loaded
*
... | The --config option is treated as console standard. | Codeception_Codeception | train |
0a196b4f79223cacccde9658da4564a2bcea0b27 | diff --git a/lib/flipper/adapters/active_record.rb b/lib/flipper/adapters/active_record.rb
index <HASH>..<HASH> 100644
--- a/lib/flipper/adapters/active_record.rb
+++ b/lib/flipper/adapters/active_record.rb
@@ -89,11 +89,11 @@ module Flipper
end
def get_all
- joins = <<-EOJ
- INNER JOIN ... | Ensure that features which have no gate rows are included in get_all | jnunemaker_flipper | train |
7b8692277218996a5a44c1217eb773a4ac87283f | diff --git a/andes/routines/tds.py b/andes/routines/tds.py
index <HASH>..<HASH> 100644
--- a/andes/routines/tds.py
+++ b/andes/routines/tds.py
@@ -370,12 +370,15 @@ class TDS(BaseRoutine):
dae.store()
# offload if exceeds `max_store`
- if self.config.limit_store and le... | Avoid writing outputs when `no_output` is enabled. | cuihantao_andes | train |
de2148e9b20d7c00e99a428d7b6a940de2ab2bc8 | diff --git a/lib/http.js b/lib/http.js
index <HASH>..<HASH> 100644
--- a/lib/http.js
+++ b/lib/http.js
@@ -163,6 +163,7 @@ AWS.HttpResponse = inherit({
*/
AWS.NodeHttpClient = inherit({
handleRequest: function handleRequest(httpRequest, httpOptions, callback, errCallback) {
+ /*jshint maxcomplexity:10*/
v... | Fix some JSHint warnings | aws_aws-sdk-js | train |
99237c30d500b05a7aa7e75cea3c00ae0fee84c1 | diff --git a/test/func/hash.spec.js b/test/func/hash.spec.js
index <HASH>..<HASH> 100644
--- a/test/func/hash.spec.js
+++ b/test/func/hash.spec.js
@@ -33,26 +33,6 @@ describe('Functional: hash()', function () {
})
})
- it('should hash', function (done) {
- const seven = hash([`${mockDir}/*.jpg`, `${mockDi... | test: Complete tests for hash() command | quentinrossetti_node-7z | train |
ba5c9a46bb86d16532c16c513662da06eb5569c6 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -48,7 +48,7 @@ function fixtureServereMiddleware (options) {
response.status(201).json({
id,
- url: urlResolve(state.fixturesUrl, urlParse(requestedFixture[0].scope).hostname)
+ url: urlResolve(state.fi... | feat: suffix fixture URLs with fixture IDs
BREAKING CHANGE: Before, a returned fixture URL looked like this
```
<URL> | octokit_fixtures-server | train |
2eaba66c42e371dfd82d30290a3daf42b91ff9a1 | diff --git a/dpark/executor.py b/dpark/executor.py
index <HASH>..<HASH> 100644
--- a/dpark/executor.py
+++ b/dpark/executor.py
@@ -15,11 +15,15 @@ from dpark.accumulator import Accumulator
from dpark.schedule import Success, OtherFailure
from dpark.env import env
+TASK_RESULT_LIMIT = 1024 * 1024
+
def reply_status... | warning the result over limit, not refuse | douban_dpark | train |
a3e1a04bdf92435c2ad5bdedb1e9de9ca6f17b72 | diff --git a/const.go b/const.go
index <HASH>..<HASH> 100644
--- a/const.go
+++ b/const.go
@@ -114,6 +114,10 @@ const (
VALUEDESCRIPTORSFOR = "valueDescriptorsFor"
DEVICEADDRESSABLES = "deviceaddressables"
DEVICEADDRESSABLESBYNAME = "deviceaddressablesbyname"
+ PINGENDPOINT ... | Add ping endpoint and update used constants. | edgexfoundry_edgex-go | train |
7a7a2e1c3ac860bbdd49a6ae29db8f85ea00b3ef | diff --git a/seqcluster/prepare_data.py b/seqcluster/prepare_data.py
index <HASH>..<HASH> 100644
--- a/seqcluster/prepare_data.py
+++ b/seqcluster/prepare_data.py
@@ -145,7 +145,7 @@ def _create_matrix_uniq_seq(sample_l, seq_l, maout, out, min_shared):
:returns: Null
"""
skip = 0
- if min_shared > len... | Fix vairable type in prepare samples
thanks @AlexandraBomane | lpantano_seqcluster | train |
2835ad7788913895b6cbc8d5f135cd5552675ba5 | diff --git a/src/Label/ReadModels/JSON/Projector.php b/src/Label/ReadModels/JSON/Projector.php
index <HASH>..<HASH> 100644
--- a/src/Label/ReadModels/JSON/Projector.php
+++ b/src/Label/ReadModels/JSON/Projector.php
@@ -12,9 +12,8 @@ use CultuurNet\UDB3\Label\Events\MadeVisible;
use CultuurNet\UDB3\Label\ReadModels\Abs... | III-<I> Still an issue with updating the label count. | cultuurnet_udb3-php | train |
104964bfd324c85b9604b062b65870cd6a49e949 | diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/jobexecutor/historycleanup/HistoryCleanupRemovalTime.java b/engine/src/main/java/org/camunda/bpm/engine/impl/jobexecutor/historycleanup/HistoryCleanupRemovalTime.java
index <HASH>..<HASH> 100644
--- a/engine/src/main/java/org/camunda/bpm/engine/impl/jobexecu... | chore(engine): check if metrics are enabled for cleanup by removal time
related to CAM-<I> | camunda_camunda-bpm-platform | train |
59dad3d6c0fdec5a1d98846f98e0612eed356fe3 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -26,7 +26,7 @@ module.exports.prototype.apply = function(compiler) {
self.purifyOptions.output = false;
// Path/files to check. If none supplied, an empty array will do.
self.paths = self.userOptions... | purify by chunk - fix for exctrating chunk modules | webpack-contrib_purifycss-webpack | train |
80e30d7c192be106dd6c5c3777fdf3705f3a3b4a | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -85,7 +85,7 @@ func main() {
log.Fatal(err)
}
- updates, _ := bot.ListenForWebhook("/" + bot.Token)
+ updates := bot.ListenForWebhook("/" + bot.Token)
go http.ListenAndServeTLS("0.0.0.0:8443", "cert.pem", "key.pem... | Stop returning useless http.Handler from ListenForWebhook. | go-telegram-bot-api_telegram-bot-api | train |
22324766c9a9bc6222fc3b570bafa6a7645255a5 | diff --git a/lib/active_interaction/base.rb b/lib/active_interaction/base.rb
index <HASH>..<HASH> 100644
--- a/lib/active_interaction/base.rb
+++ b/lib/active_interaction/base.rb
@@ -139,6 +139,8 @@ module ActiveInteraction
# @private
def self.set_up_reader(attribute, filter, options, &block)
+ options... | fix #<I> so that default values are carried through to multiple attributes defined on the same line | AaronLasseigne_active_interaction | train |
ecf87f47d956e0e53f556c34f48a12e02b2a6b8b | diff --git a/memberlist_test.go b/memberlist_test.go
index <HASH>..<HASH> 100644
--- a/memberlist_test.go
+++ b/memberlist_test.go
@@ -920,37 +920,30 @@ func TestSecretKeyFunctions(t *testing.T) {
key2 := []byte{15, 14, 13, 12, 11, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0}
c := testConfig()
- m, err := Create(c)
- if err... | Removed unnecessary memberlist creation from key tests | hashicorp_memberlist | train |
9bda8ae81f182dcfb27c60f9258f877e2d9f70b8 | diff --git a/upload/catalog/controller/account/voucher.php b/upload/catalog/controller/account/voucher.php
index <HASH>..<HASH> 100644
--- a/upload/catalog/controller/account/voucher.php
+++ b/upload/catalog/controller/account/voucher.php
@@ -13,7 +13,7 @@ class ControllerAccountVoucher extends Controller {
if (($... | fix voucher description displaying wrong price with cart price.
for example Product Name is
€<I> Gift Certificate for Felix
but Total from cart is
€<I> | opencart_opencart | train |
e18296f4f06595c4becc90bf6db4f3d2b8a625c5 | diff --git a/pkg/platform/architecture_unix.go b/pkg/platform/architecture_unix.go
index <HASH>..<HASH> 100644
--- a/pkg/platform/architecture_unix.go
+++ b/pkg/platform/architecture_unix.go
@@ -1,5 +1,7 @@
-// +build freebsd solaris
+// +build freebsd solaris darwin
+// Package platform provides helper function to g... | make package docker/pkg/platform support darwin | containers_storage | train |
0a11d15d564f6e84baa9fc8c5a94a28af3392fa2 | diff --git a/src/view/component.js b/src/view/component.js
index <HASH>..<HASH> 100644
--- a/src/view/component.js
+++ b/src/view/component.js
@@ -253,7 +253,11 @@ function Component(options) { // eslint-disable-line
this._toPhase('inited');
// #[begin] reverse
- var hasRootNode = this.aNode.tagName === ... | fix component condition on hasRootNode; preheat fragment and if directive | baidu_san | train |
2ea00c7f4c25784fe8be37c55c298bbc5a800e64 | diff --git a/dev/com.ibm.ws.grpc_fat/test-applications/HelloWorldClient.war/src/com/ibm/ws/grpc/fat/helloworld/client/HelloWorldClientServlet.java b/dev/com.ibm.ws.grpc_fat/test-applications/HelloWorldClient.war/src/com/ibm/ws/grpc/fat/helloworld/client/HelloWorldClientServlet.java
index <HASH>..<HASH> 100644
--- a/dev... | Verify that the channel is closed when the test ends
Verify that a channel is closed before starting a new test
Wait fot the channel to shutdown when the test ends | OpenLiberty_open-liberty | train |
980f0c61944a8a2289609afc960c4a43981ffa13 | diff --git a/lib/Doctrine/ODM/PHPCR/UnitOfWork.php b/lib/Doctrine/ODM/PHPCR/UnitOfWork.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/ODM/PHPCR/UnitOfWork.php
+++ b/lib/Doctrine/ODM/PHPCR/UnitOfWork.php
@@ -1253,6 +1253,7 @@ class UnitOfWork
$mapping = $class->mappings[$fieldName];
... | Fix renaming a document that is in a children collection. fix #<I> | doctrine_phpcr-odm | train |
efa5c094a586d599dbaee2c960c222741d04a9cc | diff --git a/panphon/test_distance.py b/panphon/test_distance.py
index <HASH>..<HASH> 100644
--- a/panphon/test_distance.py
+++ b/panphon/test_distance.py
@@ -1,6 +1,6 @@
#!//usr/bin/env python
# -*- coding: utf-8 -*-
-from __future__ import print_function, unicode_literals
+from __future__ import print_function, uni... | Updated tests in test_distance.py | dmort27_panphon | train |
5ee6126eb6bfd9a0f4fe75561d7e81962458b656 | diff --git a/sc2gameLobby/__version__.py b/sc2gameLobby/__version__.py
index <HASH>..<HASH> 100644
--- a/sc2gameLobby/__version__.py
+++ b/sc2gameLobby/__version__.py
@@ -17,6 +17,6 @@ See the License for the specific language governing permissions and
limitations under the License.
"""
-VERSION = (0, 7, 7)
+VERSIO... | - added significant changes with some backward incompatibility; incremented major rev as officially released package | ttinies_sc2gameLobby | train |
ece23b5fa01301ec006aa42f8b59ec938c35427b | diff --git a/activerecord/lib/active_record/tasks/mysql_database_tasks.rb b/activerecord/lib/active_record/tasks/mysql_database_tasks.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/tasks/mysql_database_tasks.rb
+++ b/activerecord/lib/active_record/tasks/mysql_database_tasks.rb
@@ -54,11 +54,15 @@ m... | Use the 'mysql' binary for 'rake db:structure:load'.
The previous implementation had the strange requirement that db/structure.sql contain only CREATE TABLE sql statements, one per table, separated by double newlines. SQLite3 and PostgreSQL database tasks, on the other hand, simply spawn 'sqlite3' and 'psql' binaries ... | rails_rails | train |
510c2ae7be80a8987b1c8d701d519c5099a47dce | diff --git a/environment/src/test/java/jetbrains/exodus/env/EnvironmentTest.java b/environment/src/test/java/jetbrains/exodus/env/EnvironmentTest.java
index <HASH>..<HASH> 100644
--- a/environment/src/test/java/jetbrains/exodus/env/EnvironmentTest.java
+++ b/environment/src/test/java/jetbrains/exodus/env/EnvironmentTes... | XD-<I>: more tests | JetBrains_xodus | train |
3fedacfb9be2d6f64fa39be8ac89462d62713ac9 | diff --git a/lib/Function.js b/lib/Function.js
index <HASH>..<HASH> 100644
--- a/lib/Function.js
+++ b/lib/Function.js
@@ -7,6 +7,7 @@ const NativeFunction = global.Function;
export class Function extends Super {
constructor(func = () => {}) {
+ super();
function proxy() {
if (++proxy.$$.called < proxy.$... | Function: fix "$ to $$" mistake. | dwaynejs_dwayne | train |
c9eb7a4155959bd345a61f830c242cf913307f44 | diff --git a/coremodules/core/src/main/java/org/treetank/io/BackendWriterProxy.java b/coremodules/core/src/main/java/org/treetank/io/BackendWriterProxy.java
index <HASH>..<HASH> 100644
--- a/coremodules/core/src/main/java/org/treetank/io/BackendWriterProxy.java
+++ b/coremodules/core/src/main/java/org/treetank/io/Backe... | [MOD] commit now occurs in extra thread, still blocking atm
git-svn-id: <URL> | sebastiangraf_treetank | train |
0c4405d946c6c1be9be3e3a52191ab23968d1244 | diff --git a/pyflakes/__init__.py b/pyflakes/__init__.py
index <HASH>..<HASH> 100644
--- a/pyflakes/__init__.py
+++ b/pyflakes/__init__.py
@@ -1,2 +1,2 @@
-__version__ = '0.7.2'
+__version__ = '0.7.3a0'
diff --git a/pyflakes/test/test_api.py b/pyflakes/test/test_api.py
index <HASH>..<HASH> 100644
--- a/pyflakes/test/... | Fix tests with Python <I> and Python <I> | timothycrosley_deprecated.frosted | train |
3939c75345ae67f103d70dfffc17ea4f66912ede | diff --git a/cmd/namespace-lock.go b/cmd/namespace-lock.go
index <HASH>..<HASH> 100644
--- a/cmd/namespace-lock.go
+++ b/cmd/namespace-lock.go
@@ -18,6 +18,7 @@ package cmd
import (
"errors"
+ "github.com/minio/dsync"
"sync"
)
@@ -29,7 +30,7 @@ type nsParam struct {
// nsLock - provides primitives for lock... | Added distributed RWMutex (#<I>) | minio_minio | train |
29e1d2db81ce22de6c561595de0afd12c2be3040 | diff --git a/pandoc/core.py b/pandoc/core.py
index <HASH>..<HASH> 100644
--- a/pandoc/core.py
+++ b/pandoc/core.py
@@ -22,7 +22,7 @@ class Document(object):
'docbook', 'opendocument', 'odt',
'latex', 'latex+lhs', 'context', 'texinfo',
'man', 'markdown', 'markdown+lhs', 'plain',
- 'rs... | Adds github flavoured markdown as output format option | kenneth-reitz_pyandoc | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.