hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
019ff1a5ea2006b922bf8c7d563d80ee031ff04b | diff --git a/examples/GAN/CycleGAN.py b/examples/GAN/CycleGAN.py
index <HASH>..<HASH> 100755
--- a/examples/GAN/CycleGAN.py
+++ b/examples/GAN/CycleGAN.py
@@ -161,6 +161,7 @@ def get_data(datadir, isTrain=True):
augs = [
imgaug.Resize(int(SHAPE * 1.12)),
imgaug.RandomCrop(SHAPE),
+ ... | add flip in cyclegan (#<I>) | tensorpack_tensorpack | train |
82892a2b3371fc1e260cfd0ffb7966945b92619e | diff --git a/src/main/java/com/aoindustries/taglib/OptionTag.java b/src/main/java/com/aoindustries/taglib/OptionTag.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/aoindustries/taglib/OptionTag.java
+++ b/src/main/java/com/aoindustries/taglib/OptionTag.java
@@ -111,4 +111,13 @@ public class OptionTag
.text... | Added missing call to init() in finally block. | aoindustries_ao-taglib | train |
8e2592c17d49cdc8fc737f2664a77be0750d96d1 | diff --git a/lib/amqp/queue.rb b/lib/amqp/queue.rb
index <HASH>..<HASH> 100644
--- a/lib/amqp/queue.rb
+++ b/lib/amqp/queue.rb
@@ -24,8 +24,11 @@ module Carrot::AMQP
self.delivery_tag = method.delivery_tag
header = server.next_payload
- msg = server.next_payload
- raise 'unexpected length' ... | fixed 'unexpected length' exceptions when handling large messages in pop() | famoseagle_carrot | train |
9d255c5bc2ace3cc805cbf77c390e11aba89c80a | diff --git a/kbfsfuse/main.go b/kbfsfuse/main.go
index <HASH>..<HASH> 100644
--- a/kbfsfuse/main.go
+++ b/kbfsfuse/main.go
@@ -24,7 +24,8 @@ var localUserFlag = flag.String("localuser", "strib",
var clientFlag = flag.Bool("client", defaultClientFlag, "connect as client to keybase daemon")
var serverRootDirFlag = flag... | Adding runtime dir and label flags so I can detect kbfs service updates.
Don't need the version file. | keybase_client | train |
97bd1a229fcdd9b206f2542950c44805e115dfef | diff --git a/executionserver/engine_lsf.js b/executionserver/engine_lsf.js
index <HASH>..<HASH> 100644
--- a/executionserver/engine_lsf.js
+++ b/executionserver/engine_lsf.js
@@ -66,17 +66,15 @@ module.exports = function (conf) {
"sample: Job <898104> is submitted to default queue <day>"
runcommand.on('clos... | BUG: resolve with fail only if code is != 0 | juanprietob_clusterpost | train |
e91fa68f8e1ddad33e4a43157ba3cfab671f201a | diff --git a/cake/console/libs/tasks/template.php b/cake/console/libs/tasks/template.php
index <HASH>..<HASH> 100644
--- a/cake/console/libs/tasks/template.php
+++ b/cake/console/libs/tasks/template.php
@@ -115,10 +115,7 @@ class TemplateTask extends Shell {
if ($data == null) {
return false;
}
-
- foreach (... | Making the set() functions use + instead of array_merge() so that numeric indices are properly preserved across multiple method calls. Fixes #<I> | cakephp_cakephp | train |
64e071886510c52fd3d79ee95539ebd5dd29a8cc | diff --git a/tests/test_config.py b/tests/test_config.py
index <HASH>..<HASH> 100644
--- a/tests/test_config.py
+++ b/tests/test_config.py
@@ -26,22 +26,11 @@ def test_config_empty_by_default():
assert conf['b'] == 16
-@pytest.mark.skip(reason='Very TDD')
def test_config_accepts_dict_vals():
with Cli... | Config supports nested dicts and arrays. | wandb_client | train |
102642cd37e0233af100cc5ab96951a9dffdfe76 | diff --git a/sandbox/appEngineCloudClient/src/java/edu/umd/cs/findbugs/cloud/appEngine/AppEngineCloudClient.java b/sandbox/appEngineCloudClient/src/java/edu/umd/cs/findbugs/cloud/appEngine/AppEngineCloudClient.java
index <HASH>..<HASH> 100644
--- a/sandbox/appEngineCloudClient/src/java/edu/umd/cs/findbugs/cloud/appEngi... | More work on uploading stored evaluations in XML
git-svn-id: <URL> | spotbugs_spotbugs | train |
be24547fb23002e2e80d9b822f4a6fc3f22bdd7c | diff --git a/lib/app.js b/lib/app.js
index <HASH>..<HASH> 100644
--- a/lib/app.js
+++ b/lib/app.js
@@ -370,6 +370,53 @@ var App = function () {
chain.run();
};
+ this.handleControllerAction = function (controllerInst, reqUrl, method,
+ params, accessTime, reqObj, respObj) {
+ var initKeys
+ ... | Move main controller-action handling into method | mde_ejs | train |
f01495cf5406638986156bf51befb55753b39769 | diff --git a/presto-main/src/main/java/com/facebook/presto/sql/planner/PlanOptimizersFactory.java b/presto-main/src/main/java/com/facebook/presto/sql/planner/PlanOptimizersFactory.java
index <HASH>..<HASH> 100644
--- a/presto-main/src/main/java/com/facebook/presto/sql/planner/PlanOptimizersFactory.java
+++ b/presto-mai... | Move BeginTableWrite to the end of optimizers | prestodb_presto | train |
b786fe027e22f5ac52b43e203fac4784da3634b0 | diff --git a/molo/commenting/admin.py b/molo/commenting/admin.py
index <HASH>..<HASH> 100644
--- a/molo/commenting/admin.py
+++ b/molo/commenting/admin.py
@@ -18,7 +18,7 @@ class MoloCommentAdmin(CommentsAdmin):
'submit_date')
def is_reported(self, obj):
- if (obj.flags.count() > 0):
+ if ... | method to count the number of times a comment has received each flag type | praekeltfoundation_molo.commenting | train |
c8e398a5722370ef8150efecd860e3595e794b3c | diff --git a/geopy/geocoders/base.py b/geopy/geocoders/base.py
index <HASH>..<HASH> 100644
--- a/geopy/geocoders/base.py
+++ b/geopy/geocoders/base.py
@@ -234,8 +234,15 @@ class Geocoder(object):
"""
if requester:
- req = url # Don't construct an urllib's Request for a custom requester
+... | Pass `proxies` to the custom `requester` in geocoding calls | geopy_geopy | train |
5fda95d95102f3bff32b90b8be02b04a69d2429e | diff --git a/control/HTTP.php b/control/HTTP.php
index <HASH>..<HASH> 100644
--- a/control/HTTP.php
+++ b/control/HTTP.php
@@ -25,9 +25,9 @@ class HTTP {
protected static $etag = null;
/**
- * @config
- */
- private static $cache_ajax_requests = true;
+ * @config
+ */
+ private static $cache_ajax_req... | converting spaces as intentation to tabs | silverstripe_silverstripe-framework | train |
fc807acc0400e2693b3adc06900de89337a4c93c | diff --git a/contrib/benchmark.py b/contrib/benchmark.py
index <HASH>..<HASH> 100755
--- a/contrib/benchmark.py
+++ b/contrib/benchmark.py
@@ -19,12 +19,6 @@ from benchexec import __version__ # noqa E402
import benchexec.benchexec # noqa E402
import benchexec.tools # noqa E402
-# Add ./benchmark/tools to __path_... | removed explicit tool paths, and using only cloud executor | sosy-lab_benchexec | train |
e95f7783d186e9d0e7f530a14194415da99863f6 | diff --git a/proctor-webapp-library/src/main/java/com/indeed/proctor/webapp/jobs/DeleteJob.java b/proctor-webapp-library/src/main/java/com/indeed/proctor/webapp/jobs/DeleteJob.java
index <HASH>..<HASH> 100644
--- a/proctor-webapp-library/src/main/java/com/indeed/proctor/webapp/jobs/DeleteJob.java
+++ b/proctor-webapp-l... | NOBUG: Refactor: reduce duplicate code | indeedeng_proctor | train |
d5a87059b501af3746ae6978fb4e371bdd72b421 | diff --git a/server/sonar-web/src/main/js/apps/issues/controller.js b/server/sonar-web/src/main/js/apps/issues/controller.js
index <HASH>..<HASH> 100644
--- a/server/sonar-web/src/main/js/apps/issues/controller.js
+++ b/server/sonar-web/src/main/js/apps/issues/controller.js
@@ -129,7 +129,8 @@ define([
requestAssi... | fix display of the assignees facet on the issues page | SonarSource_sonarqube | train |
3bec92991e0ce5d4e0907d531984e75a98031e39 | diff --git a/tests/test_Functional_Sender.py b/tests/test_Functional_Sender.py
index <HASH>..<HASH> 100644
--- a/tests/test_Functional_Sender.py
+++ b/tests/test_Functional_Sender.py
@@ -1,15 +1,16 @@
+import os
+
from unittest import TestCase, skipIf
-from zabbix.sender import ZabbixMetric, ZabbixSender
+from time im... | Use time instead of datetime for timestamp | adubkov_py-zabbix | train |
0f4c64ff09b0eca06300311e00503e3889bd3f13 | diff --git a/slackchat/handlers/messages.py b/slackchat/handlers/messages.py
index <HASH>..<HASH> 100644
--- a/slackchat/handlers/messages.py
+++ b/slackchat/handlers/messages.py
@@ -1,4 +1,3 @@
-import json
import re
from datetime import datetime
diff --git a/slackchat/models.py b/slackchat/models.py
index <HASH>.... | render to html if boolean is set | The-Politico_django-slackchat-serializer | train |
639e61096c97be578f0b6af5c584fda605eec46e | diff --git a/src/grid/grid-cell.js b/src/grid/grid-cell.js
index <HASH>..<HASH> 100644
--- a/src/grid/grid-cell.js
+++ b/src/grid/grid-cell.js
@@ -36,7 +36,7 @@ class GridCell extends React.Component {
render() {
return (
- <div
+ <div // eslint-disable-line jsx-a11y/no-static-element-interactions
... | Lint fix: jsx-a<I>y/no-static-element-interactions
Looks like it is not picking up the `role` attribute on this `<div>`. Perhaps because it is dynamic? Will revisit. | juanca_react-aria-components | train |
8ecc8c57457d529fe424fbf9f50c2e565e78fcf1 | diff --git a/searx/plugins/self_info.py b/searx/plugins/self_info.py
index <HASH>..<HASH> 100644
--- a/searx/plugins/self_info.py
+++ b/searx/plugins/self_info.py
@@ -31,7 +31,7 @@ p = re.compile('.*user[ -]agent.*', re.IGNORECASE)
def post_search(request, search):
if search.search_query.pageno > 1:
retu... | [enh] Fix uppercase ip query (#<I>)
## What does this PR do?
Fixes the self_info plugin to support uppercase ip queries.
## Why is this change important?
This PR solves the mild annoyance of retyping IP in lowercase.
## Related issues
Closes #<I> | asciimoo_searx | train |
fa0ac9a859070d52aa6f10c38e8f1e9b5fcda1d4 | diff --git a/dpark/rdd.py b/dpark/rdd.py
index <HASH>..<HASH> 100644
--- a/dpark/rdd.py
+++ b/dpark/rdd.py
@@ -1403,10 +1403,9 @@ class GZipFileRDD(TextFileRDD):
f.seek(last_block)
d = f.read(start - last_block)
dz = zlib.decompressobj(-zlib.MAX_WBITS)
- ... | fix last_line bug (#<I>) | douban_dpark | train |
b80a17137ae593a65734fd1bb00c287bd9a42db1 | diff --git a/data/settings.yaml b/data/settings.yaml
index <HASH>..<HASH> 100644
--- a/data/settings.yaml
+++ b/data/settings.yaml
@@ -4,3 +4,4 @@ settings:
PREFER_DAY_OF_MONTH: 'current'
SKIP_TOKENS: ["t"]
TIMEZONE: 'UTC'
+ RETURN_AS_TIMEZONE_AWARE: False
diff --git a/dateparser/date_parser.py b/date... | Added setting to return time aware datetime | scrapinghub_dateparser | train |
370f4f51722cec49ace17093d29e9ce9e8f15cfb | diff --git a/activerecord/lib/active_record/base.rb b/activerecord/lib/active_record/base.rb
index <HASH>..<HASH> 100755
--- a/activerecord/lib/active_record/base.rb
+++ b/activerecord/lib/active_record/base.rb
@@ -633,8 +633,8 @@ module ActiveRecord #:nodoc:
#
# ==== Attributes
#
- # * +id+ ... | Applied list conventions in AR::Base | rails_rails | train |
7a08e2c84f2137774269a89e4ab8cc4321762284 | diff --git a/lib/mongo/connection.rb b/lib/mongo/connection.rb
index <HASH>..<HASH> 100644
--- a/lib/mongo/connection.rb
+++ b/lib/mongo/connection.rb
@@ -109,6 +109,7 @@ module Mongo
# Mutex for synchronizing pool access
@connection_mutex = Mutex.new
+ @safe_mutex = Mutex.new
# Condition ... | minor: pool test working for windows on <I> | mongodb_mongo-ruby-driver | train |
8829ce6f9c38bc7399bef0fe949c21d16e3e6ef3 | diff --git a/java/client/src/org/openqa/selenium/WebDriverCommandProcessor.java b/java/client/src/org/openqa/selenium/WebDriverCommandProcessor.java
index <HASH>..<HASH> 100644
--- a/java/client/src/org/openqa/selenium/WebDriverCommandProcessor.java
+++ b/java/client/src/org/openqa/selenium/WebDriverCommandProcessor.ja... | SimonStewart: Not all drivers implement HasCapabilities. Make the WebDriverCommandProcessor robust against this fact
r<I> | SeleniumHQ_selenium | train |
234c03edc9365371a430ef3bed981a23ad7127bc | diff --git a/jobStores/awsJobStore.py b/jobStores/awsJobStore.py
index <HASH>..<HASH> 100644
--- a/jobStores/awsJobStore.py
+++ b/jobStores/awsJobStore.py
@@ -608,12 +608,13 @@ def fromNoneable( v ):
assert v != ""
return '' if v is None else v
+sort_prefix_length=3
-def toList( v ):
- if isinstance( v... | Maintain order of job attributes that are lists | DataBiosphere_toil | train |
07ffc88600df9ab3bfedd12b0f6f290d216ccf3b | diff --git a/src/Detector.js b/src/Detector.js
index <HASH>..<HASH> 100644
--- a/src/Detector.js
+++ b/src/Detector.js
@@ -211,7 +211,7 @@ export default class Detector {
// developer.mozilla.org/En/Media_formats_supported_by_the_audio_and_video_elements
// bit.ly/iphoneoscodecs
wav... | added css flags by default | blackmirror1980_detector-js | train |
0c850c33a59b2d0e9a40841668c861c2defc7e48 | diff --git a/core/lib/refinery/application_controller.rb b/core/lib/refinery/application_controller.rb
index <HASH>..<HASH> 100644
--- a/core/lib/refinery/application_controller.rb
+++ b/core/lib/refinery/application_controller.rb
@@ -64,10 +64,7 @@ protected
# get all the pages to be displayed in the site menu.
... | Use ARel, fix deprecation in request_uri which is now fullpath. | refinery_refinerycms | train |
8dd0e4a1ec6e3db2522e88d78a02d8b38e927c3c | diff --git a/lib/servers/AdminServer.js b/lib/servers/AdminServer.js
index <HASH>..<HASH> 100644
--- a/lib/servers/AdminServer.js
+++ b/lib/servers/AdminServer.js
@@ -178,7 +178,7 @@ AdminServer.prototype.attachCustomListeners = function() {
// ### say.GAMECOMMAND
// Forwards a gamecommand msg (only for adm... | GAMECOMMAND is sent to admins also | nodeGame_nodegame-server | train |
610a4510cf96f5152868d243e8e2b1a49d336ee1 | diff --git a/controller/appcontroller.go b/controller/appcontroller.go
index <HASH>..<HASH> 100644
--- a/controller/appcontroller.go
+++ b/controller/appcontroller.go
@@ -538,6 +538,9 @@ func (ctrl *ApplicationController) refreshAppConditions(app *appv1.Application)
// setApplicationHealth updates the health statuses... | Issue #<I> - Sync and health status should be unknown if controller unable to load target/live state (#<I>) | argoproj_argo-cd | train |
9f77a1d1a5ccdd362fb614044101c7b32e63646c | diff --git a/test/db.test.js b/test/db.test.js
index <HASH>..<HASH> 100644
--- a/test/db.test.js
+++ b/test/db.test.js
@@ -1004,7 +1004,7 @@ describe('Database', function () {
});
});
- it.skip('If an index constraint is violated by an update, all changes should be rolled back', function (done) {
+... | If an index contraint is violated in a multi update, the changes should be rolled back | louischatriot_nedb | train |
6edf92d87d2be7c79f4fdf26d64d4e0cc4810413 | diff --git a/src/main/java/de/javakaffee/web/msm/MemcachedBackupSessionManager.java b/src/main/java/de/javakaffee/web/msm/MemcachedBackupSessionManager.java
index <HASH>..<HASH> 100644
--- a/src/main/java/de/javakaffee/web/msm/MemcachedBackupSessionManager.java
+++ b/src/main/java/de/javakaffee/web/msm/MemcachedBackupS... | Add doAfterDeserialization for optional initialization of notes and listeners | magro_memcached-session-manager | train |
b3974574b7ea1bec56fdea54d280028ee2209971 | diff --git a/luigi/file.py b/luigi/file.py
index <HASH>..<HASH> 100644
--- a/luigi/file.py
+++ b/luigi/file.py
@@ -154,6 +154,7 @@ class LocalTarget(FileSystemTarget):
@property
def fn(self):
+ warnings.warn("Use LocalTarget.path to reference filename", DeprecationWarning, stacklevel=2)
retu... | Deprecated LocalTarget fn propery | spotify_luigi | train |
6c52269dc56f2f4fd5012d9ff77c261631bf1a07 | diff --git a/spring-cloud-netflix-eureka-server/src/main/java/org/springframework/cloud/netflix/eureka/server/EurekaController.java b/spring-cloud-netflix-eureka-server/src/main/java/org/springframework/cloud/netflix/eureka/server/EurekaController.java
index <HASH>..<HASH> 100644
--- a/spring-cloud-netflix-eureka-serve... | Associated with this PR # <I> (#<I>)
Use StringBuffer for String concatenation | spring-cloud_spring-cloud-netflix | train |
3eaf1e77f7b922e27f5b171c856d5b5e5dcafb62 | diff --git a/src/node.js b/src/node.js
index <HASH>..<HASH> 100644
--- a/src/node.js
+++ b/src/node.js
@@ -58,19 +58,22 @@ export default function () {
// Update
context
.attr('transform', nodeTransform)
- .style('display', function (d) {
- return (d.y0 === d.y1 || !nodeVisible(d)) ? 'none'... | Change node visibility to hide only text/line, not whole node.
This is needed when nodes have a width and you still need to see the background,
or else there will be a gap. | ricklupton_d3-sankey-diagram | train |
c2740ccae9164c5ede839811f7e39d94eaa5c7bc | diff --git a/h2o-extensions/xgboost/src/main/java/hex/tree/xgboost/XGBoost.java b/h2o-extensions/xgboost/src/main/java/hex/tree/xgboost/XGBoost.java
index <HASH>..<HASH> 100755
--- a/h2o-extensions/xgboost/src/main/java/hex/tree/xgboost/XGBoost.java
+++ b/h2o-extensions/xgboost/src/main/java/hex/tree/xgboost/XGBoost.ja... | [PUBDEV-<I>] Disable cv model parallelism when running on GPU | h2oai_h2o-3 | train |
f4bb5ea3a7093e435349a1136185f56dceb10598 | diff --git a/uvicorn/protocols/http/h11_impl.py b/uvicorn/protocols/http/h11_impl.py
index <HASH>..<HASH> 100644
--- a/uvicorn/protocols/http/h11_impl.py
+++ b/uvicorn/protocols/http/h11_impl.py
@@ -162,9 +162,9 @@ class H11Protocol(asyncio.Protocol):
while True:
try:
event = self... | Revert log exception traceback in case of invalid HTTP request (#<I>)
* Revert "Log exception traceback in case of invalid HTTP request when using h<I> (#<I>)"
This reverts commit 2e<I>dd9f
* Revert "Log exception traceback in case of invalid HTTP request when using httptools (#<I>)"
This reverts commit <I>ed... | encode_uvicorn | train |
50cd1d87b17b1759554df4ed6380e2a034721c33 | diff --git a/webexteamssdk/exceptions.py b/webexteamssdk/exceptions.py
index <HASH>..<HASH> 100644
--- a/webexteamssdk/exceptions.py
+++ b/webexteamssdk/exceptions.py
@@ -32,7 +32,6 @@ from __future__ import (
import logging
from builtins import *
-from json import JSONDecodeError
import requests
@@ -80,7 +79,... | Update exceptions.py
Python 2 `json` module doesn't have a `JSONDecodeError`. **ugh**
Fortunately `JSONDecodeError` is a subclass of `ValueError`, so we can use this to catch the same parsing error in both Python 2 and 3. | CiscoDevNet_webexteamssdk | train |
e9b470fa39e0b6deedb994af6117657198e833d0 | diff --git a/inspire_dojson/hep/rules/bd7xx.py b/inspire_dojson/hep/rules/bd7xx.py
index <HASH>..<HASH> 100644
--- a/inspire_dojson/hep/rules/bd7xx.py
+++ b/inspire_dojson/hep/rules/bd7xx.py
@@ -195,21 +195,19 @@ def related_records_78708(self, key, value):
@hep2marc.over('78002', '^related_records$')
-def related... | hep2marc: refactor related_records2marc | inspirehep_inspire-dojson | train |
60afe4ff364512d35aa1388cbea34592f6e298d1 | diff --git a/cli/src/main/java/org/jboss/as/cli/gui/OperationDialog.java b/cli/src/main/java/org/jboss/as/cli/gui/OperationDialog.java
index <HASH>..<HASH> 100644
--- a/cli/src/main/java/org/jboss/as/cli/gui/OperationDialog.java
+++ b/cli/src/main/java/org/jboss/as/cli/gui/OperationDialog.java
@@ -188,7 +188,7 @@ publi... | For JComboBox, add a blank entry if param is not required. | wildfly_wildfly | train |
84b0027b7a0a69a445865f4dc59680d39b2eb6e7 | diff --git a/src/controllers/DemoController.php b/src/controllers/DemoController.php
index <HASH>..<HASH> 100644
--- a/src/controllers/DemoController.php
+++ b/src/controllers/DemoController.php
@@ -184,16 +184,7 @@ class DemoController extends \Controller {
public function getCustomfilter()
{
$filte... | demo cleanup customfilter, queryscope moved to model | zofe_rapyd-laravel | train |
c208fc5dab6bcc567ada67558b46abd3d1f2baf7 | diff --git a/js/cloudmine.js b/js/cloudmine.js
index <HASH>..<HASH> 100644
--- a/js/cloudmine.js
+++ b/js/cloudmine.js
@@ -334,6 +334,8 @@
options: options
});
},
+
+
/**
* Search CloudMine explicitly querying for files.
* Note: This does not search the contents of files.
@@ -1250,7 +... | first spike for delete acls | cloudmine_CloudMineSDK-JavaScript | train |
1535f5c33544c4ac49d397ec14e2ec88e177587d | diff --git a/tinymce/urls.py b/tinymce/urls.py
index <HASH>..<HASH> 100644
--- a/tinymce/urls.py
+++ b/tinymce/urls.py
@@ -5,13 +5,8 @@ from django.conf.urls import url
from tinymce import views
urlpatterns = [
- url(r'^js/textareas/(?P<name>.+)/$', views.textareas_js,
- name='tinymce-js'),
- url(r'^js... | [Cleanup] delete old views | aljosa_django-tinymce | train |
bd302692be9d5fe2ee5f5e5bd5bb585ca18fa057 | diff --git a/galpy/orbit_src/linearOrbit.py b/galpy/orbit_src/linearOrbit.py
index <HASH>..<HASH> 100644
--- a/galpy/orbit_src/linearOrbit.py
+++ b/galpy/orbit_src/linearOrbit.py
@@ -74,16 +74,15 @@ class linearOrbit(OrbitTop):
HISTORY:
2010-09-15 - Written - Bovy (NYU)
"""
- if not... | python3 dictionary compatibility for linearOrbit plus improvements | jobovy_galpy | train |
9dea4258a4fe6a6991d5f4e99c0cb00f961136f5 | diff --git a/i3pystatus/uptime.py b/i3pystatus/uptime.py
index <HASH>..<HASH> 100644
--- a/i3pystatus/uptime.py
+++ b/i3pystatus/uptime.py
@@ -1,11 +1,18 @@
from i3pystatus import IntervalModule, formatp
-from i3pystatus.core.util import TimeWrapper
class Uptime(IntervalModule):
"""
Outputs Uptime
+
+... | Added proper formatter for uptime module | enkore_i3pystatus | train |
30431d9fecd48f8dc47c231a4302915188f53485 | diff --git a/src/models/User.php b/src/models/User.php
index <HASH>..<HASH> 100644
--- a/src/models/User.php
+++ b/src/models/User.php
@@ -472,8 +472,10 @@ class User implements
$this->_em->merge($entity);
}
$eventType = $new ? Log::EVENT_CREATE : Log::EVENT_UPDATE;
- if (isset($data->password) && $eventType... | #<I> Erdiko-<I>, Updated and added support to log without permissions | Erdiko_users | train |
1ef6736e39a88d8c0098ddd3cb2a9d523e49da8e | diff --git a/cosmic_ray/execution/local.py b/cosmic_ray/execution/local.py
index <HASH>..<HASH> 100644
--- a/cosmic_ray/execution/local.py
+++ b/cosmic_ray/execution/local.py
@@ -1,12 +1,12 @@
"Implementation of the local execution engine."
from .execution_engine import ExecutionEngine
-from ..worker import worker_... | A few refactorings to keep things clean. (#<I>) | sixty-north_cosmic-ray | train |
bec367bdfe78ac1d9de36f43c46d01a4ae020f46 | diff --git a/cumulusci/core/keychain/encrypted_file_project_keychain.py b/cumulusci/core/keychain/encrypted_file_project_keychain.py
index <HASH>..<HASH> 100644
--- a/cumulusci/core/keychain/encrypted_file_project_keychain.py
+++ b/cumulusci/core/keychain/encrypted_file_project_keychain.py
@@ -125,13 +125,14 @@ class E... | If the project_config doesn't exist, return None from get_default_org() | SFDO-Tooling_CumulusCI | train |
bc91f3f4db2a61acfea1bcd4c56a997545aa3264 | diff --git a/lib/chef/resource/yum_package.rb b/lib/chef/resource/yum_package.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/resource/yum_package.rb
+++ b/lib/chef/resource/yum_package.rb
@@ -24,6 +24,12 @@ class Chef
resource_name :yum_package
provides :package, platform_family: %w{rhel fedora amazon}
+... | Add a description field to yum_package | chef_chef | train |
32c7cea104e010b2afbd0116126ae178c948bbb8 | diff --git a/src/SilverStripe/BehatExtension/Context/BasicContext.php b/src/SilverStripe/BehatExtension/Context/BasicContext.php
index <HASH>..<HASH> 100644
--- a/src/SilverStripe/BehatExtension/Context/BasicContext.php
+++ b/src/SilverStripe/BehatExtension/Context/BasicContext.php
@@ -7,6 +7,7 @@ use Behat\Behat\Conte... | Clean up files from assets/ after each scenario | jeffreyguo_SS-Behat-quicksetup | train |
eca308746fc29a3ad0c4bb5f4b64db028228baf1 | diff --git a/dice/elements.py b/dice/elements.py
index <HASH>..<HASH> 100644
--- a/dice/elements.py
+++ b/dice/elements.py
@@ -113,8 +113,14 @@ class Operator(Element):
classname(self), ', '.join(map(str, self.orginal_operands)))
def evaluate(self):
- self.operands = map(self.evaluate_object,... | Fix for issue #3 - TypeError raised when same arithmetic operator is used multiple times | borntyping_python-dice | train |
323b57b439d8084b351eaffdfa509f3e8368c329 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -960,7 +960,7 @@ var _ = require('lodash'),
dest: '<%= paths.releaseBuild %>/'
});
- grunt.task.run(['init', 'shell:ember:prod', 'clean:releas... | Release should run all prod tasks
refs #<I>
For some reason, release was only set to do the ember prod task, not all prod tasks
This ensures ghost-url gets minified and included as well as future proofing any other prod tasks | TryGhost_Ghost | train |
7e1b0bc547f8c071f6848ae977aa11238d22bd3d | diff --git a/src/Strukt/Provider/Router.php b/src/Strukt/Provider/Router.php
index <HASH>..<HASH> 100644
--- a/src/Strukt/Provider/Router.php
+++ b/src/Strukt/Provider/Router.php
@@ -18,9 +18,11 @@ class Router extends AbstractProvider implements ProviderInterface{
public function register(){
- $this->core()->se... | router provider changed core injection for earlier php versions | pitsolu_strukt-router | train |
f82ae2945556f4c7d381c5e07f775a74916135ed | diff --git a/src/main/java/com/mebigfatguy/fbcontrib/detect/BuryingLogic.java b/src/main/java/com/mebigfatguy/fbcontrib/detect/BuryingLogic.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/mebigfatguy/fbcontrib/detect/BuryingLogic.java
+++ b/src/main/java/com/mebigfatguy/fbcontrib/detect/BuryingLogic.java
@@ -2... | monitor enter/exit are reset ops | mebigfatguy_fb-contrib | train |
64267c8a1964a9ffae5def18ab0b57c41691acd0 | diff --git a/nats/aio/client.py b/nats/aio/client.py
index <HASH>..<HASH> 100644
--- a/nats/aio/client.py
+++ b/nats/aio/client.py
@@ -720,7 +720,7 @@ class Client:
# Publish with a reply
await nc.publish('hello', b'Hello World!', reply=inbox)
- # Publish with a reply
... | Fix Client.publish docstring typo (#<I>)
* Fix Client.publish docstring typo | nats-io_asyncio-nats | train |
8dadea02929902da094cf2b609a0d614b8ad4112 | diff --git a/library/src/main/java/com/wdullaer/swipeactionadapter/SwipeActionTouchListener.java b/library/src/main/java/com/wdullaer/swipeactionadapter/SwipeActionTouchListener.java
index <HASH>..<HASH> 100644
--- a/library/src/main/java/com/wdullaer/swipeactionadapter/SwipeActionTouchListener.java
+++ b/library/src/m... | Fixed bug with different row heights
When an item is deleted, it's view is being shrink and them the list is refreshed with the new data.
When the view is recycled it needs to be reseted to the right size.
It is now set to WRAP_CONTENT to match the content row size. | wdullaer_SwipeActionAdapter | train |
87c3ceb0262dcb313cbc7da2a4528c1205d5459c | diff --git a/openpnm/phases/MultiPhase.py b/openpnm/phases/MultiPhase.py
index <HASH>..<HASH> 100644
--- a/openpnm/phases/MultiPhase.py
+++ b/openpnm/phases/MultiPhase.py
@@ -105,21 +105,46 @@ class MultiPhase(GenericPhase):
self[f'pore.occupancy.{phase.name}'] = 0.0
self[f'throat.occu... | Enhance set_binary_partition_coef method in MultiPhase to accept ...
for calculating the partitioning coefficient | PMEAL_OpenPNM | train |
9c17a13b6ff353f2a5cf71a43b5740fec836f296 | diff --git a/Mutators/PostNameMutator.php b/Mutators/PostNameMutator.php
index <HASH>..<HASH> 100644
--- a/Mutators/PostNameMutator.php
+++ b/Mutators/PostNameMutator.php
@@ -8,7 +8,7 @@ class PostNameMutator extends MutatorController
{
public function in($value, $collection)
{
- $value['mutator_value'] = 'tes... | Correction, mutators are now copied when installed and published. | nickkuijpers_laravel-custom-post-manager | train |
5603c151d4ab9e25090d75a4fbdf3541f0ff9271 | diff --git a/gandi/cli/modules/sshkey.py b/gandi/cli/modules/sshkey.py
index <HASH>..<HASH> 100644
--- a/gandi/cli/modules/sshkey.py
+++ b/gandi/cli/modules/sshkey.py
@@ -12,6 +12,9 @@ class Sshkey(GandiModule):
if len(sshkeys) == 1:
return sshkeys[0]['id']
+ if not sshkeys:
+ ... | SSH key not found: specific error message
Don't say key name is ambiguous when it's actually not found | Gandi_gandi.cli | train |
9c760fd07c79d1c1519eace09e37e701d15267f5 | diff --git a/Kwf/Controller/Action/Cli/Web/ProcessControlController.php b/Kwf/Controller/Action/Cli/Web/ProcessControlController.php
index <HASH>..<HASH> 100644
--- a/Kwf/Controller/Action/Cli/Web/ProcessControlController.php
+++ b/Kwf/Controller/Action/Cli/Web/ProcessControlController.php
@@ -50,16 +50,18 @@ class Kwf... | only send mail if there is a msg to send | koala-framework_koala-framework | train |
7d1f2f141e54feaa7a3f6a3b198c90c69f5b0b4c | diff --git a/packages/enty-immutable/src/__test__/MapSchema-test.js b/packages/enty-immutable/src/__test__/MapSchema-test.js
index <HASH>..<HASH> 100644
--- a/packages/enty-immutable/src/__test__/MapSchema-test.js
+++ b/packages/enty-immutable/src/__test__/MapSchema-test.js
@@ -27,7 +27,6 @@ describe('MapSchema.options... | test: final code coverage for CompositeEntity | blueflag_enty | train |
ee9bc7ff3b93ba7fc87c6afe400f80edc9a76f1a | diff --git a/Swat/SwatCheckbox.php b/Swat/SwatCheckbox.php
index <HASH>..<HASH> 100644
--- a/Swat/SwatCheckbox.php
+++ b/Swat/SwatCheckbox.php
@@ -16,6 +16,7 @@ class SwatCheckbox extends SwatControl implements SwatState {
* Checkbox value
*
* The state of the widget.
+ *
* @var bool
*/
public $value ... | added one line to property docblock
svn commit r<I> | silverorange_swat | train |
d7dc9c25cbd3c3be6f6a2564e53734c8e0753aa2 | diff --git a/lib/transproc/registry.rb b/lib/transproc/registry.rb
index <HASH>..<HASH> 100644
--- a/lib/transproc/registry.rb
+++ b/lib/transproc/registry.rb
@@ -108,6 +108,12 @@ module Transproc
.each { |transproc| other.uses transproc, from: self }
end
+ # Adds all public methods from the in... | Support extending modules, that are included to `Registry`
When a new (non-registry) module is included to some registry,
it is authomatically extended to make all included methods
to be available as transprocs:
module Foo
def foo; end
end
module Bar
extend Transproc::Registry
include Foo
end
... | solnic_transproc | train |
d1747a91535d3ace7e3eb5be80c69fcaae370dc7 | diff --git a/test/extended/image_ecosystem/sample_repos.go b/test/extended/image_ecosystem/sample_repos.go
index <HASH>..<HASH> 100644
--- a/test/extended/image_ecosystem/sample_repos.go
+++ b/test/extended/image_ecosystem/sample_repos.go
@@ -174,7 +174,8 @@ var _ = g.Describe("[image_ecosystem][Slow] openshift sample ... | image-eco/dancer build's dependency downloads can become way too slow for our e2e timeouts | openshift_origin | train |
9843cb616af387a1da3a29ac1ae36d441debd756 | diff --git a/webroot/js/cake-wamp.js b/webroot/js/cake-wamp.js
index <HASH>..<HASH> 100644
--- a/webroot/js/cake-wamp.js
+++ b/webroot/js/cake-wamp.js
@@ -29,12 +29,12 @@ cakeWamp.onhangupListeners = [];
*/
cakeWamp.connect = function() {
- if (cakeWamp.options.debugWamp) {
+ if (cakeWamp.options && cakeWamp... | Check cakeWamp.options before checking properties
Without this check, and without options defined JavaScript errors occur. | WyriHaximus_Ratchet | train |
6135c4bc1469aca43434f7efe3f2b5ee7650b90c | diff --git a/lib/active_scaffold/actions/search.rb b/lib/active_scaffold/actions/search.rb
index <HASH>..<HASH> 100644
--- a/lib/active_scaffold/actions/search.rb
+++ b/lib/active_scaffold/actions/search.rb
@@ -25,7 +25,8 @@ module ActiveScaffold::Actions
unless query.empty?
columns = active_scaffold_co... | Add split terms option to search to disable splitting of search term and enabling to set a different separator (issue #<I>) | activescaffold_active_scaffold | train |
01fd85675200e6bde69bd613546ff8f7b31dcce1 | diff --git a/src/file/file.js b/src/file/file.js
index <HASH>..<HASH> 100644
--- a/src/file/file.js
+++ b/src/file/file.js
@@ -77,16 +77,13 @@ File.Prototype = function() {
return new window.Blob([data], {type: this.properties.content_type});
};
- // Assigns a data object from the temporary data store
- thi... | Cover file node updates and initialization by different API methods. | substance_nodes | train |
c8676e5e9db1226325ca0ed7771633fb0109878b | diff --git a/codec/gen.go b/codec/gen.go
index <HASH>..<HASH> 100644
--- a/codec/gen.go
+++ b/codec/gen.go
@@ -5,6 +5,7 @@ package codec
import (
"bytes"
+ "encoding/base64"
"errors"
"fmt"
"go/format"
@@ -12,6 +13,7 @@ import (
"io/ioutil"
"math/rand"
"reflect"
+ "regexp"
"strconv"
"strings"
"syn... | codecgen: support un-named types as fields of structs.
codecgen needs to generate a method for each type it sees.
It typically uses the value of reflect.Type.Name() or String().
However, un-named types will have String() returning a
description of the type e.g. "struct { X int }".
We will now handle un-named types by... | ugorji_go | train |
d76563171707b7d2fd7d220e0b809e6e1049ac3a | diff --git a/psamm/commands/tmfa.py b/psamm/commands/tmfa.py
index <HASH>..<HASH> 100644
--- a/psamm/commands/tmfa.py
+++ b/psamm/commands/tmfa.py
@@ -125,13 +125,14 @@ class TMFACommand(MetabolicMixin, SolverCommandMixin, ObjectiveMixin, Command):
exclude_lump_unkown = exclude_unkown_list.union(exclude_lump_list)
... | added option to give dgr-file or dgf-file | zhanglab_psamm | train |
755440bbbf07eaea3739f7420c644594d72021d5 | diff --git a/src/org/opencms/monitor/CmsMemoryMonitor.java b/src/org/opencms/monitor/CmsMemoryMonitor.java
index <HASH>..<HASH> 100644
--- a/src/org/opencms/monitor/CmsMemoryMonitor.java
+++ b/src/org/opencms/monitor/CmsMemoryMonitor.java
@@ -1,7 +1,7 @@
/*
* File : $Source: /alkacon/cvs/opencms/src/org/opencms/mo... | Added some Throwable handling in the monitor to prevent it stop after an error | alkacon_opencms-core | train |
9ff72a2783e030f11f9d1b9f0d30228f8331c3e7 | diff --git a/js/gatecoin.js b/js/gatecoin.js
index <HASH>..<HASH> 100644
--- a/js/gatecoin.js
+++ b/js/gatecoin.js
@@ -645,4 +645,20 @@ module.exports = class gatecoin extends Exchange {
'info': response,
};
}
+
+ async createUserWallet (code, address, params = {}) {
+ await this.lo... | gatecoin add createUserWallet method to create address record on exchange | ccxt_ccxt | train |
9562580798f9ecb54f4adf71afed421a7731dd3d | diff --git a/subsystem/render.js b/subsystem/render.js
index <HASH>..<HASH> 100644
--- a/subsystem/render.js
+++ b/subsystem/render.js
@@ -65,7 +65,7 @@ phoxy._.render =
var _obj = obj;
var _args = arguments;
- phoxy._.render.AfterENJSFinished(obj, ejs, data, rendered_callback);
+ phox... | Show exact place of cascade request failure in logs | phoxy_phoxy | train |
7e415c3ad0965f96d2351b0cefab9f4d5b577531 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -780,7 +780,7 @@ options = dict(
package_dir = {'leidenalg': os.path.join('src', 'leidenalg')},
packages = ['leidenalg'],
ext_modules = [leiden_ext],
- install_requires = ['python-igraph >= 0.9.0'],
+ install_requi... | fix: change dependency from python-igraph to igraph
Fixes #<I>. | vtraag_leidenalg | train |
e15b8426b1d8f7af04e829bbd6abe37c1b922918 | diff --git a/logical/framework/backend.go b/logical/framework/backend.go
index <HASH>..<HASH> 100644
--- a/logical/framework/backend.go
+++ b/logical/framework/backend.go
@@ -237,6 +237,11 @@ func (b *Backend) handleRootHelp() (*logical.Response, error) {
func (b *Backend) handleRevokeRenew(
req *logical.Request) ... | logical: Adding support for renew of Auth | hashicorp_vault | train |
fed20ab611223bc36a5b474d272801791dbb1b43 | diff --git a/ddl/ddl_db_test.go b/ddl/ddl_db_test.go
index <HASH>..<HASH> 100644
--- a/ddl/ddl_db_test.go
+++ b/ddl/ddl_db_test.go
@@ -318,6 +318,12 @@ LOOP:
}
c.Assert(err, IsNil, Commentf("err:%v", errors.ErrorStack(err)))
case <-ticker.C:
+ // When the server performance is particularly poor,
+ // the... | ddl: Fixes the timeout of run `make race` (#<I>)
* ddl: fixes the timeout of run `make race` operation | pingcap_tidb | train |
fe1121914c172c5ae4df059341c1794e106cc6c9 | diff --git a/indra/assemblers/graph_assembler.py b/indra/assemblers/graph_assembler.py
index <HASH>..<HASH> 100644
--- a/indra/assemblers/graph_assembler.py
+++ b/indra/assemblers/graph_assembler.py
@@ -1,8 +1,8 @@
from __future__ import absolute_import, print_function, unicode_literals
from builtins import dict, str... | Handle BE naming in GraphAssembler | sorgerlab_indra | train |
992c78ee223c0d64a63fb02f77caa85d3450766e | diff --git a/tsdb/engine.go b/tsdb/engine.go
index <HASH>..<HASH> 100644
--- a/tsdb/engine.go
+++ b/tsdb/engine.go
@@ -38,9 +38,6 @@ type Engine interface {
DeleteMeasurement(name string, seriesKeys []string) error
SeriesCount() (n int, err error)
- // PerformMaintenance will get called periodically by the store
... | Remove period shard maintenance goroutine
This is no longer used in tsm and just peridocially locks everything
for no reason now. | influxdata_influxdb | train |
b13647b162b5c6cd7396bfe550b8999f13805ecc | diff --git a/ChangeLog.txt b/ChangeLog.txt
index <HASH>..<HASH> 100644
--- a/ChangeLog.txt
+++ b/ChangeLog.txt
@@ -20,6 +20,7 @@
- Made Arguments extend ExpressionEvaluationContext.
- Refactored standard expression evaluation to allow execution of expressions outside templates
(with limitations, for example, no st... | Changed TemplateEngine.isInitialized() visibility to public,
added "setSelectionTarget" method to ExpressionEvaluationContext. | thymeleaf_thymeleaf | train |
68cb333033b6ca1a213925cdf0c6845e1915ba76 | diff --git a/py8583/py8583.py b/py8583/py8583.py
index <HASH>..<HASH> 100644
--- a/py8583/py8583.py
+++ b/py8583/py8583.py
@@ -247,7 +247,7 @@ class Iso8583:
p = self.ParseBitmap(p)
- for field in self.__Bitmap:
+ for field in sorted(self.__Bitmap):
# field 1 is parsed by the bit... | field parsing should be sorted | timgabets_bpc8583 | train |
c6ca6bcc856724b889cf14741d3956adfc15f588 | diff --git a/lib/flipper/adapter.rb b/lib/flipper/adapter.rb
index <HASH>..<HASH> 100644
--- a/lib/flipper/adapter.rb
+++ b/lib/flipper/adapter.rb
@@ -21,6 +21,10 @@ module Flipper
# To see an example adapter that this would wrap, checkout the [memory
# adapter included with flipper](https://github.com/jnunemaker... | Move instrumentation names to constants. | jnunemaker_flipper | train |
521c5691f919f18be139e31c525c4637e0dad9c5 | diff --git a/lib/targets.go b/lib/targets.go
index <HASH>..<HASH> 100644
--- a/lib/targets.go
+++ b/lib/targets.go
@@ -63,8 +63,12 @@ func (t Targets) SetHeader(header http.Header) {
for _, target := range t {
target.Header = make(http.Header, len(header))
for k, vs := range header {
- target.Header[k] = make... | Added special handling of Host header + test. Fixes #<I> | tsenart_vegeta | train |
35fef818279924f09676ea29fb763a315afe45c7 | diff --git a/bika/lims/browser/analysisrequest/add2.py b/bika/lims/browser/analysisrequest/add2.py
index <HASH>..<HASH> 100644
--- a/bika/lims/browser/analysisrequest/add2.py
+++ b/bika/lims/browser/analysisrequest/add2.py
@@ -273,7 +273,7 @@ class AnalysisRequestAddView(BrowserView):
logger.info("get_copy_fro... | Handle default contact for AR listing and Clients | senaite_senaite.core | train |
0e302f625378bae3772e53d4f83b72cd461b8fef | diff --git a/openstack_controller/datadog_checks/openstack_controller/api.py b/openstack_controller/datadog_checks/openstack_controller/api.py
index <HASH>..<HASH> 100644
--- a/openstack_controller/datadog_checks/openstack_controller/api.py
+++ b/openstack_controller/datadog_checks/openstack_controller/api.py
@@ -1,6 +... | Do not leak password (#<I>) | DataDog_integrations-core | train |
0731408906cb01a8e3a0785b6b87f99b39fd06de | diff --git a/test/simple.rb b/test/simple.rb
index <HASH>..<HASH> 100644
--- a/test/simple.rb
+++ b/test/simple.rb
@@ -380,19 +380,6 @@ module SimpleTestMethods
end
end
- def test_remove_nonexistent_index
- assert_raise(ArgumentError, ActiveRecord::StatementInvalid, ActiveRecord::JDBCError) do
- @con... | Scope a few more tests to only ActiveRecord 3+ to fix rails<I> build | jruby_activerecord-jdbc-adapter | train |
f8bd2b3f82bde5c9bceb64323a8cca79a51850a4 | diff --git a/test/unit/vagrant/util/ssh_test.rb b/test/unit/vagrant/util/ssh_test.rb
index <HASH>..<HASH> 100644
--- a/test/unit/vagrant/util/ssh_test.rb
+++ b/test/unit/vagrant/util/ssh_test.rb
@@ -86,6 +86,28 @@ describe Vagrant::Util::SSH do
.with(ssh_path, "vagrant@localhost", "-p", "2222", "-o", "LogLevel... | Add test for private key paths with '%' characters | hashicorp_vagrant | train |
3f9c357f8c04513b3f14374966070a9b3846f920 | diff --git a/src/main/java/mil/nga/geopackage/GeoPackageCoreImpl.java b/src/main/java/mil/nga/geopackage/GeoPackageCoreImpl.java
index <HASH>..<HASH> 100644
--- a/src/main/java/mil/nga/geopackage/GeoPackageCoreImpl.java
+++ b/src/main/java/mil/nga/geopackage/GeoPackageCoreImpl.java
@@ -388,7 +388,7 @@ public abstract c... | data type improvements for core types and type testing | ngageoint_geopackage-core-java | train |
068eead9a21ff650eb5e8fd2dd08b206234fefda | diff --git a/cli/release_notes/parser.py b/cli/release_notes/parser.py
index <HASH>..<HASH> 100644
--- a/cli/release_notes/parser.py
+++ b/cli/release_notes/parser.py
@@ -57,7 +57,7 @@ class ChangeNotesLinesParser(BaseChangeNotesParser):
self._in_section = False
def _process_line(self, line):
- r... | decode pull request notes as unicode | SFDO-Tooling_CumulusCI | train |
91583c7e8eb45490c088155174f9dfc2cac7812d | diff --git a/lib/apprepo.rb b/lib/apprepo.rb
index <HASH>..<HASH> 100644
--- a/lib/apprepo.rb
+++ b/lib/apprepo.rb
@@ -15,8 +15,8 @@ require_relative 'apprepo/setup'
require_relative 'apprepo/uploader'
require_relative 'apprepo/version'
-#require 'fastlane'
-#require 'fastlane_core'
+require 'fastlane'
+require 'fa... | added requirement as the Commander is not accesible otherwise | suculent_apprepo | train |
3a4ab0bf1dcf42debf0a5f2822d875aa014ae6e0 | diff --git a/init.php b/init.php
index <HASH>..<HASH> 100644
--- a/init.php
+++ b/init.php
@@ -14,7 +14,6 @@ if (version_compare(PHP_VERSION, '5.1.2') < 0) {
define('KINT_DIR', dirname(__FILE__));
define('KINT_PHP52', (version_compare(PHP_VERSION, '5.2') >= 0));
-define('KINT_PHP521', (version_compare(PHP_VERSION, ... | Remove KINT_PHP<I> special cases | kint-php_kint | train |
112de71d5323d72649bb9a0b0914be214c5debd2 | diff --git a/angr/analysis.py b/angr/analysis.py
index <HASH>..<HASH> 100644
--- a/angr/analysis.py
+++ b/angr/analysis.py
@@ -42,6 +42,40 @@ class AnalysisMeta(type):
registered_analyses[d.get('__analysis_name__', name)] = t
return t
+class AnalysisResults(object):
+ '''
+ An AnalysisResu... | created Project.results, which allows attribute-level access to analysis results | angr_angr | train |
3a46485216e6583f173ee3737eb36dd983358bde | diff --git a/nuve/nuveAPI/mdb/dataBase.js b/nuve/nuveAPI/mdb/dataBase.js
index <HASH>..<HASH> 100644
--- a/nuve/nuveAPI/mdb/dataBase.js
+++ b/nuve/nuveAPI/mdb/dataBase.js
@@ -31,7 +31,7 @@ var databaseUrl = config.nuve.dataBaseURL;
* };
*
*/
-var collections = ['rooms', 'tokens', 'services'];
+var collections = [... | Minor fix in data base collections creation (#<I>)
* Adding parameters to create offer when publishing
* Initializing erizo controller collection in DB | lynckia_licode | train |
d891c068b4e56f64b2a9ba2176f35699b24b2421 | diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/Call/MethodCallAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Expression/Call/MethodCallAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/Call/MethodCallAnalyzer.php
+++ b/src/Psalm/Internal/Analyzer/Sta... | Fix #<I> - add support for method templating without override | vimeo_psalm | train |
84091de3c29715598932bf9233d4860aa03b060e | diff --git a/quarkc/java.py b/quarkc/java.py
index <HASH>..<HASH> 100644
--- a/quarkc/java.py
+++ b/quarkc/java.py
@@ -104,8 +104,24 @@ shade_plugin = """
</dependencyReducedPomLocation>
<relocations>
<relocation>
- <pattern>com.acme.coyote</pattern>
- ... | *Actually* do shading. | datawire_quark | train |
f29fab03ce19ac8b20783027a9f9ac0465278437 | diff --git a/nolearn/lasagne/handlers.py b/nolearn/lasagne/handlers.py
index <HASH>..<HASH> 100644
--- a/nolearn/lasagne/handlers.py
+++ b/nolearn/lasagne/handlers.py
@@ -105,7 +105,8 @@ class _RestoreBestWeights:
print("Loaded best weights from epoch {} where {} was {}".format(
self.remem... | Simplify code by treating score as a special case of loss | dnouri_nolearn | train |
a8f4d5eca8690ee351385adda2e9c53d6b8d5ee2 | diff --git a/mod_pbxproj.py b/mod_pbxproj.py
index <HASH>..<HASH> 100755
--- a/mod_pbxproj.py
+++ b/mod_pbxproj.py
@@ -421,7 +421,6 @@ class PBXFrameworksBuildPhase(PBXBuildPhase):
class PBXResourcesBuildPhase(PBXBuildPhase):
pass
-
class PBXShellScriptBuildPhase(PBXBuildPhase):
@classmethod
def Crea... | Provide the possibility to insert a script build phase before the compile one | kronenthaler_mod-pbxproj | train |
680eb628f094f73b07342fc56c8ecd1291aec0da | diff --git a/src/plugins/jquery.cytoscape-edgehandles.js b/src/plugins/jquery.cytoscape-edgehandles.js
index <HASH>..<HASH> 100644
--- a/src/plugins/jquery.cytoscape-edgehandles.js
+++ b/src/plugins/jquery.cytoscape-edgehandles.js
@@ -257,7 +257,7 @@
$container.cytoscape(function(e){
cy = this;
- ... | remove console.logs since everything is working well now | cytoscape_cytoscape.js | train |
212826ef031f8e1b2e05818c7f552602ed0713fd | diff --git a/lib/weechat/channel.rb b/lib/weechat/channel.rb
index <HASH>..<HASH> 100644
--- a/lib/weechat/channel.rb
+++ b/lib/weechat/channel.rb
@@ -37,13 +37,13 @@ module Weechat
@buffer.command("/part #{self.name} #{reason}")
end
- def join
- @buffer.command("/join #{self.name}")
+ ... | added support for channel password wrt joining | dominikh_weechat-ruby | train |
4958032e9a05bccf97652d021994031b20dfc7ba | diff --git a/languagetool-core/src/main/java/org/languagetool/rules/ReadabilityRule.java b/languagetool-core/src/main/java/org/languagetool/rules/ReadabilityRule.java
index <HASH>..<HASH> 100644
--- a/languagetool-core/src/main/java/org/languagetool/rules/ReadabilityRule.java
+++ b/languagetool-core/src/main/java/org/l... | ReadabilityRule: solves bug in configuration | languagetool-org_languagetool | train |
a2eb4002839b2af29e7b3d39e0608bcafe6b52c1 | diff --git a/airflow/utils/dag_processing.py b/airflow/utils/dag_processing.py
index <HASH>..<HASH> 100644
--- a/airflow/utils/dag_processing.py
+++ b/airflow/utils/dag_processing.py
@@ -1216,7 +1216,7 @@ class DagFileProcessorManager(LoggingMixin): # pylint: disable=too-many-instanc
def emit_metrics(self):
... | Fix typo in doc of DagFileProcessorManager.emit_metrics (#<I>) | apache_airflow | train |
2db2764874c87c48c3b0d2956dd245bb258824af | diff --git a/cmd/notary/tuf.go b/cmd/notary/tuf.go
index <HASH>..<HASH> 100644
--- a/cmd/notary/tuf.go
+++ b/cmd/notary/tuf.go
@@ -87,7 +87,7 @@ func tufAdd(cmd *cobra.Command, args []string) {
targetPath := args[2]
repo, err := notaryclient.NewNotaryRepository(viper.GetString("baseTrustDir"), gun, hardcodedBaseU... | Only skip TLS certificate verification if this is explicitly specified in the config
Fixes #<I> | theupdateframework_notary | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.