hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
c55e5f708f1281260e552d61b7aa99563bab9084 | diff --git a/fundingmanager.go b/fundingmanager.go
index <HASH>..<HASH> 100644
--- a/fundingmanager.go
+++ b/fundingmanager.go
@@ -953,17 +953,26 @@ func (f *fundingManager) waitForFundingConfirmation(
// With the block height and the transaction index known, we
// can construct the compact chainID which is used on... | funding: send the next revocation key within the FundingLocked msg | lightningnetwork_lnd | train |
1ce31c697db050e36462dcaac54a0ee97ca92056 | diff --git a/troposphere/__init__.py b/troposphere/__init__.py
index <HASH>..<HASH> 100644
--- a/troposphere/__init__.py
+++ b/troposphere/__init__.py
@@ -131,8 +131,10 @@ class BaseAWSObject(object):
# Mainly used to not have an empty "Properties".
if self.properties:
return self.resourc... | Not all AWSProperty instances must have properties (for example, Cloudfront's S3Object type). Only fall through to a dict with a 'Type' property if the current class has a 'type'. | cloudtools_troposphere | train |
c57e51715f5bdbe590cdfb5986104f3e3a79ea59 | diff --git a/Core/Format.php b/Core/Format.php
index <HASH>..<HASH> 100644
--- a/Core/Format.php
+++ b/Core/Format.php
@@ -349,4 +349,19 @@ class Format {
return false;
}
+ /**
+ * Format XML string into array
+ * @param string input
+ * @return array
+ */
+ public function xmlToAr... | added method Format::xmlToArray | prototypemvc_prototypemvc | train |
afbd365156c2a295b84eb61cd241599552948d0e | diff --git a/src/basis/data.js b/src/basis/data.js
index <HASH>..<HASH> 100644
--- a/src/basis/data.js
+++ b/src/basis/data.js
@@ -2319,19 +2319,34 @@
var realEvent;
function flushCache(cache){
- var dataset = cache.dataset;
- realEvent.call(dataset, cache);
+ realEvent.call(cache.dataset, ca... | basis.data: fix Dataset.setAccumulateState issue with event concurrency on cache flush (real events emits before cached) | basisjs_basisjs | train |
769cabb9d2ccc89ecf99e0d1de7c36bd9171c98e | diff --git a/tools/scan_deps.js b/tools/scan_deps.js
index <HASH>..<HASH> 100644
--- a/tools/scan_deps.js
+++ b/tools/scan_deps.js
@@ -176,8 +176,8 @@ function scanFiles(filePaths, provideMap, requireMap) {
*/
var extractNamespace = function(line, pattern, opt_antiPattern) {
var pos = line.indexOf(pattern);... | Fixing scan_deps.js script to correctly detect goog.modules.
It was incorrectly detecting goog.modules, anywhere where the string
"goog.module" was appearing, even if that is in a comment. Fix it so
that it only checks for lines that start with "goog.module".
-------------
Created by MOE: <URL> | google_lovefield | train |
17fffbd1dad951ad580067720bfe58acba3eeebc | diff --git a/Security/TwoFactor/Trusted/TrustedFilter.php b/Security/TwoFactor/Trusted/TrustedFilter.php
index <HASH>..<HASH> 100644
--- a/Security/TwoFactor/Trusted/TrustedFilter.php
+++ b/Security/TwoFactor/Trusted/TrustedFilter.php
@@ -86,7 +86,7 @@ class TrustedFilter implements AuthenticationHandlerInterface
... | Additionally check if trusted option is set by context
Otherwise it's possible to set it explicitly in the context and be trusted even when it should not have been | scheb_two-factor-bundle | train |
bc5e9090463b7b92850e40394f678d603aa142cb | diff --git a/lib/transport/tcp.js b/lib/transport/tcp.js
index <HASH>..<HASH> 100644
--- a/lib/transport/tcp.js
+++ b/lib/transport/tcp.js
@@ -49,6 +49,8 @@ Transport.prototype.wrap = function (pdu, options, next) {
};
Transport.prototype.close = function (next) {
+ this.closed = true;
+
this.stream.end(next);
}... | transport: store closed state and avoid send data to a closed stream (#4) | node-modbus_stream | train |
df0e6d484e94cadd8246f65bbb96328265b3b257 | diff --git a/kettle/make_db.py b/kettle/make_db.py
index <HASH>..<HASH> 100755
--- a/kettle/make_db.py
+++ b/kettle/make_db.py
@@ -66,8 +66,8 @@ class GCSClient:
try:
return resp.json()
except json.decoder.JSONDecodeError:
- loggi... | Remove traceback from logging and clean up dataflow | kubernetes_test-infra | train |
8f2c21347c66474a1a585bfcf6b577c159db3191 | diff --git a/easytrader/helpers.py b/easytrader/helpers.py
index <HASH>..<HASH> 100644
--- a/easytrader/helpers.py
+++ b/easytrader/helpers.py
@@ -61,7 +61,7 @@ def get_stock_type(stock_code):
assert type(stock_code) is str, 'stock code need str type'
if stock_code.startswith(('sh', 'sz')):
return st... | feat(stock_code): fix ipo stock code for shanghai
fix #<I> | shidenggui_easytrader | train |
68dcaaa0ed92eceb4fd4bfe18a39569bc0737992 | diff --git a/yotta/lib/pack.py b/yotta/lib/pack.py
index <HASH>..<HASH> 100644
--- a/yotta/lib/pack.py
+++ b/yotta/lib/pack.py
@@ -289,7 +289,7 @@ class Pack(object):
def filterArchive(tarinfo):
if tarinfo.name.find(archive_name) == 0 :
unprefixed_name = tarinfo.name[len(archive_n... | do allow world-executable files though | ARMmbed_yotta | train |
dcdab5ff6da8e052721980af8f1ac35fefe1b321 | diff --git a/update-help.py b/update-help.py
index <HASH>..<HASH> 100755
--- a/update-help.py
+++ b/update-help.py
@@ -115,7 +115,7 @@ for cls_name, doc in help_docs.items():
target = target.replace(INDENT + '\n', INDENT + '<BLANKLINE>\n')
if target == target_before:
- print('unchanged (OK)')
+ print(f'PA... | add pass/fail captions | xflr6_graphviz | train |
b67d86cd9096c1f397acc068473d61d45b549e54 | diff --git a/masonite/commands/AuthCommand.py b/masonite/commands/AuthCommand.py
index <HASH>..<HASH> 100644
--- a/masonite/commands/AuthCommand.py
+++ b/masonite/commands/AuthCommand.py
@@ -19,19 +19,19 @@ class AuthCommand(Command):
with open('routes/web.py', 'a') as f:
# add all the routes
... | specified path in routers for controllers as auth.* | MasoniteFramework_masonite | train |
3d4b48e0aa5109e3b09c6d1c8d04264f8d9121cd | diff --git a/server/src/test/java/org/apache/druid/segment/indexing/TransformSpecTest.java b/server/src/test/java/org/apache/druid/segment/indexing/TransformSpecTest.java
index <HASH>..<HASH> 100644
--- a/server/src/test/java/org/apache/druid/segment/indexing/TransformSpecTest.java
+++ b/server/src/test/java/org/apache... | TransformSpecTest should extends InitializedNullHandlingTest (#<I>) | apache_incubator-druid | train |
280cc410181a5bd0358f9dab7f5417d975539810 | diff --git a/test/tools/javac/MethodParameters/Tester.java b/test/tools/javac/MethodParameters/Tester.java
index <HASH>..<HASH> 100644
--- a/test/tools/javac/MethodParameters/Tester.java
+++ b/test/tools/javac/MethodParameters/Tester.java
@@ -27,7 +27,6 @@ import java.nio.charset.StandardCharsets;
import java.nio.file... | <I>: MethodParameters tests failing on Windows
Reviewed-by: jjg, vromero | wmdietl_jsr308-langtools | train |
dac7e45b06761cb62039f88e4d0fd9480a029c1c | diff --git a/src/main/java/net/dv8tion/jda/api/interactions/components/Button.java b/src/main/java/net/dv8tion/jda/api/interactions/components/Button.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/dv8tion/jda/api/interactions/components/Button.java
+++ b/src/main/java/net/dv8tion/jda/api/interactions/componen... | Implement Button.of(ButtonStyle, String, String, Emoji) to get a button with a label and emoji. (#<I>) | DV8FromTheWorld_JDA | train |
1385b8ca94113513bd63359ac9288582ca6f98fe | diff --git a/app/GedcomRecord.php b/app/GedcomRecord.php
index <HASH>..<HASH> 100644
--- a/app/GedcomRecord.php
+++ b/app/GedcomRecord.php
@@ -786,7 +786,7 @@ class GedcomRecord
public function getAllEventDates(array $events): array
{
$dates = [];
- foreach ($this->facts($events) as $event) {
... | Ignore pending deletions for birth/marriage/death events | fisharebest_webtrees | train |
158df44a9485584c4fc81ab095c74e8244000aa1 | diff --git a/blocks/procedures.js b/blocks/procedures.js
index <HASH>..<HASH> 100644
--- a/blocks/procedures.js
+++ b/blocks/procedures.js
@@ -40,8 +40,7 @@ Blockly.Blocks['procedures_defnoreturn'] = {
* @this Blockly.Block
*/
init: function() {
- var nameField = new Blockly.FieldTextInput(
- Block... | Init procedure blocks with empty name, and set default name in xml in Blockly.Procedures.flyoutCategory | LLK_scratch-blocks | train |
9bd96b4300fb64e738da654db1f2aab5b5053982 | diff --git a/scripts/post_release_build.js b/scripts/post_release_build.js
index <HASH>..<HASH> 100644
--- a/scripts/post_release_build.js
+++ b/scripts/post_release_build.js
@@ -14,7 +14,7 @@ fs.writeFileSync(chevrotainDTSPath_release, fs.readFileSync(chevrotainDTSPath_bi
var newTagName = config.tagPrefix + config.cu... | post_release script should also commit+push bumped verison api.ts | SAP_chevrotain | train |
d3600e1c51515df537333a3e55958fccccd08ed7 | diff --git a/intake/catalog/base.py b/intake/catalog/base.py
index <HASH>..<HASH> 100644
--- a/intake/catalog/base.py
+++ b/intake/catalog/base.py
@@ -169,16 +169,17 @@ class Catalog(DataSource):
Can also use attribute syntax, like ``cat.entry_name``.
"""
- if key in self._entries:
+ ... | Avoid looping through Catalog unnecessarily.
This is needed to make pagination / lazy entries effective. | intake_intake | train |
20a65685cc3b28e420fb1eefee1facd012620de4 | diff --git a/bounded_context/spec/generators_spec.rb b/bounded_context/spec/generators_spec.rb
index <HASH>..<HASH> 100644
--- a/bounded_context/spec/generators_spec.rb
+++ b/bounded_context/spec/generators_spec.rb
@@ -5,7 +5,7 @@ module BoundedContext
RSpec.describe Generators do
RSpec::Matchers.define :match_... | No shared mutable dir for paralell mutant runs.
With one global directory for test app we lose benefits of paralell test
runs (mutant forks) and actually cause a deadlock. | RailsEventStore_rails_event_store | train |
0af2d9ef8488c9ea04b23b6ae2c3c8c41ffe1405 | diff --git a/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php b/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php
index <HASH>..<HASH> 100644
--- a/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php
+++ b/lib/Alchemy/Phrasea/Controller/Admin/Databoxes.php
@@ -45,12 +45,6 @@ class Databoxes implements ControllerProvi... | Remove possibility to update phraseanet from admin panel | alchemy-fr_Phraseanet | train |
f0fe9303515f4365b6bee0a287810aba0dd21d89 | diff --git a/Example/App.js b/Example/App.js
index <HASH>..<HASH> 100644
--- a/Example/App.js
+++ b/Example/App.js
@@ -1,5 +1,5 @@
import React from 'react';
-import { View, Text, Image, StyleSheet } from 'react-native';
+import { View, Text, Image, StyleSheet, ScrollView } from 'react-native';
import ExpandablePanel... | [jeremy] decoupling the scrollView from ExpandablePanel | hejiaji_react-native-expand | train |
1fee1b790fd88de6757d028e39136a6e6e54d585 | diff --git a/tests/test_parser.py b/tests/test_parser.py
index <HASH>..<HASH> 100644
--- a/tests/test_parser.py
+++ b/tests/test_parser.py
@@ -295,6 +295,22 @@ def test_comment_after_escape():
hi\\%""")
assert len(list(soup2.document.contents)) == 3
+ soup3 = TexSoup(r"""
+ \documentclass{article}
+ ... | new test case, alreay fixed, fixes #<I> | alvinwan_TexSoup | train |
e34df7faeb1b8f8a196136e32391922d28b985d3 | diff --git a/lib/raygun/client.rb b/lib/raygun/client.rb
index <HASH>..<HASH> 100644
--- a/lib/raygun/client.rb
+++ b/lib/raygun/client.rb
@@ -130,17 +130,14 @@ module Raygun
def filter_params(params_hash, extra_filter_keys = nil)
filter_keys = (Array(extra_filter_keys) + Raygun.configuration.filter_par... | Moved recursive filtering inside the #filter_params method | MindscapeHQ_raygun4ruby | train |
c09bbd4248027027ae8925c7e42b0cd5eaeccff8 | diff --git a/Theme/Theme.php b/Theme/Theme.php
index <HASH>..<HASH> 100644
--- a/Theme/Theme.php
+++ b/Theme/Theme.php
@@ -28,6 +28,9 @@ abstract class Theme implements ThemeInterface
/** @var string $path */
protected $path;
+ /** @var string $shortName */
+ protected $shortName;
+
/** @var stri... | Add new method to get `getShortName` formatted has `vendor/name` | harmonycms_sdk | train |
8884cc420ff6417a21596b98334440c436996e4b | diff --git a/ruby_event_store-rspec/lib/ruby_event_store/rspec/have_published.rb b/ruby_event_store-rspec/lib/ruby_event_store/rspec/have_published.rb
index <HASH>..<HASH> 100644
--- a/ruby_event_store-rspec/lib/ruby_event_store/rspec/have_published.rb
+++ b/ruby_event_store-rspec/lib/ruby_event_store/rspec/have_publis... | Display events with correct type but incorrect payload in count matcher | RailsEventStore_rails_event_store | train |
de2658da3eb68c288b9fcb38b06c0bc9de2f4b5d | diff --git a/__init__.py b/__init__.py
index <HASH>..<HASH> 100644
--- a/__init__.py
+++ b/__init__.py
@@ -6,6 +6,8 @@ from gaussfit import gaussfit
from gaussfit import _gauss
from gaussfit import _gaussvar
from chisquare import chisquare
+from curve_fit_unscaled import curve_fit_unscaled
+from plot_featured import... | Created and updated gaussian fitting routines. | joelfrederico_SciSalt | train |
699598ad66eee9fa52723d3efa215df42ae679de | diff --git a/OpenPNM/Network/__TestNet__.py b/OpenPNM/Network/__TestNet__.py
index <HASH>..<HASH> 100644
--- a/OpenPNM/Network/__TestNet__.py
+++ b/OpenPNM/Network/__TestNet__.py
@@ -107,8 +107,7 @@ class TestNet(GenericNetwork):
ps0 = self['pore.'+item][ps[:,0]]
ps1 = self['pore.'+item][ps[:,... | Fixed throat label addition during TestNet generation
Former-commit-id: f9a<I>f<I>cf8b9e<I>c<I>d4d<I>b<I>cbfb
Former-commit-id: cc<I>a2bec<I>b<I>c<I>ba7cdb3f2e8c<I>f9c | PMEAL_OpenPNM | train |
da0e1d60c5ffa7bfdfefc017c0674af953f8d8dd | diff --git a/src/amcrest/record.py b/src/amcrest/record.py
index <HASH>..<HASH> 100644
--- a/src/amcrest/record.py
+++ b/src/amcrest/record.py
@@ -9,6 +9,7 @@
#
# vim:sw=4:ts=4:et
+from amcrest.exceptions import CommError
from amcrest.http import Http
from amcrest.utils import pretty
@@ -73,9 +74,16 @@ class Re... | Handle errors in getting record mode more gracefully
Fixes #<I> | tchellomello_python-amcrest | train |
bde0f444dbab7c35bd5e856cb28f56e6b25605da | diff --git a/cmd/admin-handlers-users.go b/cmd/admin-handlers-users.go
index <HASH>..<HASH> 100644
--- a/cmd/admin-handlers-users.go
+++ b/cmd/admin-handlers-users.go
@@ -565,7 +565,16 @@ func (a adminAPIHandlers) ListCannedPolicies(w http.ResponseWriter, r *http.Requ
return
}
- if err = json.NewEncoder(w).Encod... | fix support OBDAdminAction is valid action (#<I>) | minio_minio | train |
ad7307b927aaf81f3e03e1adf46eec099191eb4f | diff --git a/virtualbox/library_ext/guest_session.py b/virtualbox/library_ext/guest_session.py
index <HASH>..<HASH> 100644
--- a/virtualbox/library_ext/guest_session.py
+++ b/virtualbox/library_ext/guest_session.py
@@ -45,11 +45,15 @@ class IGuestSession(library.IGuestSession):
def read_out(process, flags, std... | Fix IGuestProcess.execute() on Python 3 ...
... where stdout and stderr are of type `memoryview` and `str(memoryview)` turns to `'<memory 0x<I>ABCDEF...>'`. | sethmlarson_virtualbox-python | train |
f91369b95523ea1ad1a8aaf4bfae4f79544a3b3c | diff --git a/src/Schema/Directives/Fields/CanDirective.php b/src/Schema/Directives/Fields/CanDirective.php
index <HASH>..<HASH> 100644
--- a/src/Schema/Directives/Fields/CanDirective.php
+++ b/src/Schema/Directives/Fields/CanDirective.php
@@ -23,7 +23,7 @@ class CanDirective extends BaseDirective implements FieldMiddle... | Add description back in to CanDirective | nuwave_lighthouse | train |
b49ebe48812e3cb88fc35cdf42aa5cd3a1402ca8 | diff --git a/core/src/main/java/org/infinispan/marshall/VersionAwareMarshaller.java b/core/src/main/java/org/infinispan/marshall/VersionAwareMarshaller.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/infinispan/marshall/VersionAwareMarshaller.java
+++ b/core/src/main/java/org/infinispan/marshall/VersionAw... | ISPN-<I> - Marshalling errors to be logged as ERROR when not propagated
The marshaller is a global component and so does not know about the
cache that generates the marshalling request. So, the only thing you
can really do here is make sure marshalling errors are logged as error. | infinispan_infinispan | train |
055fae294e45e67d87caff09df9d6f9671ffda33 | diff --git a/mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/dialect/impl/MongoDBTupleSnapshot.java b/mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/dialect/impl/MongoDBTupleSnapshot.java
index <HASH>..<HASH> 100644
--- a/mongodb/src/main/java/org/hibernate/ogm/datastore/mongodb/dialect/impl/MongoD... | OGM-<I> Make sure MongoDB can find the id columns when not embedded | hibernate_hibernate-ogm | train |
4899f59e0928f52d09a1f5af6e0396075f4e1e42 | diff --git a/client/html/tests/Client/Html/Basket/Standard/DefaultTest.php b/client/html/tests/Client/Html/Basket/Standard/DefaultTest.php
index <HASH>..<HASH> 100755
--- a/client/html/tests/Client/Html/Basket/Standard/DefaultTest.php
+++ b/client/html/tests/Client/Html/Basket/Standard/DefaultTest.php
@@ -158,8 +158,8 ... | Removes name in output test which changes depending on the translation | Arcavias_arcavias-core | train |
33dd8edf13ff071ffb07e58ae0417d8def61ae70 | diff --git a/src/Sculpin/Bundle/ContentTypesBundle/Command/ContentCreateCommand.php b/src/Sculpin/Bundle/ContentTypesBundle/Command/ContentCreateCommand.php
index <HASH>..<HASH> 100644
--- a/src/Sculpin/Bundle/ContentTypesBundle/Command/ContentCreateCommand.php
+++ b/src/Sculpin/Bundle/ContentTypesBundle/Command/Conten... | Change the content:create command to create boilerplate files by default (#<I>)
- Adds a "-d"/"--dry-run" parameter to suppress file creation
- Updates the wording to be more helpful and instructive | sculpin_sculpin | train |
3675c85602c7b040cea354a82bce339308a7e60a | diff --git a/asammdf/mdf_v4.py b/asammdf/mdf_v4.py
index <HASH>..<HASH> 100644
--- a/asammdf/mdf_v4.py
+++ b/asammdf/mdf_v4.py
@@ -435,6 +435,7 @@ class MDF4(object):
cg_size[record_id] = 0
elif channel_group['flags'] & v4c.FLAG_CG_BUS_EVENT:
bus_type = channel... | * lib: for plain CAN bus logging add channels from database when saving | danielhrisca_asammdf | train |
9b1e9d0915f5e8ece0382d5fe3d260cf5b31f964 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -3,21 +3,27 @@ const path = require('path');
//const url = require('url');
const mkdirp = require('mkdirp');
const {importFromFilePath} = require('./lib/text/import');
+const {expand} = require('./lib/expander/expand');
//... | Support expanded elements when exporting to MD
Does not export constraint info, but now exports fields from BasedOn data elements. | standardhealth_shr-text-import | train |
b0310ef84a01ef5e4448abb7284537e4f04cf568 | diff --git a/test/base_test.rb b/test/base_test.rb
index <HASH>..<HASH> 100644
--- a/test/base_test.rb
+++ b/test/base_test.rb
@@ -13,21 +13,18 @@ scope Hobbit::Base do
end
%w(DELETE GET HEAD OPTIONS PATCH POST PUT).each do |verb|
- str = <<EOS
- scope "::#{verb.downcase}" do
- test 'adds a route to @rou... | improve tests. thanks @f-3r for the suggestion! | patriciomacadden_hobbit | train |
860ad6a1bf878ab752e8b7e31a90a3e828f249ad | diff --git a/src/Rules/Classes/ImpossibleInstanceOfRule.php b/src/Rules/Classes/ImpossibleInstanceOfRule.php
index <HASH>..<HASH> 100644
--- a/src/Rules/Classes/ImpossibleInstanceOfRule.php
+++ b/src/Rules/Classes/ImpossibleInstanceOfRule.php
@@ -6,6 +6,7 @@ use PhpParser\Node;
use PHPStan\Analyser\Scope;
use PHPStan... | String on the right side of instanceof is allowed, may contain a class name | phpstan_phpstan | train |
85d79e89b06ff1f8f35816606c440dd5ea8c0b0e | diff --git a/worker/crlWorker/crlWorker.go b/worker/crlWorker/crlWorker.go
index <HASH>..<HASH> 100644
--- a/worker/crlWorker/crlWorker.go
+++ b/worker/crlWorker/crlWorker.go
@@ -8,20 +8,26 @@ import (
"fmt"
"io/ioutil"
"net/http"
+ "os"
"sync"
"time"
"github.com/mozilla/tls-observatory/certificate"
"gi... | crlWorker: use gregjones/httpcache as a caching http client | mozilla_tls-observatory | train |
d3441db052b7751da53ea86937e8c40c7bcb60ff | diff --git a/pysc2/env/sc2_env.py b/pysc2/env/sc2_env.py
index <HASH>..<HASH> 100644
--- a/pysc2/env/sc2_env.py
+++ b/pysc2/env/sc2_env.py
@@ -569,21 +569,25 @@ class SC2Env(environment.Base):
"""Apply action delays to the requested actions, if configured to."""
assert not self._realtime
actions_now = []... | Update sc2_env action delays to work, since we changed actions to lists of actions.
PiperOrigin-RevId: <I> | deepmind_pysc2 | train |
14d257bca5e7ef612bbe3efe1271e4b6a97b1108 | diff --git a/gwpy/tests/test_segments.py b/gwpy/tests/test_segments.py
index <HASH>..<HASH> 100644
--- a/gwpy/tests/test_segments.py
+++ b/gwpy/tests/test_segments.py
@@ -186,6 +186,19 @@ class DataQualityFlagTests(unittest.TestCase):
self.assertEqual(flag.known, QUERY_KNOWN)
self.assertEqual(... | test_segments: new test for bug in query_dqsegdb
- multi-segment queries only preserve results from final segment | gwpy_gwpy | train |
c4e86e34530505fa981aa2a5c8cf07f7d493f50c | diff --git a/environs/maas/storage.go b/environs/maas/storage.go
index <HASH>..<HASH> 100644
--- a/environs/maas/storage.go
+++ b/environs/maas/storage.go
@@ -179,7 +179,7 @@ func (stor *maasStorage) URL(name string) (string, error) {
}
func (stor *maasStorage) Put(name string, r io.Reader, length int64) error {
- ... | Stop writing uploaded file at given length. | juju_juju | train |
507c3f280224d9b12de0f7f715689ee39805db27 | diff --git a/pkg/kubectl/cmd/run.go b/pkg/kubectl/cmd/run.go
index <HASH>..<HASH> 100644
--- a/pkg/kubectl/cmd/run.go
+++ b/pkg/kubectl/cmd/run.go
@@ -326,7 +326,6 @@ func waitForPodRunning(c *client.Client, pod *api.Pod, out io.Writer) (status ap
}
fmt.Fprintf(out, "Waiting for pod %s/%s to be running, status is... | Remove unneeded continute
very minor but I noticed and it and it bugged me :-) | kubernetes_kubernetes | train |
3945a04dc447aac7c509425f2e991f474ac4d65a | diff --git a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OCreateIndexStatement.java b/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OCreateIndexStatement.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/orientechnologies/orient/core/sql/parser/OCreateIndexStatement.jav... | fixed name generation in index statement in case of recordAttribute | orientechnologies_orientdb | train |
cd477f8c3ef2c5631e4a3331fd6436ed0ea3fe90 | diff --git a/mod/scorm/lib.php b/mod/scorm/lib.php
index <HASH>..<HASH> 100644
--- a/mod/scorm/lib.php
+++ b/mod/scorm/lib.php
@@ -1627,12 +1627,21 @@ function scorm_refresh_events($courseid = 0) {
*/
function mod_scorm_core_calendar_provide_event_action(calendar_event $event,
... | MDL-<I> mod_scorm: cache times in modinfo for performance | moodle_moodle | train |
587077a97e6d571f343e68b5a174b146dcb74a11 | diff --git a/server.go b/server.go
index <HASH>..<HASH> 100644
--- a/server.go
+++ b/server.go
@@ -232,7 +232,7 @@ type Server struct {
Autoindex bool `json:"autoindex"`
// If Autoindex is enabled, this allows the template used to generate the index page to be customized.
- AutoindexTemplate string `json:"autoind... | Fixing snake_case in configs (making camelCase). IF THIS BROKE ANYTHING FOR YOU I AM SORRY PLEASE CALL ME OUT ON GITHUB | ghetzel_diecast | train |
cdd736d9e00744c5c2f65073143bf9a0faacb289 | diff --git a/scripts/utils/createJestConfig.js b/scripts/utils/createJestConfig.js
index <HASH>..<HASH> 100644
--- a/scripts/utils/createJestConfig.js
+++ b/scripts/utils/createJestConfig.js
@@ -21,8 +21,8 @@ module.exports = (resolve, rootDir) => {
const config = {
moduleFileExtensions: ['jsx', 'js', 'json'],
... | Fix mocking assets with special characters in the file path (#<I>)
The regexes in the Jest `moduleNameMapper` configs were a bit too strict,
causing them to not pick up files with special characters like `@` in the
file path. Change them to match anything with the correct file extension. | vcarl_create-react-app | train |
2c08a0f7aec74c6d24f1bc86e51cfe016a083ddc | diff --git a/src/AnyContent/Client/Sequence.php b/src/AnyContent/Client/Sequence.php
index <HASH>..<HASH> 100755
--- a/src/AnyContent/Client/Sequence.php
+++ b/src/AnyContent/Client/Sequence.php
@@ -23,17 +23,17 @@ class Sequence implements \Iterator, \Countable
$this->dataTypeDefinition = $dataTypeDefinition;... | moving getTable and getArrayPropery to abstract record class | nhagemann_anycontent-client-php | train |
021e8059f69ea6b1a3f12b1356f555ec44dc4cef | diff --git a/spec/models/page_spec.rb b/spec/models/page_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/models/page_spec.rb
+++ b/spec/models/page_spec.rb
@@ -420,7 +420,7 @@ describe Page do
end
it 'should return a collection containing the default_child and ordered by name Page descendants that are in_men... | Account for new descendants implementation since Rails 3 (called multiple times) | radiant_radiant | train |
e4de52c6e12bc99291b608577b28aff3e351d7aa | diff --git a/salt/modules/win_network.py b/salt/modules/win_network.py
index <HASH>..<HASH> 100644
--- a/salt/modules/win_network.py
+++ b/salt/modules/win_network.py
@@ -295,12 +295,13 @@ def ip_addrs6(interface=None, include_loopback=False):
ipaddrs6 = ip_addrs6
+
def connect(host, port=None, **kwargs):
''... | Fixed Pylint and version added | saltstack_salt | train |
bc626445a9741523430bf9432ee55bbfbf68a7b7 | diff --git a/src/txkube/testing/strategies.py b/src/txkube/testing/strategies.py
index <HASH>..<HASH> 100644
--- a/src/txkube/testing/strategies.py
+++ b/src/txkube/testing/strategies.py
@@ -118,7 +118,23 @@ def objectcollections():
return builds(
ObjectCollection,
items=one_of(
- list... | Make sure items are unique by name/namespace within a single collection. | LeastAuthority_txkube | train |
ab694beb3331ca6d37bf29f0f783c2cd57c52bb5 | diff --git a/unixccompiler.py b/unixccompiler.py
index <HASH>..<HASH> 100644
--- a/unixccompiler.py
+++ b/unixccompiler.py
@@ -17,7 +17,7 @@ the "typical" Unix-style command-line C compiler:
__revision__ = "$Id$"
-import string, re, os
+import string, re, os, sys
from types import *
from copy import copy
from d... | on MacOSX/Darwin, use ranlib when building static libs. | pypa_setuptools | train |
096b531a3fbdcb52848ad18528f95203d17ffa29 | diff --git a/src/main/java/org/takes/facets/forward/RsFailure.java b/src/main/java/org/takes/facets/forward/RsFailure.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/takes/facets/forward/RsFailure.java
+++ b/src/main/java/org/takes/facets/forward/RsFailure.java
@@ -47,15 +47,33 @@ public class RsFailure extend... | #<I> new ctors for RsFailure | yegor256_takes | train |
98bb925323335a79800bfa126f013307ebe55306 | diff --git a/modules/cmsadmin/models/NavItem.php b/modules/cmsadmin/models/NavItem.php
index <HASH>..<HASH> 100644
--- a/modules/cmsadmin/models/NavItem.php
+++ b/modules/cmsadmin/models/NavItem.php
@@ -62,8 +62,8 @@ class NavItem extends \yii\db\ActiveRecord implements \admin\base\GenericSearchI
public function a... | Translation of model attributes this closes #<I> | luyadev_luya | train |
b42861ae147755ba6a4f35de2739840a332be1fb | diff --git a/src/main/java/org/eluder/coveralls/maven/plugin/logging/DryRunLogger.java b/src/main/java/org/eluder/coveralls/maven/plugin/logging/DryRunLogger.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/eluder/coveralls/maven/plugin/logging/DryRunLogger.java
+++ b/src/main/java/org/eluder/coveralls/maven/pl... | #<I>: Improved dry run logging. | trautonen_coveralls-maven-plugin | train |
d6c6b791abe4e3f29022f42b48296df9f22faa87 | diff --git a/src/Tests/Application/WebTest.php b/src/Tests/Application/WebTest.php
index <HASH>..<HASH> 100644
--- a/src/Tests/Application/WebTest.php
+++ b/src/Tests/Application/WebTest.php
@@ -2,7 +2,6 @@
namespace Symlex\Tests\Application;
-use Psr\Container\ContainerInterface;
use Symfony\Component\HttpFounda... | Tests: Rename SymfonyRouterTest to WebTest | symlex_symlex-core | train |
ab51096ef8dc1587cc08d38a5be8d598ceebc73e | diff --git a/examples/playground.js b/examples/playground.js
index <HASH>..<HASH> 100644
--- a/examples/playground.js
+++ b/examples/playground.js
@@ -1,5 +1,11 @@
var pileup = require('pileup');
+// We are going to use the same data source for multiple tracks
+var bamSource = pileup.formats.bam({
+ url: '/test-dat... | make different tracks use the same data source in the playground example | hammerlab_pileup.js | train |
6075a86ef9810670e9b89c9f4321aad19158fad0 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -48,9 +48,9 @@ copyright = u'2009-2013, The fellowship of the packaging'
# built documents.
#
# The short X.Y version.
-version = '0.7b1'
+version = '0.7b2'
# The full version, including alpha/beta/rc tags.... | Bump to <I>b2 for next release | pypa_setuptools | train |
d18a35a0ae5f12e179dbd260b07941b893a9fcb0 | diff --git a/src/stringProcessing/markWordsInSentences.js b/src/stringProcessing/markWordsInSentences.js
index <HASH>..<HASH> 100644
--- a/src/stringProcessing/markWordsInSentences.js
+++ b/src/stringProcessing/markWordsInSentences.js
@@ -23,24 +23,11 @@ const collectMarkingsInSentence = function( sentence, topicFoundI... | Add escape character to stripWordBoundaries regex and remove unused code in markWordsInSentences | Yoast_YoastSEO.js | train |
1bfcb827e1eaee0e68e4b6ab10850e74bff924a8 | diff --git a/core/src/main/java/org/bitcoinj/wallet/WalletProtobufSerializer.java b/core/src/main/java/org/bitcoinj/wallet/WalletProtobufSerializer.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/bitcoinj/wallet/WalletProtobufSerializer.java
+++ b/core/src/main/java/org/bitcoinj/wallet/WalletProtobufSeria... | WalletProtobufSerializer: extract wallet constructor reference to WalletFactory::DEFAULT
This makes the default implementation more obvious and easier to
reference. It will also will help us make the WalletFactory member
of WalletAppKit `@Nonnull` in a dependent PR. | bitcoinj_bitcoinj | train |
f8ead56ff608c359b2445ecd0c491bf48a4a11f3 | diff --git a/lib/serializer.js b/lib/serializer.js
index <HASH>..<HASH> 100644
--- a/lib/serializer.js
+++ b/lib/serializer.js
@@ -15,6 +15,7 @@
var xml2js = require( 'xml2js' )
, jstoxml = require( 'jstoxml' )
+ , domain = require( 'domain' )
, events = require("events")
, util = require("util")
, Clas... | adding a helper for try/catch blocks | node-tastypie_tastypie | train |
7f197e1baf1e0d060a52c9c37a39341521c2c934 | diff --git a/src/Stevebauman/Maintenance/Models/InventoryStock.php b/src/Stevebauman/Maintenance/Models/InventoryStock.php
index <HASH>..<HASH> 100644
--- a/src/Stevebauman/Maintenance/Models/InventoryStock.php
+++ b/src/Stevebauman/Maintenance/Models/InventoryStock.php
@@ -2,6 +2,7 @@
namespace Stevebauman\Maintena... | Fixed model relationship and some other tweaks | stevebauman_maintenance | train |
9bf38c00fba7964b02cd5a2467b866b56065228d | diff --git a/lib/json_api_client/result_set.rb b/lib/json_api_client/result_set.rb
index <HASH>..<HASH> 100644
--- a/lib/json_api_client/result_set.rb
+++ b/lib/json_api_client/result_set.rb
@@ -2,6 +2,7 @@ module JsonApiClient
class ResultSet < Array
attr_accessor :total_pages, :total_entries, :offset, :per_... | Added will_paginate and kaminari pagination methods and tests | JsonApiClient_json_api_client | train |
43c05efb22d101f2a69ee29b256bad4f9272190f | diff --git a/pkg/server/container_start.go b/pkg/server/container_start.go
index <HASH>..<HASH> 100644
--- a/pkg/server/container_start.go
+++ b/pkg/server/container_start.go
@@ -27,7 +27,6 @@ import (
"golang.org/x/net/context"
"k8s.io/kubernetes/pkg/kubelet/apis/cri/v1alpha1/runtime"
- customopts "github.com/ku... | Revert: Setting containerd shim cgroup same as pod cgroup | containerd_containerd | train |
d08e54eab57493bc406391446973ca6f20f28831 | diff --git a/lib/cli.js b/lib/cli.js
index <HASH>..<HASH> 100644
--- a/lib/cli.js
+++ b/lib/cli.js
@@ -156,7 +156,7 @@ function prepareAndStartTheTest(ts) {
var launcher = new Launcher(ts, startup);
console.log('Test started...');
launcher
- .run(capsArr)
+ .run(capsArr, ts.environment)
... | Fix environment not being read from suite json definition | oxygenhq_oxygen | train |
4d5d22be6bd53843e4e0a19990e8231a8745f1c6 | diff --git a/src/Flare/Admin/Models/ModelAdmin.php b/src/Flare/Admin/Models/ModelAdmin.php
index <HASH>..<HASH> 100644
--- a/src/Flare/Admin/Models/ModelAdmin.php
+++ b/src/Flare/Admin/Models/ModelAdmin.php
@@ -60,13 +60,13 @@ class ModelAdmin extends Admin implements ModelWriteableInterface
protected $rules = [];... | Rename summary_fields property to columns | laravelflare_flare | train |
c9c9127cd386b214fad6492b172e263e2ebe6984 | diff --git a/lib/Rackem/Server.php b/lib/Rackem/Server.php
index <HASH>..<HASH> 100644
--- a/lib/Rackem/Server.php
+++ b/lib/Rackem/Server.php
@@ -43,8 +43,14 @@ class Server
$this->listening = false;
socket_close($this->master);
$buffer = '';
- //while(!preg_match('/\r?\n\r?\n/',$buffer, $s))
- $b... | more reliably read and write from the socket. | tamagokun_rackem | train |
b35e001755d9eaa78092f937dfa94002ef9ec349 | diff --git a/lib/chef/client.rb b/lib/chef/client.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/client.rb
+++ b/lib/chef/client.rb
@@ -428,7 +428,9 @@ class Chef
run_context = setup_run_context
- converge(run_context)
+ catch (:interrupt_run_and_reboot) do
+ converge(run_context)
+ ... | Re-implement immediate reboot using throw/catch, so all the end-of-run
tasks (e.g. report handlers) still get to run. | chef_chef | train |
b89f56910ea1ead97448ba5fc88b3491f9029ddc | diff --git a/axiom/test/test_reference.py b/axiom/test/test_reference.py
index <HASH>..<HASH> 100644
--- a/axiom/test/test_reference.py
+++ b/axiom/test/test_reference.py
@@ -80,7 +80,7 @@ class BadReferenceTestCase(TestCase):
self.assertEqual(referent.ref, None)
- def testBrokenReferenceException(self)... | Apply safer.patch
Author: exarkun
Reviewer: glyph
Fixes: #<I>
Ensure that global state mutated by `test_brokenReferenceException` is restored to its
original value even if the test fails. | twisted_axiom | train |
41bbb244b9819e9c7b09d69ca347e988fcb7edc8 | diff --git a/gosu-core/src/main/java/gw/internal/gosu/compiler/protocols/gosuclass/GosuClassesUrlConnection.java b/gosu-core/src/main/java/gw/internal/gosu/compiler/protocols/gosuclass/GosuClassesUrlConnection.java
index <HASH>..<HASH> 100644
--- a/gosu-core/src/main/java/gw/internal/gosu/compiler/protocols/gosuclass/G... | Avoid loading a Gosu class dynamically from source in a classloader (primarily a PluginContainer) if the GosuClass has a .class file on disk in the classpath of a parent loader (primarily an AppLoader). This change fixes LinkageErrors where our PluginContainer dynamically loads Gosu classes that are also loaded in the... | gosu-lang_gosu-lang | train |
fe2b6493f3b20c3d6b01d6f519f02caec4bb08a5 | diff --git a/IronCore.class.php b/IronCore.class.php
index <HASH>..<HASH> 100644
--- a/IronCore.class.php
+++ b/IronCore.class.php
@@ -42,6 +42,7 @@ class IronCore{
public $max_retries = 5;
public $debug_enabled = false;
+ public $ssl_verifypeer = true;
protected static function dateRfc3339($... | ssl_verifypeer support | iron-io_iron_core_php | train |
c96886b48452c6650ba7fcc51b0ebf4954c7eee5 | diff --git a/kiss/kiss.py b/kiss/kiss.py
index <HASH>..<HASH> 100644
--- a/kiss/kiss.py
+++ b/kiss/kiss.py
@@ -255,17 +255,9 @@ class Kiss(object):
:param frame: Frame to write.
"""
- interface_handler = None
+ kiss_packet = [kiss.constants.FEND] + [Kiss.__command_byte_combine(port, ki... | Attempt to fix a bug where kiss over TCP wasnt working. | Syncleus_apex-aprs | train |
07563036b0b5c5ddf5b1a31473aa2a2b32b608f5 | diff --git a/actionmailer/lib/action_mailer/message_delivery.rb b/actionmailer/lib/action_mailer/message_delivery.rb
index <HASH>..<HASH> 100644
--- a/actionmailer/lib/action_mailer/message_delivery.rb
+++ b/actionmailer/lib/action_mailer/message_delivery.rb
@@ -53,6 +53,12 @@ module ActionMailer
# Notifier.welc... | Move the options for deliver_later up near to the example [ci skip]
- And move the Active Job related section down. Otherwise it was
appearing as if the options are available for the `delivery_job`
setting. | rails_rails | train |
c7343ea03d4e9382dec1ff9c25f5629c68fc87bb | diff --git a/src/python/grpcio/grpc/_channel.py b/src/python/grpcio/grpc/_channel.py
index <HASH>..<HASH> 100644
--- a/src/python/grpcio/grpc/_channel.py
+++ b/src/python/grpcio/grpc/_channel.py
@@ -1000,6 +1000,11 @@ def _unsubscribe(state, callback):
break
+def _unsubscribe_all(state):
+ with ... | Unsubscribe all connectivity callbacks on Channel.close | grpc_grpc | train |
7310912f77f1600056c1c08ec64575a33385c4c0 | diff --git a/server/irc/commands.js b/server/irc/commands.js
index <HASH>..<HASH> 100644
--- a/server/irc/commands.js
+++ b/server/irc/commands.js
@@ -416,7 +416,7 @@ var listeners = {
}
}
- event = (_.contains(this.irc_connection.options.CHANTYPES, command.params[0][0]) ? 'channe... | Add missing colon to MODE event name | prawnsalad_KiwiIRC | train |
c09b685f31230485759072cc8c56d8b3bc25db90 | diff --git a/src/directives/formly-field.js b/src/directives/formly-field.js
index <HASH>..<HASH> 100644
--- a/src/directives/formly-field.js
+++ b/src/directives/formly-field.js
@@ -131,7 +131,7 @@ function formlyField($http, $q, $compile, $templateCache, $interpolate, formlyCo
function mergeOptions(options, extr... | feat(defaultOptions): Pass scope to the function version
In order to get access to some critical information about the field, we're passing the to
the defaultOptions function in addition to the original . This comes in as the 2nd argument
(new). | formly-js_angular-formly | train |
7ed0420b2fc18f84932a35858768a347dcfff152 | diff --git a/lib/review/markdownbuilder.rb b/lib/review/markdownbuilder.rb
index <HASH>..<HASH> 100644
--- a/lib/review/markdownbuilder.rb
+++ b/lib/review/markdownbuilder.rb
@@ -159,6 +159,24 @@ module ReVIEW
puts '</div>'
end
+ CAPTION_TITLES.each do |name|
+ class_eval %Q(
+ def #{name}_... | define minicolumn in Markdown and ReST | kmuto_review | train |
111252583982b758766e1e9d09d76586f7e0c0a5 | diff --git a/src/createFirebaseInstance.js b/src/createFirebaseInstance.js
index <HASH>..<HASH> 100644
--- a/src/createFirebaseInstance.js
+++ b/src/createFirebaseInstance.js
@@ -1,4 +1,5 @@
import { isObject } from 'lodash'
+import { merge } from 'lodash/fp'
import { getEventsFromInput, createCallable } from './util... | fix(createFirebaseInstance): merge internals on instance recreation | prescottprue_react-redux-firebase | train |
9dc1d5f17ad9e49b9e36867430cb6381842da397 | diff --git a/lib/flor/punit/concurrence.rb b/lib/flor/punit/concurrence.rb
index <HASH>..<HASH> 100644
--- a/lib/flor/punit/concurrence.rb
+++ b/lib/flor/punit/concurrence.rb
@@ -113,7 +113,8 @@ class Flor::Pro::Concurrence < Flor::Procedure
def store_payload
- (@node['payloads'] ||= {})[@message['from']] = p... | adapt "concurrence" to Flor::Ash | floraison_flor | train |
ee2bcfc429f08c9e5b7660ccd3b81adaaceb6889 | diff --git a/src/CommandTransaction.php b/src/CommandTransaction.php
index <HASH>..<HASH> 100644
--- a/src/CommandTransaction.php
+++ b/src/CommandTransaction.php
@@ -36,13 +36,16 @@ class CommandTransaction
/**
* @param ServiceClientInterface $client Client that executes commands
* @param CommandInte... | Adding the ability to pass in context in constructor | guzzle_command | train |
59da00744e990e3ce7a4467383b3d9480a215134 | diff --git a/state/backups/metadata_windows.go b/state/backups/metadata_windows.go
index <HASH>..<HASH> 100644
--- a/state/backups/metadata_windows.go
+++ b/state/backups/metadata_windows.go
@@ -1,8 +1,6 @@
// Copyright 2014 Canonical Ltd.
// Licensed under the AGPLv3, see LICENCE file for details.
-// +build !wind... | Drop the compile tag from the windows version (the file name covers it). | juju_juju | train |
837c76c758edc5245c98ee9b41ff7d26345efb99 | diff --git a/packages/metascraper-video-provider/index.js b/packages/metascraper-video-provider/index.js
index <HASH>..<HASH> 100644
--- a/packages/metascraper-video-provider/index.js
+++ b/packages/metascraper-video-provider/index.js
@@ -21,11 +21,15 @@ const isSupportedProvided = url => providers.includes(parseDomain... | Cache non supported urls as well | microlinkhq_metascraper | train |
abd838ae846e0d4705d131eed9fd939889e91dba | diff --git a/lib/brainstem/api_docs/endpoint.rb b/lib/brainstem/api_docs/endpoint.rb
index <HASH>..<HASH> 100644
--- a/lib/brainstem/api_docs/endpoint.rb
+++ b/lib/brainstem/api_docs/endpoint.rb
@@ -148,6 +148,40 @@ module Brainstem
#
+ # Returns a hash of all params nested under the specified root or
+... | Implement ApiDocs::Endpoint#params_configuration_tree
- This method returns a tree structure with the field name as key and value as the config of the field.
- Sub fields of root params are captured under `_fields` key as part of the field config | mavenlink_brainstem | train |
75e3d7c3abd7a1ef542ea6fd26cb511d3cda56e8 | diff --git a/src/main/java/com/hazelcast/aws/impl/DescribeInstances.java b/src/main/java/com/hazelcast/aws/impl/DescribeInstances.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/hazelcast/aws/impl/DescribeInstances.java
+++ b/src/main/java/com/hazelcast/aws/impl/DescribeInstances.java
@@ -37,6 +37,7 @@ import ... | closed unreleased source
streams closed in finally blocks | hazelcast_hazelcast | train |
d1bfb3f8ffdd527f68b7565542387566e1ccb3a0 | diff --git a/federation/pkg/federation-controller/replicaset/replicasetcontroller.go b/federation/pkg/federation-controller/replicaset/replicasetcontroller.go
index <HASH>..<HASH> 100644
--- a/federation/pkg/federation-controller/replicaset/replicasetcontroller.go
+++ b/federation/pkg/federation-controller/replicaset/r... | Events for federated replica set controller | kubernetes_kubernetes | train |
8b1cdd07b7eb008ccbbc7808d7079fbaede61271 | diff --git a/lib/rails-footnotes/notes/log_note.rb b/lib/rails-footnotes/notes/log_note.rb
index <HASH>..<HASH> 100644
--- a/lib/rails-footnotes/notes/log_note.rb
+++ b/lib/rails-footnotes/notes/log_note.rb
@@ -19,18 +19,22 @@ module Footnotes
end
def title
- "Log (#{log.count("\n")})"
+ "... | Fix count in log note and use tables | josevalim_rails-footnotes | train |
21dcdf411293a24e3c7a1b3f3e3ad56f6d39da99 | diff --git a/fermipy/gtanalysis.py b/fermipy/gtanalysis.py
index <HASH>..<HASH> 100644
--- a/fermipy/gtanalysis.py
+++ b/fermipy/gtanalysis.py
@@ -31,7 +31,7 @@ from fermipy.extension import ExtensionFit
from fermipy.utils import merge_dict
from fermipy.utils import create_hpx_disk_region_string
from fermipy.utils i... | Deal with composite sources and HPX basked exposures | fermiPy_fermipy | train |
fc7ab3fae671f916ba0a55f529912806bcc3c6f4 | diff --git a/lib/queue.js b/lib/queue.js
index <HASH>..<HASH> 100644
--- a/lib/queue.js
+++ b/lib/queue.js
@@ -10,7 +10,7 @@ var refs = require('./util').refs;
var debug = new DebugLog('firebase:queue')
- //Worker tasks specs
+//Worker tasks specs
var specs = {
device_register: {
error_state: 'error',
@@... | fix typo in uninstall obj | matrix-io_matrix-firebase | train |
3c207bb5597de8dd0180ebced50eb87ff1556a05 | diff --git a/openquake/engine/tools/save_hazards.py b/openquake/engine/tools/save_hazards.py
index <HASH>..<HASH> 100644
--- a/openquake/engine/tools/save_hazards.py
+++ b/openquake/engine/tools/save_hazards.py
@@ -256,6 +256,11 @@ def main(hazard_calculation_id, outdir=None):
Dump a hazard_calculation and its rel... | added assertion to check for the existance of the hc | gem_oq-engine | train |
6e84b6a090c9dcf90f2ebbb53ae9f21fd4bf8068 | diff --git a/document_page_approval/models/document_page_history.py b/document_page_approval/models/document_page_history.py
index <HASH>..<HASH> 100644
--- a/document_page_approval/models/document_page_history.py
+++ b/document_page_approval/models/document_page_history.py
@@ -77,7 +77,7 @@ class DocumentPageHistory(m... | [FIX] document_page_approval: Add correct followers in history pages | OCA_knowledge | train |
c9d15da713025c5cc98b60820e3f3c7557b816de | diff --git a/src/File/InputFile.php b/src/File/InputFile.php
index <HASH>..<HASH> 100644
--- a/src/File/InputFile.php
+++ b/src/File/InputFile.php
@@ -16,6 +16,11 @@ class InputFile
$this->file = $file;
}
+ public function getFileInfo()
+ {
+ return $this->file;
+ }
+
public functio... | Expose `getFileInfo()` method on InputFile to access underlying SplFileInfo | tightenco_jigsaw | train |
aa9c8c18f0297f3d7a483662e6f8693f00dcbc58 | diff --git a/src/Drivers/Facebook/FacebookDriver.php b/src/Drivers/Facebook/FacebookDriver.php
index <HASH>..<HASH> 100644
--- a/src/Drivers/Facebook/FacebookDriver.php
+++ b/src/Drivers/Facebook/FacebookDriver.php
@@ -2,9 +2,6 @@
namespace Mpociot\BotMan\Drivers\Facebook;
-use Mpociot\BotMan\DriverEvents\Facebook... | Apply fixes from StyleCI (#<I>) | botman_botman | train |
fd8791697232e24263d78fa975d4618e81f8a79c | diff --git a/src/js/pannellum.js b/src/js/pannellum.js
index <HASH>..<HASH> 100644
--- a/src/js/pannellum.js
+++ b/src/js/pannellum.js
@@ -503,6 +503,7 @@ function createHotSpots() {
hs.div = div;
});
}
+ renderHotSpots();
}
function destroyHotSpots() { | Fix bug with hotspots not appearing. | mpetroff_pannellum | train |
3bfa1b8615b7d3b157db9cc6a045e013d6cce2d8 | diff --git a/src/ai/backend/common/logging.py b/src/ai/backend/common/logging.py
index <HASH>..<HASH> 100644
--- a/src/ai/backend/common/logging.py
+++ b/src/ai/backend/common/logging.py
@@ -314,6 +314,7 @@ class RelayHandler(logging.Handler):
try:
pickled_rec = pickle.dumps(record)
excep... | redis: Add a refactored version of execute_script() | lablup_backend.ai-common | train |
984cd35c419da1d7810497f9c7c3027965412183 | diff --git a/roboconf-messaging/src/main/java/net/roboconf/messaging/internal/client/rabbitmq/DmClient.java b/roboconf-messaging/src/main/java/net/roboconf/messaging/internal/client/rabbitmq/DmClient.java
index <HASH>..<HASH> 100644
--- a/roboconf-messaging/src/main/java/net/roboconf/messaging/internal/client/rabbitmq/... | Add a new log trace to measure message sending on the DM's side | roboconf_roboconf-platform | train |
99c18fae3f2117e6149ee6e6e5ccc1aa9e99d52d | diff --git a/ontrack-web/src/app/app.js b/ontrack-web/src/app/app.js
index <HASH>..<HASH> 100644
--- a/ontrack-web/src/app/app.js
+++ b/ontrack-web/src/app/app.js
@@ -86,10 +86,14 @@ var ontrack = angular.module('ontrack', [
var promises = extensions.resources.map(function (extension) {
... | #<I> More logging about the loading of extensions | nemerosa_ontrack | train |
b7f5bb822a4b521e57d9e6a92fc9dd26d1e4f258 | diff --git a/lib/better_errors/middleware.rb b/lib/better_errors/middleware.rb
index <HASH>..<HASH> 100644
--- a/lib/better_errors/middleware.rb
+++ b/lib/better_errors/middleware.rb
@@ -8,8 +8,11 @@ module BetterErrors
end
def call(env)
- if env["PATH_INFO"] =~ %r{/__better_errors/(?<oid>\d+)/(?<m... | /__better_errors should show the most recent error page | BetterErrors_better_errors | train |
4927aa8cea02d2425f79e4f2b76574820275dde2 | diff --git a/lib/pkgcloud/core/base/client.js b/lib/pkgcloud/core/base/client.js
index <HASH>..<HASH> 100644
--- a/lib/pkgcloud/core/base/client.js
+++ b/lib/pkgcloud/core/base/client.js
@@ -82,7 +82,6 @@ Client.prototype._doRequest = function (options, callback) {
}
}
-
function sendRequest(opts) {
... | [minor] Additional logging for requests | pkgcloud_pkgcloud | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.