hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
738c871e4b813acfe7eceeaba0e054f51a191b4d | diff --git a/lib/core/GameDB.js b/lib/core/GameDB.js
index <HASH>..<HASH> 100644
--- a/lib/core/GameDB.js
+++ b/lib/core/GameDB.js
@@ -57,20 +57,20 @@
NDDB.call(this, options, db);
- this.c('stage', GameBit.compareState);
+ this.comparator('stage', GameBit.compareState);
if (!this.player) {
- this.h('... | testing a different playerlist constructor | nodeGame_nodegame-client | train |
4bb4fdc8db411f5f5cc9d177d86572ce66107af7 | diff --git a/spec/renderToString/renderToString.spec.js b/spec/renderToString/renderToString.spec.js
index <HASH>..<HASH> 100644
--- a/spec/renderToString/renderToString.spec.js
+++ b/spec/renderToString/renderToString.spec.js
@@ -40,13 +40,13 @@ describe('renderToString', () => {
});
it('should be ... | Fix rendering to string of "draggable" attribute | dfilatov_vidom | train |
440e8cd76743a8fe150bbb3fa9ea2e8cfd73bf91 | diff --git a/rome/src/main/java/com/rometools/rome/feed/module/DCSubject.java b/rome/src/main/java/com/rometools/rome/feed/module/DCSubject.java
index <HASH>..<HASH> 100644
--- a/rome/src/main/java/com/rometools/rome/feed/module/DCSubject.java
+++ b/rome/src/main/java/com/rometools/rome/feed/module/DCSubject.java
@@ -7... | Supporting SyndCategory label (#<I>)
* Attempt on supporting synd categories with labels
* Now supporting SyndCategory with labels
* Moved setLabel from DCSubject/DCSubjectImpl to SyndCategoryImpl
* add local attribute label since no longer part of DCSubject | rometools_rome | train |
1cb5cef6d20f8801b0195f8fe6d233c3c16f50a9 | diff --git a/framework/src/play/src/main/java/play/mvc/Http.java b/framework/src/play/src/main/java/play/mvc/Http.java
index <HASH>..<HASH> 100644
--- a/framework/src/play/src/main/java/play/mvc/Http.java
+++ b/framework/src/play/src/main/java/play/mvc/Http.java
@@ -1473,11 +1473,14 @@ public class Http {
... | Make it easier to get a cookie from a response | playframework_playframework | train |
7ba0d31f77308ff32f4db3359cc05ef2d4ca858b | diff --git a/ui/Component.js b/ui/Component.js
index <HASH>..<HASH> 100644
--- a/ui/Component.js
+++ b/ui/Component.js
@@ -358,6 +358,10 @@ Component.Prototype = function ComponentPrototype() {
```
*/
this.actions = function(actions) {
+ // Deprecated because I don't like how it reads
+ // this.actions... | Introduced Component#handleAction() as a replacement for Component#actions(). | substance_substance | train |
7b326efea39a394221ad2a3f03c53b59c7caa47b | diff --git a/src/Graviton/RestBundle/Model/DocumentModel.php b/src/Graviton/RestBundle/Model/DocumentModel.php
index <HASH>..<HASH> 100644
--- a/src/Graviton/RestBundle/Model/DocumentModel.php
+++ b/src/Graviton/RestBundle/Model/DocumentModel.php
@@ -382,11 +382,15 @@ class DocumentModel extends SchemaModel implements ... | fix wrong access if repository is not defined | libgraviton_graviton | train |
99776e9727c15dac6d32b17c34ca76d3431bea10 | diff --git a/js/huobipro.js b/js/huobipro.js
index <HASH>..<HASH> 100644
--- a/js/huobipro.js
+++ b/js/huobipro.js
@@ -117,6 +117,7 @@ module.exports = class huobipro extends Exchange {
'order-update-error': ExchangeNotAvailable, // undocumented error
},
'options': {
+ ... | huobipro createMarketBuyOrder amount means cost (amount * price) fix #<I> | ccxt_ccxt | train |
b5a6f31c5ae359e9e2c0d6a29c5e3ebb7d6defde | diff --git a/code/libraries/koowa/components/com_koowa/object/bootstrapper/application.php b/code/libraries/koowa/components/com_koowa/object/bootstrapper/application.php
index <HASH>..<HASH> 100644
--- a/code/libraries/koowa/components/com_koowa/object/bootstrapper/application.php
+++ b/code/libraries/koowa/components... | re #<I> : We need to switch the indentifier domain based on the active application to make sure bootstrappers are loaded correctly. | timble_kodekit | train |
b0033f7dadc207e199e5cf36a10ef25ce215d5f6 | diff --git a/vyper/optimizer.py b/vyper/optimizer.py
index <HASH>..<HASH> 100644
--- a/vyper/optimizer.py
+++ b/vyper/optimizer.py
@@ -60,6 +60,7 @@ def apply_general_optimizations(node: LLLnode) -> LLLnode:
if node.value == "seq":
_merge_memzero(argz)
+ _merge_calldataload(argz)
if node.v... | feat: optimize sequential calldataload operations | ethereum_vyper | train |
ce630c42844b921d75919f6dfe4d75e8585b0f34 | diff --git a/src/org/opencms/flex/CmsFlexCache.java b/src/org/opencms/flex/CmsFlexCache.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/flex/CmsFlexCache.java
+++ b/src/org/opencms/flex/CmsFlexCache.java
@@ -735,15 +735,14 @@ public class CmsFlexCache extends Object implements I_CmsEventListener {
}
... | Changed CmsFlexCacheKey to no longer store the current variation in a member, using additional parameters to pass the variation around instead.
This prevents some multithreading race conditions where the wrong cache entry for a variation is stored. | alkacon_opencms-core | train |
2bf35975e144c66ded81de64c0903d8d5816fd4c | diff --git a/invocations/packaging.py b/invocations/packaging.py
index <HASH>..<HASH> 100644
--- a/invocations/packaging.py
+++ b/invocations/packaging.py
@@ -211,6 +211,7 @@ def publish(c, sdist=True, wheel=True, index=None):
parts.append("sdist")
if wheel:
parts.append("bdist_wheel")... | Make use of tempdir in upload() | pyinvoke_invocations | train |
747594b14d337c8ec875ea27c66ab53f741481e8 | diff --git a/lib/unparser/emitter/literal/primitive.rb b/lib/unparser/emitter/literal/primitive.rb
index <HASH>..<HASH> 100644
--- a/lib/unparser/emitter/literal/primitive.rb
+++ b/lib/unparser/emitter/literal/primitive.rb
@@ -12,7 +12,7 @@ module Unparser
# Emitter for primitives based on Object#inspect
... | Support reproduction of __FILE__ and __LINE__
Only works if source location is present.
Can be simplified and speed up once
<URL> | mbj_unparser | train |
6905bd8db7aba4255b67ffd36babcd32c7f75bbd | diff --git a/tests/v6/test_custom_generator.py b/tests/v6/test_custom_generator.py
index <HASH>..<HASH> 100644
--- a/tests/v6/test_custom_generator.py
+++ b/tests/v6/test_custom_generator.py
@@ -227,3 +227,15 @@ def test_clones_without_explicit_parents_are_treated_correctly():
]
assert items_expected == ite... | Update instance dict with newly spawned field generators | maxalbert_tohu | train |
23d02780b849e90002c60568f148f5314a50da3d | diff --git a/fints/client.py b/fints/client.py
index <HASH>..<HASH> 100644
--- a/fints/client.py
+++ b/fints/client.py
@@ -10,12 +10,12 @@ from .connection import FinTSHTTPSConnection
from .dialog import FinTSDialogOLD, FinTSDialog
from .formals import TwoStepParametersCommon
from .message import FinTSMessageOLD
-fr... | Make TwoStep (without TAN) work again | raphaelm_python-fints | train |
d6d0a2da2bc81530e37ed546fe46ec262a92f15b | diff --git a/kubespawner/spawner.py b/kubespawner/spawner.py
index <HASH>..<HASH> 100644
--- a/kubespawner/spawner.py
+++ b/kubespawner/spawner.py
@@ -1094,8 +1094,14 @@ class KubeSpawner(Spawner):
"""
Check if the pod is still running.
- Returns None if it is, and 1 if it isn't. These are th... | Document poll()'s interface more thoroughly. | jupyterhub_kubespawner | train |
81a3d63330a90b4c8b26754f4def3a2b0e3894e7 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -9,7 +9,7 @@ from src.bandersnatch import __version__
assert version_info >= (3, 6, 1), "bandersnatch requires Python >=3.6.1"
-INSTALL_DEPS = ("aiohttp", "packaging", "requests", "setuptools", "xmlrpc2")
+INSTALL_DEPS = ... | Add filelock to the setup.py dependencies (#<I>) | pypa_bandersnatch | train |
e4569ad71a93f065f6224d9ce736cadf4a272587 | diff --git a/app/models/configurable.rb b/app/models/configurable.rb
index <HASH>..<HASH> 100644
--- a/app/models/configurable.rb
+++ b/app/models/configurable.rb
@@ -61,7 +61,7 @@ class Configurable < ActiveRecord::Base
if value.is_a? Array
value
else
- value.split("\n").collect { |v| v.s... | … and support non-nested lists for deserialization, too | paulca_configurable_engine | train |
ce6921cce19661161bca3f67f51013f801411eb2 | diff --git a/src/foremast/elb/format_listeners.py b/src/foremast/elb/format_listeners.py
index <HASH>..<HASH> 100644
--- a/src/foremast/elb/format_listeners.py
+++ b/src/foremast/elb/format_listeners.py
@@ -134,6 +134,7 @@ def format_cert_name(env='', account='', region='', certificate=None):
Args:
env (s... | Fixed docstrings and unneeded imports | foremast_foremast | train |
df97f055780fac3619fe58f683329e71bb08add1 | diff --git a/tests/test_ogcapi_records_pycsw.py b/tests/test_ogcapi_records_pycsw.py
index <HASH>..<HASH> 100644
--- a/tests/test_ogcapi_records_pycsw.py
+++ b/tests/test_ogcapi_records_pycsw.py
@@ -62,7 +62,7 @@ def test_ogcapi_records_pycsw():
assert pycsw_cite_demo_query['numberReturned'] == 2
assert len(p... | update to CQL2 JSON for OARec tests | geopython_OWSLib | train |
ae1dc761d33c80177094f3ed73fff2caf3525369 | diff --git a/src/Client/Html/Catalog/Filter/Supplier/Standard.php b/src/Client/Html/Catalog/Filter/Supplier/Standard.php
index <HASH>..<HASH> 100644
--- a/src/Client/Html/Catalog/Filter/Supplier/Standard.php
+++ b/src/Client/Html/Catalog/Filter/Supplier/Standard.php
@@ -51,7 +51,7 @@ class Standard
$cntl = \Aimeos\C... | Sort suppliers by position and name in catalog filter | aimeos_ai-client-html | train |
1c079966ee526120c2f0d46fa8188ac8694c1c4c | diff --git a/core/src/main/java/com/ibm/watson/developer_cloud/service/WatsonService.java b/core/src/main/java/com/ibm/watson/developer_cloud/service/WatsonService.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/ibm/watson/developer_cloud/service/WatsonService.java
+++ b/core/src/main/java/com/ibm/watson/... | Adds a configureHttpClient method to override the http client | watson-developer-cloud_java-sdk | train |
0cffadb7e57d6498d0095682fa0f4b02b29d22f1 | diff --git a/client-vendor/after-body/jquery.event.scrollTopBottom/jquery.event.scrollTopBottom.js b/client-vendor/after-body/jquery.event.scrollTopBottom/jquery.event.scrollTopBottom.js
index <HASH>..<HASH> 100644
--- a/client-vendor/after-body/jquery.event.scrollTopBottom/jquery.event.scrollTopBottom.js
+++ b/client-... | Don't return bool from within scroll-handler | cargomedia_cm | train |
7c392ceabf1d7570d9391ed72152f47114508341 | diff --git a/packages/perspective-viewer-hypergrid/src/js/hypergrid.js b/packages/perspective-viewer-hypergrid/src/js/hypergrid.js
index <HASH>..<HASH> 100644
--- a/packages/perspective-viewer-hypergrid/src/js/hypergrid.js
+++ b/packages/perspective-viewer-hypergrid/src/js/hypergrid.js
@@ -738,47 +738,47 @@ function ps... | Fused loop iterations in hypergrid plugin. | finos_perspective | train |
2d8e6cee2bd7e27555ea947d915abe28b1d3ae82 | diff --git a/ext_emconf.php b/ext_emconf.php
index <HASH>..<HASH> 100644
--- a/ext_emconf.php
+++ b/ext_emconf.php
@@ -17,5 +17,5 @@ $EM_CONF[$_EXTKEY] = [
'author' => 'Tim Schreiner',
'author_email' => 'schreiner.tim@gmail.com',
'author_company' => '',
- 'version' => '2.1.1',
+ 'version' => '2.2.1... | Raise version constraint to <I> | codemonkey1988_responsive-images | train |
bdc83fd758fd82d1ea07656132a28887757500fd | diff --git a/salt/modules/timezone.py b/salt/modules/timezone.py
index <HASH>..<HASH> 100644
--- a/salt/modules/timezone.py
+++ b/salt/modules/timezone.py
@@ -160,7 +160,7 @@ def get_hwclock():
elif 'Debian' in __grains__['os_family']:
cmd = 'grep "UTC=" /etc/default/rcS | grep -vE "^#"'
out = __... | /etc/default/rcS file does not contain UTC boolean value on Debian Wheezy, causes out-of-bounds exception when attempting to lookup given value | saltstack_salt | train |
1311d089a1866ac26d4368bd93577b3bca6e3752 | diff --git a/src/Server/Manager.php b/src/Server/Manager.php
index <HASH>..<HASH> 100644
--- a/src/Server/Manager.php
+++ b/src/Server/Manager.php
@@ -202,13 +202,18 @@ class Manager
/**
* "onWorkerStart" listener.
*/
- public function onWorkerStart()
+ public function onWorkerStart(HttpServer $s... | wrap more code with try in onRequest function | swooletw_laravel-swoole | train |
fe8bf68db3d8210aac6581c3db3e1f0b761c2f1b | diff --git a/scvelo/tools/dynamical_model.py b/scvelo/tools/dynamical_model.py
index <HASH>..<HASH> 100644
--- a/scvelo/tools/dynamical_model.py
+++ b/scvelo/tools/dynamical_model.py
@@ -984,7 +984,7 @@ def differential_kinetic_test(
if "fit_diff_kinetics" in adata.var.keys():
diff_kinetics = np.array(ada... | dtype fix (diff_kinetics) | theislab_scvelo | train |
8e4130c363e4b9cd136dd0c895bae9d94d85e84e | diff --git a/docs/webpack.dev.config.js b/docs/webpack.dev.config.js
index <HASH>..<HASH> 100644
--- a/docs/webpack.dev.config.js
+++ b/docs/webpack.dev.config.js
@@ -11,6 +11,7 @@ module.exports = Object.assign({}, webpackBaseConfig, {
context: path.resolve(__dirname),
entry: {
main: [
+ 'babel-polyfil... | add babel-polyfill to bundles | sghall_resonance | train |
a056baf5b488e2d095d180271d60391ac53bbbbc | diff --git a/promise_server.js b/promise_server.js
index <HASH>..<HASH> 100644
--- a/promise_server.js
+++ b/promise_server.js
@@ -41,7 +41,7 @@ function await(promise) {
es6PromiseThen.call(promise, function (result) {
fiber.run(result);
}, function (error) {
- fiber.throwInto(err);
+ fiber.throwInto(... | Fix a bug that prevented Promise.await from throwing exceptions. | meteor_promise | train |
4526d2127e2cf6ca193447e586c77de55a9c0001 | diff --git a/src/Codeception/Util/Connector/Yii2.php b/src/Codeception/Util/Connector/Yii2.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Util/Connector/Yii2.php
+++ b/src/Codeception/Util/Connector/Yii2.php
@@ -71,7 +71,7 @@ class Yii2 extends Client
$sender->getHeaders()->removeAll();
$this->statusCode... | Fixed Yii2 statusCode
We changed the default value to <I> and removed the possibility to set it to null. | Codeception_Codeception | train |
751a5f1349c6bf415f6eaae4631118f163e45b77 | diff --git a/lib/definitions/branches.js b/lib/definitions/branches.js
index <HASH>..<HASH> 100644
--- a/lib/definitions/branches.js
+++ b/lib/definitions/branches.js
@@ -1,15 +1,15 @@
-const {isUndefined, uniqBy} = require('lodash');
+const {isNil, uniqBy} = require('lodash');
const semver = require('semver');
const... | fix: handle branch properties set to `false` | semantic-release_semantic-release | train |
90b2179a35288df5e423b12b00b5458a508c21f7 | diff --git a/lib/koa-data-request.js b/lib/koa-data-request.js
index <HASH>..<HASH> 100644
--- a/lib/koa-data-request.js
+++ b/lib/koa-data-request.js
@@ -38,9 +38,8 @@ class KoaDataRequestInterceptor extends Interceptor {
receive(ctx, args) {
this.ec.properties = args;
- return this.connected.receive({
- dat... | feat(koa-data-request) no more { data: <<content>> } for outgoing requests
BREAKING CHANGE: remove surrounding object with data: key as default request shell | Kronos-Integration_kronos-interceptor-http-request | train |
2e1f199421e00cc30963f3fb022c5c173b18d509 | diff --git a/sos/plugins/openshift.py b/sos/plugins/openshift.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/openshift.py
+++ b/sos/plugins/openshift.py
@@ -37,15 +37,18 @@ class Openshift(Plugin, RedHatPlugin):
def setup(self):
self.add_copy_specs([
- "/etc/openshift-enterprise-*",
+ ... | [openshift] Don't collect all of /etc/openshift
Reduce glob based collection and aim at more specific paths. | sosreport_sos | train |
37e2a4053dd173592bfa3ee9f57a4021aaf074c7 | diff --git a/src/Vetruvet/LaravelSelfUpdater/UpdateController.php b/src/Vetruvet/LaravelSelfUpdater/UpdateController.php
index <HASH>..<HASH> 100644
--- a/src/Vetruvet/LaravelSelfUpdater/UpdateController.php
+++ b/src/Vetruvet/LaravelSelfUpdater/UpdateController.php
@@ -53,17 +53,18 @@ class UpdateController extends Co... | Add migration error message, change some messaging | vetruvet_laravel-self-updater | train |
e995301dfce65000f692508d8151df7eddfb1c0c | diff --git a/angr/analyses/decompiler/structurer.py b/angr/analyses/decompiler/structurer.py
index <HASH>..<HASH> 100644
--- a/angr/analyses/decompiler/structurer.py
+++ b/angr/analyses/decompiler/structurer.py
@@ -631,12 +631,17 @@ class Structurer(Analysis):
else:
break
- # make... | Structurer: Merge a conditional break node with the outside conditional node. | angr_angr | train |
cc7da65b4a31d7a33055afe0bd6dc9855c3d6493 | diff --git a/pubsub/google/cloud/pubsub_v1/subscriber/_helper_threads.py b/pubsub/google/cloud/pubsub_v1/subscriber/_helper_threads.py
index <HASH>..<HASH> 100644
--- a/pubsub/google/cloud/pubsub_v1/subscriber/_helper_threads.py
+++ b/pubsub/google/cloud/pubsub_v1/subscriber/_helper_threads.py
@@ -47,15 +47,13 @@ class... | Removing unused "extra" arguments in Pub/Sub helper thread start. (#<I>) | googleapis_google-cloud-python | train |
94e47db85863e95cebf1f2cec3346eb529dc9aee | diff --git a/welcome/management/commands/welcome.py b/welcome/management/commands/welcome.py
index <HASH>..<HASH> 100644
--- a/welcome/management/commands/welcome.py
+++ b/welcome/management/commands/welcome.py
@@ -1,5 +1,5 @@
#from django.core.mail import send_mail
-from email_html import send_mail
+from email_html.... | email_html - to be deprecated soon.. | Miserlou_django-welcome | train |
5adb5d30c86ade20cf1028eb68587b25ee86766a | diff --git a/Kwf_js/Form/File.js b/Kwf_js/Form/File.js
index <HASH>..<HASH> 100644
--- a/Kwf_js/Form/File.js
+++ b/Kwf_js/Form/File.js
@@ -80,10 +80,6 @@ Kwf.Form.File = Ext.extend(Ext.form.Field, {
if (this.infoPosition == 'west') this.createInfoContainer();
this.uploadButtonContainer = this.el.cre... | Fix broken html5-upload during sfwupload fix | koala-framework_koala-framework | train |
6acde9fb1f1e57a5af540d49dfab4172d8197761 | diff --git a/test/common/build/controllers.go b/test/common/build/controllers.go
index <HASH>..<HASH> 100644
--- a/test/common/build/controllers.go
+++ b/test/common/build/controllers.go
@@ -347,7 +347,10 @@ func RunBuildControllerPodSyncTest(t testingT, buildClient buildtypedclient.Buil
func waitForWatch(t testingT... | tests: add debug information for watch failure
- set deterministic timeout for `watch`
- fail on closed `watch` channel | openshift_origin | train |
1702e59c92a9142b4776679bb400e707f4461358 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -3,7 +3,7 @@ from setuptools import find_packages, setup
setup(
name='hpfeeds3',
- version='0.9.5.dev0',
+ version='0.9.5',
description='Python implementation of the honeypot feeds broker',
author='John... | Preparing release <I> | hpfeeds_hpfeeds | train |
4655950ac9c26b4f51b40cf12f26ad215ab00f82 | diff --git a/agent.go b/agent.go
index <HASH>..<HASH> 100644
--- a/agent.go
+++ b/agent.go
@@ -15,6 +15,7 @@ import (
"os/signal"
"runtime"
"runtime/debug"
+ "strings"
"sync"
"syscall"
"time"
@@ -323,6 +324,34 @@ func (s *sandbox) setSubreaper() error {
return nil
}
+func getAnnounceFields() (logrus.Fi... | agent: Add announce function
Add a function that announces agent capabilities.
Currently, it displays the agent version. | kata-containers_agent | train |
eb8312c06df981e1ce0a18cf97d3529c1c635502 | diff --git a/urwid_datatable/datatable.py b/urwid_datatable/datatable.py
index <HASH>..<HASH> 100644
--- a/urwid_datatable/datatable.py
+++ b/urwid_datatable/datatable.py
@@ -628,8 +628,10 @@ class DataTableFooterRow(DataTableRow):
# col_data = [ r.data.get(col.name, None)
# ... | Only format contents if footer function didn't make a widget, don't try to set focus position beyond end when appending data. | tonycpsu_panwid | train |
229c96cd568b7661d4d4f91843eafea3ec42b791 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -260,6 +260,7 @@ export async function fetchFiles ({query}) {
'kMDItemContentTypeTree != "com.apple.application-bundle" AND ' +
'kMDItemContentTypeTree != "com.apple.safari.bookmark" AND ' +
... | Remove address book groups from the file search | laconalabs_lacona-api | train |
06d01388132b038089bf73891ea4ec87bb3b3aa7 | diff --git a/django_summernote/apps.py b/django_summernote/apps.py
index <HASH>..<HASH> 100644
--- a/django_summernote/apps.py
+++ b/django_summernote/apps.py
@@ -97,7 +97,7 @@ class DjangoSummernoteConfig(AppConfig):
def _copy_old_configs(self, user, default):
"""
NOTE: Will be deprecated from 0... | docs: Fix simple typo, backword -> backward (#<I>)
There is a small typo in django_summernote/apps.py.
Should read `backward` rather than `backword`. | summernote_django-summernote | train |
4e3527a822b182cb5ae67cfa8c5f5d926f019dfb | diff --git a/tests/test_crlibm.py b/tests/test_crlibm.py
index <HASH>..<HASH> 100644
--- a/tests/test_crlibm.py
+++ b/tests/test_crlibm.py
@@ -5,9 +5,9 @@ test_crlibm
Tests for the `crlibm` module.
"""
-
import unittest
+
class TestData(object):
"""Class to load test datasets from the CRlibm library."""
... | Follow flake8 in the tests. | taschini_pycrlibm | train |
762a69de3f714ba8a2e2975b7fc34b7f344dd5c2 | diff --git a/lib/mshoplib/src/MShop/Common/Manager/Abstract.php b/lib/mshoplib/src/MShop/Common/Manager/Abstract.php
index <HASH>..<HASH> 100644
--- a/lib/mshoplib/src/MShop/Common/Manager/Abstract.php
+++ b/lib/mshoplib/src/MShop/Common/Manager/Abstract.php
@@ -887,6 +887,8 @@ abstract class MShop_Common_Manager_Abstr... | Prevents sending delete statement if no records should be deleted | Arcavias_arcavias-core | train |
f97702e8df6b67db6f207bf942677db35cddf05f | diff --git a/inc/interactive/class-content.php b/inc/interactive/class-content.php
index <HASH>..<HASH> 100644
--- a/inc/interactive/class-content.php
+++ b/inc/interactive/class-content.php
@@ -22,6 +22,7 @@ class Content {
*/
protected $whitelistedDomains = [
'phet.colorado.edu',
+ 'cdn.knightlab.com',
'w... | Add support for Knight Lab timelines (#<I>) | pressbooks_pressbooks | train |
20b72966c0104ecbe288d200a8e4aa67a28259ad | diff --git a/waliki/models.py b/waliki/models.py
index <HASH>..<HASH> 100644
--- a/waliki/models.py
+++ b/waliki/models.py
@@ -3,6 +3,7 @@ import codecs
import os.path
from django.db import models
from django.db.models import Q
+from django.db.utils import IntegrityError
from django.conf import settings
from djang... | don't crash on severe docutils error | mgaitan_waliki | train |
8b09e21a27f9c74b4872ec7a6ca0c7cc95774805 | diff --git a/views/js/picManager/picManager.js b/views/js/picManager/picManager.js
index <HASH>..<HASH> 100644
--- a/views/js/picManager/picManager.js
+++ b/views/js/picManager/picManager.js
@@ -87,7 +87,7 @@ define([
function initStudentToolManager($container, $itemPanel, item) {
var $placeholder;
... | Replace callbacks to arrow functions | oat-sa_extension-tao-itemqti-pic | train |
97a5a55664848431c4ace4558082f0b37e4d9dce | diff --git a/src/widget/geo/geopicker.js b/src/widget/geo/geopicker.js
index <HASH>..<HASH> 100644
--- a/src/widget/geo/geopicker.js
+++ b/src/widget/geo/geopicker.js
@@ -468,7 +468,8 @@ define( [ 'jquery', 'enketo-js/Widget', 'text!enketo-config', 'leaflet' ],
Geopicker.prototype._enableDetection = function()... | never use cached location for geopicker 'current location' detection, closes #<I> | enketo_enketo-core | train |
caef6a889e4623ec0d91d250edeb9ef6f5e7e0fc | diff --git a/ldapcherry/backend/backendAD.py b/ldapcherry/backend/backendAD.py
index <HASH>..<HASH> 100644
--- a/ldapcherry/backend/backendAD.py
+++ b/ldapcherry/backend/backendAD.py
@@ -180,14 +180,14 @@ class Backend(ldapcherry.backend.backendLdap.Backend):
ldap_client = self._bind()
- dn = str('C... | Fix encoding issues in AD backend | kakwa_ldapcherry | train |
0163df5a62035cf48d416a40086808635f747576 | diff --git a/openquake/job/config.py b/openquake/job/config.py
index <HASH>..<HASH> 100644
--- a/openquake/job/config.py
+++ b/openquake/job/config.py
@@ -384,6 +384,33 @@ class UHSValidator(object):
return (valid, errors)
+class BCRValidator(object):
+ """
+ Validator for both classical- and probabi... | job/config.py: bcr calc validator with test | gem_oq-engine | train |
3287191bc9b061e6b858107d95fab60c15ee3e36 | diff --git a/chef/lib/chef/provider/service/debian.rb b/chef/lib/chef/provider/service/debian.rb
index <HASH>..<HASH> 100644
--- a/chef/lib/chef/provider/service/debian.rb
+++ b/chef/lib/chef/provider/service/debian.rb
@@ -68,6 +68,9 @@ class Chef
end
def enable_service()
+ # clean up any l... | CHEF-<I>: remove links before actions and set kill action for service disable | chef_chef | train |
f325639c2c3606b11d55405da39680150237a14c | diff --git a/examples/timeline.js b/examples/timeline.js
index <HASH>..<HASH> 100755
--- a/examples/timeline.js
+++ b/examples/timeline.js
@@ -20,7 +20,8 @@ wayback.getTimeline(url, function(err, timeline) {
timeline.mementos.forEach(function(item) {
var time = new Date(item.time);
- //@see https://developer.mo... | examples/timeline.js: print just the date (without the time) | macbre_wayback-machine | train |
3b4d1aa694f63264a33e908616d5c9df575d55c7 | diff --git a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java b/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java
+++ b/hazelcast/src/main/java/com/... | If `processExpiredEntry` expires and removes record, `isExpiredAt` should not be called on that record since it may be native memory based record and it is disposed | hazelcast_hazelcast | train |
7c173d661129c695fb2a53bf4b6e17b9509c02dd | diff --git a/flake8_indexed_format.py b/flake8_indexed_format.py
index <HASH>..<HASH> 100755
--- a/flake8_indexed_format.py
+++ b/flake8_indexed_format.py
@@ -30,7 +30,7 @@ class Flake8Argparse(object):
class Wrapper(object):
def add_argument(self, *args, **kwargs):
# flake8 uses ... | Improve tests and don't require action
* The tests are now testing the `Flake8Argparse` class using both
`OptionParser` and `ArgumentParser`.
* Verify that all positions have been found by checking that the iterator is
empty afterwards.
* In theory the action for `add_argument` is optional so behave like it. | xZise_flake8-string-format | train |
5469a452ba644a32d5967cc48c0c83e7e155bc03 | diff --git a/msk/__init__.py b/msk/__init__.py
index <HASH>..<HASH> 100644
--- a/msk/__init__.py
+++ b/msk/__init__.py
@@ -19,4 +19,4 @@
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
-__version__ = '0.3.4' # Also update in ... | Increment version to <I> | MycroftAI_mycroft-skills-kit | train |
d7e72ef75f98a03a74ebeea2d8e105179e3d4dec | diff --git a/pkg_resources.py b/pkg_resources.py
index <HASH>..<HASH> 100644
--- a/pkg_resources.py
+++ b/pkg_resources.py
@@ -15,8 +15,8 @@ method.
import sys, os, zipimport, time, re, imp, new
from sets import ImmutableSet
-
-
+from os import utime, rename, unlink # capture these to bypass sandboxing
+from os ... | Modify resource extraction to bypass sandbox control so that egg
extraction during setup runs is not restricted.
--HG--
branch : setuptools
extra : convert_revision : svn%3A<I>fed2-<I>-<I>-9fe1-9d<I>cc<I>/sandbox/trunk/setuptools%<I> | pypa_setuptools | train |
87281901ffc8fe6f58af0d5246b64074c8d02c37 | diff --git a/azurerm/internal/services/apimanagement/api_management_openid_connect_provider_resource.go b/azurerm/internal/services/apimanagement/api_management_openid_connect_provider_resource.go
index <HASH>..<HASH> 100644
--- a/azurerm/internal/services/apimanagement/api_management_openid_connect_provider_resource.g... | `azurerm_api_management_openid_connect_provider` fix to pass all acctests (#<I>) | terraform-providers_terraform-provider-azurerm | train |
6d2e6574ebcd2f8b3e992bf596b7f07eb1649a55 | diff --git a/packages/site/src/install/index.js b/packages/site/src/install/index.js
index <HASH>..<HASH> 100644
--- a/packages/site/src/install/index.js
+++ b/packages/site/src/install/index.js
@@ -14,6 +14,8 @@ Use npm. Use webpack@2+. Follow these streamlined install instructions. Fun. Pr
## Step 0: Build
+Thi... | refactor(site): add ditty about build assumptions | pluralsight_design-system | train |
9d6fe5a6b65f397bafc5eb0a995e96717cdc9b53 | diff --git a/lib/rules/id-match.js b/lib/rules/id-match.js
index <HASH>..<HASH> 100644
--- a/lib/rules/id-match.js
+++ b/lib/rules/id-match.js
@@ -211,6 +211,17 @@ module.exports = {
}
}
+ // For https://github.com/eslint/eslint/issues/15123
+ ... | feat: false negative with `onlyDeclarations` + `properties` in id-match (#<I>)
* fix: false negative with `onlyDeclarations` in `id-match`
Fixes #<I>
* test: add more cases
* fix: false positive with computed properties
* refactor: code
* test: remove invalid test case | eslint_eslint | train |
2422ee0b88c9d6b8068dc41c46d9b25c638babdb | diff --git a/src/wormhole/test/test_scripts.py b/src/wormhole/test/test_scripts.py
index <HASH>..<HASH> 100644
--- a/src/wormhole/test/test_scripts.py
+++ b/src/wormhole/test/test_scripts.py
@@ -719,7 +719,7 @@ class NotWelcome(ServerBase, unittest.TestCase):
receive_d = cmd_receive.receive(self.cfg)
... | disable NotWelcome test until signal_error is done | warner_magic-wormhole | train |
db4e74da94a7361a25d3810787f5a632839e80a7 | diff --git a/gaspar/producers.py b/gaspar/producers.py
index <HASH>..<HASH> 100644
--- a/gaspar/producers.py
+++ b/gaspar/producers.py
@@ -165,7 +165,7 @@ class Forker(object):
# is already set up); we wait here for "a bit" before the workers are
# up and running, but if they really have to be connec... | lower the slow-start sleep phase back to <I> from <I> | jmoiron_gaspar | train |
c41825e3ef8dd280fc08ab5bbce8b7f2e946d153 | diff --git a/examples/bline.rb b/examples/bline.rb
index <HASH>..<HASH> 100644
--- a/examples/bline.rb
+++ b/examples/bline.rb
@@ -2,6 +2,8 @@ require 'canis/core/util/app'
require 'canis/core/util/rcommandwindow'
require 'fileutils'
require 'pathname'
+require 'canis/core/include/defaultfilerenderer'
+require './co... | added = to open file and filerenderer | mare-imbrium_canis | train |
d433ecd6cb6d9e545d157eedd0c143ea9f299c82 | diff --git a/pkg/volume/cinder/cinder.go b/pkg/volume/cinder/cinder.go
index <HASH>..<HASH> 100644
--- a/pkg/volume/cinder/cinder.go
+++ b/pkg/volume/cinder/cinder.go
@@ -276,13 +276,6 @@ type cinderVolume struct {
volume.MetricsNil
}
-func detachDiskLogError(cd *cinderVolume) {
- err := cd.manager.DetachDisk(&cin... | cleaning dettach logic since it's not needed | kubernetes_kubernetes | train |
1f2e0f476f540a3925ac492adb0baf5c344319f8 | diff --git a/bread/bread.py b/bread/bread.py
index <HASH>..<HASH> 100644
--- a/bread/bread.py
+++ b/bread/bread.py
@@ -159,24 +159,58 @@ class BreadConditional(object):
class BreadArray(object):
def __init__(self, num_items, parent, item_spec):
self._num_items = num_items
+ self.__offset = None
... | Switch arrays backed to accessors, but cache them.
It turns out that a single mutable accessor object complicates client
logic too much (you can't keep structs lying around, for fear they may
mutate as a result of future access).
Instead, generate accessor objects as needed and cache them. | alexras_bread | train |
d6e3855a66a104162ba1beba3f1da559a80130bd | diff --git a/lib/airbrake-ruby/filters/root_directory_filter.rb b/lib/airbrake-ruby/filters/root_directory_filter.rb
index <HASH>..<HASH> 100644
--- a/lib/airbrake-ruby/filters/root_directory_filter.rb
+++ b/lib/airbrake-ruby/filters/root_directory_filter.rb
@@ -5,7 +5,7 @@ module Airbrake
class RootDirectoryFilte... | filters/root_directory: replace [PROJECT_ROOT] with /PROJECT_ROOT | airbrake_airbrake-ruby | train |
2c5093a27f7c01ca6366985b162547774642be1f | diff --git a/test/client/unit/mobilizations/components/mobilization-basics-form.spec.js b/test/client/unit/mobilizations/components/mobilization-basics-form.spec.js
index <HASH>..<HASH> 100644
--- a/test/client/unit/mobilizations/components/mobilization-basics-form.spec.js
+++ b/test/client/unit/mobilizations/component... | Fix tests after fix standardjs warnings; Close #<I> | nossas_bonde-client | train |
b1392572ca7ddb13ce563e4addb3293055063a09 | diff --git a/src/engine/runtime.js b/src/engine/runtime.js
index <HASH>..<HASH> 100644
--- a/src/engine/runtime.js
+++ b/src/engine/runtime.js
@@ -1320,8 +1320,8 @@ class Runtime extends EventEmitter {
}
} else {
valueName = placeholder;
- shadowType = argTy... | Update tests and fix bug causing type error. | LLK_scratch-vm | train |
a07091c427581c0c3c572a16e30f55eb1589e236 | diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php
index <HASH>..<HASH> 100644
--- a/DependencyInjection/Configuration.php
+++ b/DependencyInjection/Configuration.php
@@ -37,15 +37,15 @@ class Configuration implements ConfigurationInterface
'pattern' ... | Changed layout feature: removed "route", changed "type" to "name"... | Orbitale_CmsBundle | train |
0d803bff50d93361a18ad6c9621d39a3ad336a37 | diff --git a/docs/src/modules/components/AppContainer.js b/docs/src/modules/components/AppContainer.js
index <HASH>..<HASH> 100644
--- a/docs/src/modules/components/AppContainer.js
+++ b/docs/src/modules/components/AppContainer.js
@@ -7,6 +7,12 @@ import Container from '@material-ui/core/Container';
const useStyles = ... | [docs] Make <main> responsive to font size (#<I>) | mui-org_material-ui | train |
f6d1785b2461ef47dd8a2c1e1f67406da0ac48bd | diff --git a/lib/node_modules/@stdlib/_tools/js/program-summary/test/test.js b/lib/node_modules/@stdlib/_tools/js/program-summary/test/test.js
index <HASH>..<HASH> 100644
--- a/lib/node_modules/@stdlib/_tools/js/program-summary/test/test.js
+++ b/lib/node_modules/@stdlib/_tools/js/program-summary/test/test.js
@@ -321,6... | Add guarded for...in statement test | stdlib-js_stdlib | train |
96733c279cbdf2aebd3e5ee75529a677e6f9f849 | diff --git a/MJLite.js b/MJLite.js
index <HASH>..<HASH> 100644
--- a/MJLite.js
+++ b/MJLite.js
@@ -32,7 +32,7 @@ var MJLite = (function() {
group.type = "ord";
elem.className = "mord";
}
- return makeSpan(className, mathit(group.value));
+ return make... | Use mathit less, so things are less italic
Auditors: alpert | KaTeX_KaTeX | train |
ba8248e949c02501106e81f38ea1513aa3f072a1 | diff --git a/src/FormBlockBundle/Block/Service/ChoiceFieldBlockService.php b/src/FormBlockBundle/Block/Service/ChoiceFieldBlockService.php
index <HASH>..<HASH> 100644
--- a/src/FormBlockBundle/Block/Service/ChoiceFieldBlockService.php
+++ b/src/FormBlockBundle/Block/Service/ChoiceFieldBlockService.php
@@ -31,7 +31,8 @@... | Define formulas on form fields to calculate the value | Opifer_Cms | train |
60a4f7292913c6f626c3022ed345b3bed1b46420 | diff --git a/docs/testdox.txt b/docs/testdox.txt
index <HASH>..<HASH> 100644
--- a/docs/testdox.txt
+++ b/docs/testdox.txt
@@ -86,6 +86,7 @@ s9e\TextFormatter\Tests\Configurator
[x] $configurator->attributeFilters is an instance of AttributeFilterCollection
[x] $configurator->javascript is an instance of JavaScript... | Officially declare $configurator->registeredVars as a publicly-accessible array | s9e_TextFormatter | train |
5b5345e20ea56d8b43ee3b2b3bc322ca5f6db098 | diff --git a/build_libtcod.py b/build_libtcod.py
index <HASH>..<HASH> 100644
--- a/build_libtcod.py
+++ b/build_libtcod.py
@@ -320,6 +320,7 @@ GCC_CFLAGS = {
"-g",
"-fPIC",
"-Wno-deprecated-declarations",
+ "-Wno-discarded-qualifiers", # Ignore discarded restrict qualifiers.
],
... | Ignore discarded restrict qualifiers.
Python-cffi may discard these but they should still work in practice.
This might accidentally ignore const discards too, but I've only added
this flag to releases for now. | libtcod_python-tcod | train |
e597ff26da8c5550bbc27ac134aaf19201567206 | diff --git a/fsdb/fsdb.py b/fsdb/fsdb.py
index <HASH>..<HASH> 100644
--- a/fsdb/fsdb.py
+++ b/fsdb/fsdb.py
@@ -81,10 +81,8 @@ class Fsdb(object):
self._makedirs(fsdbRoot)
# write config file
+ self._create_empty_file(configPath)
config.writeConf(configPath, conf)
- ... | introduced "_create_empty_file()" | ael-code_pyFsdb | train |
ae63369c3c41eaa1ba35510d74cc4ba5e9fe0af1 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -32,7 +32,7 @@ def find_package_data(package):
setuptools.setup(
name='brozzler',
- version='1.1b5.dev67',
+ version='1.1b5',
description='Distributed web crawling with browsers',
ur... | another version for pypi | internetarchive_brozzler | train |
0ab4bf2b25eb0d6d359d4e6c5ac27e6dc68ca5da | diff --git a/src/graphology/src/iteration/edges.js b/src/graphology/src/iteration/edges.js
index <HASH>..<HASH> 100644
--- a/src/graphology/src/iteration/edges.js
+++ b/src/graphology/src/iteration/edges.js
@@ -1109,6 +1109,68 @@ function attachForEachEdge(Class, description) {
return result;
};
+
+ /**
+ ... | Adding #.reduceEdges
Related to #<I> | graphology_graphology | train |
e693cf7897848c47d8bae6ab2eb946a7eb3bdf4e | diff --git a/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java b/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java
index <HASH>..<HASH> 100644
--- a/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java
+++ b/src/main/java/nl/hsac/fitnesse/fixture/slim/web/BrowserTest.java
@@ -7... | Make container handling a bit more straightforward | fhoeben_hsac-fitnesse-fixtures | train |
8e1c945fe6e7ecf7b43cc44732e1325930514fb2 | diff --git a/cirq/__init__.py b/cirq/__init__.py
index <HASH>..<HASH> 100644
--- a/cirq/__init__.py
+++ b/cirq/__init__.py
@@ -86,6 +86,7 @@ from cirq.devices import (
)
from cirq.experiments import (
+ hog_score_xeb_fidelity_from_probabilities,
linear_xeb_fidelity,
linear_xeb_fidelity_from_probabiliti... | XEB fidelity estimator based on normalized HOG score (#<I>) | quantumlib_Cirq | train |
709682d70e7b8e517b84b4d914f36015b71e6f63 | diff --git a/src/Rocketeer/Tasks/Deploy.php b/src/Rocketeer/Tasks/Deploy.php
index <HASH>..<HASH> 100644
--- a/src/Rocketeer/Tasks/Deploy.php
+++ b/src/Rocketeer/Tasks/Deploy.php
@@ -122,19 +122,6 @@ class Deploy extends Task
}
/**
- * Sync the requested folders and files
- *
- * @return void
- */
- protected... | Close #<I> - Refresh shared folders on update too | rocketeers_rocketeer | train |
d7bcf9564f11828d71ccc026c4ad7a203c3e0893 | diff --git a/src/structures/User.js b/src/structures/User.js
index <HASH>..<HASH> 100644
--- a/src/structures/User.js
+++ b/src/structures/User.js
@@ -1,10 +1,6 @@
const TextBasedChannel = require('./interface/TextBasedChannel');
const Constants = require('../util/Constants');
-function defined(p) {
- return typeo... | Clean up recent User changes a bit | discordjs_discord.js | train |
bd2a9a422a0847d4878120b0aa57e978359f268c | diff --git a/src/org/openscience/cdk/atomtype/CDKAtomTypeMatcher.java b/src/org/openscience/cdk/atomtype/CDKAtomTypeMatcher.java
index <HASH>..<HASH> 100644
--- a/src/org/openscience/cdk/atomtype/CDKAtomTypeMatcher.java
+++ b/src/org/openscience/cdk/atomtype/CDKAtomTypeMatcher.java
@@ -242,7 +242,7 @@ public class CDKA... | Fixed a bug which was checking that an atom had hyb unset as well as being SP2 which is impossible! Fixes a number of failing smarts parser tests
git-svn-id: <URL> | cdk_cdk | train |
27e6d2c864ff40229982e2f18531e0bbf4ec7409 | diff --git a/src/Readline.php b/src/Readline.php
index <HASH>..<HASH> 100644
--- a/src/Readline.php
+++ b/src/Readline.php
@@ -44,17 +44,10 @@ class Readline extends EventEmitter implements ReadableStreamInterface
$that = $this;
$codes = array(
- // The user confirms input with enter key ... | Make CR act as an alias for LF for custom key bindings | clue_reactphp-stdio | train |
2c305560cf240d66d41da37e6ca9d7534800215d | diff --git a/examples/jira-add-components-to-all-projects.py b/examples/jira-add-components-to-all-projects.py
index <HASH>..<HASH> 100644
--- a/examples/jira-add-components-to-all-projects.py
+++ b/examples/jira-add-components-to-all-projects.py
@@ -8,11 +8,17 @@ jira = Jira(
components = ["Data Base", "HTML", ... | Update jira-add-components-to-all-projects.py (#<I>)
correction on wrong variables + adding the option to skip some projects | atlassian-api_atlassian-python-api | train |
545e8b66c7a4cd473a40a18e70674da24235becf | diff --git a/lars.go b/lars.go
index <HASH>..<HASH> 100644
--- a/lars.go
+++ b/lars.go
@@ -318,7 +318,9 @@ MAIN:
// wild already exists! then will conflict
if cn.wild != nil {
- panic("Cannot add url param '" + chunk + "' for path '" + origPath + "', a conflicting wildcard path exists")
+ if _, ok :... | <I>% Test Coverage Achieved! | go-playground_lars | train |
db6ee1131215cd02f03f0213cec53d649854c253 | diff --git a/Benchmarks/analyze-benchmark.py b/Benchmarks/analyze-benchmark.py
index <HASH>..<HASH> 100644
--- a/Benchmarks/analyze-benchmark.py
+++ b/Benchmarks/analyze-benchmark.py
@@ -62,10 +62,24 @@ class BenchAnalyzer:
self.__header_info = [ref.getRunTableName(), attribute]
self.__label_name_ref ... | Make sure missing queries from either sample/reference are excluded, but also reported | omnisci_mapd-core | train |
0f1174402620f202b82f34d6af2ed76e01e0944a | diff --git a/text-minimessage/src/main/java/net/kyori/adventure/text/minimessage/tag/standard/StandardTags.java b/text-minimessage/src/main/java/net/kyori/adventure/text/minimessage/tag/standard/StandardTags.java
index <HASH>..<HASH> 100644
--- a/text-minimessage/src/main/java/net/kyori/adventure/text/minimessage/tag/s... | Add missing StandardTags#decoration | KyoriPowered_text | train |
b4ff28f01700771dfa1189d7a10a52d5225be113 | diff --git a/topk.go b/topk.go
index <HASH>..<HASH> 100644
--- a/topk.go
+++ b/topk.go
@@ -6,15 +6,15 @@ import (
)
type element struct {
- data []byte
- freq uint64
+ Data []byte
+ Freq uint64
}
// An elementHeap is a min-heap of elements.
type elementHeap []*element
func (e elementHeap) Len() int ... | Update topk.go
Support to get most frequent elements along with its frequency (<URL> | tylertreat_BoomFilters | train |
e05a50528e93e0d0a1bff23d05f53be5325cf567 | diff --git a/spec/unit/crypto/CrossSigningInfo.spec.js b/spec/unit/crypto/CrossSigningInfo.spec.js
index <HASH>..<HASH> 100644
--- a/spec/unit/crypto/CrossSigningInfo.spec.js
+++ b/spec/unit/crypto/CrossSigningInfo.spec.js
@@ -84,9 +84,16 @@ describe("CrossSigningInfo.getCrossSigningKey", function() {
const in... | make test no longer dependent on emscripten internals | matrix-org_matrix-js-sdk | train |
a45521e5cc2a4cd1c18c61685054528c01b6c27b | diff --git a/salt/grains/core.py b/salt/grains/core.py
index <HASH>..<HASH> 100644
--- a/salt/grains/core.py
+++ b/salt/grains/core.py
@@ -543,6 +543,7 @@ _OS_FAMILY_MAP = {
'SmartOS': 'Solaris',
'Arch ARM': 'Arch',
'ALT': 'RedHat',
+ 'Trisquel': 'Debian'
} | Add Trisquel to `_OS_FAMILY_MAP` as Debian since it's Ubuntu based. See saltstack/salt-bootstrap#<I>. | saltstack_salt | train |
c9d0b83277f591b965605fa60d5183275164e0d4 | diff --git a/agent/consul/autopilot/autopilot.go b/agent/consul/autopilot/autopilot.go
index <HASH>..<HASH> 100644
--- a/agent/consul/autopilot/autopilot.go
+++ b/agent/consul/autopilot/autopilot.go
@@ -3,15 +3,16 @@ package autopilot
import (
"context"
"fmt"
+ "net"
+ "strconv"
+ "sync"
+ "time"
+
"github.com/h... | Value is already an int, remove type cast | hashicorp_consul | train |
4b9a67fe605286dab51876dfd98f644a0bed42e1 | diff --git a/ext/mkrf_conf.rb b/ext/mkrf_conf.rb
index <HASH>..<HASH> 100644
--- a/ext/mkrf_conf.rb
+++ b/ext/mkrf_conf.rb
@@ -8,7 +8,7 @@ end
if RUBY_VERSION < '2.0'
dep = Gem::Dependency.new('debugger', '> 0')
else
- dep = Gem::Dependency.new('byebug', '> 0')
+ dep = Gem::Dependency.new('byebug', '>= 5.0.0')
... | we need byebug <I> at least to work with it | astashov_debugger-xml | train |
70f2bd1dfffcb8ab725dd459daa6ec11a4269391 | diff --git a/plugin/kubernetes/xfr.go b/plugin/kubernetes/xfr.go
index <HASH>..<HASH> 100644
--- a/plugin/kubernetes/xfr.go
+++ b/plugin/kubernetes/xfr.go
@@ -110,14 +110,15 @@ func (k *Kubernetes) transfer(c chan dns.RR, zone string) {
case api.ServiceTypeClusterIP, api.ServiceTypeNodePort, api.ServiceTypeLoadBalan... | dont duplicate service recrod for every port (#<I>) | coredns_coredns | train |
7d665597259ff8b1a4c5891942cad90106c7bfd3 | diff --git a/cmd/kubelet/app/server.go b/cmd/kubelet/app/server.go
index <HASH>..<HASH> 100644
--- a/cmd/kubelet/app/server.go
+++ b/cmd/kubelet/app/server.go
@@ -17,6 +17,9 @@ limitations under the License.
// Package app makes it easy to create a kubelet server for various contexts.
package app
+// Note: if you c... | added comments at the top of native k8s files which, if changed, might affect some of the k8sm code | kubernetes_kubernetes | train |
da64da434a83406facf7e9a90284f25df016f47e | diff --git a/ipuz/__init__.py b/ipuz/__init__.py
index <HASH>..<HASH> 100644
--- a/ipuz/__init__.py
+++ b/ipuz/__init__.py
@@ -124,6 +124,11 @@ def validate_answers(field_data):
raise IPUZException("Invalid answers value found")
+def validate_charset(field_data):
+ if type(field_data) not in [str, u... | Added validator for Sudoku charset | svisser_ipuz | train |
c583ea77b81ae6d84f3c410eb6aba646c39186f6 | diff --git a/getPackageWebpackConfig.js b/getPackageWebpackConfig.js
index <HASH>..<HASH> 100644
--- a/getPackageWebpackConfig.js
+++ b/getPackageWebpackConfig.js
@@ -122,7 +122,6 @@ function webpackConfig({
path: path.join(process.cwd(), OUTPUT_DIR),
publicPath: '/dist',
libraryTarget: 'umd',
- ... | No longer exporting default for libraries. | benwiley4000_cassette | train |
30a390c73b8e365b5f9beeeee667af2ad45d2324 | diff --git a/source/Mocka/ClassTrait.php b/source/Mocka/ClassTrait.php
index <HASH>..<HASH> 100644
--- a/source/Mocka/ClassTrait.php
+++ b/source/Mocka/ClassTrait.php
@@ -10,6 +10,13 @@ trait ClassTrait {
/** @var ClassMock */
private $_objectClassMock;
+ public function __clone() {
+ $this->_obje... | Add support for cloning mocked objects | tomaszdurka_mocka | train |
230497008e82a3f573901a5a52177781bc1f1a6b | diff --git a/odl/trafos/backends/pywt_bindings.py b/odl/trafos/backends/pywt_bindings.py
index <HASH>..<HASH> 100644
--- a/odl/trafos/backends/pywt_bindings.py
+++ b/odl/trafos/backends/pywt_bindings.py
@@ -65,7 +65,6 @@ def pywt_wavelet(wavelet):
def pywt_pad_mode(pad_mode, pad_const=0):
"""Convert ODL-style pad... | BUG: create array of correct dtype when flattening coeffs | odlgroup_odl | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.