hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
bb5bbdce1c6f64e0fc297cb425d0c0e7cdf0e52f
diff --git a/writer.go b/writer.go index <HASH>..<HASH> 100644 --- a/writer.go +++ b/writer.go @@ -584,6 +584,7 @@ func (self *SimpleH264Writer) prepare() (err error) { self.tswPMT = &TSWriter{ PID: 0x1000, + DiscontinuityIndicator: true, } self.tswPAT = &TSWriter{ PID: 0, @@ -591,6 +592,7 @@ func (self ...
add DiscontinuityIndicator for all PMT/H<I> in SimpleH<I>Writer
nareix_joy4
train
5e6a15021c448d0bb3d48518ecf30f04b68d67f5
diff --git a/padme/__init__.py b/padme/__init__.py index <HASH>..<HASH> 100644 --- a/padme/__init__.py +++ b/padme/__init__.py @@ -89,6 +89,7 @@ introduction. from __future__ import print_function, absolute_import, unicode_literals import logging +import sys _logger = logging.getLogger("padme") @@ -260,10 +261...
Add support for __nonzero__ on Python 2.x This patch adds support for __nonzero__ which is how Python 2.x spelled __bool__(). The code is identical otherwise.
zyga_padme
train
e8bdb6a66ec3103a2e6fb819a9a684df61d88dbb
diff --git a/src/Css/Style.php b/src/Css/Style.php index <HASH>..<HASH> 100644 --- a/src/Css/Style.php +++ b/src/Css/Style.php @@ -30,7 +30,7 @@ class Style { const CSS_IDENTIFIER = "-?[_a-zA-Z]+[_a-zA-Z0-9-]*"; - const CSS_INTEGER = "-?\d+"; + const CSS_INTEGER = "[+-]?\d+"; /** * Default fo...
Support multiple counters in `counter-reset` Just utilize the existing logic for `counter-increment`. Also support a `+` before the number, per spec.
dompdf_dompdf
train
67a20ee5ff6dd31a4280ae504ed859a373af3d89
diff --git a/src/base/Router.php b/src/base/Router.php index <HASH>..<HASH> 100644 --- a/src/base/Router.php +++ b/src/base/Router.php @@ -568,7 +568,7 @@ $this->session->setSessionKey("__CACHE__", $action); $cache = Cache::needCache(); $execute = true; - if (false !== ...
Cache only in no debug mode
psfs_core
train
a8300c15db99ce16496b264929274f3900501a7b
diff --git a/packages/firestore/rollup.config.exp.js b/packages/firestore/rollup.config.exp.js index <HASH>..<HASH> 100644 --- a/packages/firestore/rollup.config.exp.js +++ b/packages/firestore/rollup.config.exp.js @@ -54,7 +54,7 @@ const nodePlugins = function () { ] }), replace({ - 'process.env....
Update proto location for firestore-exp (#<I>)
firebase_firebase-js-sdk
train
047b0625897aeef8a36c62f7ce789f03232641a1
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ written to this path rather than the ultimate target directory. - Ensure that trace mode prints updating lines (e.g., the encode status) that do not end in newlines in a timely fashion. +- A...
Add property-based constructors to Title and Chapter for easier init in testing.
rsutphin_handbrake.rb
train
961c28c212038c55e1b62864d1db29d2bca6e5a8
diff --git a/camera.go b/camera.go index <HASH>..<HASH> 100644 --- a/camera.go +++ b/camera.go @@ -44,9 +44,16 @@ func (cam *Camera) centerCam(width, height, lerp float32, space *SpaceComponent) cam.to.Y += ((space.Position.Y + space.Height/2) - (cam.to.Y + height/2)) * lerp if !(cam.to.X+width >= maxX) && !(cam....
camera: remove floating point errors Uses a solution that *rounds to zero places* using a float -> int -> float cast. I do not quite know how fast this will go, but it shouldn't be an issue.
EngoEngine_engo
train
b85b3111e1bb8020322435ab45f184b3375817d8
diff --git a/client_appengine_exclusions.go b/client_appengine_exclusions.go index <HASH>..<HASH> 100644 --- a/client_appengine_exclusions.go +++ b/client_appengine_exclusions.go @@ -42,8 +42,8 @@ func SetLuaPath(lpath string) { // // This method is only supported by Aerospike 3 servers. // If the policy is nil, the...
Remove ToValueArray and ToValueSlice methods to discourage such suboptimal use. Changes QueryAggregate command signature to remove the need for those methods.
aerospike_aerospike-client-go
train
7ac929405511ec2e1f64fbcb80a1b409bd7e8b3f
diff --git a/lib/veritas/optimizer/algebra/restriction.rb b/lib/veritas/optimizer/algebra/restriction.rb index <HASH>..<HASH> 100644 --- a/lib/veritas/optimizer/algebra/restriction.rb +++ b/lib/veritas/optimizer/algebra/restriction.rb @@ -1,9 +1,22 @@ module Veritas class Optimizer module Algebra + + # Ab...
Added YARD docs for Optimizer::Algebra::Restriction
dkubb_axiom
train
0b8d81d1d311d8f15be0a3fa0202a3dfe9a0219b
diff --git a/lib/updater/rules.js b/lib/updater/rules.js index <HASH>..<HASH> 100644 --- a/lib/updater/rules.js +++ b/lib/updater/rules.js @@ -21,7 +21,7 @@ module.exports = function(config){ return { run: function runUpdater(provider){ - var provider = computeProvider(provider, config); + provider ...
Fixing jshint warnings.
remusao_tldts
train
51503756b0aabf634a2359b6a6948e565dabd131
diff --git a/intranet/apps/seniors/views.py b/intranet/apps/seniors/views.py index <HASH>..<HASH> 100644 --- a/intranet/apps/seniors/views.py +++ b/intranet/apps/seniors/views.py @@ -9,6 +9,7 @@ from django.shortcuts import redirect, render from .forms import SeniorForm from .models import Senior from ..auth.decorat...
Remove Reference to Cache in Senior View
tjcsl_ion
train
d12a7fc7af449c62efe000de5bbc31a48df85914
diff --git a/src/Command/InfectionCommand.php b/src/Command/InfectionCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/InfectionCommand.php +++ b/src/Command/InfectionCommand.php @@ -210,11 +210,12 @@ final class InfectionCommand extends BaseCommand return 1; } + /** @var Infectio...
Replace usage of parameters from the container with the configuration (#<I>) As per the description, in order to: - reduce the number of parameters registered to the container - avoid unnecessary redundancy
infection_infection
train
ceda3fde003f44263d25482f7122d98ec6e6ab50
diff --git a/salt/modules/pip.py b/salt/modules/pip.py index <HASH>..<HASH> 100644 --- a/salt/modules/pip.py +++ b/salt/modules/pip.py @@ -88,6 +88,7 @@ import shutil import sys import tempfile from functools import wraps +from inspect import getfullargspec # Import Salt libs import salt.utils.data @@ -133,7 +13...
add full support for when missing kwargs or args
saltstack_salt
train
8010a23b3413fda6ae168479206cfc90156a3fdf
diff --git a/post-processor/amazon-import/post-processor.go b/post-processor/amazon-import/post-processor.go index <HASH>..<HASH> 100644 --- a/post-processor/amazon-import/post-processor.go +++ b/post-processor/amazon-import/post-processor.go @@ -8,6 +8,7 @@ import ( "log" "os" "strings" + "time" "github.com/...
Adding retry for ImportImage call in amazon-import post-processor.
hashicorp_packer
train
a18c3d0530ef0d9e0877b2c4983e7966dafe878d
diff --git a/src/Service/User.php b/src/Service/User.php index <HASH>..<HASH> 100644 --- a/src/Service/User.php +++ b/src/Service/User.php @@ -350,8 +350,7 @@ class User extends UserModel */ protected function logout() { - $this->attributes = []; - $this->setAttributeSource('*', static::AT...
refactor(User): 简化调用
miaoxing_plugin
train
d166bbab44cc177db540fdd0dd357ee910547abd
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -684,11 +684,6 @@ function processPaths(container, containerName, options, requestBodyCache, opena if ((common.httpVerbs.indexOf(method) >= 0) || (method === 'x-amazon-apigateway-any-method')) { v...
make x-servers override servers based on schemes+host+basePath
wework_speccy
train
f673b937940b6bb905065c403d15c0f6a43f8db6
diff --git a/shared/common-adapters/markdown.native.js b/shared/common-adapters/markdown.native.js index <HASH>..<HASH> 100644 --- a/shared/common-adapters/markdown.native.js +++ b/shared/common-adapters/markdown.native.js @@ -145,7 +145,7 @@ function messageCreateComponent(style, allowFontScaling) { return ( ...
emojis should be <I> not <I> (#<I>)
keybase_client
train
f79e8726a459b4b7576ad443518da4e089e2cbd0
diff --git a/modelx/core/base.py b/modelx/core/base.py index <HASH>..<HASH> 100644 --- a/modelx/core/base.py +++ b/modelx/core/base.py @@ -300,6 +300,14 @@ class LazyEvalDict(LazyEvalChain, UserDict): def _update_data(self): pass + def set_item(self, name, value, skip_self=False): + UserDict._...
FAC: Created set_item and del_item for convenience
fumitoh_modelx
train
def3f3586f77ebfdec148e7f81cb68f5180243d2
diff --git a/bbc_tracklist.py b/bbc_tracklist.py index <HASH>..<HASH> 100755 --- a/bbc_tracklist.py +++ b/bbc_tracklist.py @@ -23,34 +23,33 @@ ## tracklistings for mp3s? from __future__ import print_function import os -import urllib import sys +import lxml.html import mediafile -from bs4 import BeautifulSoup +im...
Update open_listing_page() It now takes the trailing part of a URL, so that we can use it to retrieve the various pages we need to pull all of the tracklisting info (e.g. segments.inc, broadcasts.inc). Also switch it to use requests instead of urllib and lxml instead of BeautifulSoup.
StevenMaude_bbc-radio-tracklisting-downloader
train
ff5be0e63bf22826c522ebb3a943d581912ff492
diff --git a/examples/echo/main.go b/examples/echo/main.go index <HASH>..<HASH> 100644 --- a/examples/echo/main.go +++ b/examples/echo/main.go @@ -6,7 +6,9 @@ import ( "fmt" "io/ioutil" "log" + "math/rand" "strings" + "time" golog "github.com/ipfs/go-log" host "github.com/libp2p/go-libp2p-host" @@ -62,6 +...
seed rand for generation of peer IDs in echo example
libp2p_go-libp2p
train
e425402e014375266250dd16cbeea51d9a216768
diff --git a/src/main/java/com/ning/billing/recurly/model/SubscriptionUpdate.java b/src/main/java/com/ning/billing/recurly/model/SubscriptionUpdate.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/ning/billing/recurly/model/SubscriptionUpdate.java +++ b/src/main/java/com/ning/billing/recurly/model/SubscriptionU...
Add support for updating subscription at next bill date
killbilling_recurly-java-library
train
4cfe36b787808a7c8c60312c8cb92ab0b54af1aa
diff --git a/handlers.go b/handlers.go index <HASH>..<HASH> 100644 --- a/handlers.go +++ b/handlers.go @@ -69,7 +69,7 @@ func (dht *IpfsDHT) handleGetValue(ctx context.Context, p peer.ID, pmes *pb.Mess for _, pi := range closerinfos { log.Debugf("handleGetValue returning closer peer: '%s'", pi.ID) if len(pi....
dht: degrade 'no addresses' from error to warning to reduce confusion as it is a bug with unknown source but end users don't have to see it as it isn't critical
libp2p_go-libp2p-kad-dht
train
6fb6f29f8a919f25a313df54d850cc0102bbec6d
diff --git a/src/playback-engine/playback-engine.js b/src/playback-engine/playback-engine.js index <HASH>..<HASH> 100644 --- a/src/playback-engine/playback-engine.js +++ b/src/playback-engine/playback-engine.js @@ -238,15 +238,22 @@ export default class Engine { _getHLSInfo(hls) { const overallBufferLength = ...
Adding more safety guard in method for getting HLS info
wix_playable
train
0f93600631a94624e022891ae71313aa74a6e100
diff --git a/test/integration/test_report.py b/test/integration/test_report.py index <HASH>..<HASH> 100644 --- a/test/integration/test_report.py +++ b/test/integration/test_report.py @@ -132,6 +132,7 @@ def test_report_html_format(builddir): path = path / "wily_report" / "index.html" assert path.exists() + ...
feat: added tests for html content
tonybaloney_wily
train
b29176ef3acded998ae64050eddebdf919ce7f95
diff --git a/classes/fields/currency.php b/classes/fields/currency.php index <HASH>..<HASH> 100644 --- a/classes/fields/currency.php +++ b/classes/fields/currency.php @@ -240,10 +240,6 @@ class PodsField_Currency extends PodsField_Number { */ public function validate( $value, $name = null, $options = null, $fields...
Refactor to re-use parent methods
pods-framework_pods
train
57348abb1f4d00a3015d0e7f7a5f0df3c6b59481
diff --git a/doc/whats-new.rst b/doc/whats-new.rst index <HASH>..<HASH> 100644 --- a/doc/whats-new.rst +++ b/doc/whats-new.rst @@ -33,6 +33,14 @@ v0.11.1 (unreleased) Breaking changes ~~~~~~~~~~~~~~~~ +- Time bounds variables are now also decoded according to CF conventions + (:issue:`2565`). The previous behavior...
CF: also decode time bounds when available (#<I>) * CF: also decode time bounds when available * Fix failing test when cftime not present and what's new * Fix windows * Reviews * Reviews 2
pydata_xarray
train
7d49253f40c19af1cb34ff65657ed1fc3c48d6ca
diff --git a/auth/ldap/lib.php b/auth/ldap/lib.php index <HASH>..<HASH> 100644 --- a/auth/ldap/lib.php +++ b/auth/ldap/lib.php @@ -410,6 +410,11 @@ function auth_sync_users ($bulk_insert_records = 1000, $do_updates=1) { print "connecting to ldap\n"; $ldapconnection = auth_ldap_connect(); + if (!$...
Here's a little patch for auth/ldap/lib.php... just stops some errors from popping up. Credit: Alastair Pharo <<EMAIL>>
moodle_moodle
train
1c6423b185e3f3a2d8f700511ddb82ac4131b50b
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -49,9 +49,23 @@ use Rack::UserLocale, :accepted_locales => [:de, :en, :es, :fr, :ja, :pt, :zh, ( If this option is supplied the the users locale will either be set to one of the accepted locales in the array, otherwise ...
Removing previous changes as they were incorrect. Removing previous changes as they were incorrect due to a lack of knowing what env["SCRIPT_NAME"] did. Also updated the README.
schinery_rack-user-locale
train
1c06ad4208dc543a53fb43b6255ddc25f95c8061
diff --git a/lib/Webforge/Framework/Package/ProjectPackage.php b/lib/Webforge/Framework/Package/ProjectPackage.php index <HASH>..<HASH> 100644 --- a/lib/Webforge/Framework/Package/ProjectPackage.php +++ b/lib/Webforge/Framework/Package/ProjectPackage.php @@ -8,6 +8,9 @@ use Webforge\Setup\MissingConfigVariableException...
complete coverage for ProjectPackage, implement staging and devel
webforge-labs_webforge
train
3a72e3446a798e8400b390cddcb539895eabaddb
diff --git a/src/vimpdb/tests/test_proxy.py b/src/vimpdb/tests/test_proxy.py index <HASH>..<HASH> 100644 --- a/src/vimpdb/tests/test_proxy.py +++ b/src/vimpdb/tests/test_proxy.py @@ -1,3 +1,6 @@ +import os + + def test_ProxyToVim_instantiation(): from vimpdb.proxy import ProxyToVim to_vim = ProxyToVim() @@ -...
test for showFileAtLine
gotcha_vimpdb
train
373d946a069918c8b170266b6eca9ffbe14dd947
diff --git a/cloudfoundry-client-reactor/src/test/java/org/cloudfoundry/reactor/client/v2/spaces/ReactorSpacesTest.java b/cloudfoundry-client-reactor/src/test/java/org/cloudfoundry/reactor/client/v2/spaces/ReactorSpacesTest.java index <HASH>..<HASH> 100644 --- a/cloudfoundry-client-reactor/src/test/java/org/cloudfoundr...
Polishing [resolves #<I>]
cloudfoundry_cf-java-client
train
6a23182fdaecae4094dc70ec54bb3e5d782028f7
diff --git a/list.go b/list.go index <HASH>..<HASH> 100644 --- a/list.go +++ b/list.go @@ -7,15 +7,17 @@ type List struct { tail *List } +// An empty list shared by all lists +var nilList = &List{} + // NewList returns a new, empty list func NewList() *List { - var list List - return &list + retur...
Share a single empty container across instances Persistent data structures can share a single instance of the empty container because nobody will ever modify it. Implement this for List and Map. This simplifies the code since we can avoid checking for nil pointers. It should also reduce memory consumption somewhat.
mndrix_ps
train
2de90216bf1fcdd1019ecfea0750f22bccbe9c9f
diff --git a/crispy_forms/templatetags/crispy_forms_filters.py b/crispy_forms/templatetags/crispy_forms_filters.py index <HASH>..<HASH> 100644 --- a/crispy_forms/templatetags/crispy_forms_filters.py +++ b/crispy_forms/templatetags/crispy_forms_filters.py @@ -1,11 +1,13 @@ # -*- coding: utf-8 -*- from django.conf impo...
Fixing error logging on |as_crispy_field Avoid hiding errors away that can cause production problems, this should fix #<I>.
django-crispy-forms_django-crispy-forms
train
57d37bc9e8a35e79aa65a71b8a0d6145c2d7d1f0
diff --git a/chef/lib/chef/cookbook.rb b/chef/lib/chef/cookbook.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/cookbook.rb +++ b/chef/lib/chef/cookbook.rb @@ -332,7 +332,7 @@ class Chef def preferred_filename_on_disk_location(node, segment, filename, current_filepath=nil) manifest_record = preferr...
Fixing checksum generation refactor
chef_chef
train
0b4e32c7d3565aa4d60f126374b52bcbe09768ac
diff --git a/src/views/Flat.js b/src/views/Flat.js index <HASH>..<HASH> 100644 --- a/src/views/Flat.js +++ b/src/views/Flat.js @@ -523,11 +523,12 @@ FlatView.prototype.projection = function() { /** * Return whether the view frustum intersects the given rectangle. + * * This function may return false positives, b...
Fix the documentation of the View#intersects methods. They were documented as receiving a vec4[], but it's actually a vec3[] for RectilinearView and a vec2[] for FlatView.
google_marzipano
train
9e63f8a152a434156563d79ecd9f927344146054
diff --git a/django_xworkflows/compat.py b/django_xworkflows/compat.py index <HASH>..<HASH> 100644 --- a/django_xworkflows/compat.py +++ b/django_xworkflows/compat.py @@ -38,6 +38,11 @@ else: c.__unicode__ = c.__str__ return c +# New in 1.6: transaction.atomic() +if dj_major_minor >= (1, 6): + ...
Fix tests for Django<I>
rbarrois_django_xworkflows
train
9e0e1f583e5e9df2fc60303d532e1d8a027761ab
diff --git a/tests/unit/mixins/dynamic-proxy-actions-test.js b/tests/unit/mixins/dynamic-proxy-actions-test.js index <HASH>..<HASH> 100644 --- a/tests/unit/mixins/dynamic-proxy-actions-test.js +++ b/tests/unit/mixins/dynamic-proxy-actions-test.js @@ -29,7 +29,7 @@ test('Mixin throws assertion failed exception (while \'...
Add additional dynamic-proxy-actions mixin tests
Flexberry_ember-flexberry-gis
train
833895b041faae2e5f109146d3c781cf18d1175e
diff --git a/tests/test_chain.py b/tests/test_chain.py index <HASH>..<HASH> 100644 --- a/tests/test_chain.py +++ b/tests/test_chain.py @@ -8,6 +8,7 @@ import pyethereum.transactions as transactions import pyethereum.utils as utils import pyethereum.rlp as rlp import pyethereum.trie as trie +import pyethereum.utils a...
added verbosity to replay test
ethereum_pyethereum
train
63125c6cdb172f8c99996357d502662d071d13f8
diff --git a/c7n/filters/iamaccess.py b/c7n/filters/iamaccess.py index <HASH>..<HASH> 100644 --- a/c7n/filters/iamaccess.py +++ b/c7n/filters/iamaccess.py @@ -241,7 +241,7 @@ class CrossAccountAccessFilter(Filter): whitelist={'type': 'array', 'items': {'type': 'string'}}, whitelist_vpce_from=ValuesFro...
iam access filter white list speling typo (#<I>)
cloud-custodian_cloud-custodian
train
c46866c9a5a9e82971403f4a995e1772f09ef845
diff --git a/client/boot/index.js b/client/boot/index.js index <HASH>..<HASH> 100644 --- a/client/boot/index.js +++ b/client/boot/index.js @@ -127,7 +127,7 @@ function setUpContext( reduxStore ) { } function loadDevModulesAndBoot() { - if ( config.isEnabled( 'render-visualizer' ) ) { + if ( process.env.NODE_ENV ===...
Framework: Make sure devmodules chunk is not generated for production env
Automattic_wp-calypso
train
09045a3a4faaf8105fee8bf3567b9d5e0a01afa5
diff --git a/tests/frontend/org/voltdb_testprocs/regressionsuites/SaveRestoreBase.java b/tests/frontend/org/voltdb_testprocs/regressionsuites/SaveRestoreBase.java index <HASH>..<HASH> 100644 --- a/tests/frontend/org/voltdb_testprocs/regressionsuites/SaveRestoreBase.java +++ b/tests/frontend/org/voltdb_testprocs/regress...
Try and fix periodic failures deleting files
VoltDB_voltdb
train
7af4b4cc816fa867f276a28c214c3f5cd054e7b2
diff --git a/pipes/securitygroup/create_securitygroup.py b/pipes/securitygroup/create_securitygroup.py index <HASH>..<HASH> 100644 --- a/pipes/securitygroup/create_securitygroup.py +++ b/pipes/securitygroup/create_securitygroup.py @@ -86,26 +86,44 @@ class SpinnakerSecurityGroup: logging.info("Successfully...
fix: Update main to use newer Class methods See also: PSOBAT-<I>
foremast_foremast
train
63d9b0249a22c82c5b84a53a44bb39d5779ced74
diff --git a/src/extensions/scratch3_ev3/index.js b/src/extensions/scratch3_ev3/index.js index <HASH>..<HASH> 100644 --- a/src/extensions/scratch3_ev3/index.js +++ b/src/extensions/scratch3_ev3/index.js @@ -1290,11 +1290,14 @@ class Scratch3Ev3Blocks { /** * Call a callback for each motor indexed by the pr...
Removed a TODO and clarified with a better comment.
LLK_scratch-vm
train
aecd8bf09aea112161486394e80ec06f13416d93
diff --git a/views/js/tools/browser/tester.js b/views/js/tools/browser/tester.js index <HASH>..<HASH> 100644 --- a/views/js/tools/browser/tester.js +++ b/views/js/tools/browser/tester.js @@ -17,16 +17,25 @@ */ define([ 'jquery', + 'lodash', 'i18n', 'util/url', + 'core/logger', + 'core/request...
feat: use browserlist to check if the browser is fully supported
oat-sa_extension-tao-clientdiag
train
71d70f676b942ac1355edd3fa2b9eb7e5eeb091f
diff --git a/lib/EntityManager.js b/lib/EntityManager.js index <HASH>..<HASH> 100644 --- a/lib/EntityManager.js +++ b/lib/EntityManager.js @@ -55,7 +55,7 @@ function EntityManager (options = {}) { */ this._options = Object.assign({}, { camelCase: true - }, options) + }, options) } /**
fix code standards linting issue
noffle_nano-ecs
train
3dba18fb84dbb0b125496ecd74cac791b4d6bf39
diff --git a/hbmqtt/codecs.py b/hbmqtt/codecs.py index <HASH>..<HASH> 100644 --- a/hbmqtt/codecs.py +++ b/hbmqtt/codecs.py @@ -22,7 +22,10 @@ def bytes_to_int(data): :param data: byte sequence :return: integer value """ - return int.from_bytes(data, byteorder='big') + if isinstance(data, int): + ...
Fix is parameter is already an int
beerfactory_hbmqtt
train
cc4e9e14c1c5f86d3436b3343573ddab27cadebf
diff --git a/field-iteration.go b/field-iteration.go index <HASH>..<HASH> 100644 --- a/field-iteration.go +++ b/field-iteration.go @@ -1,6 +1,7 @@ package crud import ( + "fmt" "github.com/azer/crud/meta" "github.com/azer/crud/sql" "github.com/azer/snakecase" @@ -9,6 +10,10 @@ import ( func NewFieldIterati...
Add support for reading table columns from pointers
azer_crud
train
ab481145314e952a97df578db1fcabf8b6996f76
diff --git a/src/Composer/Autoload/ClassMapGenerator.php b/src/Composer/Autoload/ClassMapGenerator.php index <HASH>..<HASH> 100644 --- a/src/Composer/Autoload/ClassMapGenerator.php +++ b/src/Composer/Autoload/ClassMapGenerator.php @@ -40,42 +40,49 @@ class ClassMapGenerator /** * Iterate over all files in th...
[ClassMapGenerator] Improve error message when the path does not exist i.e. the composer.json has a typo
mothership-ec_composer
train
80aabbd77ad50b6ce021227e4114c89461fa6c97
diff --git a/src/main/java/hprose/io/unserialize/StringBuilderUnserializer.java b/src/main/java/hprose/io/unserialize/StringBuilderUnserializer.java index <HASH>..<HASH> 100644 --- a/src/main/java/hprose/io/unserialize/StringBuilderUnserializer.java +++ b/src/main/java/hprose/io/unserialize/StringBuilderUnserializer.ja...
Improved StringBuilder unserializer
hprose_hprose-java
train
c1ce884c434043623ff79767e8a702b2fdd7f90f
diff --git a/emit/router.py b/emit/router.py index <HASH>..<HASH> 100644 --- a/emit/router.py +++ b/emit/router.py @@ -318,4 +318,4 @@ class Router(object): if hasattr(func, 'name'): # celery-decorated function return func.name - return func.func_name + return func.__name__ diff -...
improve compatibility with py3k
BrianHicks_emit
train
800913897c7f76de5021f71bf3eb410e21fa1ef6
diff --git a/src/streamlink_cli/output.py b/src/streamlink_cli/output.py index <HASH>..<HASH> 100644 --- a/src/streamlink_cli/output.py +++ b/src/streamlink_cli/output.py @@ -97,8 +97,7 @@ class PlayerOutput(Output): @property def running(self): sleep(0.5) - self.player.poll() - return ...
tests: speed up the cmdline tests When #<I> was merged it added some possible delay in killing the player process, this delay was also experienced in the tests. By mocking the expected return values of `poll()`, the delay can be avoided and the runtime of the tests reduced from around <I> seconds to 6 seconds.
streamlink_streamlink
train
869ab222e8cde795aa82038effe5e6b58ee0d81f
diff --git a/tasks/handlebars.js b/tasks/handlebars.js index <HASH>..<HASH> 100644 --- a/tasks/handlebars.js +++ b/tasks/handlebars.js @@ -29,7 +29,7 @@ module.exports = function(grunt) { grunt.verbose.writeflags(options, 'Options'); - var compiled, srcFiles, src, filename; + var compiled, src, filen...
remove expandFiles, grunt does it for us now
gruntjs_grunt-contrib-handlebars
train
f6155ea8c5caa8976681d06224d4d0f2062a5b2e
diff --git a/builtin/logical/ssh/path_sign.go b/builtin/logical/ssh/path_sign.go index <HASH>..<HASH> 100644 --- a/builtin/logical/ssh/path_sign.go +++ b/builtin/logical/ssh/path_sign.go @@ -388,6 +388,7 @@ func (b *creationBundle) sign() (retCert *ssh.Certificate, retErr error) { if r := recover(); r != nil { e...
If recovering from panic ensure the cert returned is nil
hashicorp_vault
train
d1c30e1e38c3089fc473b75e00df7acd9f761a9a
diff --git a/mtools/mplotqueries/plottypes/rsstate_type.py b/mtools/mplotqueries/plottypes/rsstate_type.py index <HASH>..<HASH> 100644 --- a/mtools/mplotqueries/plottypes/rsstate_type.py +++ b/mtools/mplotqueries/plottypes/rsstate_type.py @@ -1,4 +1,4 @@ -from mtools.mplotqueries.plottypes.base_type import BasePlotType...
fixed copy&paste bug, wrong import for rsstate plots.
rueckstiess_mtools
train
9917fcaa81e803da0f61a274459497e3e3055278
diff --git a/lib/i18n_docs/translations.rb b/lib/i18n_docs/translations.rb index <HASH>..<HASH> 100644 --- a/lib/i18n_docs/translations.rb +++ b/lib/i18n_docs/translations.rb @@ -33,7 +33,7 @@ module I18nDocs files = @settings['files'] files.each do |target_file, url| #ensure .yml filename - ...
Fix rubocop Style/SelfAssignment
renuo_i18n-docs
train
9a582b493b6ce371ee45822339adc9bee867056f
diff --git a/src/java/voldemort/VoldemortAdminTool.java b/src/java/voldemort/VoldemortAdminTool.java index <HASH>..<HASH> 100644 --- a/src/java/voldemort/VoldemortAdminTool.java +++ b/src/java/voldemort/VoldemortAdminTool.java @@ -800,9 +800,8 @@ public class VoldemortAdminTool { + admin...
allows fetch-keys to fetch keys from system stores
voldemort_voldemort
train
30b40051ce9a7dce69d7481fb17c05e583117fa4
diff --git a/nat/utils.py b/nat/utils.py index <HASH>..<HASH> 100644 --- a/nat/utils.py +++ b/nat/utils.py @@ -39,17 +39,14 @@ encoders["plus"] = ("+", "%2B") # When Zotero imports from pubmed, it uses the "&lt;" for "<" and "&gt;" for ">" # so we also replace these. -encoders["zotLT" ] = ("&lt;", "%3...
Debugging the ID to file name conversion.
BlueBrain_nat
train
e26fbca88cb6c3b950bd52879a193de85feef7c8
diff --git a/xarray/tests/test_backends.py b/xarray/tests/test_backends.py index <HASH>..<HASH> 100644 --- a/xarray/tests/test_backends.py +++ b/xarray/tests/test_backends.py @@ -775,7 +775,9 @@ class CFEncodedBase(DatasetIOBase): ds = Dataset({'x': ('y', np.arange(10.0))}) kwargs = dict(encoding={'x'...
Fix another OS X test that can be flakey on Azure (#<I>)
pydata_xarray
train
194f8d761f7039df7a9a7c7e2f266a3cce48bc8a
diff --git a/search/api.py b/search/api.py index <HASH>..<HASH> 100644 --- a/search/api.py +++ b/search/api.py @@ -81,12 +81,9 @@ def course_discovery_search(search_term=None, size=20, from_=0, field_dictionary """ Course Discovery activities against the search engine index of course details """ - # W...
Remove hardcoded field filter to allow custom discovery search fields
edx_edx-search
train
9087541fd5fb255a58c8a81f8077c1119cf21e80
diff --git a/appium/device.go b/appium/device.go index <HASH>..<HASH> 100644 --- a/appium/device.go +++ b/appium/device.go @@ -16,7 +16,6 @@ type mobileSession interface { Reset() error PerformTouch(actions []mobile.Action) error ReplaceValue(elementID, newValue string) error - Swipe(touch_count, start_x, start_y...
Swipe should not be required by mobile.session interface
sclevine_agouti
train
97fb82fdf57f3b45a252d1a42d3d235f2f10a186
diff --git a/Gumdrop/FileHandler.php b/Gumdrop/FileHandler.php index <HASH>..<HASH> 100644 --- a/Gumdrop/FileHandler.php +++ b/Gumdrop/FileHandler.php @@ -49,6 +49,19 @@ class FileHandler } } $files = array_merge($files, glob($location . '/*.{md,markdown}', GLOB_BRACE)); + $conf = ...
Adding a blacklist mechanism on markdown files
simonjodet_gumdrop
train
845a45487c3862dffcf0402fbcb1b69764bea7de
diff --git a/horizon/static/horizon/js/horizon.modals.js b/horizon/static/horizon/js/horizon.modals.js index <HASH>..<HASH> 100644 --- a/horizon/static/horizon/js/horizon.modals.js +++ b/horizon/static/horizon/js/horizon.modals.js @@ -95,7 +95,7 @@ horizon.addInitFunction(function() { data: $form.serialize(), ...
Allow "Working" in spinner to be translatable "Working" in modal spinner from creating new network Change-Id: Iecd<I>aa<I>f6a<I>e<I>b3a6df<I>bd<I> Closes-Bug:<I>
openstack_horizon
train
f9b9f35911328355ca37b2fae4eb4a9d11d78251
diff --git a/test/integration/server/test_development_scenario.js b/test/integration/server/test_development_scenario.js index <HASH>..<HASH> 100644 --- a/test/integration/server/test_development_scenario.js +++ b/test/integration/server/test_development_scenario.js @@ -23,7 +23,8 @@ describe('development scenarios: in...
dev scenarios integration test: crisper assertions
thehelp_cluster
train
53b344c0870f4497e007f5468c9e10455388577b
diff --git a/lib/aggcat/client.rb b/lib/aggcat/client.rb index <HASH>..<HASH> 100644 --- a/lib/aggcat/client.rb +++ b/lib/aggcat/client.rb @@ -126,6 +126,7 @@ module Aggcat def credentials(institution_id, username, password) institution = institution(institution_id) + raise ArgumentError.new("institu...
added invalid intitution_id validation
cloocher_aggcat
train
e115f58622f39b9069625384a2c6e7dca72980ed
diff --git a/lib/fluent/plugin/in_http.rb b/lib/fluent/plugin/in_http.rb index <HASH>..<HASH> 100644 --- a/lib/fluent/plugin/in_http.rb +++ b/lib/fluent/plugin/in_http.rb @@ -148,6 +148,8 @@ class HttpInput < Input @idle = 0 @km.add(self) + + @remote_port, @remote_addr = *Socket.unpack_sockaddr_in(...
in_http: set headers as HTTP_* and remote address ad REMOTE_ADDR to the params
fluent_fluentd
train
7bf4a2180d361f213a30e81c9d13a87f8b4aceac
diff --git a/activejdbc/src/main/java/org/javalite/activejdbc/Model.java b/activejdbc/src/main/java/org/javalite/activejdbc/Model.java index <HASH>..<HASH> 100644 --- a/activejdbc/src/main/java/org/javalite/activejdbc/Model.java +++ b/activejdbc/src/main/java/org/javalite/activejdbc/Model.java @@ -694,7 +694,7 @@ publi...
Issue <I>: Add ability to provide more content before last tag in XML and last closing brace in Json, <URL>
javalite_activejdbc
train
ad00026316d8f5344e5fb206311796739810a6dc
diff --git a/Auth/OpenID/Consumer.php b/Auth/OpenID/Consumer.php index <HASH>..<HASH> 100644 --- a/Auth/OpenID/Consumer.php +++ b/Auth/OpenID/Consumer.php @@ -1323,43 +1323,18 @@ class Auth_OpenID_GenericConsumer { function _createCheckAuthRequest($message) { $signed = $message->getArg(Auth_OpenID_OP...
[project @ Send all fields in check_authentication, not just signed ones. (OpenID 2 compliance)]
openid_php-openid
train
342cd348ba607cf4012a4ef0fc4ec350964cae55
diff --git a/lib/taaze/comments.rb b/lib/taaze/comments.rb index <HASH>..<HASH> 100644 --- a/lib/taaze/comments.rb +++ b/lib/taaze/comments.rb @@ -101,14 +101,18 @@ module Taaze # http://www.taaze.tw/container_zekeaclt_view.html?co=1000238964&ci=12522728&cp=3 # co->comment ci->user data_arr = [] - ...
Return a empty list if there's no comments
BUEZE_taaze
train
5639859bd758cc259e1f1d6a58706d967e1f0d50
diff --git a/src/com/google/javascript/jscomp/Es6RewriteArrowFunction.java b/src/com/google/javascript/jscomp/Es6RewriteArrowFunction.java index <HASH>..<HASH> 100644 --- a/src/com/google/javascript/jscomp/Es6RewriteArrowFunction.java +++ b/src/com/google/javascript/jscomp/Es6RewriteArrowFunction.java @@ -16,6 +16,8 @@...
Add a type to the $jscomp$arguments variable to make the NTI happy. ------------- Created by MOE: <URL>
google_closure-compiler
train
1548bc9c87ba0db58a5a595465f011c1208a45f4
diff --git a/spec/shared/freeze_method_behavior.rb b/spec/shared/freeze_method_behavior.rb index <HASH>..<HASH> 100644 --- a/spec/shared/freeze_method_behavior.rb +++ b/spec/shared/freeze_method_behavior.rb @@ -1,4 +1,22 @@ shared_examples_for 'a #freeze method' do + let(:sample_exception) do + begin + objec...
Handle exception differencies between <I> and <I> * This solution should also work for jruby, rbx etc.
solnic_virtus
train
881a77bfcf5dabf942d5c0f5616291ead81b2659
diff --git a/lib/moodlelib.php b/lib/moodlelib.php index <HASH>..<HASH> 100644 --- a/lib/moodlelib.php +++ b/lib/moodlelib.php @@ -1592,19 +1592,21 @@ function require_login($courseid=0, $autologinguest=true, $cm=null) { } return; } + /// If the whole course is hidden from us ...
Fix to ignore hidden courses when using switchrole in a course MDL-<I>
moodle_moodle
train
42fe947996173e28aa678f8e6597a71abad43474
diff --git a/builtin_array.go b/builtin_array.go index <HASH>..<HASH> 100644 --- a/builtin_array.go +++ b/builtin_array.go @@ -352,7 +352,7 @@ func (r *Runtime) arrayproto_sort(call FunctionCall) Value { compare: compareFn, } - sort.Sort(&ctx) + sort.Stable(&ctx) return o } diff --git a/builtin_typedarrays....
Conform to ECMAScript <I> by making the sort stable
dop251_goja
train
6cb5e86a36939c44f086210c344326303fc0ca0d
diff --git a/src/Constraint/ConstrainArray.php b/src/Constraint/ConstrainArray.php index <HASH>..<HASH> 100644 --- a/src/Constraint/ConstrainArray.php +++ b/src/Constraint/ConstrainArray.php @@ -80,7 +80,7 @@ class ConstrainArray extends PHPUnit_Framework_Constraint public function additionalFailureDescription($...
:green_heart: Remove [] for php <I>
clippings_phpunit-extensions
train
8523c120fcb862528099463d1e70bb731cdb9947
diff --git a/gulpfile.js b/gulpfile.js index <HASH>..<HASH> 100644 --- a/gulpfile.js +++ b/gulpfile.js @@ -14,7 +14,7 @@ const gulp = require( 'gulp' ), gulp.task( 'client', function(){ //var out = gulp.src( './js/audio.js' )//gulp.src( './node_modules/gibber.core.lib/scripts/gibber.js') - const out = browserify...
removing glslify transform... marching handles this
charlieroberts_gibber.audio.lib
train
05067665fa92fd902a0b6107d965428da6b6fd90
diff --git a/chess/__init__.py b/chess/__init__.py index <HASH>..<HASH> 100644 --- a/chess/__init__.py +++ b/chess/__init__.py @@ -3852,6 +3852,46 @@ class SquareSet: return chess.svg.board(squares=self, size=390) @classmethod + def ray(cls, a: Square, b: Square) -> "SquareSet": + """ + ...
Add SquareSet.rays() and SquareSet.between() for humans (closes #<I>)
niklasf_python-chess
train
edb893cc0a761cfb5ce9a87ce1dde1901bfdb025
diff --git a/lib/sensu/extensions.rb b/lib/sensu/extensions.rb index <HASH>..<HASH> 100644 --- a/lib/sensu/extensions.rb +++ b/lib/sensu/extensions.rb @@ -9,7 +9,7 @@ module Sensu end def [](key) - @extensions[key.to_sym] + @extensions[key] end Sensu::EXTENSION_CATEGORIES.each do |cate...
[extension] metaprogramming, how does it work?
sensu_sensu
train
b7f965cdedf896593c4e47887a512e026ce750a6
diff --git a/config/initializers/new_framework_defaults_6_1.rb b/config/initializers/new_framework_defaults_6_1.rb index <HASH>..<HASH> 100644 --- a/config/initializers/new_framework_defaults_6_1.rb +++ b/config/initializers/new_framework_defaults_6_1.rb @@ -44,14 +44,8 @@ Rails.application.config.active_record.legacy_...
Enable remaining rails <I> defaults We don't use action_mailbox so it doesn't affect us. We don't use callbacks in active job either.
rubygems_rubygems.org
train
552c551a2976443acf9a4980a3f3eef693498a23
diff --git a/sovrin_common/identity.py b/sovrin_common/identity.py index <HASH>..<HASH> 100644 --- a/sovrin_common/identity.py +++ b/sovrin_common/identity.py @@ -1,4 +1,5 @@ from plenum.common.constants import TARGET_NYM, TXN_TYPE, NYM, ROLE, VERKEY +from plenum.common.signer_did import DidIdentity from stp_core.typ...
Changed Identity to use DID instead of Cryptonym
hyperledger-archives_indy-common
train
d016f9ab0bde38243252f75597e195d2beca9fb8
diff --git a/source/Scrim.js b/source/Scrim.js index <HASH>..<HASH> 100644 --- a/source/Scrim.js +++ b/source/Scrim.js @@ -3,7 +3,7 @@ showing: false, classes: "onyx-scrim enyo-fit", floating: false, - //*@ protected + //* @protected create: function() { this.inherited(arguments); this.zStack = []; @@ -48...
Fixed typo(?) in docs pragma and made setZIndex protected as it probably should only be called internally
enyojs_onyx
train
7850d6a4533e41f51696089472b35751b97b906e
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -50,5 +50,6 @@ setup( package_data={'adminfiles': ['media/adminfiles/*.*', 'media/adminfiles/mimetypes/*.png', 'templates/adminfiles/*.html', - ...
Adding locale directory to package_data
carljm_django-adminfiles
train
dbb358d6978266bd9581a593d824f5e95cd01379
diff --git a/php/utils.php b/php/utils.php index <HASH>..<HASH> 100644 --- a/php/utils.php +++ b/php/utils.php @@ -24,7 +24,7 @@ function extract_from_phar( $path ) { copy( $path, $tmp_path ); register_shutdown_function( function() use ( $tmp_path ) { - unlink( $tmp_path ); + @unlink( $tmp_path ); } ); re...
Prevent error notice in `cli update` ``` PHP Warning: unlink(/tmp/wp-cli-cacert.pem): No such file or directory in phar:///home/vagrant/.wp-cli/test.phar/php/utils.php on line <I> ``` Because we make a remote request against Github twice, the shutdown function is registered (and called) twice. The file is deleted th...
wp-cli_extension-command
train
ffd8b2f834b408607842eec244db0f5d229ed27d
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -12,12 +12,12 @@ with open(join(this_dir, "requirements.txt")) as f: requirements = f.read().split("\n") requirements.extend( - ["autoarray==0.20.0", "autoconf==0.8.0", "autofit==0.74.0", "autogalaxy==0.19.0"] +...
setup.py now on dev
Jammy2211_PyAutoLens
train
176f5b89bfd6975f20e228048124aca4bb53c611
diff --git a/lib/client.rb b/lib/client.rb index <HASH>..<HASH> 100644 --- a/lib/client.rb +++ b/lib/client.rb @@ -1,23 +1,13 @@ module Httpotemkin class Client + attr_reader :out, :err, :exit_code + def initialize(containers) @containers = containers end def execute(cmd, working_director...
Implement capturing of stderr and exit code
cornelius_httpotemkin
train
5cfac7a21791344ef67903c27f1cc73049c4aa8c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -18,4 +18,15 @@ setup( "config/fedora.json", "config/redhat.json"])], license='GPLv3+', + classifiers=[ + 'Development Status :...
Add classifiers to setup.py
user-cont_colin
train
5d13a4624957a7b445fd1760d375e15b97bcbe1c
diff --git a/findbugs/src/java/edu/umd/cs/findbugs/ba/SourceFinder.java b/findbugs/src/java/edu/umd/cs/findbugs/ba/SourceFinder.java index <HASH>..<HASH> 100644 --- a/findbugs/src/java/edu/umd/cs/findbugs/ba/SourceFinder.java +++ b/findbugs/src/java/edu/umd/cs/findbugs/ba/SourceFinder.java @@ -28,11 +28,12 @@ import ja...
Changed to use SourceFile objects, so meta data (such as line number to byte offset map) can be accessed. git-svn-id: <URL>
spotbugs_spotbugs
train
21d89297f4280fbfea3265e60893a865facbfbdc
diff --git a/lib/plugins/metrics/index.js b/lib/plugins/metrics/index.js index <HASH>..<HASH> 100644 --- a/lib/plugins/metrics/index.js +++ b/lib/plugins/metrics/index.js @@ -37,21 +37,6 @@ module.exports = { return this.storageManager.writeData(output, 'configuredMetrics.txt'); } - if (this.options.li...
Fix order so that metrics list is updated first #<I> (#<I>)
sitespeedio_sitespeed.io
train
0bd3b84a6db2ccd130db0aa4d4525423633f341c
diff --git a/geomajas/backend/geomajas-command/src/main/java/org/geomajas/command/configuration/GetMapConfigurationCommand.java b/geomajas/backend/geomajas-command/src/main/java/org/geomajas/command/configuration/GetMapConfigurationCommand.java index <HASH>..<HASH> 100644 --- a/geomajas/backend/geomajas-command/src/mai...
MAJ-<I>: added dummy ClientUserDataInfo implementation for GWT
geomajas_geomajas-project-server
train
a5bd80d357298cdf0e46de60e11ab96e2e724ce9
diff --git a/ask-sdk-core/ask_sdk_core/skill_builder.py b/ask-sdk-core/ask_sdk_core/skill_builder.py index <HASH>..<HASH> 100644 --- a/ask-sdk-core/ask_sdk_core/skill_builder.py +++ b/ask-sdk-core/ask_sdk_core/skill_builder.py @@ -25,7 +25,7 @@ from ask_sdk_runtime.skill_builder import AbstractSkillBuilder from .skill...
Removed unused typing libraries from skill_builder
alexa_alexa-skills-kit-sdk-for-python
train
90fbf2f9956d7fd522052e0eaea4f19edfca0a7a
diff --git a/src/components/__tests__/FontAwesomeIcon.test.js b/src/components/__tests__/FontAwesomeIcon.test.js index <HASH>..<HASH> 100644 --- a/src/components/__tests__/FontAwesomeIcon.test.js +++ b/src/components/__tests__/FontAwesomeIcon.test.js @@ -42,6 +42,8 @@ test('using pack and name', () => { expect(vm....
Make sure aria- and data- attributes stay lowercase
FortAwesome_react-fontawesome
train
32a38e4220e2fd7cb1cd8288e04279cd629cc3bd
diff --git a/tests/test_apps/voltkvqa/src/voltkvqa/AsyncBenchmark.java b/tests/test_apps/voltkvqa/src/voltkvqa/AsyncBenchmark.java index <HASH>..<HASH> 100644 --- a/tests/test_apps/voltkvqa/src/voltkvqa/AsyncBenchmark.java +++ b/tests/test_apps/voltkvqa/src/voltkvqa/AsyncBenchmark.java @@ -141,6 +141,9 @@ public class ...
ENG-<I>. Add parameter, maxputs, to limit the number of inserts. This is useful for tests that need to fill a specific amount of command log space.
VoltDB_voltdb
train
792db8ab216925bab90638929553f15cbdf4acbe
diff --git a/bin/superstatic.js b/bin/superstatic.js index <HASH>..<HASH> 100755 --- a/bin/superstatic.js +++ b/bin/superstatic.js @@ -8,11 +8,13 @@ var argv = require('optimist').argv; var Superstatic = require('../lib/server/superstatic_server'); var defaults = require('../lib/defaults'); var ConfigFile = require(...
Accept config file with --config/-c flag from cli
firebase_superstatic
train
ddaa002a1d5dfdadba7545a77dc095160b3cd889
diff --git a/lib/app.js b/lib/app.js index <HASH>..<HASH> 100644 --- a/lib/app.js +++ b/lib/app.js @@ -183,7 +183,7 @@ var makeApp = function(config, callback) { res.end = end; res.end(chunk, encoding); endTime = Date.now(); - ...
Use serverTime rather than time since that's a built-in for Bunyan
pump-io_pump.io
train
3e0e7b81feb7ba5f29ee99d6331e5d7e47b94c48
diff --git a/eZ/Bundle/EzPublishRestBundle/Tests/Functional/LocationTest.php b/eZ/Bundle/EzPublishRestBundle/Tests/Functional/LocationTest.php index <HASH>..<HASH> 100644 --- a/eZ/Bundle/EzPublishRestBundle/Tests/Functional/LocationTest.php +++ b/eZ/Bundle/EzPublishRestBundle/Tests/Functional/LocationTest.php @@ -67,7 ...
EZP-<I>: fix passing by reference warning
ezsystems_ezpublish-kernel
train
03522b48a582c8d3187d9585462d38518e591a6b
diff --git a/CliClient/package-lock.json b/CliClient/package-lock.json index <HASH>..<HASH> 100644 --- a/CliClient/package-lock.json +++ b/CliClient/package-lock.json @@ -1,6 +1,6 @@ { "name": "joplin", - "version": "1.0.149", + "version": "1.0.150", "lockfileVersion": 1, "requires": true, "dependencies"...
CliClient: Fixed regression following recent PR
laurent22_joplin
train
3e77b20b80a5a6ef22184656a0fb6bdce5c63841
diff --git a/salt/state.py b/salt/state.py index <HASH>..<HASH> 100644 --- a/salt/state.py +++ b/salt/state.py @@ -607,6 +607,7 @@ class State(object): self.__run_num = 0 self.jid = jid self.instance_id = str(id(self)) + self.inject_globals = {} def _gather_pillar(self): ...
Allow for the state object to inject new objects into the loader
saltstack_salt
train
5f3f1a1f1124c8a1dce629662d93df4ac3dd9688
diff --git a/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpointTests.java b/spring-boot-project/spring-boot-actuator/src/test/java/org/springframework/boot/actuate/context/properties/ConfigurationPropertiesReportEndpointTests....
Polish Closes gh-<I>
spring-projects_spring-boot
train
ea0de1dc5ef82ab574a2bad52559372db0e1bab4
diff --git a/core/src/main/java/hudson/model/Computer.java b/core/src/main/java/hudson/model/Computer.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/hudson/model/Computer.java +++ b/core/src/main/java/hudson/model/Computer.java @@ -521,7 +521,9 @@ public abstract class Computer extends AbstractModelObject im...
[FIXED HUDSON-<I>] Fix posting external job results. Made Executor.currentExecutor() return null if current thread is not an executor, and Computer.currentComputer() return Hudson.getInstance().toComputer() if currentExecutor returns null (must be on master if not in an executor). This avoids exception causing posting ...
jenkinsci_jenkins
train
b6aa25249b62d9c46d0b4039be56f1d3d70a94a2
diff --git a/test/diff_test.rb b/test/diff_test.rb index <HASH>..<HASH> 100644 --- a/test/diff_test.rb +++ b/test/diff_test.rb @@ -66,15 +66,16 @@ end class RepoDiffTest < Rugged::TestCase def test_new_from_buffer - repo = FixtureRepo.from_libgit2("attr") - diff = repo.diff("605812a", nil) - patch = diff...
Added working test for Rugged::Diff.from_buffer(s).
libgit2_rugged
train
7473e80c17e84d6be1a305321d23bb7dcb345f12
diff --git a/src/js/showcar-clean-cookies.js b/src/js/showcar-clean-cookies.js index <HASH>..<HASH> 100644 --- a/src/js/showcar-clean-cookies.js +++ b/src/js/showcar-clean-cookies.js @@ -36,7 +36,6 @@ const whiteList = [ '_gat_ALL', 'optimizelyRedirectData', 'optimizelyReferrer', - 'showTsm', 'PL...
Removed showTsm cookie from whitelist
Scout24_showcar-ui
train
f40e908719a79555cd072db61eefff29932e3b38
diff --git a/src/MySQLReplication/Event/RowEvent/RowEvent.php b/src/MySQLReplication/Event/RowEvent/RowEvent.php index <HASH>..<HASH> 100644 --- a/src/MySQLReplication/Event/RowEvent/RowEvent.php +++ b/src/MySQLReplication/Event/RowEvent/RowEvent.php @@ -490,15 +490,7 @@ class RowEvent extends EventCommon ...
Add time in datetime type (#<I>)
krowinski_php-mysql-replication
train