diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/src/Field.php b/src/Field.php
index <HASH>..<HASH> 100644
--- a/src/Field.php
+++ b/src/Field.php
@@ -260,9 +260,7 @@ abstract class Field
$this->type = '';
}
- for($i = 1; $i < count($parts) && $parts[$i] != "Field"; $i++);
-
- for(; $i < count($parts); $i++)
+ for ($i = array_search('Fie... | Code style for control statement fixed; followed by code simplification.
Actual one was causing Travis, build to fail due to inline-control-structure usage and no space before parens of for statements. |
diff --git a/core/src/main/java/io/undertow/security/impl/SingleSignOnAuthenticationMechanism.java b/core/src/main/java/io/undertow/security/impl/SingleSignOnAuthenticationMechanism.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/undertow/security/impl/SingleSignOnAuthenticationMechanism.java
+++ b/core/sr... | UNDERTOW-<I> SSO not destroyed when the last associated session times out |
diff --git a/tests/functional/TimeSeriesOperationsTest.php b/tests/functional/TimeSeriesOperationsTest.php
index <HASH>..<HASH> 100644
--- a/tests/functional/TimeSeriesOperationsTest.php
+++ b/tests/functional/TimeSeriesOperationsTest.php
@@ -116,7 +116,6 @@ class TimeSeriesOperationsTest extends TestCase
{
... | Handle PB / HTTP responses separately. |
diff --git a/lib/cliff.js b/lib/cliff.js
index <HASH>..<HASH> 100644
--- a/lib/cliff.js
+++ b/lib/cliff.js
@@ -97,7 +97,7 @@ cliff.stringifyRows = function (rows, colors) {
for (i = 0; i < row.length; i += 1) {
item = cliff.stringifyLiteral(row[i]);
item = colorize ? item[colors[i]] : item;
- le... | [minor] fixed some style issues |
diff --git a/src/Illuminate/Database/Eloquent/Model.php b/src/Illuminate/Database/Eloquent/Model.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Database/Eloquent/Model.php
+++ b/src/Illuminate/Database/Eloquent/Model.php
@@ -435,6 +435,20 @@ abstract class Model implements Arrayable, ArrayAccess, HasBroadcastChan... | Define qualifyColumns method |
diff --git a/node-perf-dash/www/controller/index.js b/node-perf-dash/www/controller/index.js
index <HASH>..<HASH> 100644
--- a/node-perf-dash/www/controller/index.js
+++ b/node-perf-dash/www/controller/index.js
@@ -71,7 +71,7 @@ var plotRules = {
// Rules to parse test options
var testOptions = {
'density': {
- ... | Fix typo: oper(t)ation |
diff --git a/lib/Cpdf.php b/lib/Cpdf.php
index <HASH>..<HASH> 100644
--- a/lib/Cpdf.php
+++ b/lib/Cpdf.php
@@ -15,6 +15,9 @@
* @license Public Domain http://creativecommons.org/licenses/publicdomain/
* @package Cpdf
*/
+use FontLib\Font;
+use FontLib\Binary_Stream;
+
class Cpdf {
/**
@@ -2358,7 +2361,7 @@ E... | Update CPDF to work with php-font-lib v3 |
diff --git a/sum/checks.go b/sum/checks.go
index <HASH>..<HASH> 100644
--- a/sum/checks.go
+++ b/sum/checks.go
@@ -53,3 +53,17 @@ func (c Checks) Get(id string) *Check {
}
return nil
}
+
+func (c Checks) Versions() []tarsum.Version {
+ versionsMap := map[tarsum.Version]int{}
+ for _, check := range c {
+ if _, ok... | Convenience access for versions in checks
for a group of sum checks, expose a function that provides all the
tarsum.Version's present. |
diff --git a/cheroot/server.py b/cheroot/server.py
index <HASH>..<HASH> 100644
--- a/cheroot/server.py
+++ b/cheroot/server.py
@@ -1602,6 +1602,7 @@ class HTTPServer(object):
pass
self.socket.bind(self.bind_addr)
+ self.bind_addr = self.socket.getsockname()[:2] # TODO: keep separate
... | Hotfix saving actual bound addr for ephemeral port
While this workaround would work, I'd prefer keeping both requested
and actual bind addrs within the server object, which might need bits
of redesign. |
diff --git a/input/observable.js b/input/observable.js
index <HASH>..<HASH> 100644
--- a/input/observable.js
+++ b/input/observable.js
@@ -114,8 +114,8 @@ Object.defineProperties(PropObserv.prototype, {
dom.classList.add('dbjs-input-component');
// Required
- dom.classList[desc.required ? 'add' : 'remove']('re... | Rename 'required' class, up to 'dbjs-required' |
diff --git a/lavalink/websocket.py b/lavalink/websocket.py
index <HASH>..<HASH> 100644
--- a/lavalink/websocket.py
+++ b/lavalink/websocket.py
@@ -24,7 +24,7 @@ class WebSocket:
self._shards = self._node._lavalink._shard_count
self._user_id = self._node._lavalink._user_id
- self._loop = self.... | naniware doesn't exist smfh |
diff --git a/guacamole-common-js/src/main/resources/guacamole.js b/guacamole-common-js/src/main/resources/guacamole.js
index <HASH>..<HASH> 100644
--- a/guacamole-common-js/src/main/resources/guacamole.js
+++ b/guacamole-common-js/src/main/resources/guacamole.js
@@ -439,10 +439,10 @@ Guacamole.Client = function(tunnel)... | Accidentally used getLayer() in RGBA component ints. |
diff --git a/lib/rrschedule.rb b/lib/rrschedule.rb
index <HASH>..<HASH> 100644
--- a/lib/rrschedule.rb
+++ b/lib/rrschedule.rb
@@ -40,7 +40,9 @@ module RRSchedule
team_b = t.reverse!.shift
t.reverse!
- matchup = {:team_a => team_a, :team_b => team_b}
+
+ x = [team_a,tea... | randomize team_a and team_b for each matchup. That way it's not always the same team that is 'home' or 'away' |
diff --git a/src/Qcloud/Cos/Client.php b/src/Qcloud/Cos/Client.php
index <HASH>..<HASH> 100644
--- a/src/Qcloud/Cos/Client.php
+++ b/src/Qcloud/Cos/Client.php
@@ -22,7 +22,7 @@ use GuzzleHttp\Pool;
class Client extends GuzzleClient {
- const VERSION = '2.0.2';
+ const VERSION = '2.0.3';
private $httpC... | update Client (#<I>) |
diff --git a/lib/bummr/outdated.rb b/lib/bummr/outdated.rb
index <HASH>..<HASH> 100644
--- a/lib/bummr/outdated.rb
+++ b/lib/bummr/outdated.rb
@@ -1,5 +1,6 @@
require 'open3'
require 'singleton'
+require 'bundler'
module Bummr
class Outdated | Explicity require bundler to detect its version |
diff --git a/spec/tester_spec.rb b/spec/tester_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/tester_spec.rb
+++ b/spec/tester_spec.rb
@@ -50,7 +50,7 @@ describe Zxcvbn::Tester do
context 'nil password' do
specify do
- expect { tester.test(nil) }.to_not raise_error
+ expect(tester.test(nil)).to have... | Tell us how it *is* expected to behave |
diff --git a/src/components/picker/index.js b/src/components/picker/index.js
index <HASH>..<HASH> 100644
--- a/src/components/picker/index.js
+++ b/src/components/picker/index.js
@@ -61,6 +61,10 @@ class Picker extends TextInput {
*/
renderPicker: PropTypes.func,
/**
+ * Custom picker props (when us... | add customPickerProps prop to allow control the custom picker wrapper |
diff --git a/src/User/User.php b/src/User/User.php
index <HASH>..<HASH> 100644
--- a/src/User/User.php
+++ b/src/User/User.php
@@ -282,7 +282,7 @@ class User extends \Hubzero\Database\Relational
*/
public function tokens()
{
- return $this->oneToMany('Hubzero\User\Token');
+ return $this->oneToMany('Hubzero\Us... | Be explicit on foreign key name, in case class is being extended (#<I>) |
diff --git a/lib/weblib.php b/lib/weblib.php
index <HASH>..<HASH> 100644
--- a/lib/weblib.php
+++ b/lib/weblib.php
@@ -503,14 +503,6 @@ class moodle_url {
*/
public function compare(moodle_url $url, $matchtype = URL_MATCH_EXACT) {
- // Set path to / if it is not set
- if ($this->path == '') {... | navigation MDL-<I> Fixed regression created earlier |
diff --git a/molgenis-data-annotators/src/main/java/org/molgenis/data/annotation/CrudRepositoryAnnotator.java b/molgenis-data-annotators/src/main/java/org/molgenis/data/annotation/CrudRepositoryAnnotator.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-annotators/src/main/java/org/molgenis/data/annotation/CrudRepos... | User alphabetic id's |
diff --git a/openquake/calculators/export/loss_curves.py b/openquake/calculators/export/loss_curves.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/export/loss_curves.py
+++ b/openquake/calculators/export/loss_curves.py
@@ -21,7 +21,22 @@ from openquake.commonlib import writers
class LossCurveExporter(obj... | Added a docstring [skip CI]
Former-commit-id: a5ad1d8eec<I>b<I>fa<I>b<I>e<I>aefea6ebd<I>b |
diff --git a/unittests/autoconfig.py b/unittests/autoconfig.py
index <HASH>..<HASH> 100644
--- a/unittests/autoconfig.py
+++ b/unittests/autoconfig.py
@@ -8,6 +8,9 @@ import sys
import logging
import warnings
+# Prevents copy.deepcopy RecursionError in some tests (Travis build)
+sys.setrecursionlimit(10000)
+
this... | Increase recursion limit for python, needed to fix travis build error
Three tests are failing in declarations_comparison_tester with:
RecursionError: maximum recursion depth exceeded
This is an attempt to fix it, it is not sure it will help. |
diff --git a/tpb/tpb.py b/tpb/tpb.py
index <HASH>..<HASH> 100644
--- a/tpb/tpb.py
+++ b/tpb/tpb.py
@@ -18,12 +18,7 @@ import re
import sys
import time
-from bs4 import BeautifulSoup
-
-from utils import URL
-#from constants import CATEGORIES
-#from constants import ORDERS
-from constants import *
+from .utils impor... | Fixed imports and restored .gitignore. |
diff --git a/src/requirementslib/models/cache.py b/src/requirementslib/models/cache.py
index <HASH>..<HASH> 100644
--- a/src/requirementslib/models/cache.py
+++ b/src/requirementslib/models/cache.py
@@ -63,13 +63,11 @@ class DependencyCache(object):
def __init__(self, cache_dir=None):
if cache_dir is None... | wtf is going on with appveyor... |
diff --git a/lib/trusty_cms/setup.rb b/lib/trusty_cms/setup.rb
index <HASH>..<HASH> 100644
--- a/lib/trusty_cms/setup.rb
+++ b/lib/trusty_cms/setup.rb
@@ -91,7 +91,7 @@ module TrustyCms
def prompt_for_admin_name
username = ask('Name (Administrator): ', String) do |q|
q.validate = /^.{0,100}$/... | Let's make the default admin password trusty while we're at it :) |
diff --git a/saltcloud/cloud.py b/saltcloud/cloud.py
index <HASH>..<HASH> 100644
--- a/saltcloud/cloud.py
+++ b/saltcloud/cloud.py
@@ -6,6 +6,7 @@ correct cloud modules
import os
import glob
import time
+import signal
import logging
import tempfile
import multiprocessing
@@ -204,10 +205,25 @@ class Cloud(object):... | Properly handle keyboard interrupts when parallel loading providers. |
diff --git a/src/Field/Configurator/CommonPreConfigurator.php b/src/Field/Configurator/CommonPreConfigurator.php
index <HASH>..<HASH> 100644
--- a/src/Field/Configurator/CommonPreConfigurator.php
+++ b/src/Field/Configurator/CommonPreConfigurator.php
@@ -104,7 +104,9 @@ final class CommonPreConfigurator implements Fiel... | Translate the (optional) label of form panels |
diff --git a/Twilio/Stream.php b/Twilio/Stream.php
index <HASH>..<HASH> 100644
--- a/Twilio/Stream.php
+++ b/Twilio/Stream.php
@@ -10,11 +10,11 @@ class Stream implements \Iterator {
function __construct(Page $page, $limit, $pageLimit) {
$this->page = $page;
+ $this->firstPage = $page;
$... | Implement Stream rewind properly in PHP |
diff --git a/salt/netapi/rest_cherrypy/app.py b/salt/netapi/rest_cherrypy/app.py
index <HASH>..<HASH> 100644
--- a/salt/netapi/rest_cherrypy/app.py
+++ b/salt/netapi/rest_cherrypy/app.py
@@ -508,8 +508,10 @@ def lowdata_fmt():
data = cherrypy.request.unserialized_data
- if (cherrypy.request.headers['Content... | Fix regression in url encoded salt-api messages
Most clients that do url encoding include other data in the Content-Type field (requests for example sets "application/x-www-form-urlencoded; charset=utf-8"). This changes the api to be a more forgiving server which will make any non-list struct a list |
diff --git a/packages/ember-glimmer/tests/integration/content-test.js b/packages/ember-glimmer/tests/integration/content-test.js
index <HASH>..<HASH> 100644
--- a/packages/ember-glimmer/tests/integration/content-test.js
+++ b/packages/ember-glimmer/tests/integration/content-test.js
@@ -484,6 +484,29 @@ class DynamicCon... | [BUGFIX release] failing test for reading a property off of a function |
diff --git a/src/Product/Block/ProductImageGallery.php b/src/Product/Block/ProductImageGallery.php
index <HASH>..<HASH> 100644
--- a/src/Product/Block/ProductImageGallery.php
+++ b/src/Product/Block/ProductImageGallery.php
@@ -15,8 +15,6 @@ class ProductImageGallery extends Block
{
$product = $this->getPr... | Issue #<I>: Remove obsolete comment |
diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -2,8 +2,8 @@ const tag = require('tagmeme')
const {mapEffect, batchEffects} = require('raj-compose')
const Result = (function () {
- const Err = tag()
- const Ok = tag()
+ const Err = tag('Err')
+ const... | Add tag names for better debugging |
diff --git a/src/main/java/com/plivo/api/models/call/Call.java b/src/main/java/com/plivo/api/models/call/Call.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/plivo/api/models/call/Call.java
+++ b/src/main/java/com/plivo/api/models/call/Call.java
@@ -28,6 +28,9 @@ public class Call extends BaseResource {
pri... | adds the hangupCause, hangupCauseCode, hangupSource to Call response |
diff --git a/test/tests.rb b/test/tests.rb
index <HASH>..<HASH> 100755
--- a/test/tests.rb
+++ b/test/tests.rb
@@ -676,7 +676,8 @@ class TestExtractor < Minitest::Test
expected = "N^nLl"
extractor.extract.each do |pdf_page|
spreadsheet = pdf_page.spreadsheets.first
- assert_equal expected, spreads... | oops I'm bad at writing tests that pass; now it works! |
diff --git a/tests/Stubs/AuditableModelStub.php b/tests/Stubs/AuditableModelStub.php
index <HASH>..<HASH> 100644
--- a/tests/Stubs/AuditableModelStub.php
+++ b/tests/Stubs/AuditableModelStub.php
@@ -13,6 +13,13 @@ class AuditableModelStub extends Model implements AuditableContract
/**
* {@inheritdoc}
*... | feat(AuditableModelStub): implement cast and accessor |
diff --git a/packager/packager.go b/packager/packager.go
index <HASH>..<HASH> 100644
--- a/packager/packager.go
+++ b/packager/packager.go
@@ -2,8 +2,8 @@ package packager
import (
"archive/zip"
- "crypto/sha256"
"crypto/md5"
+ "crypto/sha256"
"encoding/hex"
"fmt"
"io"
@@ -66,11 +66,8 @@ func Package(bpDir... | Fix download vs cached choice for packager |
diff --git a/api-list.go b/api-list.go
index <HASH>..<HASH> 100644
--- a/api-list.go
+++ b/api-list.go
@@ -19,7 +19,6 @@ package minio
import (
"context"
- "errors"
"fmt"
"net/http"
"net/url"
@@ -299,7 +298,10 @@ func (c Client) listObjectsV2Query(bucketName, objectPrefix, continuationToken s
// This is an... | return notImplemented on listObjectsV2 call failure (#<I>) |
diff --git a/lib/transforms/flattenRequireJs.js b/lib/transforms/flattenRequireJs.js
index <HASH>..<HASH> 100644
--- a/lib/transforms/flattenRequireJs.js
+++ b/lib/transforms/flattenRequireJs.js
@@ -77,7 +77,7 @@ module.exports = function (queryObj) {
if (requireJsRelationTypes.indexOf(outgoing... | flattenRequireJs: Keep css/less as AMD modules if it's included via the text plugin. |
diff --git a/lib/excon/connection.rb b/lib/excon/connection.rb
index <HASH>..<HASH> 100644
--- a/lib/excon/connection.rb
+++ b/lib/excon/connection.rb
@@ -28,7 +28,14 @@ module Excon
params[:headers] ||= @connection[:headers]
params[:headers]['Host'] ||= params[:host] || @connection[:host]
pa... | set content-length based on body type |
diff --git a/upload/catalog/model/total/sub_total.php b/upload/catalog/model/total/sub_total.php
index <HASH>..<HASH> 100644
--- a/upload/catalog/model/total/sub_total.php
+++ b/upload/catalog/model/total/sub_total.php
@@ -7,7 +7,7 @@ class ModelTotalSubTotal extends Model {
$sub_total = $this->cart->getSubTotal()... | merge 2 condition into !empty(....) |
diff --git a/estnltk/tests/test_text/test_standard_operators.py b/estnltk/tests/test_text/test_standard_operators.py
index <HASH>..<HASH> 100644
--- a/estnltk/tests/test_text/test_standard_operators.py
+++ b/estnltk/tests/test_text/test_standard_operators.py
@@ -9,16 +9,14 @@ from estnltk.tests import new_text
def... | Stated immortality of a text object in the presence of lingering layer references |
diff --git a/trashcli/put.py b/trashcli/put.py
index <HASH>..<HASH> 100644
--- a/trashcli/put.py
+++ b/trashcli/put.py
@@ -73,33 +73,19 @@ class TrashPutCmd:
return reporter.exit_code(result)
def trash_all(self, args, user_trash_dir, logger, ignore_missing, reporter):
- result = TrashResult(F... | Refactor: removed TrashPutCmd.trash method |
diff --git a/rehive/api/client.py b/rehive/api/client.py
index <HASH>..<HASH> 100644
--- a/rehive/api/client.py
+++ b/rehive/api/client.py
@@ -10,7 +10,7 @@ class Client:
"""
Interface for interacting with the rehive api
"""
- API_ENDPOINT = os.environ.get("REHIVE_API_V3_URL",
+ API_ENDPOINT = os.e... | Updated env variable name to get a custom rehive endpoint |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -124,8 +124,8 @@ def get_version_info():
vinfo = _version_helper.generate_git_version_info()
except:
vinfo = vdummy()
- vinfo.version = '1.15.6'
- vinfo.release = 'False'
+ vinfo.ver... | Prepare for new release (#<I>) |
diff --git a/epic/bigwig/create_bigwigs.py b/epic/bigwig/create_bigwigs.py
index <HASH>..<HASH> 100644
--- a/epic/bigwig/create_bigwigs.py
+++ b/epic/bigwig/create_bigwigs.py
@@ -81,7 +81,7 @@ def _create_bigwig(bed_column, outpath, genome_size_dict):
unique_chromosomes = list(bed_column.Chromosome.drop_duplicates... | Add 1 in length to ends of bigwigs |
diff --git a/h2o-algos/src/test/java/hex/glm/GLMTest.java b/h2o-algos/src/test/java/hex/glm/GLMTest.java
index <HASH>..<HASH> 100644
--- a/h2o-algos/src/test/java/hex/glm/GLMTest.java
+++ b/h2o-algos/src/test/java/hex/glm/GLMTest.java
@@ -201,7 +201,7 @@ public class GLMTest extends TestUtil {
Frame fr = ParseDat... | Fixed broken glm test, testAllNAs uses data with 0 in the response, can not use gamma family. |
diff --git a/test/search_index_test.rb b/test/search_index_test.rb
index <HASH>..<HASH> 100644
--- a/test/search_index_test.rb
+++ b/test/search_index_test.rb
@@ -12,8 +12,8 @@ class SearchIndexTest < ActiveSupport::TestCase
private
- def build_search_index(root = index_loc, index_depth = 2, fields = [:titl... | Test now matches new search index setup. |
diff --git a/tests/dummy/app/controllers/index.js b/tests/dummy/app/controllers/index.js
index <HASH>..<HASH> 100644
--- a/tests/dummy/app/controllers/index.js
+++ b/tests/dummy/app/controllers/index.js
@@ -1,6 +1,6 @@
import Controller from '@ember/controller';
import RSVP from 'rsvp';
-import { later, scheduleOnce ... | Fix 'calling set on destroyed object' error in dummy app under Fastboot |
diff --git a/lib/mixpanel-node.js b/lib/mixpanel-node.js
index <HASH>..<HASH> 100644
--- a/lib/mixpanel-node.js
+++ b/lib/mixpanel-node.js
@@ -61,7 +61,7 @@ var create_client = function(token, config) {
metrics.send_request = function(options, callback) {
callback = callback || function() {};
- v... | fix Buffer() deprecation warning
i(node:<I>) [DEP<I>] DeprecationWarning: Buffer() is deprecated due to security and usability issues. Please use the Buffer.alloc(), Buffer.allocUnsafe(), or Buffer.from() methods instead. |
diff --git a/tests/multicolumn_map_expectations/test_multicolumn_map_expectations.py b/tests/multicolumn_map_expectations/test_multicolumn_map_expectations.py
index <HASH>..<HASH> 100644
--- a/tests/multicolumn_map_expectations/test_multicolumn_map_expectations.py
+++ b/tests/multicolumn_map_expectations/test_multicolu... | Updated test runner for multi-column-map to pass schemas to get_dataset |
diff --git a/Lib/fontParts/base/bPoint.py b/Lib/fontParts/base/bPoint.py
index <HASH>..<HASH> 100644
--- a/Lib/fontParts/base/bPoint.py
+++ b/Lib/fontParts/base/bPoint.py
@@ -223,6 +223,7 @@ class BaseBPoint(BaseObject, TransformationMixin):
offCurves[-1].y = y
elif value != (0, 0):
... | offCurve need to be called again
the temp list offCurves is not going to fill itself with points after
setting the segment.type to curve, so call it again to retrieve the off
curves and then change the x, y values |
diff --git a/ph-http/src/main/java/com/helger/http/servlet/ServletHelper.java b/ph-http/src/main/java/com/helger/http/servlet/ServletHelper.java
index <HASH>..<HASH> 100644
--- a/ph-http/src/main/java/com/helger/http/servlet/ServletHelper.java
+++ b/ph-http/src/main/java/com/helger/http/servlet/ServletHelper.java
@@ -9... | Catching Throwable to be safe :) |
diff --git a/spec/i18n_spec.rb b/spec/i18n_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/i18n_spec.rb
+++ b/spec/i18n_spec.rb
@@ -87,7 +87,7 @@ describe 'RedAlert' do
end
it "should have an english No button" do
- @ac.actions[1].title.should == "Pas"
+ @ac.actions[1].title.should == "Non"... | correct spec due to my translation change |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -662,7 +662,7 @@ Unirest = function (method, uri, headers, body, callback) {
if (!(value instanceof Buffer || typeof value === 'string')) {
if (is(value).a(Object)) {
if (value instanceof fs.FileRead... | returning back the readStream into the handleFieldValue and managing it (or not) into the handleFormData |
diff --git a/mobly/controllers/android_device_lib/jsonrpc_client_base.py b/mobly/controllers/android_device_lib/jsonrpc_client_base.py
index <HASH>..<HASH> 100644
--- a/mobly/controllers/android_device_lib/jsonrpc_client_base.py
+++ b/mobly/controllers/android_device_lib/jsonrpc_client_base.py
@@ -218,7 +218,7 @@ class... | Change jsonrpc_client_base.py to connect to localhost (#<I>)
connect to localhost instead of <I> so snippet client works on ipv6 only environments |
diff --git a/salt/modules/yumpkg.py b/salt/modules/yumpkg.py
index <HASH>..<HASH> 100644
--- a/salt/modules/yumpkg.py
+++ b/salt/modules/yumpkg.py
@@ -364,9 +364,9 @@ def group_install(name=None,
pkgs = []
for group in pkg_groups:
group_detail = group_info(group)
- for package in group_detail[... | Fix TypeError in pkg.group_install
Package groups are case-insensitive, so convert the group names to
lowercase in group_info to ensure that matches are found.
However, if the group does not exist, this same traceback will happen.
Resolve this by using dict.get.
This fixes #<I>. |
diff --git a/core/src/main/java/com/crawljax/oraclecomparator/comparators/AttributeComparator.java b/core/src/main/java/com/crawljax/oraclecomparator/comparators/AttributeComparator.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/com/crawljax/oraclecomparator/comparators/AttributeComparator.java
+++ b/core/sr... | Bugfix: Apply all ignoreAttributes.
Found a bug where if there were more than one ignoreAttributes, only the last one was applied. |
diff --git a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java b/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java
index <HASH>..<HASH> 100644
--- a/smack-tcp/src/main/java/org/jivesoftware/smack/tcp/XMPPTCPConnection.java
+++ b/smack-tcp/src/main/java/org/jivesoftware/sm... | Request SM ack when re-sending after stream resumption
Fixes SMACK-<I>. |
diff --git a/packages/vaex-core/vaex/core/_version.py b/packages/vaex-core/vaex/core/_version.py
index <HASH>..<HASH> 100644
--- a/packages/vaex-core/vaex/core/_version.py
+++ b/packages/vaex-core/vaex/core/_version.py
@@ -1,2 +1,2 @@
-__version_tuple__ = (0, 3, 1)
-__version__ = '0.3.1'
+__version_tuple__ = (0, 3, 2)
... | Release <I> of vaex-core |
diff --git a/test/integration/client/prepared-statement-tests.js b/test/integration/client/prepared-statement-tests.js
index <HASH>..<HASH> 100644
--- a/test/integration/client/prepared-statement-tests.js
+++ b/test/integration/client/prepared-statement-tests.js
@@ -17,6 +17,32 @@ test("simple, unnamed prepared stateme... | Add test to make sure interval objects returned can be passed back into a prepared statement |
diff --git a/mgorus.go b/mgorus.go
index <HASH>..<HASH> 100644
--- a/mgorus.go
+++ b/mgorus.go
@@ -56,7 +56,7 @@ func NewHookerWithAuthDb(mgoUrl, authdb, db, collection, user, pass string) (*ho
func (h *hooker) Fire(entry *logrus.Entry) error {
data := make(logrus.Fields)
data["Level"] = entry.Level.String()
- dat... | :bear: :bug: reverted to uppercase |
diff --git a/tests/src/test/java/alluxio/hadoop/FileSystemAclIntegrationTest.java b/tests/src/test/java/alluxio/hadoop/FileSystemAclIntegrationTest.java
index <HASH>..<HASH> 100644
--- a/tests/src/test/java/alluxio/hadoop/FileSystemAclIntegrationTest.java
+++ b/tests/src/test/java/alluxio/hadoop/FileSystemAclIntegratio... | [SMALLFIX] Also check new owner/group is unchanged. |
diff --git a/src/Osiset/BasicShopifyAPI/BasicShopifyAPI.php b/src/Osiset/BasicShopifyAPI/BasicShopifyAPI.php
index <HASH>..<HASH> 100755
--- a/src/Osiset/BasicShopifyAPI/BasicShopifyAPI.php
+++ b/src/Osiset/BasicShopifyAPI/BasicShopifyAPI.php
@@ -354,7 +354,16 @@ class BasicShopifyAPI implements SessionAware, ClientAwa... | Add missing session variable to hmac calculation |
diff --git a/src/PHPUnit/FullStackTestCase.php b/src/PHPUnit/FullStackTestCase.php
index <HASH>..<HASH> 100644
--- a/src/PHPUnit/FullStackTestCase.php
+++ b/src/PHPUnit/FullStackTestCase.php
@@ -27,6 +27,11 @@ abstract class FullStackTestCase extends \PHPUnit_Framework_TestCase
protected static function getT... | Shorter directory on Windows
Windows temporary directory is very deep and causes some tests to fail |
diff --git a/spec/spec_helper_spec.rb b/spec/spec_helper_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper_spec.rb
+++ b/spec/spec_helper_spec.rb
@@ -139,6 +139,17 @@ describe Halite::SpecHelper do
end # /context with step_into:false
end # /describe #resource
+ describe '#provider' do
+ subject {... | Minimal tests for the provider helpers. |
diff --git a/admin/dst_update.php b/admin/dst_update.php
index <HASH>..<HASH> 100644
--- a/admin/dst_update.php
+++ b/admin/dst_update.php
@@ -26,22 +26,6 @@ $ddd = olson_todst($CFG->dataroot.'/temp/olson.txt');
execute_sql('TRUNCATE TABLE '.$CFG->prefix.'timezone');
-$timezone = new stdClass;
-$timezone->year = 1... | Don't add trivial timezone records in the db, we 're going to handle them manually. |
diff --git a/publishable/database/dummy_seeds/PagesTableSeeder.php b/publishable/database/dummy_seeds/PagesTableSeeder.php
index <HASH>..<HASH> 100644
--- a/publishable/database/dummy_seeds/PagesTableSeeder.php
+++ b/publishable/database/dummy_seeds/PagesTableSeeder.php
@@ -129,6 +129,9 @@ class PagesTableSeeder extend... | Unique slug rule for posts/pages
Fixes #<I> |
diff --git a/lib/declarative_authorization/maintenance.rb b/lib/declarative_authorization/maintenance.rb
index <HASH>..<HASH> 100644
--- a/lib/declarative_authorization/maintenance.rb
+++ b/lib/declarative_authorization/maintenance.rb
@@ -171,7 +171,7 @@ module Authorization
def request_with (user, method, x... | if user is nil, pass nil for user_id instead of causing an exception |
diff --git a/ratio.go b/ratio.go
index <HASH>..<HASH> 100644
--- a/ratio.go
+++ b/ratio.go
@@ -84,7 +84,7 @@ func (rl *rateLimiter) record(p []byte) (int, error) {
func (rl *rateLimiter) close() {
if rl.op != nil {
- rl.op.values <- values{rl.written, io.EOF}
+ rl.op.values <- values{rl.op.written, io.EOF}
}
... | don't EOF on Close |
diff --git a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java b/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java
index <HASH>..<HASH> 100755
--- a/client/src/main/java/com/orientechnologies/orient/client/remote/OStorageRemote.java
+++ b/client/src/ma... | add additional check for avoid deadlocks in remote live query |
diff --git a/deeputil/misc.py b/deeputil/misc.py
index <HASH>..<HASH> 100644
--- a/deeputil/misc.py
+++ b/deeputil/misc.py
@@ -489,19 +489,21 @@ class ExpiringCounter(object):
# TODO Examples and Readme.md
-import resource
-
def set_file_limits(n):
"""
Set the limit on number of file descriptors
- ... | importing the resouce module is not portable to Windows systems. The import was moved inside a check of what system type is on. Also moved inside the function to reduce memory ussage if that specific function in the library isn't being used. |
diff --git a/gumble/client_incoming.go b/gumble/client_incoming.go
index <HASH>..<HASH> 100644
--- a/gumble/client_incoming.go
+++ b/gumble/client_incoming.go
@@ -12,6 +12,7 @@ func clientIncoming(client *Client) {
defer client.Close()
conn := client.connection
+ data := make([]byte, 1024)
for {
var pType ... | change clientIncoming to use the same buffer for all messages |
diff --git a/github/tests/Commit.py b/github/tests/Commit.py
index <HASH>..<HASH> 100644
--- a/github/tests/Commit.py
+++ b/github/tests/Commit.py
@@ -54,6 +54,7 @@ class Commit(Framework.TestCase):
self.assertEqual(self.commit.stats.additions, 0)
self.assertEqual(self.commit.stats.total, 20)
... | Add unit test for tree attribute of GitCommit (#<I>) |
diff --git a/jhipster-uml.js b/jhipster-uml.js
index <HASH>..<HASH> 100755
--- a/jhipster-uml.js
+++ b/jhipster-uml.js
@@ -90,6 +90,7 @@ function createReflexives(reflexives) {
otherEntityNameCapitalized: _.capitalize(element.className),
ownerSide: true
});
+ newJson.fieldsContainOwnerOneToOne = t... | Bug fix
'fieldsContainOneToOne' added by default in every new JSON file re-written if there is a case of reflexivity (nothing happens if already there) |
diff --git a/site/bisheng.config.js b/site/bisheng.config.js
index <HASH>..<HASH> 100644
--- a/site/bisheng.config.js
+++ b/site/bisheng.config.js
@@ -40,21 +40,13 @@ module.exports = {
'create-react-class': 'preact-compat/lib/create-react-class',
'react-router': 'react-router',
});
- } else... | docs: always use externals |
diff --git a/src/main/java/io/vlingo/actors/ActorProxyBase.java b/src/main/java/io/vlingo/actors/ActorProxyBase.java
index <HASH>..<HASH> 100644
--- a/src/main/java/io/vlingo/actors/ActorProxyBase.java
+++ b/src/main/java/io/vlingo/actors/ActorProxyBase.java
@@ -8,8 +8,13 @@ import java.io.ObjectOutput;
public abstrac... | adds ActorProxy#thunk from stage |
diff --git a/src/PlaygroundGame/Entity/Quiz.php b/src/PlaygroundGame/Entity/Quiz.php
index <HASH>..<HASH> 100755
--- a/src/PlaygroundGame/Entity/Quiz.php
+++ b/src/PlaygroundGame/Entity/Quiz.php
@@ -66,6 +66,7 @@ class Quiz extends Game implements InputFilterAwareInterface
/**
* @ORM\OneToMany(targetEntity... | getQuestion order by postion ASC |
diff --git a/clustering/web/cache/src/main/java/org/wildfly/clustering/web/cache/session/MutableSessionCreationMetaData.java b/clustering/web/cache/src/main/java/org/wildfly/clustering/web/cache/session/MutableSessionCreationMetaData.java
index <HASH>..<HASH> 100644
--- a/clustering/web/cache/src/main/java/org/wildfly/... | Skip redundant mutate if maxInactiveInterval did not change. |
diff --git a/packages/vaex-server/vaex/server/tornado_server.py b/packages/vaex-server/vaex/server/tornado_server.py
index <HASH>..<HASH> 100644
--- a/packages/vaex-server/vaex/server/tornado_server.py
+++ b/packages/vaex-server/vaex/server/tornado_server.py
@@ -167,7 +167,7 @@ GB = MB * 1024
class WebServer(threa... | fix(server): docker does not like localhost, <I> seems to work |
diff --git a/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb b/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb
index <HASH>..<HASH> 100644
--- a/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb
+++ b/elasticsearch-extensions/lib/elasticsearch/extensions/version.rb
@@ -1... | [EXT] Release <I> |
diff --git a/tests/contrib/saltstack/test_saltstates.py b/tests/contrib/saltstack/test_saltstates.py
index <HASH>..<HASH> 100644
--- a/tests/contrib/saltstack/test_saltstates.py
+++ b/tests/contrib/saltstack/test_saltstates.py
@@ -118,7 +118,7 @@ class JujuConfig2GrainsTestCase(unittest.TestCase):
patcher.star... | Re-activated two tests that had been deactivated for debugging. |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
#!/usr/bin/env python
-VERSION = '1.0.1'
+VERSION = '1.0.2'
DESCRIPTION = 'Tx DBus'
try: | version bump. Fixed support for Twisted <I> |
diff --git a/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb b/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb
index <HASH>..<HASH> 100644
--- a/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb
+++ b/activerecord/test/cases/adapters/mysql/mysql_adapter_test.rb
@@ -52,7 +52,7 @@ mod... | Fix message assertions for quoting database name in "show tables" for mysql |
diff --git a/salt/modules/virt.py b/salt/modules/virt.py
index <HASH>..<HASH> 100644
--- a/salt/modules/virt.py
+++ b/salt/modules/virt.py
@@ -368,7 +368,7 @@ def _get_on_reboot(dom):
doc = minidom.parse(_StringIO(get_xml(dom)))
for node in doc.getElementsByTagName('on_reboot'):
on_restart = node.fir... | Variable renaming gone wrong. Fixing |
diff --git a/src/TypesGenerator.php b/src/TypesGenerator.php
index <HASH>..<HASH> 100644
--- a/src/TypesGenerator.php
+++ b/src/TypesGenerator.php
@@ -296,7 +296,7 @@ class TypesGenerator
// Second pass
foreach ($classes as &$class) {
- if ($class['parent'] && $class['parent'] !== 'Enum')... | chore: fix CS (#<I>) |
diff --git a/lib/chef/resource/mount.rb b/lib/chef/resource/mount.rb
index <HASH>..<HASH> 100644
--- a/lib/chef/resource/mount.rb
+++ b/lib/chef/resource/mount.rb
@@ -149,7 +149,6 @@ class Chef
set_or_return(
:username,
arg,
- :sensitive => true,
:kind_of => [ String ]... | Fixed mistake added while removing old :password attribute definition |
diff --git a/app/scripts/TrackControl.js b/app/scripts/TrackControl.js
index <HASH>..<HASH> 100644
--- a/app/scripts/TrackControl.js
+++ b/app/scripts/TrackControl.js
@@ -54,15 +54,17 @@ class TrackControl extends React.Component {
<use xlinkHref="#cog" />
</svg>
- <svg
- ref={(c) ... | Only show plus when callback is available |
diff --git a/angular-toggle-switch.js b/angular-toggle-switch.js
index <HASH>..<HASH> 100644
--- a/angular-toggle-switch.js
+++ b/angular-toggle-switch.js
@@ -9,9 +9,6 @@ angular.module('toggle-switch', ['ng']).directive('toggleSwitch', function () {
},
template: '<div class="switch" ng-click="toggle()"><div ... | Do not set model to false by default
See #5 for more information |
diff --git a/admin/tool/messageinbound/classes/manager.php b/admin/tool/messageinbound/classes/manager.php
index <HASH>..<HASH> 100644
--- a/admin/tool/messageinbound/classes/manager.php
+++ b/admin/tool/messageinbound/classes/manager.php
@@ -1012,7 +1012,7 @@ class manager {
$messageparams = new \stdClass();
... | MDL-<I> Forum: Fixing issue with the 'preferences' link in emails |
diff --git a/lib/ProMotion/screens/_tables/_table.rb b/lib/ProMotion/screens/_tables/_table.rb
index <HASH>..<HASH> 100644
--- a/lib/ProMotion/screens/_tables/_table.rb
+++ b/lib/ProMotion/screens/_tables/_table.rb
@@ -106,7 +106,11 @@ module ProMotion
# Set table_data_index if you want the right hand index colu... | Remove the table data index when searching. Put it back when searching is done. |
diff --git a/bcbio/variation/recalibrate.py b/bcbio/variation/recalibrate.py
index <HASH>..<HASH> 100644
--- a/bcbio/variation/recalibrate.py
+++ b/bcbio/variation/recalibrate.py
@@ -96,12 +96,14 @@ def _gatk_base_recalibrator(broad_runner, dup_align_bam, ref_file, platform,
"""Step 1 of GATK recalibration process... | Enable writing of GATK recalibration plots to replace old custom plots |
diff --git a/sporco/prox/_l21.py b/sporco/prox/_l21.py
index <HASH>..<HASH> 100644
--- a/sporco/prox/_l21.py
+++ b/sporco/prox/_l21.py
@@ -12,6 +12,7 @@ from __future__ import division
import numpy as np
from ._lp import prox_l1, prox_l2, norm_l2
+from sporco.misc import renamed_function
__author__ = """Brendt... | Added deprecation warning via renamed_function decorator |
diff --git a/reopen.go b/reopen.go
index <HASH>..<HASH> 100644
--- a/reopen.go
+++ b/reopen.go
@@ -157,12 +157,13 @@ func (bw *BufferedFileWriter) Flush() {
// flushDaemon periodically flushes the log file buffers.
func (bw *BufferedFileWriter) flushDaemon(interval time.Duration) {
- ticker := time.Tick(interval)
+... | Close #6 goroutine leak due to time.Tick |
diff --git a/workshift/signals.py b/workshift/signals.py
index <HASH>..<HASH> 100644
--- a/workshift/signals.py
+++ b/workshift/signals.py
@@ -265,6 +265,7 @@ def update_assigned_hours(sender, instance, action, reverse, model, pk_set, **kw
pool_hours.save(update_fields=["assigned_hours"])
... | Fixed bad call to notify.send |
diff --git a/spec/nsisam_spec.rb b/spec/nsisam_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/nsisam_spec.rb
+++ b/spec/nsisam_spec.rb
@@ -5,10 +5,12 @@ describe NSISam do
before :all do
@nsisam = NSISam::Client.new 'http://test:test@localhost:8888'
@keys = Array.new
+ @fake_sam = NSISam::FakeServer.new... | using the fake sam server in the tests |
diff --git a/pkg/kvstore/etcd.go b/pkg/kvstore/etcd.go
index <HASH>..<HASH> 100644
--- a/pkg/kvstore/etcd.go
+++ b/pkg/kvstore/etcd.go
@@ -672,7 +672,7 @@ func connectEtcdClient(ctx context.Context, config *client.Config, cfgPath strin
return
}
- ec.getLogger().Debugf("Session received")
+ ec.getLogger().Inf... | etcd: Print info message when connection is established |
diff --git a/src/main/java/org/nustaq/serialization/FSTClazzInfo.java b/src/main/java/org/nustaq/serialization/FSTClazzInfo.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/nustaq/serialization/FSTClazzInfo.java
+++ b/src/main/java/org/nustaq/serialization/FSTClazzInfo.java
@@ -244,10 +244,10 @@ public final cl... | fixed break of fastcast 3 (structs partially broken since <I>) |
diff --git a/robe-admin/src/main/java/io/robe/admin/resources/AuthResource.java b/robe-admin/src/main/java/io/robe/admin/resources/AuthResource.java
index <HASH>..<HASH> 100644
--- a/robe-admin/src/main/java/io/robe/admin/resources/AuthResource.java
+++ b/robe-admin/src/main/java/io/robe/admin/resources/AuthResource.ja... | ROBE-<I> cookie deletion |
diff --git a/src/Keboola/Syrup/Service/StorageApi/StorageApiService.php b/src/Keboola/Syrup/Service/StorageApi/StorageApiService.php
index <HASH>..<HASH> 100644
--- a/src/Keboola/Syrup/Service/StorageApi/StorageApiService.php
+++ b/src/Keboola/Syrup/Service/StorageApi/StorageApiService.php
@@ -87,7 +87,7 @@ class Stora... | fix(StorageApiService): missing backoffMaxTries |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
setup(
name='django-easy-timezones',
- version='0.4.0',
+ version='0.5.0',
packages=['easy_timezones'],
inst... | <I> - include default IP file, adds starter test coverage, adds more complete ipv6 support |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.