hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
66113959473829d4044df97b381e40fd633eca5b | diff --git a/js2py/evaljs.py b/js2py/evaljs.py
index <HASH>..<HASH> 100644
--- a/js2py/evaljs.py
+++ b/js2py/evaljs.py
@@ -11,6 +11,7 @@ class EvalJs:
def execute(self, js):
"""executes javascript js in current context"""
+ js = js.replace('\t', '\n') # have to remove tabs in parser
if... | Added evaluator finally usable. more bug fixes. | PiotrDabkowski_Js2Py | train |
cc0557a82911f7bf5234cbb79060ced0a2ee736a | diff --git a/lib/bibliothecary.rb b/lib/bibliothecary.rb
index <HASH>..<HASH> 100644
--- a/lib/bibliothecary.rb
+++ b/lib/bibliothecary.rb
@@ -13,7 +13,7 @@ module Bibliothecary
file_list = []
Find.find(path) do |subpath|
Find.prune if FileTest.directory?(subpath) && ignored_dirs.include?(File.basename... | Switch to push as I guess append was not available in ruby <I> | librariesio_bibliothecary | train |
498df77a2a6bf2decf0ac3a670e9e6d630b77637 | diff --git a/collatex/src/main/java/eu/interedition/collatex2/experimental/DeTestDirkVincent.java b/collatex/src/main/java/eu/interedition/collatex2/experimental/DeTestDirkVincent.java
index <HASH>..<HASH> 100644
--- a/collatex/src/main/java/eu/interedition/collatex2/experimental/DeTestDirkVincent.java
+++ b/collatex/s... | [RHD] Refactored test to use Map instead of List | interedition_collatex | train |
3c12e24e8446229029e6f94f0768e9e83c9f21cf | diff --git a/devices/aurora_lighting.js b/devices/aurora_lighting.js
index <HASH>..<HASH> 100644
--- a/devices/aurora_lighting.js
+++ b/devices/aurora_lighting.js
@@ -5,6 +5,31 @@ const reporting = require('../lib/reporting');
const extend = require('../lib/extend');
const e = exposes.presets;
+const batteryRotaryD... | Improve Aurora Lighting AU-A1ZBR1GW and AU-A1ZBR2GW stability (#<I>) | Koenkk_zigbee-shepherd-converters | train |
1dcc45468ac062ee1138a8370592539cbdbb9970 | diff --git a/messaging/src/main/java/org/cloudiator/messaging/kafka/BaseKafkaConsumerFactory.java b/messaging/src/main/java/org/cloudiator/messaging/kafka/BaseKafkaConsumerFactory.java
index <HASH>..<HASH> 100644
--- a/messaging/src/main/java/org/cloudiator/messaging/kafka/BaseKafkaConsumerFactory.java
+++ b/messaging/... | Adapted kafka configuration | cloudiator_common | train |
5ce2772e1d3c8b63965e28180dd346e2276c1dae | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -14,7 +14,7 @@ dependencies = [
setup(
name='templar',
- version='1.1',
+ version='1.2.dev1',
description='A static templating engine written in Python',
# long_description=long_description,
url='h... | Add warnings when compiler can't evaluate an expression | albert12132_templar | train |
16fbb8997090cc69af9490b411e3a7dee1037627 | diff --git a/ips_vagrant/commands/delete/__init__.py b/ips_vagrant/commands/delete/__init__.py
index <HASH>..<HASH> 100644
--- a/ips_vagrant/commands/delete/__init__.py
+++ b/ips_vagrant/commands/delete/__init__.py
@@ -10,10 +10,10 @@ from ips_vagrant.models.sites import Domain, Site, Session
@click.command('list', sh... | --delete-code renamed to --remove-code | FujiMakoto_IPS-Vagrant | train |
f8375e415ef0d7ec4cbcc55f8cc70de453e3ae88 | diff --git a/languagetool-core/src/main/java/org/languagetool/rules/CommaWhitespaceRule.java b/languagetool-core/src/main/java/org/languagetool/rules/CommaWhitespaceRule.java
index <HASH>..<HASH> 100644
--- a/languagetool-core/src/main/java/org/languagetool/rules/CommaWhitespaceRule.java
+++ b/languagetool-core/src/mai... | avoid a match for strange cases where we don't (and can't) offer a suggestion | languagetool-org_languagetool | train |
41051401bfcdf90253e800e5c541608df1618682 | diff --git a/quilt_server/views.py b/quilt_server/views.py
index <HASH>..<HASH> 100644
--- a/quilt_server/views.py
+++ b/quilt_server/views.py
@@ -413,7 +413,7 @@ def user_packages(auth_user, owner):
)
@app.route('/api/log/<owner>/<package_name>/', methods=['GET'])
-@api()
+@api(require_login=False)
@as_json
... | Make log work for public packages when not logged in | quiltdata_quilt | train |
f208892d877eec9bc062c9d8d2af9983b35bd41c | diff --git a/ghost/admin/app/components/gh-navitem-url-input.js b/ghost/admin/app/components/gh-navitem-url-input.js
index <HASH>..<HASH> 100644
--- a/ghost/admin/app/components/gh-navitem-url-input.js
+++ b/ghost/admin/app/components/gh-navitem-url-input.js
@@ -20,16 +20,11 @@ let isRelative = function (url) {
expo... | Remove Nav Item Placeholder and Set as Base Url Value
Closes #<I>
* Removed the `.fake-placeholder`class from the input, test, and css
* On adding a nav item, if the url value has not been set by the user,
then set it to the base url as shown in the input
* If url has been set by the user, just do what it has always ... | TryGhost_Ghost | train |
6522f3e0c207db5a1b342185ea1671b4c0dcf616 | diff --git a/hitch_test.go b/hitch_test.go
index <HASH>..<HASH> 100644
--- a/hitch_test.go
+++ b/hitch_test.go
@@ -7,8 +7,6 @@ import (
"net/http/httptest"
"runtime"
"testing"
-
- "github.com/nbio/st"
)
func TestHome(t *testing.T) {
@@ -24,7 +22,10 @@ func TestEcho(t *testing.T) {
defer res.Body.Close()
e... | drop github.com/nbio/st dependency in testing | nbio_hitch | train |
a83bb46ffc84e25043d68ae4786bc5d6a532b215 | diff --git a/src/main/java/com/tulskiy/keymaster/AWTTest.java b/src/main/java/com/tulskiy/keymaster/AWTTest.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/tulskiy/keymaster/AWTTest.java
+++ b/src/main/java/com/tulskiy/keymaster/AWTTest.java
@@ -22,17 +22,8 @@ public class AWTTest {
public static void m... | [common] added static method to get current provider | tulskiy_jkeymaster | train |
36d4af6a9283c59fb96881404935b77e686b46fc | diff --git a/master/buildbot/db/buildslaves.py b/master/buildbot/db/buildslaves.py
index <HASH>..<HASH> 100644
--- a/master/buildbot/db/buildslaves.py
+++ b/master/buildbot/db/buildslaves.py
@@ -157,11 +157,11 @@ class BuildslavesConnectorComponent(base.DBConnectorComponent):
'masterid... | rename "buildslave" to "worker" in comments | buildbot_buildbot | train |
d185af544dc12c917e905f0df81cb22d058bb591 | diff --git a/src/Aerys/Server.php b/src/Aerys/Server.php
index <HASH>..<HASH> 100644
--- a/src/Aerys/Server.php
+++ b/src/Aerys/Server.php
@@ -457,6 +457,8 @@ class Server extends TcpServer {
$this->invokeOnHeadersMods($host, $requestId);
if (!isset($client->responses[$requestId])) {
+ ... | Apps and mods can now modify the ASGI environment via Server::setRequest | amphp_http-server | train |
ccdc653f6c1d5154adb6f5d6af9c13053726f581 | diff --git a/openxc/sources/base.py b/openxc/sources/base.py
index <HASH>..<HASH> 100644
--- a/openxc/sources/base.py
+++ b/openxc/sources/base.py
@@ -78,7 +78,7 @@ class SourceLogger(threading.Thread):
self.file = open(filename, 'wa')
def record(self, message):
- if len(message) > 0:
+ ... | Don't show logs when in "off" mode. Fixed #<I>. | openxc_openxc-python | train |
ea0359b76ff7d8fcb82759cd20f61cefb793e1b0 | diff --git a/src/BulkUploader/BulkUploader.php b/src/BulkUploader/BulkUploader.php
index <HASH>..<HASH> 100644
--- a/src/BulkUploader/BulkUploader.php
+++ b/src/BulkUploader/BulkUploader.php
@@ -330,7 +330,8 @@ class BulkUploader implements GridField_HTMLProvider, GridField_URLHandler
public function bulkUploadFie... | FIX UploadField name should be unique
Avoid having multiple UploadFields with the same name, whcih in turn would all change at the same time | colymba_GridFieldBulkEditingTools | train |
404e795f470099789d144f593cd0be2cf3ecfd0a | diff --git a/test/authentication/test_session.rb b/test/authentication/test_session.rb
index <HASH>..<HASH> 100644
--- a/test/authentication/test_session.rb
+++ b/test/authentication/test_session.rb
@@ -8,7 +8,7 @@ module Authentication
include Net::SSH::Authentication::Constants
def test_constructor_should... | updated tests to match the default of not allowing hostbased auth | net-ssh_net-ssh | train |
6e3b1c835d9db31a52e4bf6d82037d31f773be8e | diff --git a/lib/Predis.php b/lib/Predis.php
index <HASH>..<HASH> 100644
--- a/lib/Predis.php
+++ b/lib/Predis.php
@@ -1461,7 +1461,15 @@ class Sort extends \Predis\InlineCommand {
$query[] = 'BY ' . $sortParams['by'];
}
if (isset($sortParams['get'])) {
- $query[] = 'GET ' . $s... | Enhancement: support multiple GET parameters for the SORT command (see also my comment in ISSUE #1) | nrk_predis | train |
e697854bb97319ef14dd61ed9f125bef3f8bb4eb | diff --git a/evaluation.py b/evaluation.py
index <HASH>..<HASH> 100644
--- a/evaluation.py
+++ b/evaluation.py
@@ -103,39 +103,69 @@ class ClassEvaluation(object):
def precision(self, cls=None):
if not self.computed: self.compute()
if cls:
- return self.tp[cls] / float(self.tp[cls] + s... | protection against division by zero
git-svn-id: <URL> | proycon_pynlpl | train |
a6e82130a0f2af135d88ffa9d3b7474719c43cb6 | diff --git a/wafer/pages/models.py b/wafer/pages/models.py
index <HASH>..<HASH> 100644
--- a/wafer/pages/models.py
+++ b/wafer/pages/models.py
@@ -22,7 +22,11 @@ class File(models.Model):
item = models.FileField(upload_to='pages_files')
def __str__(self):
- return u'%s' % (self.name,)
+ if sel... | Tweak file repr to make associations between files and relevant pages / sponsors clearer | CTPUG_wafer | train |
0186ccf12ae16032b5b94e32a8e78e2ca9000a68 | diff --git a/websockhop.js b/websockhop.js
index <HASH>..<HASH> 100644
--- a/websockhop.js
+++ b/websockhop.js
@@ -573,7 +573,10 @@
var handler = isObject(obj) ? this.formatter.getHandlerForResponse(obj) : null;
if (handler != null) {
handler.callback(obj);
- ... | Additional fix to pong response for "stopped sending private info with request() call" | fanout_websockhop | train |
7eaf9c2476b99e05b8af2bfe395144ff8c10de09 | diff --git a/examples/nas/oneshot/pfld/train.py b/examples/nas/oneshot/pfld/train.py
index <HASH>..<HASH> 100644
--- a/examples/nas/oneshot/pfld/train.py
+++ b/examples/nas/oneshot/pfld/train.py
@@ -63,6 +63,7 @@ def main(args):
alpha=args.alpha,
beta=args.beta,
search_space=search_space,
+ ... | Add start_epoch configuration in PFLD example (#<I>) | Microsoft_nni | train |
6f8dd4b254b92f74ce0dadbc9a674b8d81e03df5 | diff --git a/lib/verbs/conjugator.rb b/lib/verbs/conjugator.rb
index <HASH>..<HASH> 100644
--- a/lib/verbs/conjugator.rb
+++ b/lib/verbs/conjugator.rb
@@ -1,10 +1,10 @@
# The program conjugates most common english verbs with the following option:
-# * :tense => :past or :present or :future
-# * :person => :first or :s... | add missing comment for diathesis option | rossmeissl_verbs | train |
5d2946966ad5297e0c7d38c75ce704103088b3b6 | diff --git a/testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/suites/DomainTestSuite.java b/testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/suites/DomainTestSuite.java
index <HASH>..<HASH> 100644
--- a/testsuite/domain/src/test/java/org/jboss/as/test/integration/domain/suites/Doma... | Add tests to DomainTestSuite so they always run | wildfly_wildfly | train |
a1807fd5ed115ae1708b631d9639bf3cb11b8f90 | diff --git a/src/auth.js b/src/auth.js
index <HASH>..<HASH> 100644
--- a/src/auth.js
+++ b/src/auth.js
@@ -5,7 +5,7 @@
var request = require('request').defaults({
headers: {
"x-tesla-user-agent": "TeslaApp/3.10.8-421/adff2e065/android/8.1.0",
- "user-agent": "Mozilla/5.0 (Linux; Android 8.1.0; Pix... | Fixed header per timdorr suggestion (#<I>)
as found in the authentication documentation
<URL> | mseminatore_TeslaJS | train |
709af06ce2f8342bd83c4d484abc97341991388e | diff --git a/masonite/drivers/UploadDiskDriver.py b/masonite/drivers/UploadDiskDriver.py
index <HASH>..<HASH> 100644
--- a/masonite/drivers/UploadDiskDriver.py
+++ b/masonite/drivers/UploadDiskDriver.py
@@ -12,6 +12,8 @@ class UploadDiskDriver(object):
if not location:
location = self.config.DRIVE... | closes #<I> - Uploading images does not direct to the correct location | MasoniteFramework_masonite | train |
6e5dccbbe5ed5411ca5b59846161adf448c77b3d | diff --git a/lib/config.js b/lib/config.js
index <HASH>..<HASH> 100644
--- a/lib/config.js
+++ b/lib/config.js
@@ -61,6 +61,8 @@ defaultConfig.searchResultCnt = 10;
defaultConfig.playedQueueSize = 100;
defaultConfig.songDelayMs = 1000; // add delay between songs to prevent skips
+defaultConfig.songPrepareTimeout = ... | prepare timeouts if no progress callback called for x ms | FruitieX_nodeplayer | train |
9de47d3a39ae67722284d86905af58d241eff96b | diff --git a/components/prism-css-extras.js b/components/prism-css-extras.js
index <HASH>..<HASH> 100644
--- a/components/prism-css-extras.js
+++ b/components/prism-css-extras.js
@@ -9,11 +9,14 @@ Prism.languages.css.selector = {
}
};
-Prism.languages.insertBefore('css', 'function', {
+Prism.languages.insertBefore... | Fixed CSS extra variable (#<I>)
Details are described [here](<URL> | PrismJS_prism | train |
18caaeab0eb00d4186eea15b393b1b0b810cbd8e | diff --git a/Core/Executor/ContentManager.php b/Core/Executor/ContentManager.php
index <HASH>..<HASH> 100644
--- a/Core/Executor/ContentManager.php
+++ b/Core/Executor/ContentManager.php
@@ -597,13 +597,7 @@ class ContentManager extends RepositoryExecutor implements MigrationGeneratorInt
{
$fields = $this... | fixup for commit d0c8b1a9f<I> | kaliop-uk_ezmigrationbundle | train |
d84b82a7520d164f791a7abf9b0d348bb2f592a6 | diff --git a/lib/sorcery/controller/submodules/session_timeout.rb b/lib/sorcery/controller/submodules/session_timeout.rb
index <HASH>..<HASH> 100644
--- a/lib/sorcery/controller/submodules/session_timeout.rb
+++ b/lib/sorcery/controller/submodules/session_timeout.rb
@@ -38,6 +38,7 @@ module Sorcery
def valid... | Fix session timeout to work with Rails cookie store
Rails cookie-based default session store represents times as Strings, which must be converted to times before comparison. | Sorcery_sorcery | train |
a7e092f510dc7aba48092886897515fc1b843cfe | diff --git a/cmd/info.js b/cmd/info.js
index <HASH>..<HASH> 100644
--- a/cmd/info.js
+++ b/cmd/info.js
@@ -9,10 +9,13 @@ exports.describe = 'Get info from npms.io of a given package.';
exports.builder = (yargs) =>
yargs
.strict()
+ .demand(1, 1)
+ .usage('Usage: $0 info <package> [options]\n\nGet info ... | Add usage and examples to the CLI.
Standardize some options. | npms-io_npms-cli | train |
723730f8acf9a159cf23c2836ba040b0db678b74 | diff --git a/assets/codemirror/codemirror.js b/assets/codemirror/codemirror.js
index <HASH>..<HASH> 100644
--- a/assets/codemirror/codemirror.js
+++ b/assets/codemirror/codemirror.js
@@ -1,4 +1,4 @@
-// CodeMirror version 2.31
+// CodeMirror version 2.32
//
// All functions that need access to the editor's state live... | Update CodeMirror to version <I>.
According to CodeMirror web site:
<I>-<I>-<I>: Version <I>:
Emergency fix for a bug where an editor with line wrapping on IE will
break when there is no scrollbar.
<URL> | jscs-dev_esprima-harmony | train |
95f9f2bf69429968b34000571ba7c895e23e68b1 | diff --git a/lib/plugins/httpHeaders.js b/lib/plugins/httpHeaders.js
index <HASH>..<HASH> 100644
--- a/lib/plugins/httpHeaders.js
+++ b/lib/plugins/httpHeaders.js
@@ -3,18 +3,18 @@ module.exports = {
if(req.prerender.documentHTML) {
var statusMatch = /<meta name=['"]prerender-status-code['"] conte... | making sure httpHeaders handles buffers | prerender_prerender | train |
2d0105f245a9f9dde780c76c78d52978a18537c2 | diff --git a/languagetool-language-modules/de/src/test/java/org/languagetool/rules/de/AgreementRuleTest.java b/languagetool-language-modules/de/src/test/java/org/languagetool/rules/de/AgreementRuleTest.java
index <HASH>..<HASH> 100644
--- a/languagetool-language-modules/de/src/test/java/org/languagetool/rules/de/Agreem... | [de] add test for "unser" | languagetool-org_languagetool | train |
07f786b28bc08deff87692f4a1d1d67c72e9def2 | diff --git a/aeron-archive/src/main/java/io/aeron/archive/RecordingWriter.java b/aeron-archive/src/main/java/io/aeron/archive/RecordingWriter.java
index <HASH>..<HASH> 100644
--- a/aeron-archive/src/main/java/io/aeron/archive/RecordingWriter.java
+++ b/aeron-archive/src/main/java/io/aeron/archive/RecordingWriter.java
@... | [Java] Mark closed after a successful close. | real-logic_aeron | train |
295cd986fbc191de926e19e91de279cd9a8b1ff5 | diff --git a/src-gwt/org/opencms/acacia/client/widgets/CmsSelectConfigurationParser.java b/src-gwt/org/opencms/acacia/client/widgets/CmsSelectConfigurationParser.java
index <HASH>..<HASH> 100644
--- a/src-gwt/org/opencms/acacia/client/widgets/CmsSelectConfigurationParser.java
+++ b/src-gwt/org/opencms/acacia/client/wid... | Fixed error in select widget option parsing. | alkacon_opencms-core | train |
1aa2cb732485d037a4386eefaded22e87c75acc0 | diff --git a/public/js/core.forms.js b/public/js/core.forms.js
index <HASH>..<HASH> 100644
--- a/public/js/core.forms.js
+++ b/public/js/core.forms.js
@@ -21,7 +21,7 @@
{
$.each(errors, function(idx, error) {
var $errorsDiv = $form.find('#' + prefix + idx + '-errors');
- ... | [Core] Removes debug messages from javascript files. | yawik_core | train |
8de2995f8740b202f85ff483c130d6c15686cf7f | diff --git a/flash_test.go b/flash_test.go
index <HASH>..<HASH> 100644
--- a/flash_test.go
+++ b/flash_test.go
@@ -1,8 +1,12 @@
package buffalo
import (
+ "io/ioutil"
+ "os"
"testing"
+ "github.com/gobuffalo/buffalo/render"
+ "github.com/markbates/willie"
"github.com/stretchr/testify/require"
)
@@ -71,3 +7... | adding some tests for the rendering of the Errors and All | gobuffalo_buffalo | train |
5a3e5d91c1bf1aff548deca292be2c95a304cb11 | diff --git a/xlsxworker.flow.js b/xlsxworker.flow.js
index <HASH>..<HASH> 100644
--- a/xlsxworker.flow.js
+++ b/xlsxworker.flow.js
@@ -1,7 +1,7 @@
/* xlsx.js (C) 2013-present SheetJS -- http://sheetjs.com */
/*:: declare var XLSX: XLSXModule; */
/*:: declare var self: DedicatedWorkerGlobalScope; */
-importScripts('s... | xlsxworker use dist shim [ci skip] | SheetJS_js-xlsx | train |
f6948a4647a59ce3adf26dba11f8bc25ab6a63fb | diff --git a/great_expectations/dataset/pandas_dataset.py b/great_expectations/dataset/pandas_dataset.py
index <HASH>..<HASH> 100644
--- a/great_expectations/dataset/pandas_dataset.py
+++ b/great_expectations/dataset/pandas_dataset.py
@@ -490,23 +490,24 @@ class PandasDataSet(MetaPandasDataSet, pd.DataFrame):
@Met... | Fixed some errors and failures but many are still present. Trying to develop workarounds between python 2 and 3 | great-expectations_great_expectations | train |
0ae6144448fef63b8a875ef19800b610e62c84d4 | diff --git a/go/protocol/keybase1/extras.go b/go/protocol/keybase1/extras.go
index <HASH>..<HASH> 100644
--- a/go/protocol/keybase1/extras.go
+++ b/go/protocol/keybase1/extras.go
@@ -1905,6 +1905,20 @@ func (s SigChainLocation) LessThanOrEqualTo(s2 SigChainLocation) bool {
return s.SeqType == s2.SeqType && s.Seqno <=... | fix role ordering check (#<I>) | keybase_client | train |
c178597abf01709628b4e2a7109ec8cd1eb757cf | diff --git a/app/models/no_cms/menus/menu.rb b/app/models/no_cms/menus/menu.rb
index <HASH>..<HASH> 100644
--- a/app/models/no_cms/menus/menu.rb
+++ b/app/models/no_cms/menus/menu.rb
@@ -2,7 +2,7 @@ module NoCms::Menus
class Menu < ActiveRecord::Base
translates :name
- has_many :menu_items, dependent: :des... | Created inverse relationships between menu and menu_item | simplelogica_nocms-menus | train |
99a8911f3b6c6d96a943453466929db4f94f7564 | diff --git a/lib/cborb/decoding/state.rb b/lib/cborb/decoding/state.rb
index <HASH>..<HASH> 100644
--- a/lib/cborb/decoding/state.rb
+++ b/lib/cborb/decoding/state.rb
@@ -71,6 +71,7 @@ module Cborb::Decoding
else
@stack.pop
if @stack.empty?
+ raise Cborb::InvalidByteSequenceErr... | Raise error if remained unknown data | murakmii_cborb | train |
6537ad64d5e4450802cd4c90ba4f03fbeaf15037 | diff --git a/spec/shared/optimize_method_behavior.rb b/spec/shared/optimize_method_behavior.rb
index <HASH>..<HASH> 100644
--- a/spec/shared/optimize_method_behavior.rb
+++ b/spec/shared/optimize_method_behavior.rb
@@ -2,8 +2,8 @@ shared_examples_for 'an optimize method' do
it_should_behave_like 'an idempotent metho... | Minor improvement to variable naming in shared spec | dkubb_axiom | train |
e3252b625a972af9982882dff5f2aafcc0c2dd1a | diff --git a/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/VariableScopeImpl.java b/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/VariableScopeImpl.java
index <HASH>..<HASH> 100644
--- a/activiti-engine/src/main/java/org/activiti/engine/impl/persistence/entity/Var... | ACT-<I>: Removed duplicated calling of "ensureVariableInstancesInitialized()" and changed the implementation of "getVariableNames()" that in this case the values of the variables will not be loaded | camunda_camunda-bpm-platform | train |
e856aba9ab69094787dfd0f6e911f20782069e92 | diff --git a/airflow/kubernetes/pod_generator_deprecated.py b/airflow/kubernetes/pod_generator_deprecated.py
index <HASH>..<HASH> 100644
--- a/airflow/kubernetes/pod_generator_deprecated.py
+++ b/airflow/kubernetes/pod_generator_deprecated.py
@@ -178,7 +178,8 @@ class PodGenerator:
self.container.command = c... | Fix handling some None parameters in kubernetes <I> libs. (#<I>)
Kubernetes <I>.* is more picky when it comes to values passed to
Pod Generator - it requires:
* imagePullPolicy
* dnsPolicy
* restartPolicy
to be not None.
We are fixing it in the way, that we simply skip setting those
if they are None. | apache_airflow | train |
eee16fb5d7fef77843c1ed133ef41b291c2f2aea | diff --git a/src/lib/shortcuts.js b/src/lib/shortcuts.js
index <HASH>..<HASH> 100644
--- a/src/lib/shortcuts.js
+++ b/src/lib/shortcuts.js
@@ -1,8 +1,13 @@
/* globals AFRAME */
var Events = require('./Events');
-var shouldCaptureKeyEvent = AFRAME.utils.shouldCaptureKeyEvent;
import {removeSelectedEntity, cloneSelect... | Do not fire hotkey shortcuts dependent on activeElement, but instead allow events if not originating on an input element | aframevr_aframe-inspector | train |
701cd768167acdd735b42f39c8efa97466e3d57e | diff --git a/twstock/codes.py b/twstock/codes.py
index <HASH>..<HASH> 100644
--- a/twstock/codes.py
+++ b/twstock/codes.py
@@ -24,7 +24,7 @@ twse = {}
def read_csv(path, types):
global codes, twse, tpex
- with open(path, newline='') as csvfile:
+ with open(path, newline='', encoding='utf_8') as csvfile:
... | Explicitly define 'utf-8' encoding while reading CSV. (#2)
* Explicitly define 'utf-8' encoding while reading CSV. | mlouielu_twstock | train |
f68196b74abc730caeecdd930d45d681642e06fa | diff --git a/spec/dummy/app/assets/javascripts/application.js b/spec/dummy/app/assets/javascripts/application.js
index <HASH>..<HASH> 100644
--- a/spec/dummy/app/assets/javascripts/application.js
+++ b/spec/dummy/app/assets/javascripts/application.js
@@ -13,8 +13,8 @@
//= require_tree .
Renalware.Configuration.init... | Enabled feed inputs in dev | airslie_renalware-core | train |
233112fc0603ba6719717cef39f32e79af19a656 | diff --git a/openquake/server/db/actions.py b/openquake/server/db/actions.py
index <HASH>..<HASH> 100644
--- a/openquake/server/db/actions.py
+++ b/openquake/server/db/actions.py
@@ -28,13 +28,11 @@ from openquake.server.db.schema.upgrades import upgrader
from openquake.server.db import upgrade_manager
from openquake... | Changed variable job_type to calculation_mode in some function, changed case, changed query in def list_calculations, added calculation_mode in response_data, changed position calculation_mode and status {skip CI] | gem_oq-engine | train |
66f0259f538e79aeeb4bd97ff650f99114bd42dc | diff --git a/yass/__about__.py b/yass/__about__.py
index <HASH>..<HASH> 100644
--- a/yass/__about__.py
+++ b/yass/__about__.py
@@ -16,7 +16,7 @@ __all__ = [
]
__title__ = "Yass"
-__version__ = "1.0.3"
+__version__ = "1.0.4"
__summary__ = "Yet Another Static Site (generator) for the common folks! "
__uri__ = "http... | Added template option in page, to allow dynamic update from template | mardix_Yass | train |
73563fd13d1c5b17ec4de790c45c98222602d9c9 | diff --git a/lib/firestore.js b/lib/firestore.js
index <HASH>..<HASH> 100644
--- a/lib/firestore.js
+++ b/lib/firestore.js
@@ -38,10 +38,14 @@ class Firestore {
this.buildQuery(filter, query1, query => {
query.get().then(snapshot => {
if (snapshot.exists) {
- response.push(snapshot.data());
+ let co... | Added Object.id as part of response | dyaa_loopback-connector-firestore | train |
e4612f9045708bd41fa2f81f9c602baf3d79b5e7 | diff --git a/lib/clearbit/logo.rb b/lib/clearbit/logo.rb
index <HASH>..<HASH> 100644
--- a/lib/clearbit/logo.rb
+++ b/lib/clearbit/logo.rb
@@ -20,7 +20,7 @@ module Clearbit
encoded_params = URI.encode_www_form(params)
if domain = values.delete(:domain)
- raise ArgumentError, 'Invalid domain' unle... | Amend regex to be simpler and support new style tlds. | clearbit_clearbit-ruby | train |
f36de8a9bb178d406b89e6d68107f24967c95d02 | diff --git a/src/Database/Query.php b/src/Database/Query.php
index <HASH>..<HASH> 100644
--- a/src/Database/Query.php
+++ b/src/Database/Query.php
@@ -1605,7 +1605,7 @@ class Query implements ExpressionInterface, IteratorAggregate
*/
public function func()
{
- if (empty($this->_functionsBuilder))... | Remove some cloaking for stricter null checks and fix a doc block. | cakephp_cakephp | train |
109861e8f17e51eb3025ddd88645445dc916ba16 | diff --git a/holoviews/core/element.py b/holoviews/core/element.py
index <HASH>..<HASH> 100644
--- a/holoviews/core/element.py
+++ b/holoviews/core/element.py
@@ -495,11 +495,13 @@ class HoloMap(UniformNdMapping):
data_type = (ViewableElement, NdMapping, Layout)
- def overlay(self, dimensions, **kwargs):
+ ... | Layout, overlay and grid of a HoloMap now reduces all key dimensions by
default. | pyviz_holoviews | train |
ba20b43ae2fb78a478ea2f3ea0ea01d0f837e17f | diff --git a/vendor/k8s.io/kubernetes/cmd/kubelet/app/server.go b/vendor/k8s.io/kubernetes/cmd/kubelet/app/server.go
index <HASH>..<HASH> 100644
--- a/vendor/k8s.io/kubernetes/cmd/kubelet/app/server.go
+++ b/vendor/k8s.io/kubernetes/cmd/kubelet/app/server.go
@@ -1125,9 +1125,7 @@ func RunKubelet(kubeServer *options.Kub... | UPSTREAM: <I>: Remove wait.Until for running Kubelet Bootstrap | openshift_origin | train |
bde2bfe4e23de447c6fa7b2de760e2282accdd2f | diff --git a/build_package.py b/build_package.py
index <HASH>..<HASH> 100755
--- a/build_package.py
+++ b/build_package.py
@@ -26,7 +26,8 @@ SUPPORTED_RELEASES = """\
14.04 trusty LTS
14.10 utopic HISTORIC
15.04 vivid SUPPORTED
-15.10 wily DEVEL
+15.10 wily SUPPORTED
+16.04 xenial DEVEL
"""
diff --git a/tests/t... | Enable xenial package building. | juju_juju | train |
67af9519e323932d46ce7bd7e97ff93c41cd8395 | diff --git a/src/main/java/water/api/Tutorials.java b/src/main/java/water/api/Tutorials.java
index <HASH>..<HASH> 100644
--- a/src/main/java/water/api/Tutorials.java
+++ b/src/main/java/water/api/Tutorials.java
@@ -39,7 +39,7 @@ public class Tutorials extends HTMLOnlyRequest {
+ "<div class='span2 col'>"
+ ... | Cosmetics for Tutorials page (to align). | h2oai_h2o-2 | train |
3b89449dc34e2e6bee10ce34c95728a2eb297bf4 | diff --git a/src/oidcmsg/time_util.py b/src/oidcmsg/time_util.py
index <HASH>..<HASH> 100644
--- a/src/oidcmsg/time_util.py
+++ b/src/oidcmsg/time_util.py
@@ -26,6 +26,7 @@ import sys
import time
from datetime import datetime
from datetime import timedelta
+from datetime import timezone
TIME_FORMAT = "%Y-%m-%dT%H... | fix: utcnow timestamp | openid_JWTConnect-Python-OidcMsg | train |
85207f0765b8303d50be37b3517acd375148e697 | diff --git a/umap/settings/base.py b/umap/settings/base.py
index <HASH>..<HASH> 100644
--- a/umap/settings/base.py
+++ b/umap/settings/base.py
@@ -30,7 +30,6 @@ SECRET_KEY = 'j6fly6aomgo6!3_$v#9kvhw-%wgs1@1l6x+4nr73tmn40=&_@&'
INSTALLED_APPS = (
'leaflet_storage',
- 'endless_pagination',
'umap',... | Remove endless_pagination from INSTALLED_APPS | umap-project_umap | train |
c089b542268f78c7451567fa76fa5223972eae21 | diff --git a/ChangeLog b/ChangeLog
index <HASH>..<HASH> 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2020 Apr 07 Sergey Satskiy <sergey.satskiy@gmail.com>
+
+* Release 3.2.1
+* Fix: incorrect python version spec in setup.py
+
2020 Apr 06 Sergey Satskiy <sergey.satskiy@gmail.com>
* Release 3.2.0
diff --gi... | Release <I>: fixed python version requirements | SergeySatskiy_cdm-pythonparser | train |
a593ee5fb4a2320163a9a0cfefd22538e2a9e6b6 | diff --git a/lib/rollbar/encoding.rb b/lib/rollbar/encoding.rb
index <HASH>..<HASH> 100644
--- a/lib/rollbar/encoding.rb
+++ b/lib/rollbar/encoding.rb
@@ -7,7 +7,6 @@ module Rollbar
def self.encode(object)
can_be_encoded = object.is_a?(Symbol) || object.is_a?(String)
- return if object.frozen?
... | Fix returning of frozen strings.
This should happen when we are trying to force encoding. So, if it's
frozen, we don't force anything and just encode it. | rollbar_rollbar-gem | train |
f15c62e602f9f6588792b082ee6e2e226386b600 | diff --git a/lib/mincer/engines/stylus_engine.js b/lib/mincer/engines/stylus_engine.js
index <HASH>..<HASH> 100644
--- a/lib/mincer/engines/stylus_engine.js
+++ b/lib/mincer/engines/stylus_engine.js
@@ -115,9 +115,10 @@ StylusEngine.prototype.evaluate = function (context, locals, callback) {
o[k] = (this[i] ||... | Small codestyle improvement
`this` is always "true"ish, so no need to test it. | nodeca_mincer | train |
7fb201359f28a7ea9daec54d61589e890ec163cc | diff --git a/jodd-json/src/main/java/jodd/json/JsonParser.java b/jodd-json/src/main/java/jodd/json/JsonParser.java
index <HASH>..<HASH> 100644
--- a/jodd-json/src/main/java/jodd/json/JsonParser.java
+++ b/jodd-json/src/main/java/jodd/json/JsonParser.java
@@ -885,10 +885,13 @@ public class JsonParser extends JsonParserB... | Fixes JSON issue - special keys when map is serialized and mapping is set. | oblac_jodd | train |
6142275d78c1716586f0b778c54baf132a99f24e | diff --git a/tests/Saxulum/Tests/DoctrineMongoDbOdm/Provider/DoctrineMongoDbOdmProviderTest.php b/tests/Saxulum/Tests/DoctrineMongoDbOdm/Provider/DoctrineMongoDbOdmProviderTest.php
index <HASH>..<HASH> 100644
--- a/tests/Saxulum/Tests/DoctrineMongoDbOdm/Provider/DoctrineMongoDbOdmProviderTest.php
+++ b/tests/Saxulum/Te... | Fixes for the config unit tests | saxulum_saxulum-doctrine-mongodb-odm-provider | train |
a2f5e0c596179f971e7cd3221d6b73cd615a8c7f | diff --git a/qjobs.js b/qjobs.js
index <HASH>..<HASH> 100644
--- a/qjobs.js
+++ b/qjobs.js
@@ -112,4 +112,4 @@ module.exports = new EventEmitter();
module.exports.run = run;
module.exports.add = add;
module.exports.pause = pause;
-
+module.exports.setConcurrency = setConcurrency; | oups .. forgot to add setConcurrency in module export | franck34_qjobs | train |
71c004396cb891b79be3af88a5036efbcf8beac8 | diff --git a/lib/jacoco/gem_version.rb b/lib/jacoco/gem_version.rb
index <HASH>..<HASH> 100644
--- a/lib/jacoco/gem_version.rb
+++ b/lib/jacoco/gem_version.rb
@@ -1,3 +1,3 @@
module Jacoco
- VERSION = '0.1.0'.freeze
+ VERSION = '0.1.1'.freeze
end
diff --git a/lib/jacoco/plugin.rb b/lib/jacoco/plugin.rb
index <HASH>... | Fix fail not reported when class coverage is below minimum | Malinskiy_danger-jacoco | train |
ecf3277ba9abf177dda25a547d943ab0342fb3be | diff --git a/werobot/testing.py b/werobot/testing.py
index <HASH>..<HASH> 100644
--- a/werobot/testing.py
+++ b/werobot/testing.py
@@ -13,13 +13,9 @@ _kwargs = {
class WeTest(object):
def __init__(self, app):
- if not isinstance(app, WeRoBot):
- raise TypeError
self._app = app
... | drop instance check in werobot.testing | offu_WeRoBot | train |
cd86bc2c33c57bec47a6f7f4e8e362dc4d7499a6 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -16,7 +16,7 @@ else:
data_files = None
setup(name = 'Rtree',
- version = '0.5.0',
+ version = '0.6.0',
description = 'R-Tree spatial index for Python GIS',
license ... | bump the version number so it doesn't clash with what's on PyPI | Toblerity_rtree | train |
d7f913ca8394b1cd23cda8adc05d023dcae2c764 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -271,8 +271,8 @@ def get_version_info():
# If this is a release or another kind of source distribution of PyCBC
except:
- version = '1.7.9'
- release = 'True'
+ version = '1.8.0dev'
+ re... | Set back to development (#<I>) | gwastro_pycbc | train |
b7d1f44364d6d35b158df660825d2741ee9c60bb | diff --git a/liquibase-core/src/main/java/liquibase/datatype/core/TimestampType.java b/liquibase-core/src/main/java/liquibase/datatype/core/TimestampType.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/datatype/core/TimestampType.java
+++ b/liquibase-core/src/main/java/liquibase/datatype/c... | CORE-<I> MSSQL handling timestamp according to sql standard, not sqlserver usage | liquibase_liquibase | train |
d373becbf05dee63e6555d9853c37f5753f376f4 | diff --git a/faker/providers/address/pt_PT/__init__.py b/faker/providers/address/pt_PT/__init__.py
index <HASH>..<HASH> 100644
--- a/faker/providers/address/pt_PT/__init__.py
+++ b/faker/providers/address/pt_PT/__init__.py
@@ -1,4 +1,7 @@
# coding=utf-8
+# Source from wikipedia.pt
+# https://pt.wikipedia.org/wiki/Dist... | Added pt_PT address source | joke2k_faker | train |
f7cae06ecfc759578b561cb76baa80f897c65e8e | diff --git a/scripts/linkCommodo.js b/scripts/linkCommodo.js
index <HASH>..<HASH> 100644
--- a/scripts/linkCommodo.js
+++ b/scripts/linkCommodo.js
@@ -36,6 +36,12 @@ async function symlink(src, dest) {
}
(async () => {
+ const commodoRepo = path.resolve("..", "commodo", "packages");
+
+ if (!fs.existsSync(com... | chore: add commodo linking tool for development purposes | Webiny_webiny-js | train |
e8e6dc55f58884cf6c0cd3938450300b147451a5 | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index <HASH>..<HASH> 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -10,6 +10,9 @@ This change log uses principles from `keep a changelog <http://keepachangelog.co
Added
^^^^^
+- ``dtool config readme-template`` CLI command for configuring the path to a
+ custom readme... | Add command to configure the path to a custom readme file | jic-dtool_dtool-config | train |
888ac59f32e65ffc598ba7cb9b4c6532b08f1cdd | diff --git a/cmd/juju-bridge/main.go b/cmd/juju-bridge/main.go
index <HASH>..<HASH> 100644
--- a/cmd/juju-bridge/main.go
+++ b/cmd/juju-bridge/main.go
@@ -17,7 +17,7 @@ import (
const usage = `
Bridge existing devices
-usage: [ -p ] [ -b <bridge-prefix ] <filename> <device-name>~<bridge-name>...
+usage: [ -p ] [ -b... | Use '=' for separator in juju-bridge command. Another test for bridge name generator | juju_juju | train |
58949b7c84044b02339926fa5dcbddaae30a1f7d | diff --git a/app/models/edition.rb b/app/models/edition.rb
index <HASH>..<HASH> 100644
--- a/app/models/edition.rb
+++ b/app/models/edition.rb
@@ -87,6 +87,10 @@ class Edition
series.where(state: "published").order(version_number: "desc").second
end
+ def in_progress_sibling
+ subsequent_siblings.in_progr... | Add method to access an Edition's in-progress sibling | alphagov_govuk_content_models | train |
7d88eed64b8ef4d846adeeecf9d86882219625d4 | diff --git a/src/Sylius/Bundle/CartBundle/Twig/SyliusCartExtension.php b/src/Sylius/Bundle/CartBundle/Twig/SyliusCartExtension.php
index <HASH>..<HASH> 100644
--- a/src/Sylius/Bundle/CartBundle/Twig/SyliusCartExtension.php
+++ b/src/Sylius/Bundle/CartBundle/Twig/SyliusCartExtension.php
@@ -29,21 +29,21 @@ class SyliusC... | Unable properties access to extending classes | Sylius_Sylius | train |
0b2002f679abe279be40da0be4de31132140c9f4 | diff --git a/tests/test_llcp_sec.py b/tests/test_llcp_sec.py
index <HASH>..<HASH> 100644
--- a/tests/test_llcp_sec.py
+++ b/tests/test_llcp_sec.py
@@ -2,6 +2,7 @@
from __future__ import absolute_import, division
+import time
import pytest
import nfc.llcp.sec
@@ -88,6 +89,7 @@ def test_bi_cs1_initialize_by_name... | Sleep between generating two CipherSuite1 instances.
Without some delay between creating tow CipherSuite1 instances
loacally, there is frequently the case that the second ECPK does not
lie on the curve. | nfcpy_nfcpy | train |
bfdb66ab710a02b5077d3ceaa008f915d880efd5 | diff --git a/lib/faraday/adapter/httpclient.rb b/lib/faraday/adapter/httpclient.rb
index <HASH>..<HASH> 100644
--- a/lib/faraday/adapter/httpclient.rb
+++ b/lib/faraday/adapter/httpclient.rb
@@ -6,51 +6,54 @@ module Faraday
class HTTPClient < Faraday::Adapter
dependency 'httpclient'
- # @return [HTTP... | Refactor httpclient adapter to use #connection | lostisland_faraday | train |
ba037cb41e57a02b0275992adf1010080a62ac14 | diff --git a/lib/baby_tooth.rb b/lib/baby_tooth.rb
index <HASH>..<HASH> 100644
--- a/lib/baby_tooth.rb
+++ b/lib/baby_tooth.rb
@@ -73,6 +73,10 @@ module BabyTooth
super access_token, '/user'
end
+ def street_team
+ @street_team ||= TeamFeed.new(access_token).members
+ end
+
def profile
... | return street team members as an array.
Example:
user.street_team # => [{"name"=>"Buster Bluth", "url"=>"/team/<I>", "profile"=>"<URL> | terriblelabs_BabyTooth | train |
3f2612df4768a1ee55b6fdfbcda04467f68539d3 | diff --git a/src/failable.js b/src/failable.js
index <HASH>..<HASH> 100644
--- a/src/failable.js
+++ b/src/failable.js
@@ -1,4 +1,5 @@
const equal = require('assert').deepEqual
+const { fail } = require('assert')
const stringify = require('json-stringify-safe')
const SUCCESS = 0
@@ -35,8 +36,8 @@ const anyFailed =... | only evaluates error string in failure condition | pheasantplucker_failables | train |
15cff55655c66820c7307c703a1dfda5c8eb2f6f | diff --git a/pyexchange/exchange2010/soap_request.py b/pyexchange/exchange2010/soap_request.py
index <HASH>..<HASH> 100644
--- a/pyexchange/exchange2010/soap_request.py
+++ b/pyexchange/exchange2010/soap_request.py
@@ -116,8 +116,8 @@ def get_item(exchange_id, format=u"Default"):
return root
def get_calendar_item... | Fix getting a calendar event list with Exchange <I>
The SOAP query was returing the following error:
The request failed schema validation: The 'EndDate' attribute is
invalid - The value '<I>-<I>-<I>' is invalid according to its
datatype '<URL> | linkedin_pyexchange | train |
812d63b1719237779a87f47b9aa24fb59f3abec3 | diff --git a/tests/Monolog/Handler/DynamoDbHandlerTest.php b/tests/Monolog/Handler/DynamoDbHandlerTest.php
index <HASH>..<HASH> 100644
--- a/tests/Monolog/Handler/DynamoDbHandlerTest.php
+++ b/tests/Monolog/Handler/DynamoDbHandlerTest.php
@@ -35,11 +35,14 @@ class DynamoDbHandlerTest extends TestCase
$abse... | Fix of incorrect DynamoDB mock creation
addMethods([]) breaks the methods configured at onlyMethods() call | Seldaek_monolog | train |
905e3d530b5a0e2d3a9e7d184d8858ef21dab7c7 | diff --git a/test/configCases/plugins/banner-plugin-hashing/index.js b/test/configCases/plugins/banner-plugin-hashing/index.js
index <HASH>..<HASH> 100644
--- a/test/configCases/plugins/banner-plugin-hashing/index.js
+++ b/test/configCases/plugins/banner-plugin-hashing/index.js
@@ -15,21 +15,22 @@ var source = require(... | stricter testing of hash and chunkhash interpolation | webpack_webpack | train |
0d28f4005fdba8accd4862c2aa05b34ec5bf6d3a | diff --git a/legacy/migrate_09_to_010.rb b/legacy/migrate_09_to_010.rb
index <HASH>..<HASH> 100644
--- a/legacy/migrate_09_to_010.rb
+++ b/legacy/migrate_09_to_010.rb
@@ -20,12 +20,29 @@ Kernel.system "rake db:migrate:up VERSION=20100725000003 RAILS_ENV=#{Rails.env}"
# Build up credentials.
reload!
User.all.each do ... | Ammended <I> migration script to handle Facebook tokens. | pwnall_authpwn_rails | train |
ba123a6082d62fd525acd01cd2ee3d70d43caa7e | diff --git a/lib/core/connection/connect.js b/lib/core/connection/connect.js
index <HASH>..<HASH> 100644
--- a/lib/core/connection/connect.js
+++ b/lib/core/connection/connect.js
@@ -15,6 +15,7 @@ const MIN_SUPPORTED_SERVER_VERSION = WIRE_CONSTANTS.MIN_SUPPORTED_SERVER_VERSION
let AUTH_PROVIDERS;
function connect(o... | refactor: support a factory type in `connect`
This allows for easier testing, as well as potentially supporting
multiple `Connection` types during our CMAP work | mongodb_node-mongodb-native | train |
62961231e86562b30499a35b477840490702aca0 | diff --git a/modules/webservices/debugger/action.php b/modules/webservices/debugger/action.php
index <HASH>..<HASH> 100644
--- a/modules/webservices/debugger/action.php
+++ b/modules/webservices/debugger/action.php
@@ -394,7 +394,7 @@ if ( $action )
{
$max = count( $v );
echo "<ta... | - show nr. of methods found in listmethods results;
- avoid broken page refresh when going from method list to method description
- add a rest sample url
- make sample urls clickable | gggeek_ggwebservices | train |
2f781863f5cf19358606989cb198d9223f7e763a | diff --git a/core/src/main/java/hudson/Util.java b/core/src/main/java/hudson/Util.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/hudson/Util.java
+++ b/core/src/main/java/hudson/Util.java
@@ -1095,6 +1095,21 @@ public class Util {
}
/**
+ * Resolves a symlink to the {@link File} that points t... | Massaging the fix.
- ID_FORMATTER is time zone sensitive, so comparing against # of
milliseconds since the epoch won't be portable.
- resolveSymlink can return a relative path. | jenkinsci_jenkins | train |
803d226b7990806f82623ea8c1661ea2f3253ce1 | diff --git a/src/satosa/micro_services/attribute_authorization.py b/src/satosa/micro_services/attribute_authorization.py
index <HASH>..<HASH> 100644
--- a/src/satosa/micro_services/attribute_authorization.py
+++ b/src/satosa/micro_services/attribute_authorization.py
@@ -16,18 +16,14 @@ class AttributeAuthorization(Resp... | use any/all to clarify, allow lists of regexps and add more test | IdentityPython_SATOSA | train |
37f21114fc6603d659d11ce82a28de7b55f9471a | diff --git a/tests/test_git_changelog.py b/tests/test_git_changelog.py
index <HASH>..<HASH> 100644
--- a/tests/test_git_changelog.py
+++ b/tests/test_git_changelog.py
@@ -72,10 +72,10 @@ class TestWithRepository(TempDirTestCase):
self.repo.index.commit('commit #{0}'.format(n))
nodes = self.changel... | Convert multi-commit test to use BeautifulSoup. | OddBloke_sphinx-git | train |
406dca11ddb37ad7a0652a8120fec060346cd667 | diff --git a/voluptuous/tests/tests.py b/voluptuous/tests/tests.py
index <HASH>..<HASH> 100644
--- a/voluptuous/tests/tests.py
+++ b/voluptuous/tests/tests.py
@@ -5,11 +5,22 @@ from voluptuous import (
Schema, Required, Extra, Invalid, In, Remove, Literal,
Url, MultipleInvalid, LiteralInvalid, NotIn, Match, E... | Fix Exact Sequence to Match Lengths | alecthomas_voluptuous | train |
7c2e37266d3771326cae3b6fc659be2970877268 | diff --git a/distributed-v2/src/main/java/com/orientechnologies/orient/distributed/impl/ODiscoveryListener.java b/distributed-v2/src/main/java/com/orientechnologies/orient/distributed/impl/ODiscoveryListener.java
index <HASH>..<HASH> 100644
--- a/distributed-v2/src/main/java/com/orientechnologies/orient/distributed/imp... | Pass distributed connection user/pwd in discovery ping | orientechnologies_orientdb | train |
e47d96bf646f549ac050c85731cb52b54eac72e4 | diff --git a/src/main/java/net/kuujo/copycat/impl/DefaultStateMachineExecutor.java b/src/main/java/net/kuujo/copycat/impl/DefaultStateMachineExecutor.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/kuujo/copycat/impl/DefaultStateMachineExecutor.java
+++ b/src/main/java/net/kuujo/copycat/impl/DefaultStateMachin... | Automatically deserialize List and Map types to command arguments. | atomix_atomix | train |
f0568eea72da8bff024050e5910552fb9148a0a8 | diff --git a/internal/exec/stages/disks/disks.go b/internal/exec/stages/disks/disks.go
index <HASH>..<HASH> 100644
--- a/internal/exec/stages/disks/disks.go
+++ b/internal/exec/stages/disks/disks.go
@@ -253,6 +253,34 @@ func (s stage) createFilesystems(config types.Config) error {
}
}
+ // udevd registers an IN_... | stages/disks: Wait for uevents triggered by mkfs to settle
The disks stage could complete with udev events still in flight. When
running mkfs.btrfs to overwrite an existing filesystem, this could cause
by-label symlinks to be temporarily deleted while other systemd units
were expecting them to exist. | coreos_ignition | train |
e52cb59e8b199fa14865312155939e1fdf4579fd | diff --git a/views/structure/header/blank.php b/views/structure/header/blank.php
index <HASH>..<HASH> 100644
--- a/views/structure/header/blank.php
+++ b/views/structure/header/blank.php
@@ -11,6 +11,19 @@ if (!empty($page->seo->title)) {
$aPageTitle[] = APP_NAME;
+if (!empty($page->html_lang)) {
+ $sHtmlLang =... | Added ability to specify page language and add classes to the <html> tag | nails_common | train |
ac020bc7ae265ac6f7268c8ae3a054aaf1d84626 | diff --git a/core/src/main/java/org/testcontainers/containers/GenericContainer.java b/core/src/main/java/org/testcontainers/containers/GenericContainer.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/testcontainers/containers/GenericContainer.java
+++ b/core/src/main/java/org/testcontainers/containers/Gen... | Stop logging about starting when reusing (#<I>) | testcontainers_testcontainers-java | train |
04d44be1f19fd149883f2ba1b15c134c19452e29 | diff --git a/lib/wool.rb b/lib/wool.rb
index <HASH>..<HASH> 100644
--- a/lib/wool.rb
+++ b/lib/wool.rb
@@ -41,4 +41,7 @@ require 'wool/runner'
require 'wool/rake/task'
# Program logic
require 'wool/warning'
-require 'wool/scanner'
\ No newline at end of file
+require 'wool/scanner'
+
+Wool::SexpAnalysis.analyze_inpu... | Got the standard library to load and not conflict with any other features! | michaeledgar_laser | train |
3a044a99d86fdf5b8aab9265834a878cead6d84c | diff --git a/grimoire_elk/enriched/gitlab.py b/grimoire_elk/enriched/gitlab.py
index <HASH>..<HASH> 100644
--- a/grimoire_elk/enriched/gitlab.py
+++ b/grimoire_elk/enriched/gitlab.py
@@ -264,6 +264,9 @@ class GitLabEnrich(Enrich):
# The real data
merge_request = item['data']
+ # merge request... | [enrich-gitlab] Add doc for `time_to_close_days` and `time_to_merge_days`
This code adds information about why/how the variables
`time_to_close_days` and `time_to_merge_days` are calculated. | chaoss_grimoirelab-elk | train |
518feadc3e62a9c9cc5788ea5eb0224cf338508a | diff --git a/ReactNativeClient/lib/MdToHtml.js b/ReactNativeClient/lib/MdToHtml.js
index <HASH>..<HASH> 100644
--- a/ReactNativeClient/lib/MdToHtml.js
+++ b/ReactNativeClient/lib/MdToHtml.js
@@ -326,7 +326,7 @@ class MdToHtml {
-webkit-mask: url("data:image/svg+xml;utf8,<svg viewBox='0 0 1792 1792' xmlns='http://w... | All: Better checkbox alignment and added padding on notebook title | laurent22_joplin | train |
1993ce72282ec188de8ffd9021e6e96b22679cde | diff --git a/integrationtests/gquic/drop_test.go b/integrationtests/gquic/drop_test.go
index <HASH>..<HASH> 100644
--- a/integrationtests/gquic/drop_test.go
+++ b/integrationtests/gquic/drop_test.go
@@ -3,6 +3,7 @@ package gquic_test
import (
"bytes"
"fmt"
+ mrand "math/rand"
"os/exec"
"strconv"
@@ -56,6 +57... | add drop tests with stochastically dropped packets | lucas-clemente_quic-go | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.