hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
0b0e015ea83d7c4e8790e13e9d0939209544edb3 | diff --git a/app/controllers/devise/invitations_controller.rb b/app/controllers/devise/invitations_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/devise/invitations_controller.rb
+++ b/app/controllers/devise/invitations_controller.rb
@@ -38,9 +38,11 @@ class Devise::InvitationsController < DeviseContro... | Moves yield around resource before checking if invitation accepted succeded | scambra_devise_invitable | train |
9b02d54138bc5775c9da9679eb15ce07805e472e | diff --git a/pandas/io/pytables.py b/pandas/io/pytables.py
index <HASH>..<HASH> 100644
--- a/pandas/io/pytables.py
+++ b/pandas/io/pytables.py
@@ -1431,7 +1431,12 @@ class HDFStore:
return kwargs
def _create_storer(
- self, group, format=None, value=None, **kwargs
+ self,
+ group,
+... | CLN: fix pytables passing too many kwargs (#<I>) | pandas-dev_pandas | train |
4099597c8363589606e1b34c297c2e4e4d734ea5 | diff --git a/runtime/layers/tests.php b/runtime/layers/tests.php
index <HASH>..<HASH> 100644
--- a/runtime/layers/tests.php
+++ b/runtime/layers/tests.php
@@ -59,7 +59,7 @@ foreach ($fpmLayers as $layer) {
$devLayers = [
'bref/php-73-fpm-dev',
'bref/php-74-fpm-dev',
- // 'bref/php-80-fpm-dev', // skip unt... | [docker] Enable PHP8 tests | mnapoli_bref | train |
e0da728f71ab1c50afa57608b7c5a102a7d307e7 | diff --git a/pandasdmx/model.py b/pandasdmx/model.py
index <HASH>..<HASH> 100644
--- a/pandasdmx/model.py
+++ b/pandasdmx/model.py
@@ -38,6 +38,7 @@ from operator import attrgetter
from traitlets import (
Any,
Bool,
+ CBool,
CFloat,
CInt,
Dict,
@@ -240,6 +241,8 @@ FacetValueType = En... | Implement model classes ComponentValue, DataKey, DataKeySet
Changes to Constraint, ContentConstraint, CubeRegion | dr-leo_pandaSDMX | train |
7b5764c4e8bc63f6814e6a98cd5a3a394748b4fd | diff --git a/controller/extjs/tests/Controller/ExtJS/Media/DefaultTest.php b/controller/extjs/tests/Controller/ExtJS/Media/DefaultTest.php
index <HASH>..<HASH> 100644
--- a/controller/extjs/tests/Controller/ExtJS/Media/DefaultTest.php
+++ b/controller/extjs/tests/Controller/ExtJS/Media/DefaultTest.php
@@ -257,6 +257,10... | skipp failure unit test for refactoring. | Arcavias_arcavias-core | train |
105f2a0f4184e0423081c5f03c918d9f0c714aff | diff --git a/pyvisa/highlevel.py b/pyvisa/highlevel.py
index <HASH>..<HASH> 100644
--- a/pyvisa/highlevel.py
+++ b/pyvisa/highlevel.py
@@ -60,16 +60,18 @@ if TYPE_CHECKING:
#: Named tuple with information about a resource. Returned by some :class:`ResourceManager` methods.
#:
#: :interface_type: Interface type of th... | highlevel: avoid returning a generic resource info for a non-int board
This typically happens for serial resource on Linux where we end up ASRL/dev/tty0::INSTR. Without this change users have to specify the resource class they want. | pyvisa_pyvisa | train |
854a7c5c1cdb0b0a78abe3b282010aa1285db20e | diff --git a/safesql.go b/safesql.go
index <HASH>..<HASH> 100644
--- a/safesql.go
+++ b/safesql.go
@@ -43,7 +43,7 @@ func main() {
os.Exit(2)
}
s := ssautil.CreateProgram(p, 0)
- s.BuildAll()
+ s.Build()
qms := FindQueryMethods(p.Package("database/sql").Pkg, s)
if verbose { | Update usage of go tools ssa
In particular, use Build, renamed from BuildAll in
golang/tools@afcda<I>b<I>c7af<I>a<I>f0b6bdb9c<I>a<I> | stripe_safesql | train |
ea1dc85d50c1e2c86073b84b539515a4af511e9d | diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/jackson/JacksonAutoConfiguration.java
index <HASH>..<HASH> 100644
---... | Isolate Jackson2ObjectMapperBuilder mutation
Previously, Jackson2ObjectMapperBuilder was a singleton bean. This
meant that if it was injected and mutated in one injection point,
usage in a subsequent injection point would see the previous
injection point's mutation which can lead to unexpected failures.
This commit u... | spring-projects_spring-boot | train |
b334ce0b4040855d0ce98366e92df43841561756 | diff --git a/src/main/java/net/dv8tion/jda/MessageBuilder.java b/src/main/java/net/dv8tion/jda/MessageBuilder.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/dv8tion/jda/MessageBuilder.java
+++ b/src/main/java/net/dv8tion/jda/MessageBuilder.java
@@ -142,13 +142,39 @@ public class MessageBuilder
}
/... | Added simple checking to MessageBuilder#build() to check for no content in the message or more than 2k characters in the Message. Also added MessageBuilder#getLength() to determine the length of content before building. | DV8FromTheWorld_JDA | train |
4d9a3a71ed45f66d339aee8f3e5109375f1ae996 | diff --git a/src/main/java/com/brettonw/bag/formats/FormatReader.java b/src/main/java/com/brettonw/bag/formats/FormatReader.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/brettonw/bag/formats/FormatReader.java
+++ b/src/main/java/com/brettonw/bag/formats/FormatReader.java
@@ -7,7 +7,6 @@ import org.apache.log... | mime type handling updated to ensure lower case-ness, and that you don't have to
register the mime type if you are also either registering file mappings or a reader | brettonw_Bag | train |
89cc208d8659815da1d77b50472d5934f1b9afcb | diff --git a/README.rst b/README.rst
index <HASH>..<HASH> 100644
--- a/README.rst
+++ b/README.rst
@@ -118,6 +118,7 @@ Then you can see
}
]
},
+ "ignores": [],
"key": "cf87ecc6d0925914d0deede431f44d0d3f11b390edde53e9147cb52ff6964e38",
"summary": {
... | :new: Add `ignores` to report | tadashi-aikawa_jumeaux | train |
3fc12c957ec5c5302548951b116255662aacdad3 | diff --git a/spillway/fields.py b/spillway/fields.py
index <HASH>..<HASH> 100644
--- a/spillway/fields.py
+++ b/spillway/fields.py
@@ -20,8 +20,3 @@ class GeometryField(Field):
# Value is already serialized as geojson, kml, etc.
except AttributeError:
return value
-
-
-class GDALField(Fil... | Alter serializer for gdal renderers | bkg_django-spillway | train |
ecf804588707bde379a077cf4d84a47e005aafb2 | diff --git a/dvc/project.py b/dvc/project.py
index <HASH>..<HASH> 100644
--- a/dvc/project.py
+++ b/dvc/project.py
@@ -10,7 +10,7 @@ from dvc.logger import Logger
from dvc.exceptions import DvcException
from dvc.stage import Stage
from dvc.config import Config
-from dvc.state import LinkState
+from dvc.state import ... | state: store cache state on per-repo basis | iterative_dvc | train |
9eb8c4b57d3ffcc7804fc38fd28fcb5c6badc5af | diff --git a/simulator/src/main/java/com/hazelcast/simulator/worker/performance/PerformanceTracker.java b/simulator/src/main/java/com/hazelcast/simulator/worker/performance/PerformanceTracker.java
index <HASH>..<HASH> 100644
--- a/simulator/src/main/java/com/hazelcast/simulator/worker/performance/PerformanceTracker.jav... | Made proper fix for stale performance data being sent and stored. | hazelcast_hazelcast-simulator | train |
a239ba2980b39f5dab5ce7558fdd6331a36c76ee | diff --git a/lib/omniauth.rb b/lib/omniauth.rb
index <HASH>..<HASH> 100644
--- a/lib/omniauth.rb
+++ b/lib/omniauth.rb
@@ -34,9 +34,9 @@ module OmniAuth
:path_prefix => '/auth',
:on_failure => OmniAuth::FailureEndpoint,
:failure_raise_out_environments => ['development'],
- :on_callback_hook =>... | set hooks as nil and check for presence | omniauth_omniauth | train |
77ff893ce9f41f182e08e8b57112524e16276de0 | diff --git a/rake-tasks/crazy_fun/mappings/java.rb b/rake-tasks/crazy_fun/mappings/java.rb
index <HASH>..<HASH> 100644
--- a/rake-tasks/crazy_fun/mappings/java.rb
+++ b/rake-tasks/crazy_fun/mappings/java.rb
@@ -335,23 +335,23 @@ module CrazyFunJava
class CopyResources < BaseJava
def handle(fun, dir, args)
- ... | DanielWagnerHall: Do resource copying after resolving dependencies, not before
r<I> | SeleniumHQ_selenium | train |
6f6631379db0939d52d60be6d0a3490eec916852 | diff --git a/src/sap.ui.demokit/src/sap/ui/demokit/DemokitApp.js b/src/sap.ui.demokit/src/sap/ui/demokit/DemokitApp.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.demokit/src/sap/ui/demokit/DemokitApp.js
+++ b/src/sap.ui.demokit/src/sap/ui/demokit/DemokitApp.js
@@ -525,7 +525,8 @@ sap.ui.define(['jquery.sap.global', '... | [FIX] Demokit About dialog is all visible now in small resolutions
Change-Id: I<I>e<I>dd<I>b8fe3e<I>f<I>e<I>d8b<I>cdf<I>
BCP: <I> | SAP_openui5 | train |
b3265e7c1073f76c478ab6a9b79ef564c2770c14 | diff --git a/bees/fsnotifybee/fsnotifybee.go b/bees/fsnotifybee/fsnotifybee.go
index <HASH>..<HASH> 100644
--- a/bees/fsnotifybee/fsnotifybee.go
+++ b/bees/fsnotifybee/fsnotifybee.go
@@ -64,7 +64,7 @@ func (mod *FSNotifyBee) ReloadOptions(options bees.BeeOptions) {
func sendEvent(bee, etype, path string, eventChan cha... | renames event in fsnotifybee | muesli_beehive | train |
edcc8156ba5bcee818be3b497ee91c2995b07801 | diff --git a/docs/build/search.js b/docs/build/search.js
index <HASH>..<HASH> 100644
--- a/docs/build/search.js
+++ b/docs/build/search.js
@@ -157,8 +157,8 @@ const processNode = (node) => {
const level = node.level
const slug = slugify(subheading)
const id = {
- anchor: slug,
- [ 'hierarchy_lv... | feat(docs): further tweaks to search | quasarframework_quasar | train |
47dc22ca0deaf6dde9e65d2efa4dd6f7dc1ace98 | diff --git a/components/users.js b/components/users.js
index <HASH>..<HASH> 100644
--- a/components/users.js
+++ b/components/users.js
@@ -218,16 +218,16 @@ SteamCommunity.prototype.getUserAliases = function(userID, callback) {
};
SteamCommunity.prototype.getUserInventoryContexts = function(userID, callback) {
- if... | Handle cases where inventories are private in getUserInventoryContexts | DoctorMcKay_node-steamcommunity | train |
c3a3fc21ffa88dfeb38bb32041957fb15b257b18 | diff --git a/php/WP_CLI/Iterators/CSV.php b/php/WP_CLI/Iterators/CSV.php
index <HASH>..<HASH> 100644
--- a/php/WP_CLI/Iterators/CSV.php
+++ b/php/WP_CLI/Iterators/CSV.php
@@ -19,7 +19,7 @@ class CSV implements \Iterator {
public function __construct( $filename, $delimiter = ',' ) {
$this->filePointer = fopen( $f... | CS for php/WP_CLI/Iterators/*
Auto-fixing of sniffs no longer excluded.
See #<I>. | wp-cli_wp-cli | train |
ccf8cbd8385b1b373cd798d9448e875f25f711d5 | diff --git a/src/Orm/ObjectTrait.php b/src/Orm/ObjectTrait.php
index <HASH>..<HASH> 100644
--- a/src/Orm/ObjectTrait.php
+++ b/src/Orm/ObjectTrait.php
@@ -28,28 +28,4 @@ trait ObjectTrait
return (new ReflectionClass($class))->newInstanceArgs($args);
}
-
- /**
- * @param string $destination
- ... | Orm : (un)serialize recursive & cast | cawaphp_cawa | train |
afac64a9dd48ff2a74be193bc23eba5a045b6c53 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -57,12 +57,8 @@ function getFilesAndDeps (patterns, context) {
// Futureproof webpack option parsing
function wpGetOptions (context) {
- if (typeof context.query === 'string') {
- if (loaderUtils.getOptions) { return l... | Stop using parseQuery from loader-utils | jeerbl_webfonts-loader | train |
951836fb2d146e07eb326d49c62b65157d0815a2 | diff --git a/src/AlgoliaManager.php b/src/AlgoliaManager.php
index <HASH>..<HASH> 100644
--- a/src/AlgoliaManager.php
+++ b/src/AlgoliaManager.php
@@ -245,19 +245,7 @@ class AlgoliaManager
$response = [];
foreach ($indices as $index) {
- $temporaryIndexName = 'tmp_' . $index->indexName;
-... | Refactor the reindex method for readability | lordthorzonus_yii2-algolia | train |
2f917674d12e59e2a1cef320c9656f3a9d326819 | diff --git a/cake/libs/controller/components/auth.php b/cake/libs/controller/components/auth.php
index <HASH>..<HASH> 100644
--- a/cake/libs/controller/components/auth.php
+++ b/cake/libs/controller/components/auth.php
@@ -65,11 +65,11 @@ class AuthComponent extends Component {
*
* Using the class name without 'Aut... | Fixing docblock to reflect change from '*' to 'all'. Adding note about constant. | cakephp_cakephp | train |
b0ef59f5ece797592730f393c4b2d7bdc0694e1f | diff --git a/lib/webrat/core/elements/field.rb b/lib/webrat/core/elements/field.rb
index <HASH>..<HASH> 100644
--- a/lib/webrat/core/elements/field.rb
+++ b/lib/webrat/core/elements/field.rb
@@ -139,7 +139,7 @@ module Webrat
end
def escaped_value
- CGI.escape([*@value].first.to_s)
+ CGI.escape(@va... | Properly handle multiline param values (previously, subsequent lines were lost) | brynary_webrat | train |
4a2356fb54f0d3fbb5cafd87a322c3de2bb095b4 | diff --git a/src/main/java/net/time4j/PlainTimestamp.java b/src/main/java/net/time4j/PlainTimestamp.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/time4j/PlainTimestamp.java
+++ b/src/main/java/net/time4j/PlainTimestamp.java
@@ -515,12 +515,28 @@ public final class PlainTimestamp
}
/**
+ * <p>... | simple support for combination of PlainTimestamp and offset
Offsets don't require transition strategy as argument. | MenoData_Time4J | train |
a7cec8a8091705183e1b5d142bb6c53f7e62905a | diff --git a/satpy/tests/reader_tests/_modis_fixtures.py b/satpy/tests/reader_tests/_modis_fixtures.py
index <HASH>..<HASH> 100644
--- a/satpy/tests/reader_tests/_modis_fixtures.py
+++ b/satpy/tests/reader_tests/_modis_fixtures.py
@@ -34,7 +34,7 @@ AVAILABLE_1KM_IR_PRODUCT_NAMES = [str(x) for x in range(20, 37)]
AVAIL... | Reduce MODIS L1b/L2 test case size for better test performance | pytroll_satpy | train |
5a2b43aec803b74de5ecb3ae392ed784c22f0c6e | diff --git a/eqcorrscan/tests/match_filter_test.py b/eqcorrscan/tests/match_filter_test.py
index <HASH>..<HASH> 100644
--- a/eqcorrscan/tests/match_filter_test.py
+++ b/eqcorrscan/tests/match_filter_test.py
@@ -656,6 +656,7 @@ class TestMatchObjectHeavy(unittest.TestCase):
saved_party = Party().read("eqcorrsca... | mark parallel function as needing to run in serial | eqcorrscan_EQcorrscan | train |
cf8f29371fb11e46286b5cdb84deb2ffa56c78c8 | diff --git a/src/sap.ui.mdc/src/sap/ui/mdc/Table.js b/src/sap.ui.mdc/src/sap/ui/mdc/Table.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.mdc/src/sap/ui/mdc/Table.js
+++ b/src/sap.ui.mdc/src/sap/ui/mdc/Table.js
@@ -1756,7 +1756,7 @@ sap.ui.define([
context: {title: that.getHeader()}
},
dataSource: oRowB... | [INTERNAL] sap.ui.export - Correction for refactoring
Fixes the file type handling after the latest
refactoring. All file types use the sap.ui.export.FileType
instead of a lower case textual representation.
Change-Id: Ibf<I>a<I>b<I>c<I>df5b7ed7ddf8c9f<I>e3e<I>b | SAP_openui5 | train |
273f3c260106a5228e475a8e2a81f220c0f8f5fe | diff --git a/languagetool-server/src/main/java/org/languagetool/server/DatabaseLogger.java b/languagetool-server/src/main/java/org/languagetool/server/DatabaseLogger.java
index <HASH>..<HASH> 100644
--- a/languagetool-server/src/main/java/org/languagetool/server/DatabaseLogger.java
+++ b/languagetool-server/src/main/ja... | printing warning when logging queue reaches limit | languagetool-org_languagetool | train |
ad7b90293aa7714ea2828b755d781cdb1fc47b57 | diff --git a/indra/databases/chembl_client.py b/indra/databases/chembl_client.py
index <HASH>..<HASH> 100644
--- a/indra/databases/chembl_client.py
+++ b/indra/databases/chembl_client.py
@@ -73,6 +73,26 @@ def send_query(query_dict):
return js
+def query_target(target_chembl_id):
+ """Query ChEMBL API targe... | Query ChEMBL API target by id | sorgerlab_indra | train |
c2315102ff01c093750d0675c8e94aed5ed2fe46 | diff --git a/registry/session.go b/registry/session.go
index <HASH>..<HASH> 100644
--- a/registry/session.go
+++ b/registry/session.go
@@ -158,9 +158,9 @@ func NewSession(client *http.Client, authConfig *cliconfig.AuthConfig, endpoint
}
}
- if endpoint.Version == APIVersion1 {
- client.Transport = AuthTranspor... | Unconditionally add AuthTransport.
Today, endpoints implementing v2 cannot properly fallback to v1 because the underlying transport that deals with authentication (Basic / Token) doesn't get annotated.
This doesn't affect DockerHub because the DockerHub endpoint appears as '<URL>, and the 'v1' tricks this logic just ... | containers_storage | train |
c4ec6cfc808a31088a645ebba7757a13bd483761 | diff --git a/github/github-accessors.go b/github/github-accessors.go
index <HASH>..<HASH> 100644
--- a/github/github-accessors.go
+++ b/github/github-accessors.go
@@ -5580,6 +5580,14 @@ func (k *Key) GetURL() string {
return *k.URL
}
+// GetVerified returns the Verified field if it's non-nil, zero value otherwise.... | User.Keys: Add verified field (#<I>) | google_go-github | train |
17d123a3be3a2c9e21845fda89c61f00301f78f5 | diff --git a/core/manifest/ConfigManifest.php b/core/manifest/ConfigManifest.php
index <HASH>..<HASH> 100644
--- a/core/manifest/ConfigManifest.php
+++ b/core/manifest/ConfigManifest.php
@@ -99,7 +99,7 @@ class SS_ConfigManifest {
}
// If we don't have a variantKeySpec (because we're forcing regen, or it just w... | BUG Ensure correct regeneration of ConfigManifest if only one of the cache files is missing | silverstripe_silverstripe-framework | train |
60e0daea62f1d3a024bc62aca6703ce0eafbdea5 | diff --git a/pymc3/tests/test_distributions.py b/pymc3/tests/test_distributions.py
index <HASH>..<HASH> 100644
--- a/pymc3/tests/test_distributions.py
+++ b/pymc3/tests/test_distributions.py
@@ -948,6 +948,7 @@ class TestMatchesScipy(SeededTest):
Unit,
{"alpha": Rplus, "beta": Rplus},
... | Reduce number of test points in slow logcdf methods (#<I>) | pymc-devs_pymc | train |
b931486ce76f4289069a3cc86c53d0cfb0650c2b | diff --git a/github-downloads-plugin/src/main/java/com/github/maven/plugins/downloads/DownloadsMojo.java b/github-downloads-plugin/src/main/java/com/github/maven/plugins/downloads/DownloadsMojo.java
index <HASH>..<HASH> 100644
--- a/github-downloads-plugin/src/main/java/com/github/maven/plugins/downloads/DownloadsMojo.... | Info log name and size of each download being created | github_maven-plugins | train |
2b9b2aa15bbfb305b45dbe0ad8bc361a97baa8f7 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -76,7 +76,7 @@ NASSL_SETUP = {
'name': "nassl",
'version': __version__,
'package_dir': {'nassl': 'nassl'},
- 'py_modules': ['nassl.__init__', 'nassl.ssl_client', 'nassl.debug_ssl_client', 'nassl.x509_certific... | Remove deleted x<I>_certificate module from setup.py | nabla-c0d3_nassl | train |
aa6d4318792f8542e37bd314f301fa99802fc4d6 | diff --git a/graph/graph.go b/graph/graph.go
index <HASH>..<HASH> 100644
--- a/graph/graph.go
+++ b/graph/graph.go
@@ -259,6 +259,35 @@ func (g *Graph) GetLowestNodes(nodes Nodes) Nodes {
return toReturn
}
+func (g *Graph) insert(flattened []Nodes, circulars Nodes, offset int64) {
+ maxLayer := int64(-1)
+ for i, ... | Modified some unit tests to increase coverage. | Workiva_go-datastructures | train |
b4ff35943cd970750eec69142dfd939d7e6f088e | diff --git a/lib/components/fields/date.js b/lib/components/fields/date.js
index <HASH>..<HASH> 100644
--- a/lib/components/fields/date.js
+++ b/lib/components/fields/date.js
@@ -58,15 +58,10 @@ module.exports = {
var parentOptions = this.inForm()?clone(this.$parent.options.dateOptions):{};
- if (isString(t... | add two-way data binding for select2 and daterangepicker | matfish2_vue-formular | train |
ce24a73e8d8490a54e3ff1b75325d9182d36c74e | diff --git a/js/imolecule.js b/js/imolecule.js
index <HASH>..<HASH> 100644
--- a/js/imolecule.js
+++ b/js/imolecule.js
@@ -5,14 +5,39 @@ var imolecule = {
// Creates a new instance of imolecule
create: function (selector, options) {
- var $s = $(selector), self = this;
+ var $s = $(selector), ... | Incorporated changes from bjonnh/imolecule/feature/canvas-fallback. Fixes #<I>. | patrickfuller_imolecule | train |
24d1839c697db96d08ef4984b4b241f7107ad97e | diff --git a/viewport-units-buggyfill.js b/viewport-units-buggyfill.js
index <HASH>..<HASH> 100755
--- a/viewport-units-buggyfill.js
+++ b/viewport-units-buggyfill.js
@@ -77,7 +77,7 @@
@end
@if (@_jscript_version < 9) {
- isOldIE = true;
+ isOldIE = true;
}
@end
@@ -127,12 +127,12 @@
if ... | feature(init): fixing jshint, limiting console warning to IE<=8 | rodneyrehm_viewport-units-buggyfill | train |
0e7820bdd250679324b570d5220e4bb50233c6af | diff --git a/openquake.cfg b/openquake.cfg
index <HASH>..<HASH> 100644
--- a/openquake.cfg
+++ b/openquake.cfg
@@ -74,7 +74,7 @@ concurrent_tasks = 32
# The number of work items (assets) per task. This affects both the
# RAM usage (the more, the more) and the performance of the
# computation (the more the less).
-bl... | Fixed the bug introduced by change the location field from Geometry to Geography
Former-commit-id: aef3f<I>a8cdc<I>a2cfa<I>dd9a<I>e<I>deb3b | gem_oq-engine | train |
536a5f865fc204bfc6d8c2a51616052dc772374d | diff --git a/src/main/java/io/github/bonigarcia/wdm/Downloader.java b/src/main/java/io/github/bonigarcia/wdm/Downloader.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/github/bonigarcia/wdm/Downloader.java
+++ b/src/main/java/io/github/bonigarcia/wdm/Downloader.java
@@ -297,7 +297,7 @@ public class Downloader {... | Bug-fix for issue #<I>: compatibility with PhantomJS <I>-beta | bonigarcia_webdrivermanager | train |
a3b10a83944a30034c73a12cfe1c317a986da546 | diff --git a/test/passwordless-email/emailcode.acceptance.test.js b/test/passwordless-email/emailcode.acceptance.test.js
index <HASH>..<HASH> 100644
--- a/test/passwordless-email/emailcode.acceptance.test.js
+++ b/test/passwordless-email/emailcode.acceptance.test.js
@@ -15,19 +15,23 @@ describe(".emailcode acceptance",... | Activate test for opening a emailcode Lock | auth0_lock | train |
a28f718ecaca9c9f9dc6feacd8372355e8910339 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
/target
/.classpath
/.project
+/.idea
\ No newline at end of file
diff --git a/src/main/java/ch/ralscha/extdirectspring/controller/ConfigurationService.java b/src/main/java/ch/ralscha/extdirectspring/co... | Resolves #<I> | ralscha_extdirectspring | train |
a95fc0edb63aae4100a51b9c144e346ea17f1fc4 | diff --git a/birkhoff/__init__.py b/birkhoff/__init__.py
index <HASH>..<HASH> 100644
--- a/birkhoff/__init__.py
+++ b/birkhoff/__init__.py
@@ -18,6 +18,6 @@
# Birkhoff. If not, see <http://www.gnu.org/licenses/>.
#: The current version of this package.
-__version__ = '0.0.4'
+__version__ = '0.0.5-dev'
from .dec... | Set development version number to <I>-dev | jfinkels_birkhoff | train |
8d3bfefc27cac103ef7b1ec88295f6f46701c2f2 | diff --git a/src/2D.js b/src/2D.js
index <HASH>..<HASH> 100644
--- a/src/2D.js
+++ b/src/2D.js
@@ -457,13 +457,7 @@ Crafty.c("2D", {
sin: Math.sin(drad),
deg: difference,
rad: drad,
- o: o,
- matrix: {
- M11: ct,
- M12: st,
- ... | Remove IE8 specific rotation code and setup | craftyjs_Crafty | train |
654442f33de17731619ee61b16b511c1cc3264a3 | diff --git a/python_modules/dagster-graphql/dagster_graphql/schema/runs.py b/python_modules/dagster-graphql/dagster_graphql/schema/runs.py
index <HASH>..<HASH> 100644
--- a/python_modules/dagster-graphql/dagster_graphql/schema/runs.py
+++ b/python_modules/dagster-graphql/dagster_graphql/schema/runs.py
@@ -813,8 +813,9 ... | fix graphql log message
Summary: The GraphQL interface says this should not be null - so don't set it to None
Test Plan: existing snapshot tests
Reviewers: prha, max, schrockn
Reviewed By: schrockn
Differential Revision: <URL> | dagster-io_dagster | train |
27fcdb1c54e73b95a0901c6b4cc1600538344d74 | diff --git a/lib/Post.php b/lib/Post.php
index <HASH>..<HASH> 100644
--- a/lib/Post.php
+++ b/lib/Post.php
@@ -1259,7 +1259,7 @@ class Post extends Core implements CoreInterface {
*/
public function date( $date_format = '' ) {
$df = $date_format ? $date_format : get_option('date_format');
- $the_date = (string... | Updates the post and date methods to use data_i<I>n | timber_timber | train |
d11b623fa5a94fcd3f387c0951408e98a7c6dcab | diff --git a/Annis-Web/src/main/webapp/javascript/annis/History.js b/Annis-Web/src/main/webapp/javascript/annis/History.js
index <HASH>..<HASH> 100644
--- a/Annis-Web/src/main/webapp/javascript/annis/History.js
+++ b/Annis-Web/src/main/webapp/javascript/annis/History.js
@@ -66,6 +66,7 @@ Ext.onReady(function()
c... | the history-window is now liquid | korpling_ANNIS | train |
8a725508fa0a8310e1c8b723cde5d7503ef6c784 | diff --git a/lib/resources/FileUploads.js b/lib/resources/FileUploads.js
index <HASH>..<HASH> 100644
--- a/lib/resources/FileUploads.js
+++ b/lib/resources/FileUploads.js
@@ -3,7 +3,6 @@
var utils = require('../utils');
var StripeResource = require('../StripeResource');
var stripeMethod = StripeResource.method;
-var... | remove lodash when required but not used | stripe_stripe-node | train |
314f11cb61a98fce96ce3a27c9ba5ec1936413fb | diff --git a/src/Database/Expression/IdentifierExpression.php b/src/Database/Expression/IdentifierExpression.php
index <HASH>..<HASH> 100644
--- a/src/Database/Expression/IdentifierExpression.php
+++ b/src/Database/Expression/IdentifierExpression.php
@@ -18,7 +18,12 @@ use Cake\Database\ExpressionInterface;
use Cake\D... | Add a bit more documentation and fix up tests. | cakephp_cakephp | train |
585522fc6bd3f3274bb99c406535450e7841cdcf | diff --git a/go/vendor/github.com/keybase/go-framed-msgpack-rpc/rpc/errors.go b/go/vendor/github.com/keybase/go-framed-msgpack-rpc/rpc/errors.go
index <HASH>..<HASH> 100644
--- a/go/vendor/github.com/keybase/go-framed-msgpack-rpc/rpc/errors.go
+++ b/go/vendor/github.com/keybase/go-framed-msgpack-rpc/rpc/errors.go
@@ -1... | revendor rpc library (#<I>) | keybase_client | train |
55c3634359ff5ca81afee5e2140eeddd324445f1 | diff --git a/src/Services/QueuedJobService.php b/src/Services/QueuedJobService.php
index <HASH>..<HASH> 100644
--- a/src/Services/QueuedJobService.php
+++ b/src/Services/QueuedJobService.php
@@ -183,7 +183,11 @@ class QueuedJobService
$jobDescriptor->Implementation = get_class($job);
$jobDescriptor->S... | Check that Security::getCurrentUser() returns not null before accessing property. | symbiote_silverstripe-queuedjobs | train |
ba7dfa8c9ac2614f8c2e5db0619300b8940a2293 | diff --git a/bin/node-pre-gyp-github.js b/bin/node-pre-gyp-github.js
index <HASH>..<HASH> 100755
--- a/bin/node-pre-gyp-github.js
+++ b/bin/node-pre-gyp-github.js
@@ -5,6 +5,7 @@ const program = require('commander');
program
.command('publish')
+ .storeOptionsAsProperties()
.description('publishes the c... | Fixed program builder by adding storing of options as properties (#<I>) | bchr02_node-pre-gyp-github | train |
2e51c3b04acad1cfe3d2dec733ca2c21b8204dd8 | diff --git a/lib/share_progress/configuration.rb b/lib/share_progress/configuration.rb
index <HASH>..<HASH> 100644
--- a/lib/share_progress/configuration.rb
+++ b/lib/share_progress/configuration.rb
@@ -16,7 +16,7 @@ module ShareProgress
def initialize
@share_progress_uri = ENV['SHARE_PROGRESS_URI'] || 'r... | Setting a default API key to make sure all our tests pass. | SumOfUs_share_progress | train |
8abce3b85f92156df25864ba871e243d481c3dfb | diff --git a/src/org/opencms/main/OpenCmsListener.java b/src/org/opencms/main/OpenCmsListener.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/main/OpenCmsListener.java
+++ b/src/org/opencms/main/OpenCmsListener.java
@@ -142,13 +142,11 @@ public class OpenCmsListener implements ServletContextListener, HttpSession... | Fixed error reporting for DB driver cleanup. | alkacon_opencms-core | train |
21bb4f1c8b12ea5458fbe5868ca32f044038a9cb | diff --git a/lib/router/router.js b/lib/router/router.js
index <HASH>..<HASH> 100644
--- a/lib/router/router.js
+++ b/lib/router/router.js
@@ -127,7 +127,7 @@ p.getInfo = function(req) {
}
// forward original image if no operation on image and browser support image format
- if (routeInfo.imageSteps.length === ... | Add noop query
If noop query is true and there is no operation required just forward the original | asilvas_node-image-steam | train |
a2135ee53e6b96abbe48ce7f9f50127c48390f05 | diff --git a/packages/react-swipeable-views/src/SwipeableViews.js b/packages/react-swipeable-views/src/SwipeableViews.js
index <HASH>..<HASH> 100644
--- a/packages/react-swipeable-views/src/SwipeableViews.js
+++ b/packages/react-swipeable-views/src/SwipeableViews.js
@@ -148,7 +148,7 @@ export function getDomTreeShapes(... | Fix accessibility caused by aria roles
Replace role="option" attr with data-swipeable | oliviertassinari_react-swipeable-views | train |
bf0b2c4d9ea561df3fad9b31782240b94ecfc412 | diff --git a/application/briefkasten/dropbox.py b/application/briefkasten/dropbox.py
index <HASH>..<HASH> 100644
--- a/application/briefkasten/dropbox.py
+++ b/application/briefkasten/dropbox.py
@@ -309,7 +309,7 @@ class Dropbox(object):
"""
# TODO: here would be the place to move the backup of the di... | lower status - otherwise it will be interpreted as error | ZeitOnline_briefkasten | train |
66be62f16641143f1d19435932baa85a72f8f01b | diff --git a/src/foundations/parser.py b/src/foundations/parser.py
index <HASH>..<HASH> 100644
--- a/src/foundations/parser.py
+++ b/src/foundations/parser.py
@@ -404,7 +404,7 @@ class Parser(io.File):
self._comments[section + self._namespaceSplitter + self._commentMarker + str(commentId)] = {"id" : commentId... | Ensure that "parser" module "parse" method slice each attribute only one time. | KelSolaar_Foundations | train |
cdc4c6de258899bd481a999989eb7f16ddedce43 | diff --git a/tests/test_sftp.py b/tests/test_sftp.py
index <HASH>..<HASH> 100755
--- a/tests/test_sftp.py
+++ b/tests/test_sftp.py
@@ -610,7 +610,7 @@ class SFTPTest (unittest.TestCase):
with sftp.open(FOLDER + '/bunny.txt', 'rb') as f:
self.assertEqual(text, f.read(128))
- self.assertEqu... | Update existing test to prove #<I> | paramiko_paramiko | train |
12f5ad2b36af9dd8b881b0bb17a8daf8eeb31796 | diff --git a/pystache/template.py b/pystache/template.py
index <HASH>..<HASH> 100644
--- a/pystache/template.py
+++ b/pystache/template.py
@@ -3,6 +3,10 @@ import cgi
import inspect
import types
+
+END_OF_LINE_CHARACTERS = ['\r', '\n']
+
+
def call(val, view, template=None):
if callable(val):
(args, ... | Renamed some variables in _handle_match(). | defunkt_pystache | train |
4efbf8fc3f458fc3e0d84db938afb415661089f0 | diff --git a/lib/jpmobile/mobile/abstract_mobile.rb b/lib/jpmobile/mobile/abstract_mobile.rb
index <HASH>..<HASH> 100644
--- a/lib/jpmobile/mobile/abstract_mobile.rb
+++ b/lib/jpmobile/mobile/abstract_mobile.rb
@@ -58,6 +58,16 @@ module Jpmobile::Mobile
false
end
+ # Jpmobile::Rack::Filter を適用するかどうか
+ ... | Not applying Filter/ParamsFilter for smart-phones | jpmobile_jpmobile | train |
bbcf32239d0db46628385b75c3aa88061fcc4bff | diff --git a/base.php b/base.php
index <HASH>..<HASH> 100644
--- a/base.php
+++ b/base.php
@@ -1642,6 +1642,7 @@ class Base extends Prefab {
$scheme=isset($_SERVER['HTTPS']) && $_SERVER['HTTPS']=='on' ||
isset($headers['X-Forwarded-Proto']) &&
$headers['X-Forwarded-Proto']=='https'?'https':'http';
+ $port_s... | Add port suffix to REALM variable | bcosca_fatfree-core | train |
b977e305d28c385cc208425edc5af26055534f83 | diff --git a/context.go b/context.go
index <HASH>..<HASH> 100644
--- a/context.go
+++ b/context.go
@@ -114,13 +114,13 @@ func Run(ctx context.Context, actions ...Action) error {
if c == nil || c.Allocator == nil {
return ErrInvalidContext
}
- c.first = c.Browser == nil
- if c.first {
+ if c.Browser == nil {
b... | fix regression when using Run twice on the first ctx
We don't want to always set c.first, as that can change the field from
true to false. | chromedp_chromedp | train |
d8e1aa9e285f0e032112618d655930dedf46d3da | diff --git a/protocol/src/main/java/net/kuujo/copycat/raft/Member.java b/protocol/src/main/java/net/kuujo/copycat/raft/Member.java
index <HASH>..<HASH> 100644
--- a/protocol/src/main/java/net/kuujo/copycat/raft/Member.java
+++ b/protocol/src/main/java/net/kuujo/copycat/raft/Member.java
@@ -133,6 +133,12 @@ public class... | Ensure members are properly reset when builders are acquired from builder pool. | atomix_atomix | train |
f8c0d02591acd75d480c4f82e0dede03f3187131 | diff --git a/rapidoid-io/src/main/java/org/rapidoid/io/Res.java b/rapidoid-io/src/main/java/org/rapidoid/io/Res.java
index <HASH>..<HASH> 100644
--- a/rapidoid-io/src/main/java/org/rapidoid/io/Res.java
+++ b/rapidoid-io/src/main/java/org/rapidoid/io/Res.java
@@ -3,6 +3,7 @@ package org.rapidoid.io;
import java.io.File... | Fixed the resource change detection to avoid false positives. | rapidoid_rapidoid | train |
9b79aab38717e16151c679168fa230e124e6dbd8 | diff --git a/spec/easemob/users_spec.rb b/spec/easemob/users_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/easemob/users_spec.rb
+++ b/spec/easemob/users_spec.rb
@@ -164,10 +164,10 @@ RSpec.describe Easemob::Users do
describe '#deactivate_user' do
it 'Deactivate a user' do
- res = Easemob.deactivate_use... | u9 is already delete at another test case. | bayetech_easemob | train |
8d1ffdd4b2844e9d6a83132a9ee04e7f71c57331 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,9 @@ This release adds the [endpoints-support.md](endpoints-support.md) file to the r
Also adds the [TESTING.md](TESTING.md) file to the repository, in order to guide the test execution and implement... | Added helper method to add StorageSystem to StoragePool of API<I> | HewlettPackard_oneview-sdk-ruby | train |
dbaa18beee35db3fe66adad6af0a9a4a5a69ad27 | diff --git a/chevron/renderer.py b/chevron/renderer.py
index <HASH>..<HASH> 100644
--- a/chevron/renderer.py
+++ b/chevron/renderer.py
@@ -24,7 +24,7 @@ if sys.version_info[0] == 3:
else: # python 2
python3 = False
unicode_type = unicode
- string_type = basestring
+ string_type = basestring # noqa: F... | Fix flake8 not realizing this line is python2 | noahmorrison_chevron | train |
459be90492d8ba48d9bd04841ac791e4928c0635 | diff --git a/conn.go b/conn.go
index <HASH>..<HASH> 100644
--- a/conn.go
+++ b/conn.go
@@ -168,7 +168,7 @@ func (cn *conn) simpleQuery(q string) (res driver.Result, err error) {
func (cn *conn) prepareTo(q, stmtName string) (_ driver.Stmt, err error) {
defer errRecover(&err)
- st := &stmt{cn: cn, name: stmtName}
+... | Use simpleQuery for prepared Exec()s, too. | bmizerany_pq | train |
478f409ccab1b7bfb73653aed90756ad0ee5cd44 | diff --git a/pkg/k8s/watchers/pod.go b/pkg/k8s/watchers/pod.go
index <HASH>..<HASH> 100644
--- a/pkg/k8s/watchers/pod.go
+++ b/pkg/k8s/watchers/pod.go
@@ -79,7 +79,12 @@ func (k *K8sWatcher) createPodController(getter cache.Getter, fieldSelector fiel
// handling.
if ep := k.endpointManager.LookupPodName(pod... | pkg/k8s: fix k8s_event_lag_seconds for negative time
In some occasions the metric `k8s_event_lag_seconds` could be presented
as an overflown value such as `<I>`. This commit fixes
this by checking if the calculated value is less than zero by only
setting this metric for positive times.
Fixes: 4e<I> ("pkg/endpoint: ca... | cilium_cilium | train |
683f1b7ebd0a37c4b80f69475648f5a4c849dd25 | diff --git a/icrawler/builtin/google.py b/icrawler/builtin/google.py
index <HASH>..<HASH> 100644
--- a/icrawler/builtin/google.py
+++ b/icrawler/builtin/google.py
@@ -146,8 +146,8 @@ class GoogleParser(Parser):
response.content.decode('utf-8', 'ignore'), 'lxml')
image_divs = soup.find_all('script'... | Fix GoogleParser - BeautifulSoup4 <I>
Attribute `.text` is not supported for `script` tags anymore starting with beautifulsoup4 <I> | hellock_icrawler | train |
89c8b769fec9446acf75c48a016f7725fa52670c | diff --git a/test/tm2z.js b/test/tm2z.js
index <HASH>..<HASH> 100644
--- a/test/tm2z.js
+++ b/test/tm2z.js
@@ -57,10 +57,14 @@ Vector.mapnik.register_fonts(path.join(__dirname, 'fonts', 'source-sans-pro'));
});
});
-test('tm2z+http Z_DATA_ERROR', function(assert) {
+test('tm2z+http ENOTFOUND or Z_DATA_ERROR', f... | Fix so that error message works for both systems | mapbox_tilelive-vector | train |
fdd13a8e1464f0f4adea251e18886bab4c2d9bfb | diff --git a/SingularityService/src/main/java/com/hubspot/singularity/config/SingularityConfiguration.java b/SingularityService/src/main/java/com/hubspot/singularity/config/SingularityConfiguration.java
index <HASH>..<HASH> 100644
--- a/SingularityService/src/main/java/com/hubspot/singularity/config/SingularityConfigur... | set delay at <I>s | HubSpot_Singularity | train |
b8d2741c72ba645c8a24b2b05f56c991c6b47fdf | diff --git a/openquake/calculators/event_based.py b/openquake/calculators/event_based.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/event_based.py
+++ b/openquake/calculators/event_based.py
@@ -256,6 +256,7 @@ class EventBasedCalculator(base.HazardCalculator):
self.src_filter, self.csm = self.filt... | Moved .rupser | gem_oq-engine | train |
3313954724037d9aae02ece4913a6fa623743433 | diff --git a/mycluster/lsf.py b/mycluster/lsf.py
index <HASH>..<HASH> 100644
--- a/mycluster/lsf.py
+++ b/mycluster/lsf.py
@@ -154,6 +154,11 @@ def create_submit(queue_id,**kwargs):
if 'no_syscribe' in kwargs:
record_job = ""
+ if 'openmpi_args' not in kwargs:
+ openmpi_args = "-bysocket -bind... | allow openmpi arguments to be supplied as a kwarg to create submit script | zenotech_MyCluster | train |
44dc4f6645e12ddd5cf927bca0675a5b44d55cbd | diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/activerecord/CHANGELOG.md
+++ b/activerecord/CHANGELOG.md
@@ -1,3 +1,8 @@
+* Fix `write_attribute` method to check whether an attribute is aliased or not, and
+ use the aliased attribute name if needed.
+
+ *Pra... | Check whether the current attribute being write is aliased or not before writing
- If aliased, then use the aliased attribute name. | rails_rails | train |
df4c45dd332921b96fb3fa021cdab4dd06f75d96 | 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
@@ -1678,10 +1678,10 @@ function renderInitCallback() {
preview = undefined;
}
loaded = true;
-
- fireEvent('load');
animateInit();
+
+ fireEvent('lo... | Move `load` event to fire after rendering instead of before (#<I>). | mpetroff_pannellum | train |
03cb51c0aae34ae926d0219c4b7be2d9a5bd2fa2 | diff --git a/lib/mongoid/extensions/symbol/inflections.rb b/lib/mongoid/extensions/symbol/inflections.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/extensions/symbol/inflections.rb
+++ b/lib/mongoid/extensions/symbol/inflections.rb
@@ -23,7 +23,8 @@ module Mongoid #:nodoc:
to_s.plural?
end
- ... | Symbol#match causes issues with ruby <I>.x - changed to #matches for elemMatch criteria | mongodb_mongoid | train |
e06d2685e227eb55950b01b5840d9401ce7c10ee | diff --git a/molecule/command/idempotence.py b/molecule/command/idempotence.py
index <HASH>..<HASH> 100644
--- a/molecule/command/idempotence.py
+++ b/molecule/command/idempotence.py
@@ -32,6 +32,9 @@ LOG = logger.get_logger(__name__)
class Idempotence(base.Base):
"""
+ Runs the converge step a second time. ... | Update documentation for verify and idempotency checks (#<I>)
* Update documentation for verify and idempotency checks
* Fixup formatting | ansible_molecule | train |
4cb993caea9b42b4dd831062761e44198907b36c | diff --git a/data b/data
index <HASH>..<HASH> 160000
--- a/data
+++ b/data
@@ -1 +1 @@
-Subproject commit 0fc83010033167d643766d8579f02024ad88ef87
+Subproject commit 630845c86c7d76341f8a2162c8a09f15134293fe
diff --git a/evaluation/visualization/src/boofcv/alg/fiducial/VisualizeSquareBinaryFiducial.java b/evaluation/vis... | - Updated for new fiducial file names | lessthanoptimal_BoofCV | train |
03c18570a608edf2fc0149e1029b2b0267cb5ffc | diff --git a/src/python/pants/option/parser.py b/src/python/pants/option/parser.py
index <HASH>..<HASH> 100644
--- a/src/python/pants/option/parser.py
+++ b/src/python/pants/option/parser.py
@@ -32,6 +32,7 @@ from typing import (
import Levenshtein
import yaml
+from typing_extensions import Protocol
from pants.b... | Demystify get_all_scoped_flag_names mypy kludges. (#<I>)
These are now centralized in a Protocol that takes the place of the
prior Callable of two different signatures (!) and a type ignore. The
introduced Protocol is a bit klunky, but self contained and can carry
the relevant issue pointer in one spot. | pantsbuild_pants | train |
68e575e5025bdd0814c48c5860c7c886ccaefadd | diff --git a/lib/raven/integrations/rack.rb b/lib/raven/integrations/rack.rb
index <HASH>..<HASH> 100644
--- a/lib/raven/integrations/rack.rb
+++ b/lib/raven/integrations/rack.rb
@@ -113,7 +113,7 @@ module Raven
next unless key.start_with?('HTTP_') || %w(CONTENT_TYPE CONTENT_LENGTH).include?(key)
... | Retain any literal "HTTP-" in header names (#<I>)
If a literal "HTTP-" exists in a request header name, it will appear as
"HTTP_" in the Rack environment. This shouldn't be removed when
extracting it from the environment. | getsentry_raven-ruby | train |
2d7911c951f0bc67614e4351bcd6e11637e13844 | diff --git a/sovrin_client/test/agent/helper.py b/sovrin_client/test/agent/helper.py
index <HASH>..<HASH> 100644
--- a/sovrin_client/test/agent/helper.py
+++ b/sovrin_client/test/agent/helper.py
@@ -9,7 +9,6 @@ from plenum.test.test_stack import checkRemoteExists, CONNECTED
from sovrin_client.client.wallet.wallet impo... | fix bulldog helper code to create log file in given basedir insead of assuming default location (mainly it will help while running tests) | hyperledger-archives_indy-client | train |
a9c9ca9713c73ba7ed96cd2e2ca37106e5171b2f | diff --git a/lib/state_machine/transition.rb b/lib/state_machine/transition.rb
index <HASH>..<HASH> 100644
--- a/lib/state_machine/transition.rb
+++ b/lib/state_machine/transition.rb
@@ -159,6 +159,18 @@ module StateMachine
machine.action
end
+ # Does this transition represent a loopback (i.e. the ... | Add Transition#loopback? to help determine if the from / to states are the same | pluginaweek_state_machine | train |
d3fd02130b7f7cf7246ff1edc51265ca27ab7d8a | diff --git a/src/analytics.js b/src/analytics.js
index <HASH>..<HASH> 100644
--- a/src/analytics.js
+++ b/src/analytics.js
@@ -3,14 +3,8 @@ const analytics = `(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,doc... | [#<I>] remove failed implementation | nossas_bonde-client | train |
e8169599ca685a972a09c8898e3358cc3b5d4a10 | diff --git a/lib/cli.js b/lib/cli.js
index <HASH>..<HASH> 100644
--- a/lib/cli.js
+++ b/lib/cli.js
@@ -72,8 +72,12 @@ var saveUserAsset = function(type, file) {
};
var rmUserAsset = function(type, name) {
- var assetPath = path.join(regDir, type, name + '.css');
- fs.unlinkSync(assetPath);
+ var assetPath = path... | fix: Delete from correct user folder | jtrussell_bedecked | train |
ce8236338c5006815de76e15d618bed806294d7e | diff --git a/nupic/simple_server.py b/nupic/simple_server.py
index <HASH>..<HASH> 100755
--- a/nupic/simple_server.py
+++ b/nupic/simple_server.py
@@ -25,7 +25,15 @@ Note: Requires web.py to run (install using '$ pip install web.py')
"""
import os
import sys
-sys.path.remove(os.path.dirname(os.path.realpath(__file__... | Made sure that nupic.nupic is removed from the sys.path within simple_server | numenta_nupic | train |
41fc5c014fd8ffda6d88778fb1749d364b86b8f1 | diff --git a/ImagePanel.py b/ImagePanel.py
index <HASH>..<HASH> 100644
--- a/ImagePanel.py
+++ b/ImagePanel.py
@@ -1350,12 +1350,9 @@ class ImagePanel(Panel.Panel):
# this message comes from the document model.
def data_item_deleted(self, deleted_data_item):
data_item = self.get_displayed_data_item()... | Begin process of generalizing data sources in data item.
svn r<I> | nion-software_nionswift | train |
87fe2e08481992a7bf3f75b61b5196af565bca76 | diff --git a/lib/Doctrine/ODM/MongoDB/UnitOfWork.php b/lib/Doctrine/ODM/MongoDB/UnitOfWork.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/ODM/MongoDB/UnitOfWork.php
+++ b/lib/Doctrine/ODM/MongoDB/UnitOfWork.php
@@ -732,7 +732,7 @@ class UnitOfWork implements PropertyChangedListener
}
... | Protecting against notices
Used the same technique as above to protect against notices for
accessing undefined offset. | Briareos_mongodb-odm | train |
65edf5cf1f737cffd6d3b24cf1032d5b265ab13e | diff --git a/jmock2/src/org/jmock/lib/nonstd/UnsafeHackConcreteClassImposteriser.java b/jmock2/src/org/jmock/lib/nonstd/UnsafeHackConcreteClassImposteriser.java
index <HASH>..<HASH> 100644
--- a/jmock2/src/org/jmock/lib/nonstd/UnsafeHackConcreteClassImposteriser.java
+++ b/jmock2/src/org/jmock/lib/nonstd/UnsafeHackConc... | Initialise proxy through published CGLIB API instead of a dodgy reflection hack | jmock-developers_jmock-library | train |
7dfffe11b6bfd92752001bf8cd655fbe75723107 | diff --git a/Vendor/Uploader.php b/Vendor/Uploader.php
index <HASH>..<HASH> 100644
--- a/Vendor/Uploader.php
+++ b/Vendor/Uploader.php
@@ -80,6 +80,22 @@ class Uploader {
const LOC_CENTER = 5;
/**
+ * The mode to resize: width.
+ *
+ * @constant
+ * @var int
+ */
+ const MODE_WIDTH = 1;
+
+ /**
+ * The mode... | Added mode orientation to resize() | milesj_uploader | train |
fc8c0cfc4f431b5747a6a694c3d47da60385b051 | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,3 +14,4 @@ Gemfile.lock
.rvmrc
/.bundle/
/tags
+binstubs/
diff --git a/Gemfile b/Gemfile
index <HASH>..<HASH> 100644
--- a/Gemfile
+++ b/Gemfile
@@ -4,7 +4,7 @@ gem 'foodcritic', :path => '.'
group :test do
... | Use latest gherkin (faster install) | Foodcritic_foodcritic | train |
cef6fe6e73ed6f657537c1b149c1b80b70257538 | diff --git a/src/Router/Compiler.php b/src/Router/Compiler.php
index <HASH>..<HASH> 100644
--- a/src/Router/Compiler.php
+++ b/src/Router/Compiler.php
@@ -163,21 +163,13 @@ class Compiler
return new Response('Method Not Allowed', Response::HTTP_METHOD_NOT_ALLOWED, [
'content-type' => 'text... | typecasting & coalescing rather than throwing exceptions, relying on null return by `array_pop()` | SignpostMarv_daft-router | train |
3aeede3bf1c1563d3b37faf2ef986596bb47abac | diff --git a/core/codegen/src/main/java/org/overture/codegen/trans/conc/MainClassConcTransformation.java b/core/codegen/src/main/java/org/overture/codegen/trans/conc/MainClassConcTransformation.java
index <HASH>..<HASH> 100644
--- a/core/codegen/src/main/java/org/overture/codegen/trans/conc/MainClassConcTransformation.... | added the instansiation of the sentinel.
changed an error in the inheritance of sentinel innerclass. | overturetool_overture | train |
f89392a1db009a53552f1280fd22f5941d17231f | diff --git a/lib/app/models/open_object_resource.rb b/lib/app/models/open_object_resource.rb
index <HASH>..<HASH> 100644
--- a/lib/app/models/open_object_resource.rb
+++ b/lib/app/models/open_object_resource.rb
@@ -99,6 +99,7 @@ class OpenObjectResource < ActiveResource::Base
@field_defined = true
end
+
... | - properly set the id after create
- added update support
- properly switch to update (OpenERP write method) if id already exists (after a create)
- destroy support added
- OpenERP Server Error pretty print added (while we would be happy to use Rails logger instead of just put) | akretion_ooor | train |
b636d9a52b7b3e1cd0daa91f3e7241c54989b3ee | diff --git a/modules/es/bases/es.DocumentModelBranchNode.js b/modules/es/bases/es.DocumentModelBranchNode.js
index <HASH>..<HASH> 100644
--- a/modules/es/bases/es.DocumentModelBranchNode.js
+++ b/modules/es/bases/es.DocumentModelBranchNode.js
@@ -200,6 +200,17 @@ es.DocumentModelBranchNode.prototype.reverse = function(... | Refactored some of the tree sync code to be reusable | wikimedia_parsoid | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.