hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
9c0d8eaa01ce412f68165b03f4dbdf709f173322 | diff --git a/stmt/stmts/insert.go b/stmt/stmts/insert.go
index <HASH>..<HASH> 100644
--- a/stmt/stmts/insert.go
+++ b/stmt/stmts/insert.go
@@ -254,6 +254,7 @@ func (s *InsertIntoStmt) Exec(ctx context.Context) (_ rset.Recordset, err error)
}
rows := make([][]interface{}, len(s.Lists))
+ lastInsertIds := make([]ui... | stmt: fix insert list issue | pingcap_tidb | train |
595176c0531350dc7ca49ac283e6213b6dd50c28 | diff --git a/lib/sql_tree/node/select_query.rb b/lib/sql_tree/node/select_query.rb
index <HASH>..<HASH> 100644
--- a/lib/sql_tree/node/select_query.rb
+++ b/lib/sql_tree/node/select_query.rb
@@ -13,7 +13,7 @@ module SQLTree::Node
raise "At least one SELECT expression is required" if self.select.empty?
sql... | Added some SELECT query specs. | wvanbergen_sql_tree | train |
a71c776fb3cad823a32cbf5766b3ef78928cbea2 | diff --git a/demo/index.rst b/demo/index.rst
index <HASH>..<HASH> 100644
--- a/demo/index.rst
+++ b/demo/index.rst
@@ -271,6 +271,20 @@ If you make docs as Reveal.js presentation, you call ``make revealjs``
This presentation is made from ``https://github.com/attakei/sphinx-revealjs/blob/demo/docs/index.rst``
+SUpp... | Add 'revealjs_fragments' directive.
* This add 'fragment' class into children of nested contents. | attakei_sphinx-revealjs | train |
3b99b05c16db4e84b80eb16dc19a5638c4aee067 | diff --git a/spyder/plugins/editor/widgets/codeeditor.py b/spyder/plugins/editor/widgets/codeeditor.py
index <HASH>..<HASH> 100644
--- a/spyder/plugins/editor/widgets/codeeditor.py
+++ b/spyder/plugins/editor/widgets/codeeditor.py
@@ -4316,6 +4316,7 @@ class CodeEditor(TextEditBaseWidget):
key = event.key()
... | Allow Alt+Backspace to be handled by default handler
This commit causes Backspaces key presses with the Alt-modifier to be
handled by Qt's default event handler. Previously only the Ctrl- and
Shift-modifiers were considered.
Needed to pass test_builtin_undo_redo in
spyder/plugins/editor/widgets/tests/test_shortcuts.p... | spyder-ide_spyder | train |
df552d496c72e8527a92ebb48267ded86123c380 | diff --git a/lib/components/services/audit/generate-trigger-statement.js b/lib/components/services/audit/generate-trigger-statement.js
index <HASH>..<HASH> 100644
--- a/lib/components/services/audit/generate-trigger-statement.js
+++ b/lib/components/services/audit/generate-trigger-statement.js
@@ -16,5 +16,7 @@ module.... | a kind of fix for stopping trying to create a trigger that already exists
ideally it should come through the model via pg-model or pg-info or something rather than hardcoded query | wmfs_tymly-pg-plugin | train |
9f1d5b8c7c06c195daeee1dcd2b9f2ab0921a115 | diff --git a/src/com/opencms/file/CmsResourceTypePage.java b/src/com/opencms/file/CmsResourceTypePage.java
index <HASH>..<HASH> 100644
--- a/src/com/opencms/file/CmsResourceTypePage.java
+++ b/src/com/opencms/file/CmsResourceTypePage.java
@@ -1,7 +1,7 @@
/*
* File : $Source: /alkacon/cvs/opencms/src/com/opencms/fil... | method checkFolders: do not throw exception when unlocking new folder fails | alkacon_opencms-core | train |
ab69759b8e59bec9afd831d36e8e6f435d65a1ce | diff --git a/plaso/formatters/windows.py b/plaso/formatters/windows.py
index <HASH>..<HASH> 100644
--- a/plaso/formatters/windows.py
+++ b/plaso/formatters/windows.py
@@ -65,7 +65,7 @@ class WindowsRegistryListEventFormatter(interface.ConditionalEventFormatter):
class WindowsRegistryNetworkEventFormatter(interface... | Clean up of NetworkList Windows Registry plugin #<I> (#<I>) | log2timeline_plaso | train |
87dc8cee8f0fb463c256775d58ae5ad627fe7410 | diff --git a/lib/spring/test/watcher_test.rb b/lib/spring/test/watcher_test.rb
index <HASH>..<HASH> 100644
--- a/lib/spring/test/watcher_test.rb
+++ b/lib/spring/test/watcher_test.rb
@@ -162,6 +162,33 @@ module Spring
watcher.add './foobar'
assert watcher.files.empty?
end
+
+ test "add sym... | Gracefully deal with dangling symlinks
* Don't add files that are dangling symlinks
* When watching a directory, ignore dangling symlinks rather than treating them as forever-stale | rails_spring | train |
4fb856af3bfa58b7ce305e2f8d2cc35736e7c374 | diff --git a/src/ol/reproj.js b/src/ol/reproj.js
index <HASH>..<HASH> 100644
--- a/src/ol/reproj.js
+++ b/src/ol/reproj.js
@@ -198,7 +198,7 @@ export function calculateSourceExtentResolution(
* @param {Array<ImageExtent>} sources Array of sources.
* @param {number} gutter Gutter of the sources.
* @param {boolean}... | change typedef to boolean | openlayers_openlayers | train |
982d721659c7e97efce3f6a0b1fcc4e2b63b2609 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -2,13 +2,18 @@
var Resource = require('./lib/resource.js')
-var Marvel, merge
+var Marvel, merge, hasProp
+
+hasProp = function(o, p) {
+ return Object.prototype.hasOwnProperty.call(o, p)
+}
// merge
merge = function... | added hasProp function to deal with node.js changes
seems like somewhere we're creating a non-Object map, which should not
have functions from the Object prototype. | swang_marvel | train |
ddee70e6661b1a4982c1abfe20243802cd252ac9 | diff --git a/src/main/java/org/craftercms/engine/util/spring/cors/SiteAwareCorsConfigurationSource.java b/src/main/java/org/craftercms/engine/util/spring/cors/SiteAwareCorsConfigurationSource.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/craftercms/engine/util/spring/cors/SiteAwareCorsConfigurationSource.jav... | Fix for patterns in CORS config (#<I>) | craftercms_engine | train |
bb4774440266e560f4e0e762c4a88a18ed1523db | diff --git a/aiotg/chat.py b/aiotg/chat.py
index <HASH>..<HASH> 100644
--- a/aiotg/chat.py
+++ b/aiotg/chat.py
@@ -209,6 +209,23 @@ class Chat:
**options
)
+ def send_contact(self, phone_number, first_name, **options):
+ """
+ Send phone contacts.
+
+ :param str phone_num... | Document send_contact (#<I>) | szastupov_aiotg | train |
da236238303d0a3fd0cc6d889cad1afb58058040 | diff --git a/lib/Api/Leads.php b/lib/Api/Leads.php
index <HASH>..<HASH> 100644
--- a/lib/Api/Leads.php
+++ b/lib/Api/Leads.php
@@ -73,4 +73,15 @@ class Leads extends Contacts
{
return $this->makeRequest('contacts/'.$id.'/campaigns');
}
+
+ /**
+ * Change the number of points a lead
+ *... | API - added function setPointsToLead | mautic_api-library | train |
f8f6cd976af3b81d9b06f7b1ec87f31aa0f70427 | diff --git a/packages/ra-core/src/actions/undoActions.js b/packages/ra-core/src/actions/undoActions.js
index <HASH>..<HASH> 100644
--- a/packages/ra-core/src/actions/undoActions.js
+++ b/packages/ra-core/src/actions/undoActions.js
@@ -3,7 +3,7 @@ export const UNDO = 'RA/UNDO';
export const START_OPTIMISTIC_MODE = 'RA/... | Synchronize undoable with default snackbar delay | marmelab_react-admin | train |
ad18d9bb5f7a6ed3e703c1c944e97d5866b24cb4 | diff --git a/src/Stream.php b/src/Stream.php
index <HASH>..<HASH> 100644
--- a/src/Stream.php
+++ b/src/Stream.php
@@ -76,7 +76,7 @@ final class Stream implements StreamInterface
$new = new self();
$new->stream = $body;
$meta = \stream_get_meta_data($new->stream);
- $ne... | Fix checking for seekable stream resources (#<I>)
Userland stream wrappers always return true for the "seekable" metadata, yet this can be wrong. Here is a more accurate check. | Nyholm_psr7 | train |
f5a9c38a36cfebccaa4bd92021b02d0ed9d05113 | diff --git a/spec/overcommit/utils_spec.rb b/spec/overcommit/utils_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/overcommit/utils_spec.rb
+++ b/spec/overcommit/utils_spec.rb
@@ -207,7 +207,7 @@ describe Overcommit::Utils do
end
describe '.execute_in_background' do
- let(:arguments) { %w[touch some-file] }
+... | Use echo rather than touch for Windows compatibility | sds_overcommit | train |
d416b90424063f1596f09843aee9bd10729c4740 | diff --git a/gulpfile.js b/gulpfile.js
index <HASH>..<HASH> 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -1,3 +1,8 @@
+'use-strict';
+
+//////////////////////////////
+// Requires
+//////////////////////////////
var autoprefixer = require('gulp-autoprefixer');
var browserSync = require('browser-sync').create();
var... | Create dirs object, 'use strict' and comments | carbon-design-system_carbon-components | train |
6128625435d413b3f73ac9b60e6500b84b8261e3 | diff --git a/lib/process-adapter.js b/lib/process-adapter.js
index <HASH>..<HASH> 100644
--- a/lib/process-adapter.js
+++ b/lib/process-adapter.js
@@ -24,7 +24,17 @@ exports.send = (name, data) => {
// `process.channel` was added in Node.js 7.1.0, but the channel was available
// through an undocumented API as `pro... | Keep IPC channel referenced once it's needed again
Ensure the IPC channel stays referenced. This is a safe-guard: it's easy
to end up in a situation where the channel needs to be referenced but
it's unreferenced because other code wasn't aware. | avajs_ava | train |
048427f0e35d235b5a913f9b130048cfe75fbf55 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100755
--- a/index.js
+++ b/index.js
@@ -13,7 +13,7 @@ const app = express();
const allowedMethods = ['GET', 'POST', 'OPTIONS', 'PUT', 'PATCH', 'DELETE'];
const DEFAULT_PORT = 8081;
-const DEFAULT_PATH = path.join(__dirname, 'data');
+const DEFAULT_PATH = path.j... | Refs #<I> - Now all paths to stubbed data are converted to absolute paths | contactlab_saray | train |
8bdf80375dd9012f14cf6ec977252fa0bfd10ab4 | diff --git a/Kwf/Component/Cache/Redis.php b/Kwf/Component/Cache/Redis.php
index <HASH>..<HASH> 100644
--- a/Kwf/Component/Cache/Redis.php
+++ b/Kwf/Component/Cache/Redis.php
@@ -123,8 +123,13 @@ class Kwf_Component_Cache_Redis extends Kwf_Component_Cache
}
if ($update === array()) {
- ... | Redis: Don't use keys, port to scan for better performance | koala-framework_koala-framework | train |
e01aab02591f2127fabe0c5c1c8a7b754bfb474e | diff --git a/lib/services/base.rb b/lib/services/base.rb
index <HASH>..<HASH> 100644
--- a/lib/services/base.rb
+++ b/lib/services/base.rb
@@ -25,15 +25,11 @@ module Services
private
- def find_objects(ids_or_objects, klass = nil)
- if klass.nil?
- klass = self.class.to_s[/Services::([^:]+)/, 1]... | Always return an array from Services::Base#find_objects and a single object from Services::Base#find_object | krautcomputing_services | train |
2d2d374881d293266f6c7c575c9ba388e688a028 | diff --git a/python_utils/__about__.py b/python_utils/__about__.py
index <HASH>..<HASH> 100644
--- a/python_utils/__about__.py
+++ b/python_utils/__about__.py
@@ -6,4 +6,4 @@ __description__: str = (
'with the standard Python install')
__url__: str = 'https://github.com/WoLpH/python-utils'
# Omit type info due t... | Incrementing version to <I> | WoLpH_python-utils | train |
5dd7b6fbf9b110cab0f86bc002d08bf3748a718c | diff --git a/lib/geometry/point_zero.rb b/lib/geometry/point_zero.rb
index <HASH>..<HASH> 100644
--- a/lib/geometry/point_zero.rb
+++ b/lib/geometry/point_zero.rb
@@ -30,6 +30,11 @@ everything else, regardless of size. You can think of it as an application of th
end
end
+ def is_a?(klass)
+ (klass == Poin... | PointZero should pretend to be a Point | bfoz_geometry | train |
d20757b6598dacc555d47c4bf9a6695ba8e9e05d | diff --git a/test/cli.test.js b/test/cli.test.js
index <HASH>..<HASH> 100644
--- a/test/cli.test.js
+++ b/test/cli.test.js
@@ -45,5 +45,5 @@ describe('CLI', () => {
proc.on('exit', () => {
done();
});
- }).timeout(6000);
+ }).timeout(18000);
}); | Upgrade another timeout for slow CI | webpack_webpack-dev-server | train |
edbe5f043094f73de437bdd95c8e4ed9224865c8 | diff --git a/decidim-core/lib/decidim/core/engine.rb b/decidim-core/lib/decidim/core/engine.rb
index <HASH>..<HASH> 100644
--- a/decidim-core/lib/decidim/core/engine.rb
+++ b/decidim-core/lib/decidim/core/engine.rb
@@ -22,6 +22,7 @@ require "omniauth"
require "omniauth-facebook"
require "omniauth-twitter"
require "o... | Require omniauth/rails_csrf_protection explicitly (#<I>) | decidim_decidim | train |
5da1f8822420a48ef15dd6da6a0f06f14b6858c7 | diff --git a/idol/src/main/java/com/hp/autonomy/searchcomponents/idol/search/IdolDocumentService.java b/idol/src/main/java/com/hp/autonomy/searchcomponents/idol/search/IdolDocumentService.java
index <HASH>..<HASH> 100644
--- a/idol/src/main/java/com/hp/autonomy/searchcomponents/idol/search/IdolDocumentService.java
+++ ... | FIND-<I> Comparison fails when one search has 0 results :: use fake token when there are no results and IDOL doesn't generate a state token [rev. matthew.gordon] | microfocus-idol_haven-search-components | train |
45fa772fe79d77e10839e3cbb42a695a868600e8 | diff --git a/src/Jobs/Form/ListFilter.php b/src/Jobs/Form/ListFilter.php
index <HASH>..<HASH> 100644
--- a/src/Jobs/Form/ListFilter.php
+++ b/src/Jobs/Form/ListFilter.php
@@ -21,6 +21,16 @@ use Core\Form\ViewPartialProviderInterface;
class ListFilter extends Form implements ViewPartialProviderInterface
{
/**
+ ... | adds location "l" and distance "d" to search job search formular | yawik_jobs | train |
890e02964f4dcd3687ac9def985aede01ef889f4 | diff --git a/examples/tp/hello_tp.py b/examples/tp/hello_tp.py
index <HASH>..<HASH> 100644
--- a/examples/tp/hello_tp.py
+++ b/examples/tp/hello_tp.py
@@ -39,9 +39,11 @@ PLEASE READ THROUGH THE CODE COMMENTS - THEY EXPLAIN THE OUTPUT IN DETAIL
# Can't live without numpy
import numpy
-# This is the class correspondi... | document choice of TP implementation
TP<I>X2 is fast,optimized implementation using C++ code
TP is python, simple, slow
Conflicts:
examples/tp/hello_tp.py | numenta_nupic | train |
7458d7d753b9cac430808ea6473818d10033474a | diff --git a/cheroot/workers/threadpool.py b/cheroot/workers/threadpool.py
index <HASH>..<HASH> 100644
--- a/cheroot/workers/threadpool.py
+++ b/cheroot/workers/threadpool.py
@@ -186,13 +186,12 @@ class ThreadPool:
def _clear_dead_threads(self):
# Remove any dead threads from our list
- for t in ... | More compact code in "clear dead threads" method. | cherrypy_cheroot | train |
bd45ce8a95ad9d1ef97372d752b61d1dde4a8db0 | diff --git a/src/Common/Misc/AnnotationBuilder/index.js b/src/Common/Misc/AnnotationBuilder/index.js
index <HASH>..<HASH> 100644
--- a/src/Common/Misc/AnnotationBuilder/index.js
+++ b/src/Common/Misc/AnnotationBuilder/index.js
@@ -67,6 +67,28 @@ function fork(annotationObj) {
return Object.assign({}, annotationObj, ... | Fix(AnnotationBuilder): Supply a default name for range annotations
Derive from the fields that are in the range annotation when
it is created - it doesn't update as fields are added/removed
from the range annotation. Update might be desirable in the
future. | Kitware_paraviewweb | train |
d785d88141986acd05eaaa8456ddb6e44f8738ab | diff --git a/jmock2/test/org/jmock/test/unit/lib/JavaReflectionImposteriserTests.java b/jmock2/test/org/jmock/test/unit/lib/JavaReflectionImposteriserTests.java
index <HASH>..<HASH> 100644
--- a/jmock2/test/org/jmock/test/unit/lib/JavaReflectionImposteriserTests.java
+++ b/jmock2/test/org/jmock/test/unit/lib/JavaReflec... | Removing deprecation warnings in JDK 6 | jmock-developers_jmock-library | train |
d80d6df8c83b7dcb54eb5ca8951cf092657c7bf5 | diff --git a/core/src/main/java/org/primefaces/extensions/component/scaffolding/ScaffoldingRenderer.java b/core/src/main/java/org/primefaces/extensions/component/scaffolding/ScaffoldingRenderer.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/primefaces/extensions/component/scaffolding/ScaffoldingRenderer.... | No need to check for Ajax (#<I>) | primefaces-extensions_core | train |
46590799ad2fd143aba29e2947fc741088f08a0e | diff --git a/test-projects/01-basic-app/config/targets.js b/test-projects/01-basic-app/config/targets.js
index <HASH>..<HASH> 100644
--- a/test-projects/01-basic-app/config/targets.js
+++ b/test-projects/01-basic-app/config/targets.js
@@ -14,5 +14,6 @@ if (isCI || isProduction) {
}
module.exports = {
- browsers
+ ... | Add `node: 'current'` to targets.js for make FastBoot tests pass | samselikoff_ember-cli-mirage | train |
ca47b3f78d75ba08ed6c169a3cd523364b897631 | diff --git a/src/Util.php b/src/Util.php
index <HASH>..<HASH> 100644
--- a/src/Util.php
+++ b/src/Util.php
@@ -126,7 +126,22 @@ class Util implements TaggingUtility
'š' => 's', 'ū' => 'u', 'ž' => 'z',
//Romanian
- 'Ă' => 'A', 'ă' => 'a', 'Ș' => 'S', 'ș' => 's', 'Ț' => 'T', 'ț' => 't'
+ 'Ă' => 'A'... | Adding Vietnamese charmap for making slug | rtconner_laravel-tagging | train |
6aa03819f6a78eae10dd72f83d3c9a19567c36d1 | diff --git a/bigfloat_cython/bigfloat/__init__.py b/bigfloat_cython/bigfloat/__init__.py
index <HASH>..<HASH> 100644
--- a/bigfloat_cython/bigfloat/__init__.py
+++ b/bigfloat_cython/bigfloat/__init__.py
@@ -61,6 +61,9 @@ __all__ = [
# numeric functions
'next_up', 'next_down',
+ # 5.2 Assignment Functions... | Reorganization: move const_??? functions to correct place in core.py; move pos import to correct place in __init__.py | mdickinson_bigfloat | train |
ddd22be4e57a2ab6898c9d980b4c4e09e3b80a30 | diff --git a/raven/transport/registry.py b/raven/transport/registry.py
index <HASH>..<HASH> 100644
--- a/raven/transport/registry.py
+++ b/raven/transport/registry.py
@@ -51,15 +51,9 @@ class TransportRegistry(object):
def supported_scheme(self, scheme):
return scheme in self._schemes
- def get_trans... | fixed a transport init args. | getsentry_raven-python | train |
fa5a5d899d26919410f51ecd3d3c9dce8ecd4f7f | diff --git a/src/components/BodyAttributes.js b/src/components/BodyAttributes.js
index <HASH>..<HASH> 100644
--- a/src/components/BodyAttributes.js
+++ b/src/components/BodyAttributes.js
@@ -1,6 +1,11 @@
import { Component, Children, PropTypes } from "react";
import withSideEffect from "react-side-effect";
+
+const... | Cleanup transform of HTML4 attributes
Allows more flexible setting of the transformable attributes | TrueCar_gluestick-shared | train |
e68ef3f67442701d663d96888c1341f59b9f77b9 | diff --git a/src/jasmine.nunit_reporter.js b/src/jasmine.nunit_reporter.js
index <HASH>..<HASH> 100644
--- a/src/jasmine.nunit_reporter.js
+++ b/src/jasmine.nunit_reporter.js
@@ -55,6 +55,10 @@
}
},
+ reportSpecStarting: function(spec) {
+ spec.startTime = new Date();
+ ... | Add skipped spec support to NUnitXmlReporter (fixes #<I>) | larrymyers_jasmine-reporters | train |
86f101f02cad4b7cb6dd3681cc2c7bfa44946f44 | diff --git a/src/openseadragon.js b/src/openseadragon.js
index <HASH>..<HASH> 100644
--- a/src/openseadragon.js
+++ b/src/openseadragon.js
@@ -1385,17 +1385,16 @@ window.OpenSeadragon = window.OpenSeadragon || function( options ){
/**
- * Loads a Deep Zoom Image description from a url, XML string o... | refs #<I> - pointing deprecated method at correct current method. | openseadragon_openseadragon | train |
d21cd9111f78bed5995672471bc5f42d4de389f3 | diff --git a/lib/danger/request_sources/github.rb b/lib/danger/request_sources/github.rb
index <HASH>..<HASH> 100644
--- a/lib/danger/request_sources/github.rb
+++ b/lib/danger/request_sources/github.rb
@@ -50,9 +50,16 @@ module Danger
# Just remove the comment, if there's nothing to say.
delete_old_c... | Support issue editing instead of new issue creation | danger_danger | train |
8a50f773089b7e5c55a179443cc07aef8315c9ec | diff --git a/monty/tempfile.py b/monty/tempfile.py
index <HASH>..<HASH> 100644
--- a/monty/tempfile.py
+++ b/monty/tempfile.py
@@ -42,6 +42,7 @@ class ScratchDir:
copy_from_current_on_enter=False,
copy_to_current_on_exit=False,
gzip_on_exit=False,
+ remove_symlink_on_exit=False,
... | Ad another kwarg to tempfile | materialsvirtuallab_monty | train |
abd4ce23ad27c96e473053bd0535b87a641ded14 | diff --git a/library/tests/java/net/danlew/android/joda/test/TestDateTimeZone.java b/library/tests/java/net/danlew/android/joda/test/TestDateTimeZone.java
index <HASH>..<HASH> 100644
--- a/library/tests/java/net/danlew/android/joda/test/TestDateTimeZone.java
+++ b/library/tests/java/net/danlew/android/joda/test/TestDat... | Fixed tests for new provider setup
It does't really matter if the provider settings work, we only care if we can
set ResourceZoneInfoProvider ourselves. | dlew_joda-time-android | train |
fe9ff6ddb7984189a83ee950e01dac04392bf8cd | diff --git a/Generator/Base.php b/Generator/Base.php
index <HASH>..<HASH> 100644
--- a/Generator/Base.php
+++ b/Generator/Base.php
@@ -94,6 +94,8 @@ abstract class Base {
/**
* Reference to the base component of this component.
+ *
+ * This should be used to access the component data.
*/
public $bas... | Added declaration of $component_data variable to generator Base. | drupal-code-builder_drupal-code-builder | train |
2df853b018db42023cb500b50746e9b33ec953be | diff --git a/jquery.geocomplete.js b/jquery.geocomplete.js
index <HASH>..<HASH> 100644
--- a/jquery.geocomplete.js
+++ b/jquery.geocomplete.js
@@ -1,5 +1,5 @@
/**
- * jQuery Geocoding and Places Autocomplete Plugin - V 1.4
+ * jQuery Geocoding and Places Autocomplete Plugin - V 1.4.1
*
* @author Martin Kleppe <kle... | Add marker to map on initialize. Fixes #<I> | ubilabs_geocomplete | train |
342385fa50f60302a3492f949b23ddc437b2f487 | diff --git a/buildapi_client/buildapi_client.py b/buildapi_client/buildapi_client.py
index <HASH>..<HASH> 100644
--- a/buildapi_client/buildapi_client.py
+++ b/buildapi_client/buildapi_client.py
@@ -26,11 +26,7 @@ class BuildapiAuthError(Exception):
pass
-class BuildapiError(Exception):
- pass
-
-
-def trig... | Do not raise BuildapiError if files are not set properly
First of all, the implicit meanings of files was rather confusing.
Second of all, mozci is the only module that actually knows if files
should be set or not. We can decide there. | armenzg_buildapi_client | train |
f387b7bf04fc69ccc0f95d5670c19000a6006e21 | diff --git a/wakatime/logger.py b/wakatime/logger.py
index <HASH>..<HASH> 100644
--- a/wakatime/logger.py
+++ b/wakatime/logger.py
@@ -9,6 +9,7 @@
:license: BSD, see LICENSE for more details.
"""
+import inspect
import logging
import os
import sys
@@ -47,14 +48,19 @@ class JsonFormatter(logging.Formatter):
... | include package namespace and line number in logger output | wakatime_wakatime | train |
62cdb7fc5080aa0fa836e9d972ca36c657a7f10d | diff --git a/src/net/sf/mpxj/mpx/TimeUnitUtility.java b/src/net/sf/mpxj/mpx/TimeUnitUtility.java
index <HASH>..<HASH> 100644
--- a/src/net/sf/mpxj/mpx/TimeUnitUtility.java
+++ b/src/net/sf/mpxj/mpx/TimeUnitUtility.java
@@ -55,7 +55,7 @@ final class TimeUnitUtility
@SuppressWarnings("unchecked") public static TimeUn... | Updated to make MPX duration parsing more lenient (Contributed by Jari Niskala). | joniles_mpxj | train |
783eb84d04bba7617e353ddc4453678dbbbd2a9f | diff --git a/lib/bionode-ncbi.js b/lib/bionode-ncbi.js
index <HASH>..<HASH> 100644
--- a/lib/bionode-ncbi.js
+++ b/lib/bionode-ncbi.js
@@ -142,7 +142,7 @@ function createAPISearchUrl(db, term) {
APIROOT + 'esearch.fcgi?',
DEFAULTS,
'db=' + db,
- 'term=' + encodeURI(obj.replace(/['"]+/g, '')),
... | Make sure term is string before trying replace | bionode_bionode-ncbi | train |
25bfb4aaece09fda0ede9386743babe0fdfee02d | diff --git a/gpapi/googleplay.py b/gpapi/googleplay.py
index <HASH>..<HASH> 100644
--- a/gpapi/googleplay.py
+++ b/gpapi/googleplay.py
@@ -204,6 +204,11 @@ class GooglePlayAPI(object):
raise LoginError("Auth token not found.")
def _check_response_integrity(self, apps):
+ """Like described in ... | bulkDetails: handle case when app doesn't exist
Now the function returns None if an app doesnt't exists. This does not
apply for details() function, which instead return a RequestError if the
app doesn't exist. | NoMore201_googleplay-api | train |
2bf6435881a133c630fd50d610c6ef2e606fb1e1 | diff --git a/smack-core/src/main/java/org/jivesoftware/smack/packet/Bind.java b/smack-core/src/main/java/org/jivesoftware/smack/packet/Bind.java
index <HASH>..<HASH> 100644
--- a/smack-core/src/main/java/org/jivesoftware/smack/packet/Bind.java
+++ b/smack-core/src/main/java/org/jivesoftware/smack/packet/Bind.java
@@ -1... | Make Bind IQ constructor private | igniterealtime_Smack | train |
b35d4afe52781c39926b6a26455e1fc68f8bb01e | diff --git a/spyderlib/__init__.py b/spyderlib/__init__.py
index <HASH>..<HASH> 100644
--- a/spyderlib/__init__.py
+++ b/spyderlib/__init__.py
@@ -80,7 +80,7 @@ def get_versions(reporev=True):
'python': platform.python_version(), # "2.7.3"
'bitness': 64 if sys.maxsize > 2**32 else 32,
'qt': ... | Remove reference to PySide in requirements | spyder-ide_spyder | train |
29040b7734c6b7fdbe6b24ecf36a042d67397f02 | diff --git a/sheet.go b/sheet.go
index <HASH>..<HASH> 100644
--- a/sheet.go
+++ b/sheet.go
@@ -56,6 +56,25 @@ func (s *Sheet) AddRow() *Row {
return row
}
+// Make sure we always have as many Rows as we do cells.
+func (s *Sheet) maybeAddRow(rowCount int) {
+ if rowCount > s.MaxRow {
+ loopCnt := rowCount - s.Max... | sheet.row get row by index from sheet issue #<I> | tealeg_xlsx | train |
1497e4dfeb61dd65b1b012f3e93433880e281e9d | diff --git a/gremlinpy/gremlin.py b/gremlinpy/gremlin.py
index <HASH>..<HASH> 100644
--- a/gremlinpy/gremlin.py
+++ b/gremlinpy/gremlin.py
@@ -219,7 +219,7 @@ class Gremlin(LinkList):
if value in self.stack_bound_params.values():
for n, v in self.bound_params.items():
- if v == va... | fixed issue reported by Rob McDaniel where nested Gremlin instances were not inheriting parent bound params correctly. tests added too | emehrkay_gremlinpy | train |
de0b3a0e8d02b483787f51e312a56fda35546c77 | diff --git a/foyer/forcefield.py b/foyer/forcefield.py
index <HASH>..<HASH> 100755
--- a/foyer/forcefield.py
+++ b/foyer/forcefield.py
@@ -228,7 +228,9 @@ def _separate_urey_bradleys(system, topology):
if isinstance(force, mm.HarmonicBondForce):
for bond_idx in range(force.getNumBonds()):
... | Update logic to handle different ordering of atom indices in bonds | mosdef-hub_foyer | train |
e9dceb36e99a633f8b393589b7984e731f7b0d5d | diff --git a/pkg/kubelet/kubelet.go b/pkg/kubelet/kubelet.go
index <HASH>..<HASH> 100644
--- a/pkg/kubelet/kubelet.go
+++ b/pkg/kubelet/kubelet.go
@@ -441,6 +441,7 @@ func NewMainKubelet(
return nil, err
}
klet.runtimeCache = runtimeCache
+ klet.reasonCache = NewReasonCache()
klet.workQueue = queue.NewBasicWor... | Start using reason cache in kubelet | kubernetes_kubernetes | train |
e1c4f1e3da16c099e290ac6930f22d560355ee12 | diff --git a/vsphere/datadog_checks/vsphere/config.py b/vsphere/datadog_checks/vsphere/config.py
index <HASH>..<HASH> 100644
--- a/vsphere/datadog_checks/vsphere/config.py
+++ b/vsphere/datadog_checks/vsphere/config.py
@@ -124,6 +124,12 @@ class VSphereConfig(object):
if 'property' not in resource_filter:
... | Properly error when filtering resources by the `tag` property but `collect_tags` is disabled (#<I>)
* Properly error when filtering resources by the `tag` property but `collect_tags` is disabled
* address | DataDog_integrations-core | train |
18e78c1b8e1ad375cd8ef1d16b81ecbc7a61f545 | diff --git a/class.krumo.php b/class.krumo.php
index <HASH>..<HASH> 100644
--- a/class.krumo.php
+++ b/class.krumo.php
@@ -577,6 +577,8 @@ This is a list of all the values from the <code><b><?php echo realpath($ini_file
print "</ul></div>\n";
+ print "<!-- Krumo - HTML -->\n\n";
+
// flee the hive
$_recur... | Show the CSS/JavaScript/HTML sections with appropriate tags
This makes reading the HTML source a lot easier | mmucklo_krumo | train |
2cb566f2cac846779a80a6d4dc4f6b9c4eaaa35d | diff --git a/build-lib/polyfills.js b/build-lib/polyfills.js
index <HASH>..<HASH> 100644
--- a/build-lib/polyfills.js
+++ b/build-lib/polyfills.js
@@ -13,13 +13,15 @@ module.exports = function (/* env */) {
header: ';(function (self) {',
inputFiles: ['rsvp.js'],
footer: `if (self.Promise === undefined) {... | Permamnently disable source mapping for polyfills and external files | Shopify_js-buy-sdk | train |
95137c24c062c258a6c208b1599044ec93f23e07 | diff --git a/src/DataTables/AbstractDataTable.php b/src/DataTables/AbstractDataTable.php
index <HASH>..<HASH> 100644
--- a/src/DataTables/AbstractDataTable.php
+++ b/src/DataTables/AbstractDataTable.php
@@ -246,7 +246,7 @@ CDATA;
'print' => ['extend' => 'print', 'text' => '<i class="fa fa-print"></i> '.tra... | Auto close bulk menu after child actions are clicked | rinvex_cortex-foundation | train |
44c12af62d28dadc4081cd904675becfcb4aabfa | diff --git a/spec/koala/api_base_tests.rb b/spec/koala/api_base_tests.rb
index <HASH>..<HASH> 100644
--- a/spec/koala/api_base_tests.rb
+++ b/spec/koala/api_base_tests.rb
@@ -29,6 +29,10 @@ class ApiBaseTests < Test::Unit::TestCase
service.api('anything')
end
+ it "should properly handle the htt... | Added pending tests for api and http_service based on recent changes. | arsduo_koala | train |
151d124c444962e6e34ad177b46bd6c0a1c01a7b | diff --git a/mcquery.js b/mcquery.js
index <HASH>..<HASH> 100644
--- a/mcquery.js
+++ b/mcquery.js
@@ -46,10 +46,10 @@ var Query = module.exports = function Query(){
function doHandshake(){
var token = generateToken();
- session.idToken=token;
+ session.sessionToken=token;
m.send(s... | renamed tokens to better fit the protocol definition | kmpm_node-mcquery | train |
c740da15d113c0b8f757fa2c914aeb3c6edf00c6 | diff --git a/lib/config/configuration.go b/lib/config/configuration.go
index <HASH>..<HASH> 100644
--- a/lib/config/configuration.go
+++ b/lib/config/configuration.go
@@ -34,9 +34,10 @@ import (
"github.com/gravitational/teleport/lib/service"
"github.com/gravitational/teleport/lib/services"
"github.com/gravitatio... | Started using "osext" library to determine the path to the executable | gravitational_teleport | train |
77fc7a4d9f83fb9a26c817055be07798d53ed37f | diff --git a/concrete/single_pages/dashboard/system/update/update/local_available_update.php b/concrete/single_pages/dashboard/system/update/update/local_available_update.php
index <HASH>..<HASH> 100644
--- a/concrete/single_pages/dashboard/system/update/update/local_available_update.php
+++ b/concrete/single_pages/das... | Avoid accessing property of null object | concrete5_concrete5 | train |
e0009065064a09d97346e19f5e14fa72efa54830 | diff --git a/bosh-director/lib/bosh/director/api/task_helper.rb b/bosh-director/lib/bosh/director/api/task_helper.rb
index <HASH>..<HASH> 100644
--- a/bosh-director/lib/bosh/director/api/task_helper.rb
+++ b/bosh-director/lib/bosh/director/api/task_helper.rb
@@ -11,18 +11,17 @@ module Bosh::Director
... | Fix leaking fds in task helper | cloudfoundry_bosh | train |
fb5cff602229782c3b8ad835dd3e72340de26c32 | diff --git a/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/commands/CompositeCommand.java b/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/services/task/commands/CompositeCommand.java
index <HASH>..<HASH> 100644
--- a/jbpm-human-task/jbpm-human-task-core/src/main/java/org/jbpm/s... | BPMSPL-<I>: adding new command comments by id - fixed CompositeCommand to include newly added commands | kiegroup_jbpm | train |
f72bb8e66634f87a1d73cc161ff7bfebfcb8518b | diff --git a/config/scout.php b/config/scout.php
index <HASH>..<HASH> 100644
--- a/config/scout.php
+++ b/config/scout.php
@@ -45,6 +45,28 @@ return [
/*
|--------------------------------------------------------------------------
+ | Queue Connection
+ |------------------------------------------------... | add config options to scout.php to allow specifying connection and queue | laravel_scout | train |
24ee0031b2b738066e60be14122c84234a9e93ae | diff --git a/tinytag/tinytag.py b/tinytag/tinytag.py
index <HASH>..<HASH> 100644
--- a/tinytag/tinytag.py
+++ b/tinytag/tinytag.py
@@ -562,7 +562,7 @@ class Wave(TinyTag):
raise TinyTagException('not a wave file!')
channels, bitdepth = 2, 16 # assume CD quality
chunk_header = fh.read(8)
... | Fixed reading of truncated wav files, closes #<I> | devsnd_tinytag | train |
65801a9d5e74b19dda81ea981b4a4c91a1665c3c | diff --git a/src/Maker/MakeEntity.php b/src/Maker/MakeEntity.php
index <HASH>..<HASH> 100644
--- a/src/Maker/MakeEntity.php
+++ b/src/Maker/MakeEntity.php
@@ -114,32 +114,32 @@ final class MakeEntity extends AbstractMaker implements InputAwareMakerInterface
$argument = $command->getDefinition()->getArgument(... | [make:entity] Fix error when API-Platform is installed. | symfony_maker-bundle | train |
8b994ae931a1f2040c75b9618285fe29ec420d2b | diff --git a/core/raftlease/fsm.go b/core/raftlease/fsm.go
index <HASH>..<HASH> 100644
--- a/core/raftlease/fsm.go
+++ b/core/raftlease/fsm.go
@@ -161,39 +161,53 @@ func (f *FSM) GlobalTime() time.Time {
// Leases gets information about all of the leases in the system,
// optionally filtered by the input lease keys.
... | Raft FSM lease filtering iterates over the filter to select entries, rather than over the entries while checking the filter. This should be a good deal faster. | juju_juju | train |
4dd1c561affb5408ed8dc12a79caf1d391005630 | diff --git a/pyvex/block.py b/pyvex/block.py
index <HASH>..<HASH> 100644
--- a/pyvex/block.py
+++ b/pyvex/block.py
@@ -112,8 +112,7 @@ class IRSB(VEXObject):
@property
def expressions(self):
"""
- All expressions contained in the IRSB.
- :rtype: list of :class:`IRExpr`
+ A list o... | Apparently sphinx doesn't support :rtype: for parameters.... | angr_pyvex | train |
836774fcc004598310d8eef81ae2db15731e31cc | diff --git a/README.rst b/README.rst
index <HASH>..<HASH> 100644
--- a/README.rst
+++ b/README.rst
@@ -306,6 +306,7 @@ EMC Contributors
- Jay Xu <jay.xu@emc.com>
- Ray Chen <ray.chen@emc.com>
- Tina Tang <tina.tang@emc.com>
+- Ryan Liang <ryan.liang@emc.com>
Community Contributors
``````````````````````
d... | [GH-<I>] Add display_name to VNXPort (#<I>)
Add property `display_name` to VNXPort and VNXSPEnum.
If you have an `VNXPort` instance, let's say `port`.
Then `port.display_name` will return a string like 'A-0-0' for iSCSI and
'A-1' for FC. | emc-openstack_storops | train |
3b9f886e262c343430dd868046943be5112227e8 | diff --git a/babel-watch.js b/babel-watch.js
index <HASH>..<HASH> 100755
--- a/babel-watch.js
+++ b/babel-watch.js
@@ -274,13 +274,20 @@ function restartApp() {
const sourceBuf = new Buffer(source || 0);
const mapBuf = new Buffer(sourceMap ? JSON.stringify(sourceMap) : 0);
const lenBuf = new Buffer... | Ignore EPIPE on writeSync (#<I>) | kmagiera_babel-watch | train |
a5ad14f48fca97b3b0a800f14d0c963799be6dd5 | diff --git a/CHANGELOG.rst b/CHANGELOG.rst
index <HASH>..<HASH> 100644
--- a/CHANGELOG.rst
+++ b/CHANGELOG.rst
@@ -1,6 +1,14 @@
Changelog
---------
+0.16.2 (unreleased)
++++++++++++++++++++
+
+Bug fixes:
+
+* Prevent ValueError when using the ``exclude`` class Meta option with
+ ``TableSchema``.
+
0.16.1 (2019-03... | Fix `exclude` with TableSchema | marshmallow-code_marshmallow-sqlalchemy | train |
9a451fbcd16755fd75dd8e65c4e487771d43e306 | diff --git a/src/main/java/com/basho/riak/client/query/indexes/BucketIndex.java b/src/main/java/com/basho/riak/client/query/indexes/BucketIndex.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/basho/riak/client/query/indexes/BucketIndex.java
+++ b/src/main/java/com/basho/riak/client/query/indexes/BucketIndex.ja... | Derp, fixed a compile issue. | basho_riak-java-client | train |
f8e0c19633819b54cb8d81d11d589d90bfcacb66 | diff --git a/visidata/clipboard.py b/visidata/clipboard.py
index <HASH>..<HASH> 100644
--- a/visidata/clipboard.py
+++ b/visidata/clipboard.py
@@ -46,6 +46,7 @@ class _Clipboard:
path = shutil.which(command)
if path:
return [path] + options
+ error('no avail... | [clipboard] cleanup docstrings and status msgs | saulpw_visidata | train |
5f8bf28abd045cb12cbb7add1beb6593132513f7 | diff --git a/lib/fitgem/activities.rb b/lib/fitgem/activities.rb
index <HASH>..<HASH> 100644
--- a/lib/fitgem/activities.rb
+++ b/lib/fitgem/activities.rb
@@ -169,6 +169,28 @@ module Fitgem
post("/user/#{@user_id}/activities/goals/daily.json", opts)
end
+ # Create or update a user's weekly goal
+ #
... | Add the create_or_update_weekly_goal method and specs | whazzmaster_fitgem | train |
067b349fb1b3e309676c7c4ebb2cf2c74a347102 | diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/couchbase/CouchbaseDataConfiguration.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/data/couchbase/CouchbaseDataConfiguration.java
index <HASH>.... | Stop considering persistent when scanning for Couchbase entities
See gh-<I> | spring-projects_spring-boot | train |
e828eb16e43b31750b57e009ce8f14bba8de22b7 | diff --git a/src/View/View.php b/src/View/View.php
index <HASH>..<HASH> 100644
--- a/src/View/View.php
+++ b/src/View/View.php
@@ -1305,7 +1305,6 @@ class View implements EventDispatcherInterface
'response' => 'setResponse',
'subDir' => 'setSubDir',
'plugin' => 'setPlugin',
- ... | Add getName() to View
We were emitting deprecation warnings telling folks to use methods that
didn't exist. Make the required methods exist, and emit a better
deprecation warning when trying to mutate View::$name.
Fixes #<I> | cakephp_cakephp | train |
54565bbd8908e21127a3c2f245d18b42895034d9 | diff --git a/mapping/tests/test_mappings.py b/mapping/tests/test_mappings.py
index <HASH>..<HASH> 100644
--- a/mapping/tests/test_mappings.py
+++ b/mapping/tests/test_mappings.py
@@ -229,23 +229,32 @@ class TestMappings(unittest.TestCase):
index=idx, columns=cols)
non_unique_ind... | Add tests for contract_dates problem inputs
Cover cases where contract_dates has insufficient dates and where it is
non monotonic. | matthewgilbert_mapping | train |
3248886466de0993f3e9c95ec1472b96a45528e4 | diff --git a/napalm_base/clitools/cl_napalm_test.py b/napalm_base/clitools/cl_napalm_test.py
index <HASH>..<HASH> 100644
--- a/napalm_base/clitools/cl_napalm_test.py
+++ b/napalm_base/clitools/cl_napalm_test.py
@@ -6,8 +6,6 @@ NAPALM CLI Tools: test connectivity
Module to test connectivity with the network device thro... | Fixing cli tool for testing connection | napalm-automation_napalm-base | train |
ce08bf5f66d9d4cbef1db677fa4ff6bf7c8ce2c3 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -9,9 +9,6 @@ var async = require('async');
function _streamFtpGet(ftpConnectOptions, files, deferredStream) {
var c = new FtpClient();
c.on('error', function(e) {
- if(e.code === 530) {
- e = ... | removing special handling of error just to change the message | phillipgreenii_node-ftp-stream | train |
0dfc54c9c5600647baa5ec362f571a5d0ba0e52f | diff --git a/src/Engine/Elasticsearch/ElasticsearchAdapter.php b/src/Engine/Elasticsearch/ElasticsearchAdapter.php
index <HASH>..<HASH> 100644
--- a/src/Engine/Elasticsearch/ElasticsearchAdapter.php
+++ b/src/Engine/Elasticsearch/ElasticsearchAdapter.php
@@ -11,8 +11,9 @@ use G4\DataMapper\Exception\EmptyDataException;... | <I> - Added logic for delete method. | g4code_data-mapper | train |
2c1604b90109d0b22313d937c434f57563d47a5b | diff --git a/lib/mixlib/cli.rb b/lib/mixlib/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/mixlib/cli.rb
+++ b/lib/mixlib/cli.rb
@@ -38,31 +38,45 @@ module Mixlib
# #parse_options. After calling this method, the attribute #config will
# contain a hash of `:option_name => value` pairs.
module CLI
-
+
mod... | Re-implement `#deep_dup` with better names and some comments | chef_mixlib-cli | train |
b89dcb6a7cd3b85d1ea9f8cc2388e69f2e48201e | diff --git a/example/use-cases.rb b/example/use-cases.rb
index <HASH>..<HASH> 100644
--- a/example/use-cases.rb
+++ b/example/use-cases.rb
@@ -1,4 +1,6 @@
+require 'fiber'
+require 'em-http-request'
require 'rest-core'
RC.eagerload
diff --git a/lib/rest-core/test.rb b/lib/rest-core/test.rb
index <HASH>..<HASH> 10... | require fiber and em-http-request first to make sure we pick them | godfat_rest-core | train |
24f810f440a886982da3db523d31990f1b5ae59f | diff --git a/src/main/java/com/tikinou/schedulesdirect/core/domain/Headend.java b/src/main/java/com/tikinou/schedulesdirect/core/domain/Headend.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/tikinou/schedulesdirect/core/domain/Headend.java
+++ b/src/main/java/com/tikinou/schedulesdirect/core/domain/Headend.ja... | Added toString override | Tikinou_schedules-direct-core-api | train |
a6498c7538cbf2344c7124f1f611765c0fb17521 | diff --git a/test/helper.rb b/test/helper.rb
index <HASH>..<HASH> 100644
--- a/test/helper.rb
+++ b/test/helper.rb
@@ -8,7 +8,8 @@ rescue Bundler::BundlerError => e
exit e.status_code
end
require 'test/unit'
-require 'shoulda'
+require 'turn'
+require 'shoulda-context'
$LOAD_PATH.unshift(File.join(File.dirname(... | [ADD] Few requirements for testing helper | ondrejbartas_redis-model-extension | train |
479f3d7c111a33aae62bb8f1b3f602f96b75a858 | diff --git a/test/support/helper.js b/test/support/helper.js
index <HASH>..<HASH> 100644
--- a/test/support/helper.js
+++ b/test/support/helper.js
@@ -1,4 +1,6 @@
var _ = require('lodash')
+var assert = require('assert')
+
var loggerFactory = require('./logger-factory')
var teenytest = require('../../index')
@@ -1... | (internal) provide a deepEqual that prints well | testdouble_teenytest | train |
8cc2a6655ec48f9bbc0cf086f2a7415b2e14ba37 | diff --git a/src/Http/Controllers/Adminarea/UsersController.php b/src/Http/Controllers/Adminarea/UsersController.php
index <HASH>..<HASH> 100644
--- a/src/Http/Controllers/Adminarea/UsersController.php
+++ b/src/Http/Controllers/Adminarea/UsersController.php
@@ -124,7 +124,7 @@ class UsersController extends AuthorizedC... | Convert genders database storage to explicit male/female instead of m/f | rinvex_cortex-auth | train |
8b0dda68896760c3f45bdfe881b2a6fcd36ff703 | diff --git a/lib/CORL/node/aws.rb b/lib/CORL/node/aws.rb
index <HASH>..<HASH> 100644
--- a/lib/CORL/node/aws.rb
+++ b/lib/CORL/node/aws.rb
@@ -24,13 +24,13 @@ class Aws < Node::Fog
def regions
[
- 'ap-northeast-1',
- 'ap-southeast-1',
- 'ap-southeast-2',
- 'eu-west-1',
'us-eas... | Fixing issues and reordering regions in the aws node provider. | coralnexus_corl | train |
0befd22626150b66b23ba71d7cedd1cbcefd360c | diff --git a/spock/task.py b/spock/task.py
index <HASH>..<HASH> 100644
--- a/spock/task.py
+++ b/spock/task.py
@@ -44,34 +44,38 @@ class RunTask(object):
return True # remove this handler
def register(self, response):
- self.expected.clear()
self.parse_response(response)
for ev... | Improve parsing of event definitions in async tasks | SpockBotMC_SpockBot | train |
c9fcad75b789de28715edb360503620b4f9b78ae | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -156,7 +156,6 @@ module.exports = function(grunt) {
'sdk/src/third-party/jquery.js',
'sdk/src/third-party/jquery.noconflict.js',
'sdk/src/third-party/eventemitter2.js',
- 'sdk/src/third-pa... | Clean up Gruntfile to remove basic, easyxdm packages | OpenF2_F2 | train |
32da8c9781f55a5e7672a188b9b496aad263d282 | diff --git a/psiturk/models.py b/psiturk/models.py
index <HASH>..<HASH> 100644
--- a/psiturk/models.py
+++ b/psiturk/models.py
@@ -34,7 +34,7 @@ class Participant(Base):
endhit = Column(DateTime)
bonus = Column(Float, default = 0)
status = Column(Integer, default = 1)
- datastring = Column(UnicodeText... | Fix bug encoding non-unicode strings
This lets it just save the ascii strings, which seems to work. | NYUCCL_psiTurk | train |
e1662759edd6b900d3792a3a466a5d27586f86a7 | diff --git a/packages/babel-helper-transform-fixture-test-runner/src/index.js b/packages/babel-helper-transform-fixture-test-runner/src/index.js
index <HASH>..<HASH> 100644
--- a/packages/babel-helper-transform-fixture-test-runner/src/index.js
+++ b/packages/babel-helper-transform-fixture-test-runner/src/index.js
@@ -1... | Remove regenerator hacks in checkDuplicatedNodes (#<I>) | babel_babel | train |
fd6ed32c6ace85e27368674be84f5dfd19f7d872 | diff --git a/wpull/version.py b/wpull/version.py
index <HASH>..<HASH> 100644
--- a/wpull/version.py
+++ b/wpull/version.py
@@ -6,4 +6,4 @@
A string conforming to `Semantic Versioning
Guidelines <http://semver.org/>`_
'''
-__version__ = '0.17.3'
+__version__ = '0.18' | Bumps version to <I>. | ArchiveTeam_wpull | train |
22e56382784af82960d9feca42fc67be29aba16c | diff --git a/rrrspec-client/spec/spec_helper.rb b/rrrspec-client/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/rrrspec-client/spec/spec_helper.rb
+++ b/rrrspec-client/spec/spec_helper.rb
@@ -27,7 +27,7 @@ RSpec.configure do |config|
retry_count = 1
loop do
begin
- redis.client.connect
+ ... | use Redis#ping to detect if redis-server is up
because Redis::Client#connect has an issue that described in
<URL> | cookpad_rrrspec | train |
ffc1cb4cfc8317bcf57664d0becace016b4fc4b3 | diff --git a/law/parser.py b/law/parser.py
index <HASH>..<HASH> 100644
--- a/law/parser.py
+++ b/law/parser.py
@@ -98,11 +98,12 @@ def root_task_parser():
def global_cmdline_args(exclude=None):
"""
- Returns the list of command line arguments that do not belong to the root task. The returned
- list is cac... | Expand bool flags in global_cmdline_args. | riga_law | train |
0e6b6864b4176ef75457efccadbf929dfa5d341d | diff --git a/state/allcollections.go b/state/allcollections.go
index <HASH>..<HASH> 100644
--- a/state/allcollections.go
+++ b/state/allcollections.go
@@ -275,6 +275,8 @@ func allCollections() CollectionSchema {
Key: []string{"model-uuid", "principal"},
}, {
Key: []string{"model-uuid", "machineid"},
+ }... | Adds an index to the unit collection making retrieval by name more
efficient. This is a hot path for updating unit states. | juju_juju | train |
ebb5688fed634a95f76abb7f9a31fa85eea14a18 | diff --git a/db/db.go b/db/db.go
index <HASH>..<HASH> 100644
--- a/db/db.go
+++ b/db/db.go
@@ -27,10 +27,7 @@ func (db *DB) Copy() *DB {
// Are we connected?
func (db *DB) Connected() bool {
- if db.connection == nil {
- return false
- }
- return true
+ return db.connection != nil
}
// Connect to the backend d... | Don't compare bools with bools. It makes Go angry. | starkandwayne_shield | train |
cb685beafa618938eaa78e12403f7e82dc1fa478 | diff --git a/tests/unit/components/sl-translate-test.js b/tests/unit/components/sl-translate-test.js
index <HASH>..<HASH> 100755
--- a/tests/unit/components/sl-translate-test.js
+++ b/tests/unit/components/sl-translate-test.js
@@ -88,13 +88,13 @@ test( 'Can be used alongside other properties or attribute bindings', fun... | Refactor to conform to linting rules | softlayer_sl-ember-translate | train |
5a62dc5c40ab49314b788dd9b68d3daeda6a2c94 | diff --git a/src/Psalm/Internal/Analyzer/Statements/Expression/Call/StaticMethod/ExistingAtomicStaticCallAnalyzer.php b/src/Psalm/Internal/Analyzer/Statements/Expression/Call/StaticMethod/ExistingAtomicStaticCallAnalyzer.php
index <HASH>..<HASH> 100644
--- a/src/Psalm/Internal/Analyzer/Statements/Expression/Call/Static... | Fix #<I> - use correct method when simulating property setting | vimeo_psalm | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.