hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
94486a653629db6d0a6d99b0f7cfbbf38c53227b | diff --git a/source/Class.js b/source/Class.js
index <HASH>..<HASH> 100644
--- a/source/Class.js
+++ b/source/Class.js
@@ -50,9 +50,17 @@
return this;
}
+ // Return a function that calls the specified method, passing arguments
+ function makeApplier(method) {
+ return function() {
+ return this[method].apply(... | Support strings for set/get on property descriptors, delegate to the instance | lazd_PseudoClass | train |
a3b36bd48848bd887dd908d6cef593fef0544593 | diff --git a/tests/unit/test_utils.py b/tests/unit/test_utils.py
index <HASH>..<HASH> 100644
--- a/tests/unit/test_utils.py
+++ b/tests/unit/test_utils.py
@@ -196,7 +196,7 @@ class UtilsTest(unittest.TestCase):
sav_out = sys.stdout
out = StringIO.StringIO()
sys.stdout = out
- ret = uti... | Added unit tests for wait_for_build(). | pycontribs_pyrax | train |
7185cd76a5b3de37e56145b31711cf33ade568fa | diff --git a/primefaces-integration-tests/src/main/java/org/primefaces/integrationtests/datatable/DataTable022.java b/primefaces-integration-tests/src/main/java/org/primefaces/integrationtests/datatable/DataTable022.java
index <HASH>..<HASH> 100644
--- a/primefaces-integration-tests/src/main/java/org/primefaces/integra... | Selenium Instantiation errors (#<I>) | primefaces_primefaces | train |
8cd4f9d09aef81c4abef7cfdf1be56e5ed3f4c69 | diff --git a/pyocd/debug/semihost.py b/pyocd/debug/semihost.py
index <HASH>..<HASH> 100644
--- a/pyocd/debug/semihost.py
+++ b/pyocd/debug/semihost.py
@@ -330,7 +330,7 @@ class TelnetSemihostIOHandler(SemihostIOHandler):
while not self._shutdown_event.is_set():
self.connected = sel... | Couple fewer Telnet colons
"Telnet server started" already lost its colon to match the GDB server.
Drop two more colons for internal consistency. | mbedmicro_pyOCD | train |
8f5f826443e99b876c50562b1d58135bcdf68573 | diff --git a/project_generator/tools/iar.py b/project_generator/tools/iar.py
index <HASH>..<HASH> 100644
--- a/project_generator/tools/iar.py
+++ b/project_generator/tools/iar.py
@@ -61,9 +61,6 @@ class IARDefinitions():
class IAREmbeddedWorkbenchProject:
- def __init__(self):
- pass
-
def _set_opti... | IAR - class workbench doc strings addition | project-generator_project_generator | train |
eb500aa0f90f46ed2df3bebd79d071e88f9f3227 | diff --git a/src/org/mozilla/javascript/ScriptableObject.java b/src/org/mozilla/javascript/ScriptableObject.java
index <HASH>..<HASH> 100644
--- a/src/org/mozilla/javascript/ScriptableObject.java
+++ b/src/org/mozilla/javascript/ScriptableObject.java
@@ -2555,9 +2555,9 @@ public abstract class ScriptableObject implemen... | Forward calls to Map.get() to Scriptable.get() instead of ScriptableObject.getImp() so it will actually work in subclasses that override ScriptableObject.get(). | mozilla_rhino | train |
a9b0b78cb2bcc4077179a926ff463a42129e96fc | diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/flyway/FlywayAutoConfiguration.java
index <HASH>..<HASH> 100644
--- a/s... | Upgrade to Flyway <I>
Closes gh-<I> | spring-projects_spring-boot | train |
943b672bdc1807451a470980dba445790ee7c875 | diff --git a/spec/tmuxinator_spec.rb b/spec/tmuxinator_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/tmuxinator_spec.rb
+++ b/spec/tmuxinator_spec.rb
@@ -28,7 +28,7 @@ describe Tmuxinator::ConfigWriter do
its(:project_root){ should eql '~/code/rails_project' }
its(:rvm){ should eql '1.9.2@rails_project' }
... | fixed broken spec
looks like the intent is to call pre in the context of build_command. Spec
wasn't expecting that though. | tmuxinator_tmuxinator | train |
63e869b3b272be47b6257d5567c05626ba33b964 | diff --git a/modules/admin/apis/SearchController.php b/modules/admin/apis/SearchController.php
index <HASH>..<HASH> 100644
--- a/modules/admin/apis/SearchController.php
+++ b/modules/admin/apis/SearchController.php
@@ -3,6 +3,7 @@
namespace admin\apis;
use Yii;
+use admin\models\SearchData;
/**
* @author nadar... | integration of model in api closes #<I> | luyadev_luya | train |
a7f035ff518247bd0205796e66525a18073e249b | diff --git a/src/ICal/ICal.php b/src/ICal/ICal.php
index <HASH>..<HASH> 100644
--- a/src/ICal/ICal.php
+++ b/src/ICal/ICal.php
@@ -142,19 +142,6 @@ class ICal
protected $alteredRecurrenceInstances = array();
/**
- * An associative array containing ordinal data
- *
- * @var array
- */
- pr... | Remove two class properties no longer used
(There is another - `$defaultWeekStart` - but I plan to use that again.) | u01jmg3_ics-parser | train |
fde57669f9722e5461acaddfaf6b9ba3d7181ea2 | diff --git a/tests/unit/src/UrlTest.php b/tests/unit/src/UrlTest.php
index <HASH>..<HASH> 100644
--- a/tests/unit/src/UrlTest.php
+++ b/tests/unit/src/UrlTest.php
@@ -19,44 +19,24 @@ class UrlTest extends \PHPUnit_Framework_TestCase
new Url('www.example.com');
}
- public function testAppend()
+ pu... | <I> - Removed unnecessary tests, remaining tests refactored to represent
future changed for Url value object. | g4code_value-object | train |
5ad971c92079c7052f426601ad8aaec1df7d9760 | diff --git a/Auth.php b/Auth.php
index <HASH>..<HASH> 100644
--- a/Auth.php
+++ b/Auth.php
@@ -419,7 +419,8 @@ class Auth
}
/**
- * Gets UID for a given email address, return int
+ * Gets UID for a given email address or zero if email not found
+
* @param string $email
* @return int... | Update Auth.php
fixed issue #<I> | PHPAuth_PHPAuth | train |
1b4f3d6dfb2ba93e9d5e673083db2dbe9e186bad | diff --git a/lib/swagger-express/index.js b/lib/swagger-express/index.js
index <HASH>..<HASH> 100644
--- a/lib/swagger-express/index.js
+++ b/lib/swagger-express/index.js
@@ -144,6 +144,7 @@ function generate(opt) {
throw new Error('\'swaggerUI\' is required.');
}
+ if(opt.basePath) descriptor.basePath = opt... | basePath should still be able to be set so it can be passed to swagger.js | janvotava_swagger-koa | train |
b62383fd000388c814849696a55ad967a06eefca | diff --git a/lib/Proem/Api/Service/Manager.php b/lib/Proem/Api/Service/Manager.php
index <HASH>..<HASH> 100644
--- a/lib/Proem/Api/Service/Manager.php
+++ b/lib/Proem/Api/Service/Manager.php
@@ -55,6 +55,12 @@ class Manager
private $assets = [];
/**
+ * Store an array containing information about what
+... | Adding "provides" functionality to the Asset Manager.
This also adds the ability to retrieve an Asset by what it provides
instead of by name. | proem-components_signal | train |
26e085c4dd9978ea166d8ee25e2277b497540043 | diff --git a/windows/lib/WinPlatform.js b/windows/lib/WinPlatform.js
index <HASH>..<HASH> 100644
--- a/windows/lib/WinPlatform.js
+++ b/windows/lib/WinPlatform.js
@@ -217,7 +217,7 @@ function(configId, args, callback) {
var nComponents = manifest.appVersion.split(".").length;
var versionPadding = new Array(4 ... | Windows: Pass command-line args from manifest to executable
BUG=XWALK-<I> | crosswalk-project_crosswalk-app-tools | train |
948e84ad480c65137286f88a9e57296ed251492d | diff --git a/lib/mtgox/client.rb b/lib/mtgox/client.rb
index <HASH>..<HASH> 100644
--- a/lib/mtgox/client.rb
+++ b/lib/mtgox/client.rb
@@ -121,7 +121,7 @@ module MtGox
# @example
# MtGox.balance
def balance
- parse_balance(post('/api/0/getFunds.php', pass_params))
+ parse_balance(post('/api/0... | switch from username/password to key/secret, remove pass_params, add headers | sferik_mtgox | train |
950d0c8e8f1e808fc72ea2e96448f1b590b47097 | diff --git a/lib/vmc/cli.rb b/lib/vmc/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/vmc/cli.rb
+++ b/lib/vmc/cli.rb
@@ -158,6 +158,17 @@ module VMC
f.puts msg
f.puts ""
+ if e.respond_to?(:request_trace)
+ f.puts "<<<"
+ f.puts e.request_trace
+ end
+
+ if e.res... | Get the request and response traces into VMC crash file [finishes #<I>]
Change-Id: I<I>e<I>e7a0d3ea<I>cb0eddf3b<I>e<I>b<I>bc<I> | cloudfoundry-attic_cf | train |
87b662f41a6d092d960699fe462629876e73f429 | diff --git a/grandalf/graphs.py b/grandalf/graphs.py
index <HASH>..<HASH> 100644
--- a/grandalf/graphs.py
+++ b/grandalf/graphs.py
@@ -217,10 +217,10 @@ class graph_core(object):
# remove Edge :
# this procedure checks that the resulting graph is connex.
def remove_edge(self,e):
- if e.deg==0 or ... | fix remove_edge when deg of edge is 0 | bdcht_grandalf | train |
77105aeccfd9d6b923ca80f8ba4bca4aff9d286b | diff --git a/lib/schema/iblockschema.php b/lib/schema/iblockschema.php
index <HASH>..<HASH> 100644
--- a/lib/schema/iblockschema.php
+++ b/lib/schema/iblockschema.php
@@ -150,7 +150,9 @@ class IblockSchema extends AbstractSchema
$iblockUid = $this->getUniqIblock($schemaIblock['iblock']);
$this... | fix: add a check for exists section_form field | andreyryabin_sprint.migration | train |
94875dbab9a5fc0e37bfee32ea518f1bd2d671cb | diff --git a/library/WT/Theme/BaseTheme.php b/library/WT/Theme/BaseTheme.php
index <HASH>..<HASH> 100644
--- a/library/WT/Theme/BaseTheme.php
+++ b/library/WT/Theme/BaseTheme.php
@@ -79,6 +79,131 @@ abstract class BaseTheme {
}
/**
+ * Create scripts for analytics and tracking.
+ *
+ * @return string
+ */
+ p... | Add initial support for integrating third-party trackers | fisharebest_webtrees | train |
f757102d3bb8bfc75b54b09caff8831613208d04 | diff --git a/cache.go b/cache.go
index <HASH>..<HASH> 100644
--- a/cache.go
+++ b/cache.go
@@ -178,7 +178,7 @@ func (c *cache) createField(field reflect.StructField, info *structInfo) {
}
}
if isStruct = ft.Kind() == reflect.Struct; !isStruct {
- if conv := c.conv[ft.Kind()]; conv == nil {
+ if conv := c.conve... | Checking for registered converters when creating structInfo. | gorilla_schema | train |
0a71d9dd2fde9ca0b3512695d9b892042b861006 | diff --git a/lenstronomy/Sampling/likelihood.py b/lenstronomy/Sampling/likelihood.py
index <HASH>..<HASH> 100644
--- a/lenstronomy/Sampling/likelihood.py
+++ b/lenstronomy/Sampling/likelihood.py
@@ -209,7 +209,11 @@ class LikelihoodModule(object):
return self.logL(a)
def likelihood(self, a):
- re... | Add exception handling to likelihood calls (for debugging) | sibirrer_lenstronomy | train |
accd744ad3e1929cbc6d93e3cb892818bdea5bfb | diff --git a/src/main/java/org/dynjs/runtime/builtins/ParseFloat.java b/src/main/java/org/dynjs/runtime/builtins/ParseFloat.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/dynjs/runtime/builtins/ParseFloat.java
+++ b/src/main/java/org/dynjs/runtime/builtins/ParseFloat.java
@@ -1,13 +1,11 @@
package org.dynjs.... | ParseFloat should not be used as a ctor, so now we extend AbstractPrototypeFunction instead of @Override'ing createNewObject | dynjs_dynjs | train |
7fad421d2ac9eef7b53de4d69a82543326121d39 | diff --git a/src/Pingpong/Admin/Console/AdminInstallCommand.php b/src/Pingpong/Admin/Console/AdminInstallCommand.php
index <HASH>..<HASH> 100644
--- a/src/Pingpong/Admin/Console/AdminInstallCommand.php
+++ b/src/Pingpong/Admin/Console/AdminInstallCommand.php
@@ -45,6 +45,10 @@ class AdminInstallCommand extends Command ... | Also publish configuration and asset for this package when run admin:install command | pingpong-labs_admin | train |
376c848538b1ddad584cd1c0d8a4af003dbf74d1 | diff --git a/Consumption/Extension/SignalExtension.php b/Consumption/Extension/SignalExtension.php
index <HASH>..<HASH> 100644
--- a/Consumption/Extension/SignalExtension.php
+++ b/Consumption/Extension/SignalExtension.php
@@ -31,6 +31,8 @@ class SignalExtension implements ExtensionInterface
throw new Logi... | [amqp] Fix socket and signal issue. | php-enqueue_enqueue | train |
1aad3461ee96199f0d394cf1262efc93dbdb74d3 | diff --git a/bcbio/qc/qualimap.py b/bcbio/qc/qualimap.py
index <HASH>..<HASH> 100644
--- a/bcbio/qc/qualimap.py
+++ b/bcbio/qc/qualimap.py
@@ -31,10 +31,11 @@ def run(bam_file, data, out_dir):
results_dir = os.path.join(out_dir, dd.get_sample_name(data))
resources = config_utils.get_resources("qualimap", data... | QualiMap: sed genome_results instead of symlinking bam to satisfy MultiQC.
MultiQC reads the sample name as the base input BAM file name stored in genome_results.txt. Instead making a BAM symlink specifically for QualiMap (which led to uploading the whole BAM file to the final dir), it's more reasonable to sed the geno... | bcbio_bcbio-nextgen | train |
30cf6721c3f0bd18c559477482e85b75428a8908 | diff --git a/lib/osheet/style.rb b/lib/osheet/style.rb
index <HASH>..<HASH> 100644
--- a/lib/osheet/style.rb
+++ b/lib/osheet/style.rb
@@ -5,23 +5,28 @@ module Osheet
# each setting collects any arguments passed to it and
# it is up to the drivers to determine how to use the settings
+ include Instance... | styles and templates can now access outside binding's instance variables | redding_osheet | train |
c434ef1862bc393e4b757b1515bd7775bb5560a7 | diff --git a/liquibase-core/src/main/java/liquibase/util/LiquibaseUtil.java b/liquibase-core/src/main/java/liquibase/util/LiquibaseUtil.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/util/LiquibaseUtil.java
+++ b/liquibase-core/src/main/java/liquibase/util/LiquibaseUtil.java
@@ -24,7 +24,... | Fixed liquibase.build.properties reading | liquibase_liquibase | train |
a4981b02b609120311d3657de040ddd3b8713654 | diff --git a/ctk_cli/module.py b/ctk_cli/module.py
index <HASH>..<HASH> 100644
--- a/ctk_cli/module.py
+++ b/ctk_cli/module.py
@@ -210,6 +210,7 @@ class CLIParameter(object):
"elements", # enumerationType
"coordinateSystem", # pointType
"fileExtensions", # fileType
... | add ‚reference‘ attribute for images
(might be necessary for other parameter types, such as transform,
geometry, or table as well) | commontk_ctk-cli | train |
f7760f35a02f9f9ff703b2a426148caa0d8e9491 | diff --git a/src/PlaygroundGame/Module.php b/src/PlaygroundGame/Module.php
index <HASH>..<HASH> 100644
--- a/src/PlaygroundGame/Module.php
+++ b/src/PlaygroundGame/Module.php
@@ -86,10 +86,12 @@ class Module
$config['router']['routes']['frontend.'.$url]['child_routes'][$v['classType']] ... | Frontendurl is fixed and a custom game is now blackboxed | gregorybesson_PlaygroundGame | train |
3839443ad199e7c05bdfc58e736036adb8e2b3db | diff --git a/phy/utils/settings.py b/phy/utils/settings.py
index <HASH>..<HASH> 100644
--- a/phy/utils/settings.py
+++ b/phy/utils/settings.py
@@ -10,7 +10,7 @@ import os
import os.path as op
from .logging import debug, warn
-from ._misc import _load_pickle, _save_pickle, _read_python
+from ._misc import _load_json... | Moved from pickle to JSON in settings. | kwikteam_phy | train |
9b2fce3218b36ab53ccf61afc2590c3668a1e432 | diff --git a/docs/source/conf.py b/docs/source/conf.py
index <HASH>..<HASH> 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -1,5 +1,3 @@
-# -*- coding: utf-8 -*-
-from __future__ import unicode_literals
#
# Glitter documentation build configuration file, created by
# sphinx-quickstart on Fri Feb 19 11:... | Remove Python 2 style for docs config
Needs updating with author, but that can be a latter commit | developersociety_django-glitter | train |
67a1f55ce137cf0d21aa805d24d14e9f6936075d | diff --git a/src/Symfony/Component/Console/Helper/QuestionHelper.php b/src/Symfony/Component/Console/Helper/QuestionHelper.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Console/Helper/QuestionHelper.php
+++ b/src/Symfony/Component/Console/Helper/QuestionHelper.php
@@ -22,6 +22,7 @@ use Symfony\Component\C... | [Console][QuestionHelper] Use String width() to properly move the cursor backwards | symfony_symfony | train |
6607ecb2a1ccc9b43cfb8db2d06dc5301a5320ba | diff --git a/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb b/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/quoting.rb
+++ b/activerecord/lib/active_record/connection_adapters/a... | Allow `column_name AS alias` as safe SQL string | rails_rails | train |
7426cf9c2d6aaeaba9a95f2bcbd75ea7804c3c5b | diff --git a/lib/consumerStream.js b/lib/consumerStream.js
index <HASH>..<HASH> 100644
--- a/lib/consumerStream.js
+++ b/lib/consumerStream.js
@@ -223,13 +223,7 @@ ConsumerStream.prototype.init = function () {
return self.emit('error', err);
}
- self.client.sendOffsetFetchRequest(self.options.groupId, ... | Fix fromOffset option for ConsumerStream (#<I>)
* Prevent fetching of offset when fromOffset option is passed to ConsumerStream as true
* Fix linting error | SOHU-Co_kafka-node | train |
4b4eec8b47cf320d823fd9c6de57b7e02436553a | diff --git a/lang_data/en/generate_specials.py b/lang_data/en/generate_specials.py
index <HASH>..<HASH> 100644
--- a/lang_data/en/generate_specials.py
+++ b/lang_data/en/generate_specials.py
@@ -90,7 +90,7 @@ starting_tokens = {
"she": {"'d": ["contrLower", "contrUpper"], "'d've": [], "'ll": ["contrLow... | * Fix Issue #<I>: Tokenization of there'll | explosion_spaCy | train |
e7065e42b0642d63757e1d8a9fef34bc77cc745c | diff --git a/compile/release_packages_compiler_test.go b/compile/release_packages_compiler_test.go
index <HASH>..<HASH> 100644
--- a/compile/release_packages_compiler_test.go
+++ b/compile/release_packages_compiler_test.go
@@ -20,12 +20,12 @@ import (
var _ = Describe("ReleaseCompiler", func() {
var (
- release ... | Rename releaseCompiler to releasePackagesCompiler in test that we missed when
refactoring. | cloudfoundry_bosh-init | train |
339fd237d497d837a23ad981eaea71c14e666192 | diff --git a/genetlink.go b/genetlink.go
index <HASH>..<HASH> 100644
--- a/genetlink.go
+++ b/genetlink.go
@@ -36,7 +36,7 @@ func (s *NetlinkSocket) LookupGenlFamily(name string) (uint16, error) {
req := NewNlMsgBuilder(syscall.NLM_F_REQUEST, GENL_ID_CTRL)
req.PutGenlMsghdr(CTRL_CMD_GETFAMILY)
- req.PutStringRtAt... | Replace rtattrs with nlattrs
It looks like the latter is preferred these days. | weaveworks_go-odp | train |
2838f3412aa99d3644cc6bfb4032eaa628d6e716 | diff --git a/src/Stringy.php b/src/Stringy.php
index <HASH>..<HASH> 100644
--- a/src/Stringy.php
+++ b/src/Stringy.php
@@ -1868,6 +1868,10 @@ class Stringy implements Countable, IteratorAggregate, ArrayAccess
'de' => [
['ä', 'ö', 'ü', 'Ä', 'Ö', 'Ü' ],
['ae', 'oe', 'ue... | Added `bg` specific transliteration according BGN/PCGN (<I>) | danielstjules_Stringy | train |
3351e44d2d76b7599eadfe59dec5a5674b1aff69 | diff --git a/dist/modules/ocLazyLoad.loaders.common.js b/dist/modules/ocLazyLoad.loaders.common.js
index <HASH>..<HASH> 100644
--- a/dist/modules/ocLazyLoad.loaders.common.js
+++ b/dist/modules/ocLazyLoad.loaders.common.js
@@ -60,7 +60,7 @@
el.onload = el['onreadystatechange'] = null;
... | fix: resolve the loader with created elements | ocombe_ocLazyLoad | train |
7b5c4b6752c0201f2b2c85d48ba8167d70b0ee6e | diff --git a/epc/client.py b/epc/client.py
index <HASH>..<HASH> 100644
--- a/epc/client.py
+++ b/epc/client.py
@@ -1,6 +1,7 @@
from .py3compat import Queue
from .utils import ThreadedIterator, newthread
-from .server import ThreadingEPCHandler, EPCCore
+from .core import EPCCore
+from .handler import ThreadingEPCHand... | Move EPCCore and EPCDispacher to epc.core | tkf_python-epc | train |
a18cf5c138ba66e8d9bfbc4777155d7edd67e159 | diff --git a/gwpy/table/io/pycbc.py b/gwpy/table/io/pycbc.py
index <HASH>..<HASH> 100644
--- a/gwpy/table/io/pycbc.py
+++ b/gwpy/table/io/pycbc.py
@@ -29,6 +29,7 @@ import h5py
from ...io.hdf5 import (identify_hdf5, with_read_hdf5)
from ...io.registry import (register_reader, register_identifier)
from .. import (Tab... | gwpy.table: improved I/O for pycbc
selection can now contain columns that aren't read | gwpy_gwpy | train |
d56ac332b3963cc71042a4d127e8f22b398d33bc | diff --git a/lib/helpers/form_column_helpers.rb b/lib/helpers/form_column_helpers.rb
index <HASH>..<HASH> 100644
--- a/lib/helpers/form_column_helpers.rb
+++ b/lib/helpers/form_column_helpers.rb
@@ -63,8 +63,10 @@ module ActiveScaffold
select_options = options_for_association(column.association)
selec... | Fix form_ui form_ui :select for has_one associations, was broken by commit 0ef<I> | activescaffold_active_scaffold | train |
1f97b689f9621e6f962f1f8106f17c02b4ec76ba | diff --git a/querydsl-hql/src/test/java/com/mysema/query/grammar/hql/HqlDomain.java b/querydsl-hql/src/test/java/com/mysema/query/grammar/hql/HqlDomain.java
index <HASH>..<HASH> 100644
--- a/querydsl-hql/src/test/java/com/mysema/query/grammar/hql/HqlDomain.java
+++ b/querydsl-hql/src/test/java/com/mysema/query/grammar/... | fixed handling of Locale typed properties | querydsl_querydsl | train |
dd5edab5f80a41571a41d84a5dd9e298155b0f18 | diff --git a/src/table/table.js b/src/table/table.js
index <HASH>..<HASH> 100644
--- a/src/table/table.js
+++ b/src/table/table.js
@@ -34,6 +34,8 @@ angular.module('ngTasty.table', [
'use strict';
var listScopeToWatch, initTable;
this.$scope = $scope;
+ $scope.init = {};
+ $scope.query = {};
listScopeTo... | Fixed init variable in the table directive. | Zizzamia_ng-tasty | train |
025f1d577e872916b4040c56231525934a31ea6e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -22,7 +22,7 @@ setup(
packages = ['xdist'],
entry_points = {'pytest11': ['xdist = xdist.plugin'],},
zip_safe=False,
- install_requires = ['execnet>=1.0.7', 'py>1.3.9'],
+ install_requires = ['execnet>=1.0.... | adapt xdist plugin - it still uses some internal imports | pytest-dev_pytest-xdist | train |
1526b934d3132521c9f22f48972996e70477ce94 | diff --git a/artifactory.py b/artifactory.py
index <HASH>..<HASH> 100755
--- a/artifactory.py
+++ b/artifactory.py
@@ -344,6 +344,10 @@ class _ArtifactoryFlavour(pathlib._Flavour):
before it, including '/artifactory/' itself is treated as drive.
The next folder is treated as root, and everything else ... | Fix #<I>
Allows splitroot to parse URLs that do not contain 'artifactory'
outside of the domain. | devopshq_artifactory | train |
0fe38ded908219da5ea5f1efc3cd23e5df452af6 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -17,7 +17,7 @@ operations.variance = variance;
operations.count = count;
/**
-* Takes a set of polygons, a set of points, and an array of aggregations, then performs them. Sum, average, count, min, max, and deviation are s... | Change description to conform to other statistics modules | turf-junkyard_turf-aggregate | train |
9fdf44c9558bee03b3fe893bbc48c9c280b66c6c | diff --git a/js/chainset.js b/js/chainset.js
index <HASH>..<HASH> 100644
--- a/js/chainset.js
+++ b/js/chainset.js
@@ -363,6 +363,8 @@ function pi(x) {
function cleanChr(c) {
if (c.indexOf('chr') == 0)
return c.substr(3);
+ else
+ return c;
}
function bbiFeatureToChain(feature) { | Fixed chr canonicalization. | dasmoth_dalliance | train |
39eae3e59cec5c1102874e516086f2935658cb9c | diff --git a/Classes/Domain/Search/ResultSet/Facets/RequirementsService.php b/Classes/Domain/Search/ResultSet/Facets/RequirementsService.php
index <HASH>..<HASH> 100644
--- a/Classes/Domain/Search/ResultSet/Facets/RequirementsService.php
+++ b/Classes/Domain/Search/ResultSet/Facets/RequirementsService.php
@@ -60,15 +60... | [BUGFIX] Facet requirements: React to selected values only (#<I>)
Consider only _selected_ facet options to check if a
facet's requirements are met.
Fixes #<I> | TYPO3-Solr_ext-solr | train |
8ef1ca6385d72f528400218da07349dc070e9922 | diff --git a/CIMtools/preprocessing/standardize/chemaxon.py b/CIMtools/preprocessing/standardize/chemaxon.py
index <HASH>..<HASH> 100644
--- a/CIMtools/preprocessing/standardize/chemaxon.py
+++ b/CIMtools/preprocessing/standardize/chemaxon.py
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
-# Copyright 2018-2020 Ramil Nug... | chemaxon standardize now can skip errors | stsouko_CIMtools | train |
a89e05e8a8ccea998d7b0169645ce6c4f6b5344d | diff --git a/src/Phergie/Irc/Parser.php b/src/Phergie/Irc/Parser.php
index <HASH>..<HASH> 100644
--- a/src/Phergie/Irc/Parser.php
+++ b/src/Phergie/Irc/Parser.php
@@ -364,7 +364,8 @@ class Parser implements ParserInterface
case 'NOTICE':
if ($params && preg_match($this->ctcp, end($... | Improved checking for structure of CTCP commands | phergie_phergie-irc-parser | train |
10888ad0cf673fe875bfa835a683899919130577 | diff --git a/ipyrad/assemble/util.py b/ipyrad/assemble/util.py
index <HASH>..<HASH> 100644
--- a/ipyrad/assemble/util.py
+++ b/ipyrad/assemble/util.py
@@ -309,7 +309,7 @@ def merge_pairs(data, two_files, merged_out, revcomp, merge):
"--fastq_maxdiffs", "4",
"--label_suffix", "_m1",
... | limit vsearch merging to 2 threads to improve parallel, but should eventually make match to cluster threading. Added removal of temp ungzipped files. | dereneaton_ipyrad | train |
cd618fbecf3449ff10d820b0f487186b4704a886 | diff --git a/src/MShop/Service/Provider/Payment/Stripe.php b/src/MShop/Service/Provider/Payment/Stripe.php
index <HASH>..<HASH> 100644
--- a/src/MShop/Service/Provider/Payment/Stripe.php
+++ b/src/MShop/Service/Provider/Payment/Stripe.php
@@ -297,6 +297,7 @@ class Stripe
$data['paymentIntentReference'] = $stripeInt... | Adds order ID as Stripe transfer group | aimeoscom_ai-payments | train |
a46f2595e0b73c928cdd7fa889fe733ab294cb87 | diff --git a/src/main/java/de/carne/util/prefs/BooleanPreference.java b/src/main/java/de/carne/util/prefs/BooleanPreference.java
index <HASH>..<HASH> 100644
--- a/src/main/java/de/carne/util/prefs/BooleanPreference.java
+++ b/src/main/java/de/carne/util/prefs/BooleanPreference.java
@@ -43,7 +43,7 @@ public class Boolea... | Apply consistent semantic to all xPreference classes. | hdecarne_java-default | train |
d33c9c0f773c64594cd60199c12e70e90f29d347 | diff --git a/template_functions.go b/template_functions.go
index <HASH>..<HASH> 100644
--- a/template_functions.go
+++ b/template_functions.go
@@ -22,8 +22,8 @@ func datacentersFunc(brain *Brain,
addDependency(used, d)
- if result, ok := brain.datacenters[d.HashCode()]; ok {
- return result, nil
+ if brain.R... | Have templates use the new Brain recall function for safe concurrency | hashicorp_consul-template | train |
8bf8b15009a5531fb6525f5da86b72e6d2b1b413 | diff --git a/lib/reveal-ck/config.rb b/lib/reveal-ck/config.rb
index <HASH>..<HASH> 100644
--- a/lib/reveal-ck/config.rb
+++ b/lib/reveal-ck/config.rb
@@ -6,7 +6,7 @@ module RevealCK
# reveal-ck. It has defaults. It is mutable.
class Config < OpenStruct
def initialize
- super DEFAULTS
+ super defau... | [configurable-filters] Fixed bug where data was being shared between Configs | jedcn_reveal-ck | train |
0d9506fa2e4764812d99f1d03e4937177efd1b65 | diff --git a/lib/Cake/Test/Case/Utility/CakeTimeTest.php b/lib/Cake/Test/Case/Utility/CakeTimeTest.php
index <HASH>..<HASH> 100644
--- a/lib/Cake/Test/Case/Utility/CakeTimeTest.php
+++ b/lib/Cake/Test/Case/Utility/CakeTimeTest.php
@@ -26,12 +26,20 @@ App::uses('CakeTime', 'Utility');
class CakeTimeTest extends CakeTes... | Fixing issue where nice and niceShort did not use the timezone if no dateString is passed | cakephp_cakephp | train |
a607a50a33637ea406359db03963937bfbb218d8 | diff --git a/bundles/org.eclipse.orion.client.core/web/orion/commands.js b/bundles/org.eclipse.orion.client.core/web/orion/commands.js
index <HASH>..<HASH> 100644
--- a/bundles/org.eclipse.orion.client.core/web/orion/commands.js
+++ b/bundles/org.eclipse.orion.client.core/web/orion/commands.js
@@ -935,17 +935,17 @@ def... | Bug <I> - Command menus: click target for checkboxes is too small | eclipse_orion.client | train |
21b894428e2922b7175e67b0b487db169c20a9de | diff --git a/article.go b/article.go
index <HASH>..<HASH> 100644
--- a/article.go
+++ b/article.go
@@ -6,10 +6,11 @@ import (
"strings"
"encoding/json"
log "github.com/Sirupsen/logrus"
+ "regexp"
)
const (
- ARTICLE_TITLE_SELECTOR = ".gs_rt > a"
+ ARTICLE_TITLE_SELECTOR = "h3.gs_rt > a"
ARTICLE_HEADER_S... | bugfix: become able to parse title w/o link #<I> | sotetsuk_goscholar | train |
b8baa625e6e6f95ebfb72ebbcfb52bf3c5394d3d | diff --git a/lib/mod_rails/spawn_manager.rb b/lib/mod_rails/spawn_manager.rb
index <HASH>..<HASH> 100644
--- a/lib/mod_rails/spawn_manager.rb
+++ b/lib/mod_rails/spawn_manager.rb
@@ -29,19 +29,21 @@ class SpawnManager < AbstractServer
framework_version = Application.detect_framework_version(app_root)
if framework... | Fix caching of framework spawners | phusion_passenger | train |
56a9c25ab0bb6ce705bd2aecce92d0f71ad3a5a7 | diff --git a/dj/blueprints/init/templates/{{app}}/settings.py.j2 b/dj/blueprints/init/templates/{{app}}/settings.py.j2
index <HASH>..<HASH> 100644
--- a/dj/blueprints/init/templates/{{app}}/settings.py.j2
+++ b/dj/blueprints/init/templates/{{app}}/settings.py.j2
@@ -79,7 +79,7 @@ INSTALLED_APPS = [
'django.contrib... | lint/flake8 | aleontiev_dj | train |
0b5e82e1c34b5f765b16490ac1de59a0d1b651c3 | diff --git a/lib/handlebars/compiler/whitespace-control.js b/lib/handlebars/compiler/whitespace-control.js
index <HASH>..<HASH> 100644
--- a/lib/handlebars/compiler/whitespace-control.js
+++ b/lib/handlebars/compiler/whitespace-control.js
@@ -61,7 +61,9 @@ WhitespaceControl.prototype.Program = function(program) {
... | Add whitespace control to partial block statements | wycats_handlebars.js | train |
60033b760625c9bf545c8300fa0bdb7f7e70a134 | diff --git a/lib/passport/middleware/authenticate.js b/lib/passport/middleware/authenticate.js
index <HASH>..<HASH> 100644
--- a/lib/passport/middleware/authenticate.js
+++ b/lib/passport/middleware/authenticate.js
@@ -227,7 +227,7 @@ module.exports = function authenticate(name, options, callback) {
re... | Simplify disabled auth info check. | jaredhanson_passport | train |
48c519ef56704a9bd13ae8d993f846c06c632f0b | diff --git a/app.js b/app.js
index <HASH>..<HASH> 100644
--- a/app.js
+++ b/app.js
@@ -28,6 +28,14 @@ app.use(pagespace.init({
logLevel: 'debug'
}));
+app.get('/sitemap.xml', (req, res, next) => {
+ pagespace.pages().then(pages => {
+ const xml = pages.map(page => `<url><loc>${req.protocol}://${req.host... | Expose pages to Express app. Useful for sitemaps | pagespace_pagespace | train |
51c19ff5a928f86fe1c62483c5356f55cb4b0f82 | diff --git a/Classes/Component/FormComponent.php b/Classes/Component/FormComponent.php
index <HASH>..<HASH> 100644
--- a/Classes/Component/FormComponent.php
+++ b/Classes/Component/FormComponent.php
@@ -164,17 +164,17 @@ abstract class FormComponent extends AbstractComponent
/**
* Create a form element
... | Add support for explicit form component identifier | tollwerk_TYPO3-ext-tw_componentlibrary | train |
1df613e57dace88cb9f288ca095d024644efa5e2 | diff --git a/src/svglib/svglib.py b/src/svglib/svglib.py
index <HASH>..<HASH> 100755
--- a/src/svglib/svglib.py
+++ b/src/svglib/svglib.py
@@ -23,11 +23,12 @@ import re
import operator
import gzip
import xml.dom.minidom
+from functools import reduce
from reportlab.pdfbase.pdfmetrics import stringWidth
from repor... | Blacklisted failing W3CTestCase files with known issues | deeplook_svglib | train |
6a3011438059eafa7eabeec967ed3909ee8b0b13 | diff --git a/plan/client_test.go b/plan/client_test.go
index <HASH>..<HASH> 100644
--- a/plan/client_test.go
+++ b/plan/client_test.go
@@ -37,7 +37,7 @@ func TestPlanNew(t *testing.T) {
Interval: "month",
Product: &stripe.ProductParams{
Name: "Sapphire Elite",
- Type: "service",
+ Type: stripe.ProductType... | Address feedback from @remi: constants for ProductType, and Statement => StatementDescriptor | stripe_stripe-go | train |
a7b34b2c02053d5ae1e67f0369ac5e86ee23ce47 | diff --git a/test/configurations/test_configuration.rb b/test/configurations/test_configuration.rb
index <HASH>..<HASH> 100644
--- a/test/configurations/test_configuration.rb
+++ b/test/configurations/test_configuration.rb
@@ -114,10 +114,18 @@ class TestConfiguration < Minitest::Test
assert_equal 'something', @co... | test respond_to in arbitrary configuration for undefined settings | beatrichartz_configurations | train |
50be6863810501d61d32fa407d6a0e59054caf98 | diff --git a/lib/XMLHttpRequest.js b/lib/XMLHttpRequest.js
index <HASH>..<HASH> 100644
--- a/lib/XMLHttpRequest.js
+++ b/lib/XMLHttpRequest.js
@@ -284,6 +284,7 @@ exports.XMLHttpRequest = function() {
break;
case undefined:
+ case null:
case "":
host = "localhost";
break; | Consider null protocol as missing protocol, not an unsupported one.
When the URL is just a relative path, as in /blah/bleh, at least in <I>, url.protocol is not set at all, thus, it’s null. | driverdan_node-XMLHttpRequest | train |
6ec5070f9679feb243ef7516d35f2cd94abeb285 | diff --git a/prow/cluster/plank_rbac.yaml b/prow/cluster/plank_rbac.yaml
index <HASH>..<HASH> 100644
--- a/prow/cluster/plank_rbac.yaml
+++ b/prow/cluster/plank_rbac.yaml
@@ -27,12 +27,6 @@ rules:
- create
- list
- update
- - apiGroups:
- - prow.k8s.io
- resources:
- - prowjob... | Use Update() instead of UpdateStatus()
The prow.k8s.io deployment will not be on Kubernetes <I>+ for a long
time, so we cannot declare a /status subresource on our CRDs and use it
until then. That approach is best practice but it will have to wait.
Using the Update() call is what the controllers used to do. | kubernetes_test-infra | train |
904db3a4d5b28ad64d1fa922c226cd45eaa9c9e3 | diff --git a/linshareapi/core.py b/linshareapi/core.py
index <HASH>..<HASH> 100644
--- a/linshareapi/core.py
+++ b/linshareapi/core.py
@@ -592,6 +592,11 @@ class ResourceBuilder(object):
self._fields = OrderedDict()
self._required = required
+ def add_hook(self, key, hook):
+ field = self.... | Add hook support to ResourceBuilder. | fred49_linshare-api | train |
6525cf19f695f058690886907e76c557d3c611d3 | diff --git a/util/dirwatch/dirwatch.go b/util/dirwatch/dirwatch.go
index <HASH>..<HASH> 100644
--- a/util/dirwatch/dirwatch.go
+++ b/util/dirwatch/dirwatch.go
@@ -69,7 +69,7 @@ func torrentFileInfoHash(fileName string) (ih metainfo.Hash, ok bool) {
if mi == nil {
return
}
- missinggo.CopyExact(ih[:], mi.Info.Has... | dirwatch: fix panic when attemting to copy func into [<I>]byte | anacrolix_torrent | train |
944b9b971eb5be4dbd74cc6a325c6962b181a0d6 | diff --git a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleSnapshotLoader.java b/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleSnapshotLoader.java
index <HASH>..<HASH> 100644
--- a/aeron-cluster/src/main/java/io/aeron/cluster/ConsensusModuleSnapshotLoader.java
+++ b/aeron-cluster/src/main/ja... | [Java] Add fragment assemblers to snapshot loaders in case required. | real-logic_aeron | train |
63306ed207f1b01e49799983e7266016d8d63955 | diff --git a/lib/sabisu/builders/base.rb b/lib/sabisu/builders/base.rb
index <HASH>..<HASH> 100644
--- a/lib/sabisu/builders/base.rb
+++ b/lib/sabisu/builders/base.rb
@@ -1,10 +1,26 @@
module Sabisu
module Builders
- class Base < Struct.new(:name, :value)
+ class Base
- def raw
- { "#{name}" => ... | Refactors url and headers for api request | kurenn_sabisu-rails | train |
83e93d967dab1dcf8223dc11c29a8e45d1754448 | diff --git a/tests/test_toolbox_file_tools.py b/tests/test_toolbox_file_tools.py
index <HASH>..<HASH> 100644
--- a/tests/test_toolbox_file_tools.py
+++ b/tests/test_toolbox_file_tools.py
@@ -120,10 +120,8 @@ class TestToolboxFileTools(unittest.TestCase):
# there will be the 9 files backed up plus the CSV list
... | test for csv summary file after copy all files folders | acutesoftware_AIKIF | train |
cc607b5372a4743208a7263aa51b4023aec661ae | diff --git a/openquake/hazardlib/geo/surface/simple_fault.py b/openquake/hazardlib/geo/surface/simple_fault.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/geo/surface/simple_fault.py
+++ b/openquake/hazardlib/geo/surface/simple_fault.py
@@ -167,12 +167,11 @@ class SimpleFaultSurface(BaseQuadrilateralSurface):... | Modified simple_fault.py and the test script according to PeP8 | gem_oq-engine | train |
7e7c0f8a73f8d87887b88aa2fe82e29ef328df91 | diff --git a/Branch-SDK/src/io/branch/referral/BranchViewHandler.java b/Branch-SDK/src/io/branch/referral/BranchViewHandler.java
index <HASH>..<HASH> 100644
--- a/Branch-SDK/src/io/branch/referral/BranchViewHandler.java
+++ b/Branch-SDK/src/io/branch/referral/BranchViewHandler.java
@@ -104,7 +104,7 @@ public class Bran... | Fixing issue :Auto Deep link screen is shown multiple times | BranchMetrics_android-branch-deep-linking | train |
39ad4f8a8d25f97ea7c83c91f301f7b7f3a23ab0 | diff --git a/src/createWebpackLessPlugin.js b/src/createWebpackLessPlugin.js
index <HASH>..<HASH> 100644
--- a/src/createWebpackLessPlugin.js
+++ b/src/createWebpackLessPlugin.js
@@ -11,7 +11,7 @@ const trailingSlash = /[\\/]$/;
* @param {string=} root
* @returns {LessPlugin}
*/
-function createWebpackLessPlugin(... | feat: remove root option
BREAKING CHANGE: The root option was never documented, so it's very unlikely that this is actually a breaking change. However, since the option was removed, we need to flag this as breaking. | webpack-contrib_less-loader | train |
c5519e7710e88037d21825ffc8d6c201136537f6 | diff --git a/src/Illuminate/Database/Eloquent/Model.php b/src/Illuminate/Database/Eloquent/Model.php
index <HASH>..<HASH> 100755
--- a/src/Illuminate/Database/Eloquent/Model.php
+++ b/src/Illuminate/Database/Eloquent/Model.php
@@ -256,9 +256,11 @@ abstract class Model implements ArrayAccess, ArrayableInterface, Jsonabl... | No need to call get_class twice | laravel_framework | train |
2f3d78bf4987dc812400ea11b8fe05c885c75d3c | diff --git a/org.openwms.tms/org.openwms.tms.transportation/src/main/java/org/openwms/tms/AddProblem.java b/org.openwms.tms/org.openwms.tms.transportation/src/main/java/org/openwms/tms/AddProblem.java
index <HASH>..<HASH> 100644
--- a/org.openwms.tms/org.openwms.tms.transportation/src/main/java/org/openwms/tms/AddProbl... | #<I> improved and extended IT | openwms_org.openwms | train |
11b3b7cf0e9f28e799ba1e387bf79414152634e6 | diff --git a/master/buildbot/status/mail.py b/master/buildbot/status/mail.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/status/mail.py
+++ b/master/buildbot/status/mail.py
@@ -287,7 +287,7 @@ class MailNotifier(base.StatusReceiverMultiService):
self.extraRecipients = extraRecipients
self.sendTo... | allow subclasses of MailNotifier to add modes | buildbot_buildbot | train |
14b8f8d845c896668af8702b19b11ccbac0efccc | diff --git a/plenum/test/monitoring/test_instances_throughput_ratio.py b/plenum/test/monitoring/test_instances_throughput_ratio.py
index <HASH>..<HASH> 100644
--- a/plenum/test/monitoring/test_instances_throughput_ratio.py
+++ b/plenum/test/monitoring/test_instances_throughput_ratio.py
@@ -118,12 +118,12 @@ def get_thr... | INDY-<I>: Throughput measurement tests
- Made minor renaming. | hyperledger_indy-plenum | train |
a406ca14d6aff396eaa545ca1e44e0ad5801a403 | diff --git a/_pytest/_code/source.py b/_pytest/_code/source.py
index <HASH>..<HASH> 100644
--- a/_pytest/_code/source.py
+++ b/_pytest/_code/source.py
@@ -332,11 +332,8 @@ def get_statement_startend2(lineno, node):
def getstatementrange_ast(lineno, source, assertion=False, astnode=None):
if astnode is None:
... | remove getstatementrange_old - its documented for python <= <I> | pytest-dev_pytest | train |
135a0a9f7ffb43635df2de9f05bbc57daa8acfa9 | diff --git a/htlcswitch/hop/payload_test.go b/htlcswitch/hop/payload_test.go
index <HASH>..<HASH> 100644
--- a/htlcswitch/hop/payload_test.go
+++ b/htlcswitch/hop/payload_test.go
@@ -10,6 +10,8 @@ import (
"github.com/lightningnetwork/lnd/record"
)
+const testUnknownRequiredType = 0x10
+
type decodePayloadTest st... | htlcswitch/hop: make unknown required type const
Currently we use the AMP record type, this allows us to change it easily
as we add new known records. We also bump this to 0x0c instead of 0x0a. | lightningnetwork_lnd | train |
17b56810d19522910ebca4f4047abd155eede3b7 | diff --git a/gns3server/modules/dynamips/__init__.py b/gns3server/modules/dynamips/__init__.py
index <HASH>..<HASH> 100644
--- a/gns3server/modules/dynamips/__init__.py
+++ b/gns3server/modules/dynamips/__init__.py
@@ -419,7 +419,7 @@ class Dynamips(IModule):
ghost.ram = router.ram
ghost.start... | Fixes bug where IOS nvram/disk files were not kept after closing a
topology. | GNS3_gns3-server | train |
c0878c492a62ecc7dcd799415380884e480c500b | diff --git a/lib/podio/models/organization.rb b/lib/podio/models/organization.rb
index <HASH>..<HASH> 100644
--- a/lib/podio/models/organization.rb
+++ b/lib/podio/models/organization.rb
@@ -18,7 +18,8 @@ class Podio::Organization < ActivePodio::Base
property :contact_count, :integer
property :billing_interval, :... | Added domains property to Organization model | podio_podio-rb | train |
6a15b331a507e08baae20384a8b57104695c4e83 | diff --git a/lib/crabfarm/phantom_runner.rb b/lib/crabfarm/phantom_runner.rb
index <HASH>..<HASH> 100644
--- a/lib/crabfarm/phantom_runner.rb
+++ b/lib/crabfarm/phantom_runner.rb
@@ -18,8 +18,8 @@ module Crabfarm
def stop
unless @pid.nil?
- Process.kill("TERM", @pid)
- Process.wait @pid
+ ... | fix(PhantomRunner): improves process termination | platanus_crabfarm-gem | train |
1295303cfb3f39fd5cb59dbdc5894d6900c6f0cf | diff --git a/src/main/java/org/jboss/pressgang/ccms/utils/common/StringUtilities.java b/src/main/java/org/jboss/pressgang/ccms/utils/common/StringUtilities.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jboss/pressgang/ccms/utils/common/StringUtilities.java
+++ b/src/main/java/org/jboss/pressgang/ccms/utils/c... | Added isStringNullOrEmpty to StringUtilities | pressgang-ccms_PressGangCCMSCommonUtilities | train |
5d61b91e12606a1917f8efdbe33d63494764fe31 | diff --git a/lib/mk_time/consts.rb b/lib/mk_time/consts.rb
index <HASH>..<HASH> 100644
--- a/lib/mk_time/consts.rb
+++ b/lib/mk_time/consts.rb
@@ -180,7 +180,8 @@ module MkTime
["20170330", 0.4],
["20170629", 0.3],
["20171130", 0.2],
- ["2... | UPD: Added a new DUT1 adjustment to constants. | komasaru_mk_time | train |
ed26692492b76609bd9f99d563d06087cb95c89f | diff --git a/richtextfx/src/main/java/org/fxmisc/richtext/GenericStyledArea.java b/richtextfx/src/main/java/org/fxmisc/richtext/GenericStyledArea.java
index <HASH>..<HASH> 100644
--- a/richtextfx/src/main/java/org/fxmisc/richtext/GenericStyledArea.java
+++ b/richtextfx/src/main/java/org/fxmisc/richtext/GenericStyledAre... | Added null check to setUndoManager (#<I>)
Set a no op undo manager if the parameter is null.
Added javadoc to describe behavior. | FXMisc_RichTextFX | train |
d4abe913e8d3462dbcaacd7d62389fa56dfdf664 | diff --git a/pyfixdoc.py b/pyfixdoc.py
index <HASH>..<HASH> 100755
--- a/pyfixdoc.py
+++ b/pyfixdoc.py
@@ -470,7 +470,7 @@ name of the class to document
line_num, obj_md = self.document_method(path_list, member_name, member_obj, func_kind)
obj_md_pos[line_num] = obj_md
- for _... | Replaced just `_` with an unused variable declaration. | DerwenAI_pytextrank | train |
246757bacdd6224724c667b7b9812d7d88bdd8e1 | diff --git a/src/event.js b/src/event.js
index <HASH>..<HASH> 100644
--- a/src/event.js
+++ b/src/event.js
@@ -143,7 +143,7 @@ jQuery.event = {
// Add the function to the element's handler list
handlers.push( handleObj );
- // Keep track of which events have been used, for global triggering
+ // Keep trac... | Only bubble a triggered event if we have attached a jQuery handler, but check the current element for an inline handler regardless. Make some other size optimizations as well. | jquery_jquery | train |
d0824f17b402fb420d77b659a68612db95b8e241 | diff --git a/test/fakery_tests.js b/test/fakery_tests.js
index <HASH>..<HASH> 100644
--- a/test/fakery_tests.js
+++ b/test/fakery_tests.js
@@ -422,67 +422,67 @@ describe('tests fakery.js', function() {
});
});
- // describe('makeAndSave()', function() {
- // it('should make and save a model wi... | adding makeAndSave() tests
these tests mock up the save() method on mongoose models to avoid
db calls | alexmic_mongoose-fakery | train |
6c35fb1ed1ac062315ba4d7bdaa8c34cba3bd45c | diff --git a/spec/compressor_spec.rb b/spec/compressor_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/compressor_spec.rb
+++ b/spec/compressor_spec.rb
@@ -1,11 +1,10 @@
require "helper"
describe Http2::Parser::Header do
- let(:c) { Compressor.new }
- let(:d) { Decompressor.new }
-
context "differential coding"... | before hook for intitializing CompressionContext | igrigorik_http-2 | train |
b97b2871332283724f8864eb9ebec9af854d9107 | diff --git a/component.js b/component.js
index <HASH>..<HASH> 100644
--- a/component.js
+++ b/component.js
@@ -165,7 +165,7 @@ function base (base) {
} else {
if ('notify' in property && expr.mode === '{') {
this.__componentNotifiedProps[propName] = true;
- this.__tem... | changed observer on repeat to use same fn for items and filter | xinix-technology_xin | train |
d9bc92ed679094e984fcb76331c104dd407187f3 | diff --git a/src/utils/CSS.js b/src/utils/CSS.js
index <HASH>..<HASH> 100644
--- a/src/utils/CSS.js
+++ b/src/utils/CSS.js
@@ -11,8 +11,6 @@ export default {
throw new Error(`Unsafe CSS found in ${foundInName}: "-moz-binding"`);
} else if (css.match(/expression/i)) {
throw new Error(`Unsafe CSS found... | refactor(css): Remove checks for closing style tag since clean-css is already taking care of it | revivek_oy | train |
9bf1b5399b29520d343804aba50b3304d868160c | diff --git a/config.go b/config.go
index <HASH>..<HASH> 100644
--- a/config.go
+++ b/config.go
@@ -151,8 +151,8 @@ type config struct {
LndDir string `long:"lnddir" description:"The base directory that contains lnd's data, logs, configuration file, etc."`
ConfigFile string `long:"C" long:"configfile" descri... | config: ensure all paths are cleaned and expanded after parsing options
In this commit, we ensure all paths to directories and files related to
LND are cleand and expanded before attempting to use them.
For example, in POSIX systems:
- ~/lnd.conf would be expanded to /home/user/lnd.conf
- $HOME/lnd.conf would be ... | lightningnetwork_lnd | train |
ccc619cb621a737c32e59d43edb833e233af85a0 | diff --git a/bin/abcing b/bin/abcing
index <HASH>..<HASH> 100755
--- a/bin/abcing
+++ b/bin/abcing
@@ -2,5 +2,4 @@
require 'abcing'
-abcing = ABCing::Run.new
-abcing.render
+ABCing::Runner.new.run
diff --git a/lib/abcing.rb b/lib/abcing.rb
index <HASH>..<HASH> 100644
--- a/lib/abcing.rb
+++ b/lib/abcing.rb
@@ -1,2... | Move logic out of renderer into runner. | emileswarts_abcing | train |
6ab238a33743f27124d150b36d7df83a46282047 | diff --git a/lib/ore/template/directory.rb b/lib/ore/template/directory.rb
index <HASH>..<HASH> 100644
--- a/lib/ore/template/directory.rb
+++ b/lib/ore/template/directory.rb
@@ -147,10 +147,7 @@ module Ore
return false unless File.file?(config_path)
config = YAML.load_file(config_path)
-
- u... | Skip template.yml files that are empty or do not contain a Hash. | ruby-ore_ore | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.