diff stringlengths 65 26.7k | message stringlengths 7 9.92k |
|---|---|
diff --git a/.rspec b/.rspec
index <HASH>..<HASH> 100644
--- a/.rspec
+++ b/.rspec
@@ -1 +1,2 @@
---color
\ No newline at end of file
+--color
+--format documentation
diff --git a/lib/storify/client.rb b/lib/storify/client.rb
index <HASH>..<HASH> 100644
--- a/lib/storify/client.rb
+++ b/lib/storify/client.rb
@@ -27,4 +... | additional auth spec and interface refactoring |
diff --git a/base/project.js b/base/project.js
index <HASH>..<HASH> 100644
--- a/base/project.js
+++ b/base/project.js
@@ -202,10 +202,9 @@ Project.prototype.route = function project_route (request, view, next) {
var parts = request.url.pathname.split('/');
// if the uri starts wiht a forward slash, we will have ... | remove some logging and fix the url routing on digits |
diff --git a/actionpack/test/abstract_unit.rb b/actionpack/test/abstract_unit.rb
index <HASH>..<HASH> 100644
--- a/actionpack/test/abstract_unit.rb
+++ b/actionpack/test/abstract_unit.rb
@@ -54,10 +54,8 @@ I18n.enforce_available_locales = false
# Register danish language for testing
I18n.backend.store_translations 'd... | Removing unused constants from abstract_unit |
diff --git a/spec/integration/deployment_spec.rb b/spec/integration/deployment_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/integration/deployment_spec.rb
+++ b/spec/integration/deployment_spec.rb
@@ -88,7 +88,6 @@ describe 'deployment integrations' do
context 'canceling a deploy job' do
it 'should spawn a ... | Re-enable pending spec since [#<I>] was fixed |
diff --git a/karma.conf.js b/karma.conf.js
index <HASH>..<HASH> 100644
--- a/karma.conf.js
+++ b/karma.conf.js
@@ -1,13 +1,12 @@
module.exports = function(config) {
+ var browsers = process.env.TRAVIS
+ ? [ 'PhantomJS' ]
+ : [ 'PhantomJS', 'Chrome', 'Firefox', 'Safari' ];
+
config.set({
frameworks: [ 'h... | Make karma pick up only PhantomJS when on Travis CI |
diff --git a/lib/rom/repository/version.rb b/lib/rom/repository/version.rb
index <HASH>..<HASH> 100644
--- a/lib/rom/repository/version.rb
+++ b/lib/rom/repository/version.rb
@@ -1,5 +1,5 @@
module ROM
class Repository
- VERSION = '0.3.1'.freeze
+ VERSION = '1.0.0.beta1'.freeze
end
end | Bump to <I>.beta1 |
diff --git a/docs/source/conf.py b/docs/source/conf.py
index <HASH>..<HASH> 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -64,9 +64,9 @@ copyright = u'2012, BNPB/AIFDR/GFDRR'
# built documents.
#
# The short X.Y version.
-version = '0.2.0'
+version = '0.3.0'
# The full version, including alpha/beta/... | Updated source version in master to <I> |
diff --git a/lib/ovirt_metrics.rb b/lib/ovirt_metrics.rb
index <HASH>..<HASH> 100644
--- a/lib/ovirt_metrics.rb
+++ b/lib/ovirt_metrics.rb
@@ -43,7 +43,7 @@ module OvirtMetrics
end
def self.disconnect
- OvirtHistory.connection.disconnect!
+ OvirtHistory.remove_connection
end
def self.vm_realtime(v... | Properly disconnect
disconnect! disconnects the only the adapter connection; remove_connection
removes the connection for this class and will disconnect the correct
connection pool.
<URL> |
diff --git a/orderer/consensus/etcdraft/chain_test.go b/orderer/consensus/etcdraft/chain_test.go
index <HASH>..<HASH> 100644
--- a/orderer/consensus/etcdraft/chain_test.go
+++ b/orderer/consensus/etcdraft/chain_test.go
@@ -465,15 +465,18 @@ var _ = Describe("Chain", func() {
// use to prepare the Orderer Values
... | [FAB-<I>] Fix failed UT
The UT being fixed in this CR submits a malformed config env,
which crashes test. It passed because we never wait for the
block to be committed and shut down test early.
Change-Id: I<I>ccbf<I>d8ffb<I>d<I>e<I>a<I>b<I>d<I>e |
diff --git a/activerecord/lib/active_record/dynamic_scope_match.rb b/activerecord/lib/active_record/dynamic_scope_match.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/dynamic_scope_match.rb
+++ b/activerecord/lib/active_record/dynamic_scope_match.rb
@@ -1,4 +1,11 @@
module ActiveRecord
+
+ # = Ac... | Added description and title to Dynamic Scope Match |
diff --git a/lib/util/escape-path.js b/lib/util/escape-path.js
index <HASH>..<HASH> 100644
--- a/lib/util/escape-path.js
+++ b/lib/util/escape-path.js
@@ -3,7 +3,8 @@ module.exports = function escapePath(p) {
var p = encodeURIComponent(p)
.replace(/%2F/g, '/')
.replace(/\)/g, '%29')
- .replace(/\(/g, '%... | Added support to ! in path |
diff --git a/Processor.php b/Processor.php
index <HASH>..<HASH> 100644
--- a/Processor.php
+++ b/Processor.php
@@ -449,6 +449,16 @@ class Processor
$target->{'@reverse'} = new Object();
}
$target = $target->{'@reverse'};
+
+ if (false === is_array($v... | Ensure reverse properties only contain nodes |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -255,11 +255,11 @@ BitArray.from32Integer = function(num) {
BitArray.fromRedis =
BitArray.fromBuffer = function(buf) {
- var bits = []
+ var bits = ''
for (var i = 0; i < buf.length; i++) {
- bits = bits.concat(Bit... | Performance enhancement on fromBuffer
The performance of Array.concat was taking a hit when using a buffer that <I> bytes in length. Appending to a string is faster |
diff --git a/src/Illuminate/Foundation/Http/FormRequest.php b/src/Illuminate/Foundation/Http/FormRequest.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Foundation/Http/FormRequest.php
+++ b/src/Illuminate/Foundation/Http/FormRequest.php
@@ -207,7 +207,7 @@ class FormRequest extends Request implements ValidatesWhe... | Update FormRequest.php (#<I>) |
diff --git a/tests/PoolTest.php b/tests/PoolTest.php
index <HASH>..<HASH> 100644
--- a/tests/PoolTest.php
+++ b/tests/PoolTest.php
@@ -149,6 +149,13 @@ class PoolTest extends \PHPUnit_Framework_TestCase
*/
public function testReserveWithNoJobsDoesNotTakeLongerThanTimeout()
{
+ $connection = $this... | Fix failing pool test requiring returns from the mocks |
diff --git a/lib/ajax/ajaxlib.php b/lib/ajax/ajaxlib.php
index <HASH>..<HASH> 100644
--- a/lib/ajax/ajaxlib.php
+++ b/lib/ajax/ajaxlib.php
@@ -1285,7 +1285,7 @@ class jsportal {
* Prints the JavaScript code needed to set up AJAX for the course.
*/
function print_javascript($courseid, $return=false) {
-... | ajaxlib MDL-<I> Fixed minor bug because of missing global |
diff --git a/mambustruct.py b/mambustruct.py
index <HASH>..<HASH> 100644
--- a/mambustruct.py
+++ b/mambustruct.py
@@ -15,6 +15,12 @@ class MambuStructIterator:
return item
class MambuStruct(object):
+ def __getitem__(self, key):
+ return self.attrs[key]
+
+ def __str__(self):
+ retu... | MambuStructs get array and printable functionality |
diff --git a/spec/core/nil/and_spec.rb b/spec/core/nil/and_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/core/nil/and_spec.rb
+++ b/spec/core/nil/and_spec.rb
@@ -6,7 +6,7 @@ describe "NilClass#&" do
(nil & true).should == false
(nil & false).should == false
(nil & "").should == false
- (nil & 'x').sh... | fix typo in NilClass#and spec |
diff --git a/tests/LCRun2Test.php b/tests/LCRun2Test.php
index <HASH>..<HASH> 100644
--- a/tests/LCRun2Test.php
+++ b/tests/LCRun2Test.php
@@ -1,6 +1,6 @@
<?php
/**
- * Generated by build/gen_test on 2014-02-26 at 05:34:15.
+ * Generated by build/gen_test
*/
require_once('src/lightncandy.php');
diff --git a/test... | Auto generated tests from Travis [ci skip] |
diff --git a/addok/core.py b/addok/core.py
index <HASH>..<HASH> 100644
--- a/addok/core.py
+++ b/addok/core.py
@@ -303,8 +303,6 @@ class Search(BaseHelper):
self.step_only_commons,
self.step_no_meaningful_but_common_try_autocomplete,
self.step_bucket_with_meaningful,
- ... | Always try to autocomplete while bucket is not overflown |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -21,6 +21,10 @@ ENCODING = "utf8"
pkg_info = {}
+def need_pytest():
+ return set(["pytest", "test", "ptr"]).intersection(sys.argv)
+
+
with open(os.path.join(MODULE_NAME, "__version__.py")) as f:
exec(f.read(), p... | Extract a function that gets pytest-runner requirement |
diff --git a/tests/test_symbolic.py b/tests/test_symbolic.py
index <HASH>..<HASH> 100644
--- a/tests/test_symbolic.py
+++ b/tests/test_symbolic.py
@@ -20,10 +20,10 @@ import nose
def test_concretization_strategies():
initial_memory = {0: b'A', 1: b'B', 2: b'C', 3: b'D'}
- s = angr.SimState(arch='AMD64', memo... | Fix test_symbolic. |
diff --git a/src/test/java/hex/DeepLearningSpiralsTest.java b/src/test/java/hex/DeepLearningSpiralsTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/hex/DeepLearningSpiralsTest.java
+++ b/src/test/java/hex/DeepLearningSpiralsTest.java
@@ -47,7 +47,7 @@ public class DeepLearningSpiralsTest extends TestUtil {
... | Speed up DLSpiralsTest by scoring more often and triggering early stopping more likely. |
diff --git a/lib/Cpdf.php b/lib/Cpdf.php
index <HASH>..<HASH> 100644
--- a/lib/Cpdf.php
+++ b/lib/Cpdf.php
@@ -5763,7 +5763,7 @@ EOT;
if ($eight_bit) {
// with gamma correction
$gammacorr = 2.2;
- $pixel = pow((((127 - $alpha)... | Round pixel color for 8-bit PNG with transparency
When processing the alpha channel in CPDF. Addresses PHP <I> compatibility issue. |
diff --git a/psiturk/experiment.py b/psiturk/experiment.py
index <HASH>..<HASH> 100644
--- a/psiturk/experiment.py
+++ b/psiturk/experiment.py
@@ -491,7 +491,8 @@ def start_exp():
condition=part.cond,
counterbalance=part.counterbalance,
adServerLoc=ad_server_location,
- mode = mode
+ ... | make contact_address available to exp.html |
diff --git a/task/backend/analytical_storage_test.go b/task/backend/analytical_storage_test.go
index <HASH>..<HASH> 100644
--- a/task/backend/analytical_storage_test.go
+++ b/task/backend/analytical_storage_test.go
@@ -66,24 +66,22 @@ func TestAnalyticalStore(t *testing.T) {
ts.BucketService = storage.NewBucketSe... | chore: Closing in goroutine causes race with logging framework |
diff --git a/lib/SiftResponse.php b/lib/SiftResponse.php
index <HASH>..<HASH> 100644
--- a/lib/SiftResponse.php
+++ b/lib/SiftResponse.php
@@ -17,6 +17,6 @@ class SiftResponse {
}
public function isOk() {
- return $this->apiStatus == 0;
+ return $this->apiStatus === 0;
}
}
\ No newline a... | Using === to compare apiStatus |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -55,13 +55,9 @@ function DubAPI(auth, callback) {
that._.self = new SelfModel(body.data);
- that._.reqHandler.queue({method: 'GET', url: endpoints.authToken}, function(code, body) {
- ... | Removed extra authToken request |
diff --git a/src/cli/commands/parseOptions.js b/src/cli/commands/parseOptions.js
index <HASH>..<HASH> 100644
--- a/src/cli/commands/parseOptions.js
+++ b/src/cli/commands/parseOptions.js
@@ -115,11 +115,11 @@ function parseCommandOptions(command, notManaged) {
let name;
// See if we can matc... | Fixed a problem where an option was false, when using --no-option |
diff --git a/container/core.py b/container/core.py
index <HASH>..<HASH> 100644
--- a/container/core.py
+++ b/container/core.py
@@ -119,7 +119,7 @@ def cmdrun_build(base_path, project_name, engine_name, var_file=None,
if engine_obj.service_is_running('conductor'):
engine_obj.stop_container(conductor_contai... | Build conductor if none exists in `--devel` mode
If `--devel` is used but the conductor is not built, ansible-container
fails right now. With this patch, we'll autobuild the conductor even if
the user has specified devel mode which would normally skip that step. |
diff --git a/code/libraries/koowa/template/filter/alias.php b/code/libraries/koowa/template/filter/alias.php
index <HASH>..<HASH> 100644
--- a/code/libraries/koowa/template/filter/alias.php
+++ b/code/libraries/koowa/template/filter/alias.php
@@ -32,7 +32,6 @@ class KTemplateFilterAlias extends KTemplateFilterAbstract ... | Removed @toolbar() alias for the time being. |
diff --git a/middleware/fileStore.js b/middleware/fileStore.js
index <HASH>..<HASH> 100644
--- a/middleware/fileStore.js
+++ b/middleware/fileStore.js
@@ -22,7 +22,7 @@ module.exports = function (options) {
},
responseExists: function (url) {
- return fs.exists(this.filename(url))
+ return fs.exis... | file cache: write header file after request is finished |
diff --git a/app/controllers/pages_controller.rb b/app/controllers/pages_controller.rb
index <HASH>..<HASH> 100644
--- a/app/controllers/pages_controller.rb
+++ b/app/controllers/pages_controller.rb
@@ -7,7 +7,6 @@ class PagesController < AlchemyController
caches_action(
:show,
- :layout => false,
:ca... | Fixes page caching. Closes #<I> |
diff --git a/test/term_buffer.js b/test/term_buffer.js
index <HASH>..<HASH> 100644
--- a/test/term_buffer.js
+++ b/test/term_buffer.js
@@ -100,14 +100,14 @@ describe('TermBuffer', function() {
});
it("resize correctly to smaller size", function() {
var t = newTermBuffer(80,24);
- t.write("line1\n");
+ t.writ... | using tabs for indention. |
diff --git a/quilt/patch.py b/quilt/patch.py
index <HASH>..<HASH> 100644
--- a/quilt/patch.py
+++ b/quilt/patch.py
@@ -20,8 +20,9 @@
# 02110-1301 USA
import os
+import os.path
-from quilt.utils import Process
+from quilt.utils import Process, Directory, File
class Patch(object):
@@ -41,3 +42,24 @@ class Patc... | Add a RollbackPatch class
The RollbackPatch class that hard links the backup file created by patch
to the file that should be restored. |
diff --git a/code/photini/metadata_gexiv2.py b/code/photini/metadata_gexiv2.py
index <HASH>..<HASH> 100644
--- a/code/photini/metadata_gexiv2.py
+++ b/code/photini/metadata_gexiv2.py
@@ -30,7 +30,7 @@ class MetadataHandler(object):
return self._md.save_file(self._path)
def get_tags(self):
- retur... | Bug fix: some versions of gexiv2 don't have get_tags method. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -225,6 +225,12 @@ function prepare(options, context, ns, hxmlContent, jsTempFile) {
}
}
+ if (name == '--macro') {
+ // quote macro value
+ args.push(`"$... | Macro with single quotes need to be quoted |
diff --git a/src/Symfony/Component/Form/Form.php b/src/Symfony/Component/Form/Form.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/Form/Form.php
+++ b/src/Symfony/Component/Form/Form.php
@@ -570,18 +570,11 @@ class Form implements \IteratorAggregate, FormInterface
}
foreach ($thi... | [Form] optimized the binding of child forms and calculation of extra data |
diff --git a/src/util.js b/src/util.js
index <HASH>..<HASH> 100644
--- a/src/util.js
+++ b/src/util.js
@@ -289,7 +289,7 @@ const util = {
*/
printDebug: function (str) {
if (debugMode) {
- console.log(str);
+ console.log('[OpenPGP.js debug]', str);
}
},
@@ -300,7 +300,7 @@ const util = {... | `printDebug`: add label to identify source of the log (#<I>) |
diff --git a/app/helpers/tenon/asset_helper.rb b/app/helpers/tenon/asset_helper.rb
index <HASH>..<HASH> 100644
--- a/app/helpers/tenon/asset_helper.rb
+++ b/app/helpers/tenon/asset_helper.rb
@@ -6,7 +6,15 @@ module Tenon
else
i = image_tag(default_asset_thumbnail(asset))
end
- link_to(i, [:e... | Make the image load the crop view rather than the edit title window |
diff --git a/src/Hander.php b/src/Hander.php
index <HASH>..<HASH> 100644
--- a/src/Hander.php
+++ b/src/Hander.php
@@ -17,4 +17,38 @@ namespace SlaxWeb\Cache;
*/
abstract class Handler
{
+ /**
+ * Write
+ *
+ * Write data to cache with the given name and data. The data must be in the
+ * string f... | add basic abstract methods to the abstract handler |
diff --git a/particles/utils.py b/particles/utils.py
index <HASH>..<HASH> 100644
--- a/particles/utils.py
+++ b/particles/utils.py
@@ -189,16 +189,15 @@ def distribute_work(f, inputs, outputs=None, nprocs=1, out_key='output'):
def distinct_seeds(k):
- """ returns k distinct seeds for random number generation
+ ... | faster implementation of distinct_seeds in utils |
diff --git a/cursorcontext.go b/cursorcontext.go
index <HASH>..<HASH> 100644
--- a/cursorcontext.go
+++ b/cursorcontext.go
@@ -134,6 +134,8 @@ func (ti *token_iterator) extract_struct_type() string {
if !ti.go_back() {
return ""
}
+ } else if ti.token().tok == token.COMMA {
+ return ti.extract_struct_type()
... | Better cursor context deduction for array of structs literals.
<URL> |
diff --git a/lib/rib/runner.rb b/lib/rib/runner.rb
index <HASH>..<HASH> 100644
--- a/lib/rib/runner.rb
+++ b/lib/rib/runner.rb
@@ -74,7 +74,7 @@ module Rib::Runner
puts(Rib::VERSION)
exit
- when /[^-]+/
+ when /^[^-]/
load_command(arg)
else | runner.rb: fixed command detecting |
diff --git a/lib/mongoid/reloading.rb b/lib/mongoid/reloading.rb
index <HASH>..<HASH> 100644
--- a/lib/mongoid/reloading.rb
+++ b/lib/mongoid/reloading.rb
@@ -24,7 +24,8 @@ module Mongoid
changed_attributes.clear
apply_defaults
reload_relations
- run_callbacks(:initialize)
+ run_callbacks... | Ensure reload calls after_find callbacks. [ close #<I> ] |
diff --git a/pyemu/en.py b/pyemu/en.py
index <HASH>..<HASH> 100644
--- a/pyemu/en.py
+++ b/pyemu/en.py
@@ -214,6 +214,7 @@ class Ensemble(pd.DataFrame):
"""
df = kwargs.pop("df")
assert isinstance(df,pd.DataFrame)
+ df.columns = [c.lower() for c in df.columns]
mean_values = kw... | cast column names to lower in ensemble from_dataframe |
diff --git a/mod/bigbluebuttonbn/classes/local/proxy/bigbluebutton_proxy.php b/mod/bigbluebuttonbn/classes/local/proxy/bigbluebutton_proxy.php
index <HASH>..<HASH> 100644
--- a/mod/bigbluebuttonbn/classes/local/proxy/bigbluebutton_proxy.php
+++ b/mod/bigbluebuttonbn/classes/local/proxy/bigbluebutton_proxy.php
@@ -80,7 ... | MDL-<I> mod_bigbluebuttonbn: align language with user's preference
* Pick BBB UI language from Moodle user profile language instead of
preferred browser language |
diff --git a/src/python/turicreate/test/test_one_shot_object_detector.py b/src/python/turicreate/test/test_one_shot_object_detector.py
index <HASH>..<HASH> 100644
--- a/src/python/turicreate/test/test_one_shot_object_detector.py
+++ b/src/python/turicreate/test/test_one_shot_object_detector.py
@@ -125,7 +125,7 @@ class... | accelerate OSOD unit test (#<I>) |
diff --git a/scrypture.py b/scrypture.py
index <HASH>..<HASH> 100644
--- a/scrypture.py
+++ b/scrypture.py
@@ -37,7 +37,7 @@ registered_scripts = [
'quick_hash',
'convert_epoch_time',
'file_hash',
-'curl_to_requests_ui'
+#'curl_to_requests'
] | disabled curl_to_requests |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -10,6 +10,7 @@ module.exports = {
rulesConfig: {
"no-async-in-loops": 1,
"no-commented-tests": 0,
+ "no-ok-equality": 1,
"resolve-async": 2
}
}; | Added default rule configuration for no-ok-equality. |
diff --git a/lib/styleguide.js b/lib/styleguide.js
index <HASH>..<HASH> 100644
--- a/lib/styleguide.js
+++ b/lib/styleguide.js
@@ -244,7 +244,7 @@ function jsonSections(sections) {
experimental: section.experimental(),
reference: section.reference(),
markup: section.markup() ? section.markup().toSt... | Preserve undefined and false markup() results |
diff --git a/lib/cf/version.rb b/lib/cf/version.rb
index <HASH>..<HASH> 100644
--- a/lib/cf/version.rb
+++ b/lib/cf/version.rb
@@ -1,3 +1,3 @@
module CF
- VERSION = "4.1.0rc1".freeze
+ VERSION = "4.1.0rc2".freeze
end | Bump to <I>rc2 |
diff --git a/lib/appsignal.rb b/lib/appsignal.rb
index <HASH>..<HASH> 100644
--- a/lib/appsignal.rb
+++ b/lib/appsignal.rb
@@ -222,15 +222,9 @@ module Appsignal
# Sets the log level and sets the logger. Uses a file-based logger or the
# STDOUT-based logger. See the `:log` configuration option.
#
- # @... | Remove deprecated `path_arg` argument from Appsignal.start_logger
Part of #<I>. |
diff --git a/capi_experimental/deployment.go b/capi_experimental/deployment.go
index <HASH>..<HASH> 100644
--- a/capi_experimental/deployment.go
+++ b/capi_experimental/deployment.go
@@ -97,6 +97,10 @@ var _ = CapiExperimentalDescribe("deployment", func() {
Expect(deploymentGuid).ToNot(BeEmpty())
webishProcessT... | Test the "deployment train" scenario in ZDT deployment test
Tests the happy-path scenario where two deployments for the same app
are occurring simultaneously
[finishes #<I>] |
diff --git a/src/adapters/aol.js b/src/adapters/aol.js
index <HASH>..<HASH> 100644
--- a/src/adapters/aol.js
+++ b/src/adapters/aol.js
@@ -85,6 +85,7 @@ var AolAdapter = function AolAdapter() {
return {
adContainerId: _dummyUnit(bid.params.adContainerId),
+ server: bid.params.server, // By default, D... | Supporting adtech endpoint customization |
diff --git a/mode/nsis/nsis.js b/mode/nsis/nsis.js
index <HASH>..<HASH> 100644
--- a/mode/nsis/nsis.js
+++ b/mode/nsis/nsis.js
@@ -71,7 +71,7 @@ CodeMirror.defineSimpleMode("nsis",{
{regex: /[-+\/*=<>!]+/, token: "operator"},
// Variable
- {regex: /\$\w[\w\.]+/, token: "variable"},
+ {regex: /\$\w[\w\... | [nsis mode] improve variable pattern
Follow-up to #<I> to support single letter variable names |
diff --git a/lib/action_kit_api/page.rb b/lib/action_kit_api/page.rb
index <HASH>..<HASH> 100644
--- a/lib/action_kit_api/page.rb
+++ b/lib/action_kit_api/page.rb
@@ -2,16 +2,21 @@ require 'action_kit_api'
class ActionKitApi
class PageFactory
- end
-
- class Page < PageFactory
+ def create(name)
+ end
+ ... | Fleshed out Page and PageFactory just enough to get cucumber to pass |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -295,7 +295,8 @@ function getLink(response, link) {
var pred = function(resource) {
return resource.sys.type === type && resource.sys.id === id;
};
- return _.find(response.items, pred) || _.find(response.includes[... | Fix responses which don't have includes |
diff --git a/fbo.js b/fbo.js
index <HASH>..<HASH> 100644
--- a/fbo.js
+++ b/fbo.js
@@ -4,8 +4,6 @@ var Texture = require( './texture' );
/**
* @class
* @param {WebGLRenderingContext} gl the webgl context this Fbo belongs to
- * @param {uint} width initial width of the fbo, the size can be later changed usin... | fixed Fbo ctor doc |
diff --git a/handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java b/handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java
index <HASH>..<HASH> 100644
--- a/handler/src/main/java/io/netty/handler/ssl/ReferenceCountedOpenSslEngine.java
+++ b/handler/src/main/java/io/netty/... | Ensure we always wrap if there is something left to be send to the remote peer (#<I>)
Motivation:
We need to ensure we call wrap as long as there is something left to be send to the remote peer in cases of non-application data (like for example alerts).
Modifications:
Check the pending data and based on it re... |
diff --git a/lib/preact.rb b/lib/preact.rb
index <HASH>..<HASH> 100644
--- a/lib/preact.rb
+++ b/lib/preact.rb
@@ -49,14 +49,12 @@ module Preact
logger.error "[Preact] No event specified, not logging event"
return nil
end
-
- person = configuration.convert_to_person(user).as_json
... | fixed issue with string event_name + account |
diff --git a/test/test_git_deploy.go b/test/test_git_deploy.go
index <HASH>..<HASH> 100644
--- a/test/test_git_deploy.go
+++ b/test/test_git_deploy.go
@@ -119,10 +119,9 @@ func (s *GitDeploySuite) runBuildpackTest(t *c.C, name string, resources []strin
t.Assert(push, Succeeds)
t.Assert(push, OutputContains, "Creati... | test: Remove unnecessary scale after git push
The receiver already adds a web=1 formation, so the scale command after
the push always exits with "requested scale equals current scale,
nothing to do!". |
diff --git a/lib/rom/adapter/sequel.rb b/lib/rom/adapter/sequel.rb
index <HASH>..<HASH> 100644
--- a/lib/rom/adapter/sequel.rb
+++ b/lib/rom/adapter/sequel.rb
@@ -9,7 +9,8 @@ module ROM
attr_reader :connection
def self.schemes
- [:sqlite, :jdbc]
+ %i(ado amalgalite cubrid db2 dbi do fdbsql... | Add support for all Sequel-backed RDBMS
Closes #<I> |
diff --git a/Kwf/Model/Iterator/Packages.php b/Kwf/Model/Iterator/Packages.php
index <HASH>..<HASH> 100644
--- a/Kwf/Model/Iterator/Packages.php
+++ b/Kwf/Model/Iterator/Packages.php
@@ -33,6 +33,7 @@ class Kwf_Model_Iterator_Packages implements Iterator
$s->limit($this->_packageSize, $this->_currentOffset... | clear rows in packages iterator
it's the whole point of this iterator to use less memory |
diff --git a/src/main/java/net/jodah/failsafe/AsyncExecution.java b/src/main/java/net/jodah/failsafe/AsyncExecution.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/jodah/failsafe/AsyncExecution.java
+++ b/src/main/java/net/jodah/failsafe/AsyncExecution.java
@@ -36,8 +36,6 @@ public final class AsyncExecution<R... | Clarify that AsyncExecution.policyPostExecuted is per-attempt state |
diff --git a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java b/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/cache/impl/AbstractCacheRecordStore.java
+++ b/hazelcast/src/main/java/com/... | Fixed a missing SOURCE_NOT_AVAILABLE in AbstractCacheRecordStore.loadAll() |
diff --git a/mode/css/css.js b/mode/css/css.js
index <HASH>..<HASH> 100644
--- a/mode/css/css.js
+++ b/mode/css/css.js
@@ -54,7 +54,7 @@ CodeMirror.defineMode("css", function(config, parserConfig) {
if (/[\d.]/.test(stream.peek())) {
stream.eatWhile(/[\w.%]/);
return ret("number", "unit");
- ... | [css mode] Fixing a vendor prefix highlighting bug
A more detailed problem description in issue #<I> |
diff --git a/lib/OktaHelpers.js b/lib/OktaHelpers.js
index <HASH>..<HASH> 100644
--- a/lib/OktaHelpers.js
+++ b/lib/OktaHelpers.js
@@ -64,8 +64,8 @@ function constructRecoveryQuestion(question, answer) {
*/
function constructCredentials(password, question, answer) {
var credentials = {};
- credentials.passwo... | Modified Helpers --> constructCredentials to allow a credentials object containing only the password to be created as this is a valid credentials object for creating a new profile. |
diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -39,13 +39,15 @@ module.exports = function(config, fn) {
// return cached instance
if (fn._questions) return fn._questions;
+ var cwd = app.cwd || process.cwd();
var opts = utils.merge({}, app.optio... | ensure app.cwd is propagated onto app.questions |
diff --git a/railties/test/generators/scaffold_generator_test.rb b/railties/test/generators/scaffold_generator_test.rb
index <HASH>..<HASH> 100644
--- a/railties/test/generators/scaffold_generator_test.rb
+++ b/railties/test/generators/scaffold_generator_test.rb
@@ -488,7 +488,7 @@ class ScaffoldGeneratorTest < Rails::... | Fix more assertion counts.
Follow up to e<I>f<I>. |
diff --git a/jax/interpreters/xla.py b/jax/interpreters/xla.py
index <HASH>..<HASH> 100644
--- a/jax/interpreters/xla.py
+++ b/jax/interpreters/xla.py
@@ -187,7 +187,7 @@ translations[core.identity_p] = lambda c, x: x
def zeros_like_translation_rule(c, x):
def _zeros_like(shape):
if shape.is_tuple():
- re... | Write *(...) rather than *tuple(...). |
diff --git a/i3ipc/i3ipc.py b/i3ipc/i3ipc.py
index <HASH>..<HASH> 100644
--- a/i3ipc/i3ipc.py
+++ b/i3ipc/i3ipc.py
@@ -589,7 +589,7 @@ class Connection(object):
def event_socket_teardown(self):
if self.sub_socket:
- self.sub_socket.shutdown(socket.SHUT_WR)
+ self.sub_socket.shutdow... | use SHUT_RDWR for socket shutdown |
diff --git a/reporters/beyond_compare.go b/reporters/beyond_compare.go
index <HASH>..<HASH> 100644
--- a/reporters/beyond_compare.go
+++ b/reporters/beyond_compare.go
@@ -1,5 +1,9 @@
package reporters
+import (
+ "runtime"
+)
+
type beyondCompare struct{}
// NewBeyondCompareReporter creates a new reporter for Be... | add OS X support for beyond compare |
diff --git a/app/assets/javascripts/govuk_publishing_components/components/feedback.js b/app/assets/javascripts/govuk_publishing_components/components/feedback.js
index <HASH>..<HASH> 100644
--- a/app/assets/javascripts/govuk_publishing_components/components/feedback.js
+++ b/app/assets/javascripts/govuk_publishing_com... | Use integer instead of float
Simplifies the implementation working with integers |
diff --git a/src/angular-gridster.js b/src/angular-gridster.js
index <HASH>..<HASH> 100644
--- a/src/angular-gridster.js
+++ b/src/angular-gridster.js
@@ -1156,10 +1156,17 @@
oldSizeX = item.sizeX,
oldSizeY = item.sizeY,
hasCallback = gridster.resizable && gridster.resizable.resize;
- item.... | Fix disabling pushing for resizing too |
diff --git a/test/class_builder_test.rb b/test/class_builder_test.rb
index <HASH>..<HASH> 100644
--- a/test/class_builder_test.rb
+++ b/test/class_builder_test.rb
@@ -38,13 +38,13 @@ class ClassBuilderTest < Test::Unit::TestCase
context 'the find_signal method' do
should 'find the signal "test" for TestOb... | Make tests in ClassBuilderTest pass by changing Everything to Regress. |
diff --git a/src/server/pps/persist/server/rethink_api_server.go b/src/server/pps/persist/server/rethink_api_server.go
index <HASH>..<HASH> 100644
--- a/src/server/pps/persist/server/rethink_api_server.go
+++ b/src/server/pps/persist/server/rethink_api_server.go
@@ -363,7 +363,8 @@ func (a *rethinkAPIServer) UpdatePipe... | UpdatePipeline no longer clears CreatedAt field. |
diff --git a/shared/tooltip.js b/shared/tooltip.js
index <HASH>..<HASH> 100644
--- a/shared/tooltip.js
+++ b/shared/tooltip.js
@@ -12,13 +12,12 @@ class UIManager {
.attr("class", "tooltip")
.style("font-size", "2em")
.style("opacity", 0)
- .style("padding", "4em");... | modified viz to look fit within application |
diff --git a/tests/test_package.py b/tests/test_package.py
index <HASH>..<HASH> 100644
--- a/tests/test_package.py
+++ b/tests/test_package.py
@@ -53,5 +53,5 @@ def test_sign_file_with_identity(monkeypatch):
pkg.sign('gpg', 'identity')
except IOError:
pass
- args = ('gpg', '--detach-sign', '-a... | Place --local-user and argument in middle of sign
Placing --local-user and its argument after the filename makes gpg
think it is the file you're trying to sign. This was re-ordered
accidentally during my refacorting efforts which broke signing.
Closes #<I> |
diff --git a/src/primitives.js b/src/primitives.js
index <HASH>..<HASH> 100644
--- a/src/primitives.js
+++ b/src/primitives.js
@@ -46,7 +46,7 @@
*
* example:
*
- * const arrays = twgl.primitives.createPlaneArrays(1);
+ * const arrays = twgl.primitives.createPlaneVertices(1);
* twgl.primi... | Fix comment in primitives.js |
diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -11,7 +11,7 @@ setup(
name='yoti',
version=VERSION,
packages=find_packages(),
- license='OTHER',
+ license='MIT',
description='The Yoti Python SDK, providing API support for Login, Verify (2FA) and Ag... | [SDK-<I>]: Updated setup.py after changing license |
diff --git a/lib/zyps.rb b/lib/zyps.rb
index <HASH>..<HASH> 100644
--- a/lib/zyps.rb
+++ b/lib/zyps.rb
@@ -196,7 +196,7 @@ class Color
attr_accessor :red, :green, :blue
def initialize (red = 1, green = 1, blue = 1)
- @red, @green, @blue = red, green, blue
+ self.red, self.green, self.blue = red, green, blue
... | Color.new was allowing channel values > 1; fixed. |
diff --git a/mode/clike/clike.js b/mode/clike/clike.js
index <HASH>..<HASH> 100644
--- a/mode/clike/clike.js
+++ b/mode/clike/clike.js
@@ -624,6 +624,10 @@ CodeMirror.defineMode("clike", function(config, parserConfig) {
defKeywords: words("class val var object interface fun"),
atoms: words("true false null th... | [clike] Support @-identifiers in Kotlin mode |
diff --git a/kaybee/app.py b/kaybee/app.py
index <HASH>..<HASH> 100644
--- a/kaybee/app.py
+++ b/kaybee/app.py
@@ -14,8 +14,10 @@ import dectate
from kaybee.plugins.debugdumper.action import DumperAction
from kaybee.plugins.events import EventAction
+from kaybee.plugins.resources.action import ResourceAction
c... | @wip Forgot to add resource as an action. |
diff --git a/src/bootstrap.php b/src/bootstrap.php
index <HASH>..<HASH> 100644
--- a/src/bootstrap.php
+++ b/src/bootstrap.php
@@ -17,6 +17,9 @@ namespace Fuel\Common;
// register the services of this composer library
\Dependency::getInstance()->registerService(new ServicesProvider);
+// alias helper classes to glo... | aliased Str helper class to global |
diff --git a/core/src/test/java/org/acegisecurity/ui/session/HttpSessionEventPublisherTests.java b/core/src/test/java/org/acegisecurity/ui/session/HttpSessionEventPublisherTests.java
index <HASH>..<HASH> 100644
--- a/core/src/test/java/org/acegisecurity/ui/session/HttpSessionEventPublisherTests.java
+++ b/core/src/test... | Removed printStackTrace from expected exception. |
diff --git a/test/Utils/Flex/FlexExecCommandTest.php b/test/Utils/Flex/FlexExecCommandTest.php
index <HASH>..<HASH> 100644
--- a/test/Utils/Flex/FlexExecCommandTest.php
+++ b/test/Utils/Flex/FlexExecCommandTest.php
@@ -125,10 +125,9 @@ class FlexExecCommandTest extends \PHPUnit_Framework_TestCase
]
... | Use assertFileEquals (#<I>) |
diff --git a/symphony/lib/boot/defines.php b/symphony/lib/boot/defines.php
index <HASH>..<HASH> 100644
--- a/symphony/lib/boot/defines.php
+++ b/symphony/lib/boot/defines.php
@@ -242,15 +242,19 @@ define_safe('__SECURE__',
/**
* The root url directory.
+ * This constant will always ends with '/'
+ * to avoid probl... | Make sure the DIRROOT constant ends with a /
This should make is easier to use it.
Re: #<I>
Picked from b6d9edbb<I> |
diff --git a/migrator.go b/migrator.go
index <HASH>..<HASH> 100644
--- a/migrator.go
+++ b/migrator.go
@@ -171,8 +171,7 @@ func (m Migrator) Reset() error {
// CreateSchemaMigrations sets up a table to track migrations. This is an idempotent
// operation.
-func (m Migrator) CreateSchemaMigrations() error {
- c := m... | feat: make CreateSchemaMigrations independent of the migrator (#<I>) |
diff --git a/ceph_deploy/connection.py b/ceph_deploy/connection.py
index <HASH>..<HASH> 100644
--- a/ceph_deploy/connection.py
+++ b/ceph_deploy/connection.py
@@ -16,8 +16,8 @@ def get_connection(hostname, username, logger, threads=5, use_sudo=None):
conn = remoto.Connection(
hostname,
... | use the new sudo detection magic from remoto |
diff --git a/aiosparql/__init__.py b/aiosparql/__init__.py
index <HASH>..<HASH> 100644
--- a/aiosparql/__init__.py
+++ b/aiosparql/__init__.py
@@ -1,2 +1,2 @@
-__version__ = version = "0.1.1"
+__version__ = version = "0.1.2"
version_info = tuple([int(d) for d in version.split("-")[0].split(".")]) | Bumped to version <I> |
diff --git a/docs/src/Home.js b/docs/src/Home.js
index <HASH>..<HASH> 100644
--- a/docs/src/Home.js
+++ b/docs/src/Home.js
@@ -25,7 +25,7 @@ var Home = React.createClass({
<p>Learn Ligo in a few simple steps.</p>
<Link to="hello world" className="call-to-action">Hello World</Link>
... | Fixing the path for the demo app. |
diff --git a/activeresource/test/cases/base_test.rb b/activeresource/test/cases/base_test.rb
index <HASH>..<HASH> 100644
--- a/activeresource/test/cases/base_test.rb
+++ b/activeresource/test/cases/base_test.rb
@@ -5,6 +5,7 @@ require "fixtures/street_address"
require "fixtures/beast"
require "fixtures/proxy"
requir... | method_missing errors on activeresource tests, mocha is not required there
[#<I> state:committed] |
diff --git a/tags/image.js b/tags/image.js
index <HASH>..<HASH> 100644
--- a/tags/image.js
+++ b/tags/image.js
@@ -16,7 +16,7 @@ steal.then(function() {
*/
DocumentJS.tags.image = {
add: function( line ) {
- var m = line.match(/^\s*@image\s*([\w\.\/]*)\s*([\w]*)\s*([\w]*)\s*(.*)/)
+ var m = line.match(/^\s*... | fix for images w/ special characters in them breaking |
diff --git a/test/units/geminabox/proxy/splicer_test.rb b/test/units/geminabox/proxy/splicer_test.rb
index <HASH>..<HASH> 100644
--- a/test/units/geminabox/proxy/splicer_test.rb
+++ b/test/units/geminabox/proxy/splicer_test.rb
@@ -46,11 +46,6 @@ module Geminabox
)
end
- def test_local_file_path
-... | Test was hidden by same name.
Removing it as it seems to never pass. |
diff --git a/cmd/utils.go b/cmd/utils.go
index <HASH>..<HASH> 100644
--- a/cmd/utils.go
+++ b/cmd/utils.go
@@ -265,9 +265,9 @@ func NewCustomHTTPTransport() http.RoundTripper {
Timeout: 30 * time.Second,
KeepAlive: 30 * time.Second,
}).DialContext,
- MaxIdleConns: 100,
- MaxIdleConnsPerHost: 1... | Increased MaxIdleConnsPerHost to prevent excessive re-connections and TIME_WAIT when more than <I> clients are using minio (#<I>) |
diff --git a/xmantissa/test/test_stats.py b/xmantissa/test/test_stats.py
index <HASH>..<HASH> 100644
--- a/xmantissa/test/test_stats.py
+++ b/xmantissa/test/test_stats.py
@@ -31,6 +31,18 @@ class RemoteStatsCollectorTest(BoxReceiverFactoryPowerupTestMixin, unittest.Test
self.sender = CollectingSender()
... | Merge fix-log-observers-<I>
Author: exarkun
Reviewer: washort
Fixes: #<I>
Clean up stats-related log observers at the end of the stats tests
so that global state is the same before and after those tests and
to avoid keeping a ton of extra data in memory for the entire test
suite run. |
diff --git a/admin/index.php b/admin/index.php
index <HASH>..<HASH> 100644
--- a/admin/index.php
+++ b/admin/index.php
@@ -350,8 +350,7 @@
/// If successful, continue upgrading roles and setting everything properly
if ($status) {
if (empty($CFG->rolesactive)) {
-
- ... | MDL-<I> Old stats upgrade that we don't need any more |
diff --git a/lib/model.js b/lib/model.js
index <HASH>..<HASH> 100644
--- a/lib/model.js
+++ b/lib/model.js
@@ -459,12 +459,12 @@ assign(derived, {
Object.keys(CONNECTION_STRING_OPTIONS).forEach((item) => {
if (typeof this[item] !== 'undefined' && !req.query[item]) {
- if (item === 'compressio... | refactor: clean uri from an empty compression (#<I>) |
diff --git a/LeanMapper/Result.php b/LeanMapper/Result.php
index <HASH>..<HASH> 100644
--- a/LeanMapper/Result.php
+++ b/LeanMapper/Result.php
@@ -144,9 +144,6 @@ class Result implements \Iterator
if (!isset($this->data[$id])) {
throw new InvalidArgumentException("Missing row with ID $id.");
}
- if (!$this->... | LeanMapper\Result: removed impractical obstruction in setDataEntry |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.