hash stringlengths 40 40 | diff stringlengths 131 26.7k | message stringlengths 7 694 | project stringlengths 5 67 | split stringclasses 1
value | diff_languages stringlengths 2 24 |
|---|---|---|---|---|---|
d300256ca4dd8b6f921afe8ef2de05d7e9c084e7 | diff --git a/activerecord/lib/active_record/associations/builder/association.rb b/activerecord/lib/active_record/associations/builder/association.rb
index <HASH>..<HASH> 100644
--- a/activerecord/lib/active_record/associations/builder/association.rb
+++ b/activerecord/lib/active_record/associations/builder/association.... | Use the reflection name instead of the accessor | rails_rails | train | rb,rb |
c62ced7ca7a6cf715f62bd10981560a809c723dd | diff --git a/rows.go b/rows.go
index <HASH>..<HASH> 100644
--- a/rows.go
+++ b/rows.go
@@ -271,7 +271,7 @@ func (f *File) getRowHeight(sheet string, row int) int {
ws, _ := f.workSheetReader(sheet)
for i := range ws.SheetData.Row {
v := &ws.SheetData.Row[i]
- if v.R == row+1 && v.Ht != 0 {
+ if v.R == row && v... | fix getRowHeight actually get the height of the next row (#<I>) | 360EntSecGroup-Skylar_excelize | train | go |
b01ed4be54aebafe38c78382d348977087978900 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -57,7 +57,10 @@ setup(
keywords='crypto pki',
- install_requires=['asn1crypto', 'oscrypto'],
+ install_requires=[
+ 'asn1crypto>=0.13',
+ 'oscrypto>=0.12'
+ ],
packages=find_packages(exclud... | Minimum asn1crypto and oscrypto versions | wbond_csrbuilder | train | py |
a631115c9980a8ebf40e571e8ad11599090a1f05 | diff --git a/src/HAB/Pica/Record/Field.php b/src/HAB/Pica/Record/Field.php
index <HASH>..<HASH> 100644
--- a/src/HAB/Pica/Record/Field.php
+++ b/src/HAB/Pica/Record/Field.php
@@ -133,6 +133,13 @@ class Field
protected $_shorthand;
/**
+ * Subfields.
+ *
+ * @var array
+ */
+ protected $_s... | Declare $_subfields property
* src/HAB/Pica/Record/Field.php: Declare $_subfields property.
...after all this years... ;) | dmj_PicaRecord | train | php |
b210437ed1fccdb7d527ff6227b8d52dd7481fb7 | diff --git a/src/Cartalyst/AsseticFilters/UriRewriteFilter.php b/src/Cartalyst/AsseticFilters/UriRewriteFilter.php
index <HASH>..<HASH> 100644
--- a/src/Cartalyst/AsseticFilters/UriRewriteFilter.php
+++ b/src/Cartalyst/AsseticFilters/UriRewriteFilter.php
@@ -264,7 +264,7 @@ class UriRewriteFilter implements FilterInter... | check for REQUEST_URI before assigning it
prevents exceptions from being thrown if executed through cli | cartalyst_assetic-filters | train | php |
e0ceeee6a1c8543bd840b93abf9177025e3cec44 | diff --git a/cts/analytics/ab_testing_test.go b/cts/analytics/ab_testing_test.go
index <HASH>..<HASH> 100644
--- a/cts/analytics/ab_testing_test.go
+++ b/cts/analytics/ab_testing_test.go
@@ -7,6 +7,7 @@ import (
"github.com/stretchr/testify/require"
"github.com/algolia/algoliasearch-client-go/v3/algolia/analytics... | test: prevent flakiness for TestABTesting test | algolia_algoliasearch-client-go | train | go |
38fb98594b9da616639a9bed68700f24bca93e70 | diff --git a/lib/deep_cover/cli/exec.rb b/lib/deep_cover/cli/exec.rb
index <HASH>..<HASH> 100755
--- a/lib/deep_cover/cli/exec.rb
+++ b/lib/deep_cover/cli/exec.rb
@@ -24,7 +24,7 @@ module DeepCover
require 'yaml'
env_var = {'DEEP_COVER' => 't',
- 'DEEP_COVER_OPTIONS' => YAML.dump(process... | Fix exec in <I>, looks like backport was helping us more than Ruby<I> | deep-cover_deep-cover | train | rb |
0c78598eebe638baecfdd3d1924bf339df6f3a37 | diff --git a/lib/active_scaffold/config/core.rb b/lib/active_scaffold/config/core.rb
index <HASH>..<HASH> 100644
--- a/lib/active_scaffold/config/core.rb
+++ b/lib/active_scaffold/config/core.rb
@@ -354,12 +354,20 @@ module ActiveScaffold::Config
end
def [](name)
+ return nil unless @global_colum... | fix iterating on config.user.columns, needs to wrap column in case column is changed | activescaffold_active_scaffold | train | rb |
a1112d7a76e6e500acae8f4113e1d61ed2572384 | diff --git a/lib/capybara/driver/rack_test_driver.rb b/lib/capybara/driver/rack_test_driver.rb
index <HASH>..<HASH> 100644
--- a/lib/capybara/driver/rack_test_driver.rb
+++ b/lib/capybara/driver/rack_test_driver.rb
@@ -1,4 +1,5 @@
require 'rack/test'
+require 'rack/utils'
require 'mime/types'
require 'nokogiri'
req... | Teach rack test driver to work with comlex field names such as user[pictures][][path]. See <URL> | teamcapybara_capybara | train | rb |
03c57fef4ba969c1e50aa27081027ebfe4d1a73c | diff --git a/tests/integration/components/sl-alert-test.js b/tests/integration/components/sl-alert-test.js
index <HASH>..<HASH> 100644
--- a/tests/integration/components/sl-alert-test.js
+++ b/tests/integration/components/sl-alert-test.js
@@ -119,9 +119,9 @@ test( 'Dismiss Action is called on button click', function( a... | Closes softlayer/sl-ember-components#<I> | softlayer_sl-ember-components | train | js |
0df45c5c4cc5909b898502d78e1e7fda5766fa69 | diff --git a/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java b/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java
index <HASH>..<HASH> 100644
--- a/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java
+++ b/okhttp/src/main/java/com/squareup/okhttp/CertificatePinner.java
@@ -100,6... | Add Javadoc about self-signed certificates | square_okhttp | train | java |
cc510cecd5bb31bb12ef09103b69d02b49a6ab25 | diff --git a/tacl/results.py b/tacl/results.py
index <HASH>..<HASH> 100644
--- a/tacl/results.py
+++ b/tacl/results.py
@@ -162,7 +162,6 @@ class Results:
[constants.LABEL_COUNT_FIELDNAME, DELETE_FIELDNAME]
self._matches = pd.concat(new_results, ignore_index=True).reindex(
columns=all_... | Removed stray useless line. | ajenhl_tacl | train | py |
42e9b37c22fa00a6173c218999eba9d52726db6d | diff --git a/src/phpGPX/Serializers/TrackXmlSerializer.php b/src/phpGPX/Serializers/TrackXmlSerializer.php
index <HASH>..<HASH> 100644
--- a/src/phpGPX/Serializers/TrackXmlSerializer.php
+++ b/src/phpGPX/Serializers/TrackXmlSerializer.php
@@ -25,6 +25,12 @@ abstract class TrackXmlSerializer
$srcNode = $domDocument-... | Add collection name to XML saved track | Sibyx_phpGPX | train | php |
fc7b839fd85e953d9634b41a50834f7a993e8d4f | diff --git a/sh.py b/sh.py
index <HASH>..<HASH> 100644
--- a/sh.py
+++ b/sh.py
@@ -498,6 +498,16 @@ class RunningCommand(object):
finishes, RunningCommand is smart enough to translate exit codes to
exceptions. """
+ # these are attributes that we allow to passthrough to OProc for
+ _OProc_attr_whiteli... | refactor out OProc passthrough whitelist | amoffat_sh | train | py |
df2566e3905bbddc0987e099f790d2767fb1ea1a | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -916,8 +916,9 @@ if (shadowDomV1) {
Object.keys(members).forEach(memberName => {
const memberProperty = members[memberName];
- // All properties should be configurable.
+ // All properties shoul... | fix(enumeration): make all added member properties enumerable | skatejs_named-slots | train | js |
0d9adcdfdca94daa589faf10af1f123cb7d7e5b8 | diff --git a/docker/models/images.py b/docker/models/images.py
index <HASH>..<HASH> 100644
--- a/docker/models/images.py
+++ b/docker/models/images.py
@@ -140,6 +140,7 @@ class ImageCollection(Collection):
``"0-3"``, ``"0,1"``
decode (bool): If set to ``True``, the returned stream will... | Add cachefrom to build docstring | docker_docker-py | train | py |
699c70b351e4755a0d63fc7bc743f678941a4f0f | diff --git a/lib/fog/rackspace/requests/queues/get_queue.rb b/lib/fog/rackspace/requests/queues/get_queue.rb
index <HASH>..<HASH> 100644
--- a/lib/fog/rackspace/requests/queues/get_queue.rb
+++ b/lib/fog/rackspace/requests/queues/get_queue.rb
@@ -1,8 +1,8 @@
module Fog
module Rackspace
class Queues
- clas... | Mock the get_queue call. | fog_fog | train | rb |
ada6b14dc101f7861848636c344df62ab6c5b594 | diff --git a/src/plugins/Transloadit/index.js b/src/plugins/Transloadit/index.js
index <HASH>..<HASH> 100644
--- a/src/plugins/Transloadit/index.js
+++ b/src/plugins/Transloadit/index.js
@@ -156,7 +156,9 @@ module.exports = class Transloadit extends Plugin {
const tus = Object.assign({}, file.tus, {
... | Reuse upload URL by default for tus, reset it for each new :tl: assembly. | transloadit_uppy | train | js,js |
7fc9cc1f519e5b2342c3ce00d98e53ed32b33011 | diff --git a/src/DiDom/StyleAttribute.php b/src/DiDom/StyleAttribute.php
index <HASH>..<HASH> 100644
--- a/src/DiDom/StyleAttribute.php
+++ b/src/DiDom/StyleAttribute.php
@@ -73,7 +73,7 @@ class StyleAttribute
$properties = explode(';', $styleString);
foreach ($properties as $property) {
- ... | Fix parsing of a style property in "style" attribute when the value contains a colon | Imangazaliev_DiDOM | train | php,php |
ba820ad62f700a392be802409f159703e2a60c50 | diff --git a/src/webpack/presets/index.spec.js b/src/webpack/presets/index.spec.js
index <HASH>..<HASH> 100644
--- a/src/webpack/presets/index.spec.js
+++ b/src/webpack/presets/index.spec.js
@@ -49,7 +49,7 @@ describe('configure', function () {
module: {
loaders: [
{
- test... | Fix unit test broken after new Babel extension | saguijs_sagui | train | js |
c3a815dd37d98273d79184abdb72078045867d43 | diff --git a/config/routes.rb b/config/routes.rb
index <HASH>..<HASH> 100644
--- a/config/routes.rb
+++ b/config/routes.rb
@@ -1,4 +1,3 @@
Roboto::Engine.routes.draw do
- get '/' => 'Robots#show'
+ get '/' => 'robots#show'
end
- | make routes compatible with Rails <I> | LaunchAcademy_roboto | train | rb |
4eff058d5a80da3b2b15349f1f16064cb8189eba | diff --git a/lib/editor/htmlarea/coursefiles.php b/lib/editor/htmlarea/coursefiles.php
index <HASH>..<HASH> 100644
--- a/lib/editor/htmlarea/coursefiles.php
+++ b/lib/editor/htmlarea/coursefiles.php
@@ -22,6 +22,7 @@
$oldname = optional_param('oldname', '', PARAM_FILE);
$usecheckboxes = optional_param('usech... | fixed register globals issue with $text; merged from MOODLE_<I>_STABLE | moodle_moodle | train | php |
af6ec93228ae9a28bae79a77e588525e3ce7d064 | diff --git a/ebooklib/epub.py b/ebooklib/epub.py
index <HASH>..<HASH> 100644
--- a/ebooklib/epub.py
+++ b/ebooklib/epub.py
@@ -1579,7 +1579,10 @@ class EpubReader(object):
nav_node = html_node.xpath("//nav[@*='toc']")[0]
else:
# parsing the list of pages
- nav_node = html_n... | Fixed #<I> - Parsing files fails because of page-list | aerkalov_ebooklib | train | py |
da9258de7d96fb8142882bdfeb5fcede93fb0387 | diff --git a/invocations/console.py b/invocations/console.py
index <HASH>..<HASH> 100644
--- a/invocations/console.py
+++ b/invocations/console.py
@@ -10,7 +10,7 @@ from invoke.vendor.six.moves import input
# NOTE: originally cribbed from fab 1's contrib.console.confirm
-def confirm(question, affirmative=True):
+d... | Rename a kwarg...it wasn't intuitive after leaving it for weeks | pyinvoke_invocations | train | py |
8de7adf5819be44d538ae9f1297ff7f604925fea | diff --git a/restcomm/restcomm.application/src/main/java/org/mobicents/servlet/restcomm/Ping.java b/restcomm/restcomm.application/src/main/java/org/mobicents/servlet/restcomm/Ping.java
index <HASH>..<HASH> 100644
--- a/restcomm/restcomm.application/src/main/java/org/mobicents/servlet/restcomm/Ping.java
+++ b/restcomm/r... | RESTCOMM-<I> #Resolve-Issue Fixed | RestComm_Restcomm-Connect | train | java |
8a30f6cb10033cdd37d970273b0e953fbc55cd09 | diff --git a/org/xbill/DNS/BitString.java b/org/xbill/DNS/BitString.java
index <HASH>..<HASH> 100644
--- a/org/xbill/DNS/BitString.java
+++ b/org/xbill/DNS/BitString.java
@@ -130,10 +130,6 @@ BitString(String s) throws IOException {
data = new byte[bytes()];
for (int i = 0; i < nbits; i++)
data[i/8] |= ((set.get... | Some invalid bitstring labels were being accepted.
git-svn-id: <URL> | dnsjava_dnsjava | train | java |
2a184d4350625df1371304749ba21d9932e36b07 | diff --git a/src/Card/Card.js b/src/Card/Card.js
index <HASH>..<HASH> 100644
--- a/src/Card/Card.js
+++ b/src/Card/Card.js
@@ -13,6 +13,10 @@ class Card extends Component {
*/
children: PropTypes.node,
/**
+ * Override the inline-styles of the container element.
+ */
+ containerStyle: PropTyp... | [Card] add containerStyle prop
add containerStyle prop to have the ability to customize inner div styles.
i needed this to give the div width of <I>% then i can align the header to center and the body to left.
Update Card.js
Update Card.js
Update Card.js
rename childrenStyle to containerStyle
Update Card.js
[Car... | mui-org_material-ui | train | js |
064a2aa401efcdb8500a7484e3031d8b4d43863e | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -2,13 +2,13 @@ from setuptools import setup
setup(
name = 'dharma',
- packages = ['dharma'],
- version = '1.0',
+ packages = ['dharma', 'dharma.core'],
+ version = '1.1',
description = 'A generation-based, context-free ... | Changed setup.py to work with the <I> version | MozillaSecurity_dharma | train | py |
eb0ffae08223e170e7945e04e160ebbaa922a48a | diff --git a/migrations/create_bouncer_tables.php b/migrations/create_bouncer_tables.php
index <HASH>..<HASH> 100644
--- a/migrations/create_bouncer_tables.php
+++ b/migrations/create_bouncer_tables.php
@@ -41,6 +41,7 @@ class CreateBouncerTables extends Migration
Schema::create(Models::table('permissions'), f... | Add forbidden column to the permissions table, for future ability denials | JosephSilber_bouncer | train | php |
0ef5f8429f8732f5cdf1207c5dd315e849434d0e | diff --git a/plan/refiner.go b/plan/refiner.go
index <HASH>..<HASH> 100644
--- a/plan/refiner.go
+++ b/plan/refiner.go
@@ -220,7 +220,6 @@ func detachIndexScanConditions(conditions []expression.Expression, indexScan *Ph
var curIndex int
for curIndex = indexScan.accessEqualCount; curIndex < len(indexScan.Index.Colum... | plan: clean code. (#<I>) | pingcap_tidb | train | go |
fc34dbc27124a49ba5e3d492de0bfc50fe75ba61 | diff --git a/test/unit/css.js b/test/unit/css.js
index <HASH>..<HASH> 100644
--- a/test/unit/css.js
+++ b/test/unit/css.js
@@ -1558,10 +1558,12 @@ QUnit.test( "Do not throw on frame elements from css method (#15098)", function(
( function() {
var supportsCssVars,
- div = jQuery( "<div>" ).appendTo( "#qunit-fixtur... | Tests: Clean up after the CSS Custom Properties support test
Ref bcec<I>ee<I>e2d0e<I>bcb<I>e3d<I>a8f<I>f9
Ref <I>bf<I>d5b<I>f<I>dbc<I>b<I>f1c5a<I> | jquery_jquery | train | js |
c0098dddb5722a3a9cf1b7a646f05eb282815052 | diff --git a/duolingo.py b/duolingo.py
index <HASH>..<HASH> 100644
--- a/duolingo.py
+++ b/duolingo.py
@@ -46,7 +46,6 @@ class Duolingo(object):
requests.
"""
self.username = username
- self.originalUsername = username
self.password = password
self.session_file = sess... | removed unnecessary original username variable and its setter | KartikTalwar_Duolingo | train | py |
525fc0bc32e5fbde8fbe520e8e843e01e6bfa24a | diff --git a/lib/custom/src/MW/View/Helper/Jincluded/Standard.php b/lib/custom/src/MW/View/Helper/Jincluded/Standard.php
index <HASH>..<HASH> 100644
--- a/lib/custom/src/MW/View/Helper/Jincluded/Standard.php
+++ b/lib/custom/src/MW/View/Helper/Jincluded/Standard.php
@@ -146,6 +146,7 @@ class Standard extends \Aimeos\MW... | Don't create wrong links for data sub-domains | aimeos_ai-client-jsonapi | train | php |
bf43f9da59d7aa8ecee5550a1a7ac0c3a8fd387c | diff --git a/ReText/window.py b/ReText/window.py
index <HASH>..<HASH> 100644
--- a/ReText/window.py
+++ b/ReText/window.py
@@ -58,7 +58,8 @@ class ReTextWindow(QMainWindow):
if globalSettings.iconTheme:
QIcon.setThemeName(globalSettings.iconTheme)
if QIcon.themeName() in ('hicolor', ''):
- QIcon.setThemeNam... | Do not try to get the icon theme when the icons pack is present | retext-project_retext | train | py |
287fa1cc05b5e0aa726ab492ea1ec597f23ce2d1 | diff --git a/lib/rabl/builder.rb b/lib/rabl/builder.rb
index <HASH>..<HASH> 100644
--- a/lib/rabl/builder.rb
+++ b/lib/rabl/builder.rb
@@ -59,8 +59,9 @@ module Rabl
# Replace nil values with empty strings if configured
if Rabl.configuration.replace_nil_values_with_empty_strings
- @_result = @_res... | Use inject instead of each_with_object to maintain Ruby <I> compatibility | nesquena_rabl | train | rb |
059db8a9cc846b6240858db7a865aa40622f9757 | diff --git a/lib/tree.js b/lib/tree.js
index <HASH>..<HASH> 100644
--- a/lib/tree.js
+++ b/lib/tree.js
@@ -30,8 +30,18 @@ var _Tree = function( obj, tree ) {
, i
, len = self.length
, repo = repo || self.repo
- , event = new events.EventEmitter();
+ , event = new events.EventEmitter()
+ ... | Fix Loading Issue in lib/tree.js
This code fixes a bug whereby some tree elements will not yet
have loaded when the 'end' event is signalled. | nodegit_nodegit | train | js |
e89c274faa11f189bfed942e3b1a96211c65a0a7 | diff --git a/symphony/content/content.logout.php b/symphony/content/content.logout.php
index <HASH>..<HASH> 100644
--- a/symphony/content/content.logout.php
+++ b/symphony/content/content.logout.php
@@ -16,6 +16,26 @@ class contentLogout extends HTMLPage
public function view()
{
Administration::insta... | Add AuthorLogout delegate
Picked from c<I>a<I>af<I>
Picked from e<I>ba<I>a4b | symphonycms_symphony-2 | train | php |
c66fba3dfb391d00f9c11ad2faadcd434a91dd42 | diff --git a/benchmark/benchmark.js b/benchmark/benchmark.js
index <HASH>..<HASH> 100644
--- a/benchmark/benchmark.js
+++ b/benchmark/benchmark.js
@@ -11,7 +11,7 @@ process.env.NODE_ENV = "production";
const CONCURRENCY = 10;
-const DEPTH = 7;
+const DEPTH = 8;
const CACHE_DIVS = "CACHE_DIVS";
const CACHE_COMPON... | Give benchmark a bit more work to do. | FormidableLabs_rapscallion | train | js |
83e884345bc7455394cf9609aa6e1e501fa5843b | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -5,7 +5,7 @@ from setuptools import setup
setup(
name="threat_intel",
- version='0.1.25',
+ version='0.1.26',
provides=['threat_intel'],
author="Yelp Security",
url='https://github.com/Yelp/threat_... | Bumping the version to <I> | Yelp_threat_intel | train | py |
5e7bcfeb849eebde8a8e24992f8c6930ba0790dc | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -85,6 +85,8 @@ var RedisStorage = createStorage(queue, unqueue, log);
*/
RedisStorage.prototype.redis = function() {
if (!this.cn) this.cn = redis.createClient();
+ // catch connection errors as service and so we ca... | Adding error handler to avoid service kill when redis gone
Could be perhaps improved with some error loggings for higher verbose levels.
Conflicts:
index.js | Zingle_http-later-redis | train | js |
637f37641fb8072d73451b4ece85a512489508ea | diff --git a/src/sap.ui.core/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js b/src/sap.ui.core/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js
index <HASH>..<HASH> 100644
--- a/src/sap.ui.core/test/sap/ui/core/qunit/odata/v4/ODataModel.integration.qunit.js
+++ b/src/sap.ui.core/test/sap/... | [INTERNAL] ODataModel.integration.qunit: Improve loading time for tests using Table
Should fix the issue that the first test using Table goes red as it
needs more than one second due to resource loading.
PS1: PKS solo
PS1: remove checkFinish from checkRequest (remainder from 1st try)
Change-Id: Ie<I>d9d<I>ca<I>c9d<I... | SAP_openui5 | train | js |
7db69a1d0250a31e09f624d6bb579e6eb542b500 | diff --git a/modules/backend/assets/js/october.dragscroll.js b/modules/backend/assets/js/october.dragscroll.js
index <HASH>..<HASH> 100644
--- a/modules/backend/assets/js/october.dragscroll.js
+++ b/modules/backend/assets/js/october.dragscroll.js
@@ -84,7 +84,7 @@
return false
})
- $(... | Update october.dragscroll.js | octobercms_october | train | js |
c2c8990244c19df72c2d98e584a961c96e270f00 | diff --git a/requery-test/src/main/java/io/requery/test/FunctionalTest.java b/requery-test/src/main/java/io/requery/test/FunctionalTest.java
index <HASH>..<HASH> 100644
--- a/requery-test/src/main/java/io/requery/test/FunctionalTest.java
+++ b/requery-test/src/main/java/io/requery/test/FunctionalTest.java
@@ -771,11 +7... | Resolve #<I> Update test case with orderBy/limit | requery_requery | train | java |
b476c15abc968f1adb5fee433fdc7227fc550d19 | diff --git a/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java b/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java
index <HASH>..<HASH> 100644
--- a/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java
+++ b/fenzo-core/src/test/java/com/netflix/fenzo/AutoScalerTest.java
@@ -234,6 +23... | fix unit test to not input same lease twice to scheduler | Netflix_Fenzo | train | java |
81e2000ffdb68bfd9ae83ab867300ec025f40876 | diff --git a/parser.go b/parser.go
index <HASH>..<HASH> 100644
--- a/parser.go
+++ b/parser.go
@@ -936,14 +936,6 @@ func (p *Parser) normalizeColumn(col model.TableColumn) error {
l := model.NewLength("8")
l.SetDecimal("2")
col.SetLength(l)
- case model.ColumnTypeTinyText, model.ColumnTypeTinyBlob:
- col... | TEXT and BLOB do not have length | schemalex_schemalex | train | go |
fbc70e4f13ab67d7e06c7c4c011cad40142116e3 | diff --git a/tcex/tcex_ti/tcex_ti.py b/tcex/tcex_ti/tcex_ti.py
index <HASH>..<HASH> 100644
--- a/tcex/tcex_ti/tcex_ti.py
+++ b/tcex/tcex_ti/tcex_ti.py
@@ -172,9 +172,9 @@ class TcExTi(object):
else:
try:
if upper_indicator_type in self._custom_indicator_classes.keys():
- ... | making it so that cusom indicators unique_id are url safe | ThreatConnect-Inc_tcex | train | py |
916b9282d9f6296a59e69cb05b166c83b2676a19 | diff --git a/go/chat/storage/inbox.go b/go/chat/storage/inbox.go
index <HASH>..<HASH> 100644
--- a/go/chat/storage/inbox.go
+++ b/go/chat/storage/inbox.go
@@ -23,7 +23,7 @@ import (
"golang.org/x/net/context"
)
-const inboxVersion = 23
+const inboxVersion = 24
var defaultMemberStatusFilter = []chat1.Conversatio... | Bump inbox storage version (#<I>) | keybase_client | train | go |
b6fdd3861bb4265c22c84c9d81e367452ef0f7cf | diff --git a/Eloquent/Relations/MorphToMany.php b/Eloquent/Relations/MorphToMany.php
index <HASH>..<HASH> 100644
--- a/Eloquent/Relations/MorphToMany.php
+++ b/Eloquent/Relations/MorphToMany.php
@@ -116,6 +116,19 @@ class MorphToMany extends BelongsToMany
}
/**
+ * Get the pivot models that are currentl... | fix bug with update existing pivot and polymorphic many to many | illuminate_database | train | php |
fa2ece5d1b49b1ed338db7a0f21ab868f3d28abd | diff --git a/openquake/calculators/tests/classical_test.py b/openquake/calculators/tests/classical_test.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/tests/classical_test.py
+++ b/openquake/calculators/tests/classical_test.py
@@ -512,7 +512,7 @@ hazard_uhs-std.csv
'hazard_map-mean.csv'], case_... | Fixed misprint in comment [skip CI] | gem_oq-engine | train | py |
9c22d4c6f331bc3fae28da2015ff2fbedfb06991 | diff --git a/bin/cargo-tessel.js b/bin/cargo-tessel.js
index <HASH>..<HASH> 100755
--- a/bin/cargo-tessel.js
+++ b/bin/cargo-tessel.js
@@ -42,15 +42,15 @@ parser.command('build')
.help('Cross-compile a binary for Tessel.');
parser.command('sdk')
+ .callback(options => {
+ rust.cargo[options.subcommand](option... | Make callback first (consistent) | tessel_t2-cli | train | js |
7a4e47eb0970dd1cdd496449d97d03253f856d76 | diff --git a/src/tabs/index.js b/src/tabs/index.js
index <HASH>..<HASH> 100644
--- a/src/tabs/index.js
+++ b/src/tabs/index.js
@@ -267,7 +267,7 @@ export default createComponent({
},
// emit event when clicked
- onClick(index) {
+ onClick(item, index) {
const { title, disabled, computedName } =... | fix(Tab): should not trigger route when disabled (#<I>) | youzan_vant | train | js |
957ef6bf390d499453e1ab9f13b0d62ae6102e30 | diff --git a/rivescript/sorting.py b/rivescript/sorting.py
index <HASH>..<HASH> 100644
--- a/rivescript/sorting.py
+++ b/rivescript/sorting.py
@@ -47,7 +47,7 @@ class TriggerObj(object):
self.option = self.alphabet.count('[') + self.alphabet.count('(') # Number of option 0 < 1
if self.star > 0:
- ... | #<I> Fix proper use of bitwise operator | aichaos_rivescript-python | train | py |
555b63a5e207c1e7e9c40551ba7ec15c06a44cf3 | diff --git a/pygerduty.py b/pygerduty.py
index <HASH>..<HASH> 100755
--- a/pygerduty.py
+++ b/pygerduty.py
@@ -126,7 +126,10 @@ class Collection(object):
response = self.pagerduty.request(
"GET", path, query_params=kwargs)
- return self.container(self, **response.get(self.sname, {}))
+ ... | Handle cases such as /incidents/<ID> which return a single object rather
than a collection. | dropbox_pygerduty | train | py |
c9d5705afdd80091436b8d666ec67971aceffb6e | diff --git a/pulse.go b/pulse.go
index <HASH>..<HASH> 100644
--- a/pulse.go
+++ b/pulse.go
@@ -64,7 +64,6 @@ type coreModule interface {
}
func main() {
- gitversion = "0.0.1" // TODO parse git tags
app := cli.NewApp()
app.Name = "pulsed"
app.Version = gitversion
@@ -76,7 +75,7 @@ func main() {
}
func act... | Removing gitversion variable declaration. Gitversion set during make of pulse | intelsdi-x_snap | train | go |
38909758005abfb891770996f321a630f3c9ece2 | diff --git a/src/packbits.py b/src/packbits.py
index <HASH>..<HASH> 100644
--- a/src/packbits.py
+++ b/src/packbits.py
@@ -59,7 +59,7 @@ def encode(data):
result.append(256-(repeat_count - 1))
result.append(data[pos])
- while pos < len(data)-1:
+ while pos < len(data)-1:
current_byte... | rename test (it was not executed before) | psd-tools_packbits | train | py,py |
a96d357d9eeb8b908cc8ce5580ab771fc34a5dc8 | diff --git a/src/main/java/com/couchbase/client/core/env/DefaultCoreEnvironment.java b/src/main/java/com/couchbase/client/core/env/DefaultCoreEnvironment.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/couchbase/client/core/env/DefaultCoreEnvironment.java
+++ b/src/main/java/com/couchbase/client/core/env/Defau... | Use correct default value for endpoints.
This is just a correctness fix, since the constants right now
are all the same.
Change-Id: Icae<I>d9bf3f<I>e<I>fdbfe<I>c8b<I>
Reviewed-on: <URL> | couchbase_couchbase-jvm-core | train | java |
bf6f185dd667e3d491b569bdf807b2c0a31d955e | diff --git a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
index <HASH>..<HASH> 100644
--- a/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
+++ b/src/Sylius/Bundle/CoreBundle/Application/Kernel.php
@@ -31,12 +31,12 @@ use Webmozart\Assert\Assert;
class... | Change application's version to <I>-DEV | Sylius_Sylius | train | php |
1922c0bc72c6b5fdf6082bf246320ec8250d071f | diff --git a/client/js/azure/uploader.basic.js b/client/js/azure/uploader.basic.js
index <HASH>..<HASH> 100644
--- a/client/js/azure/uploader.basic.js
+++ b/client/js/azure/uploader.basic.js
@@ -194,6 +194,7 @@
}),
getSas = new qq.azure.GetSas({
cors: this._options... | fix(azure/uploader.basic): customHeaders omitted from delete SAS
closes #<I> | FineUploader_fine-uploader | train | js |
514b6f6517adca57f2c3c4a1c23a6e02546653b9 | diff --git a/goagen/codegen/workspace.go b/goagen/codegen/workspace.go
index <HASH>..<HASH> 100644
--- a/goagen/codegen/workspace.go
+++ b/goagen/codegen/workspace.go
@@ -310,7 +310,7 @@ func PackagePath(path string) (string, error) {
if gp, err := filepath.Abs(gopath); err == nil {
gopath = gp
}
- if string... | Fix path prefix check. (#<I>)
Windows paths are case-insensitive. | goadesign_goa | train | go |
06323dbf8a760e0da25291cce8546a6ebeacdceb | diff --git a/spec/lol/champion_spec.rb b/spec/lol/champion_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/lol/champion_spec.rb
+++ b/spec/lol/champion_spec.rb
@@ -1,5 +1,5 @@
-require "lol"
require "spec_helper"
+require "lol"
include Lol
diff --git a/spec/lol/client_spec.rb b/spec/lol/client_spec.rb
index <HASH>... | moved spec_helper on top to get simplecov running correctly | mikamai_ruby-lol | train | rb,rb,rb,rb |
aef1b9b357998f8f6be82045e31f9fe420b94396 | diff --git a/lib/canonical-rails.rb b/lib/canonical-rails.rb
index <HASH>..<HASH> 100644
--- a/lib/canonical-rails.rb
+++ b/lib/canonical-rails.rb
@@ -20,9 +20,6 @@ module CanonicalRails
mattr_accessor :collection_actions
@@collection_actions = [:index]
- mattr_accessor :member_actions
- @@member_actions = [:... | Remove member_actions as it is not being used. | jumph4x_canonical-rails | train | rb |
186587a506a233e7a84b82d8da23da3cdb037698 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -69,6 +69,8 @@ setup(
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
+ 'Programming Language :: Python :: 2.... | added py<I>/<I> classifiers as travis-ci tests these versions | jazzband_django-analytical | train | py |
fc2cd53d7698e432ab5b250ffac53458263a49e2 | diff --git a/mistune/util.py b/mistune/util.py
index <HASH>..<HASH> 100644
--- a/mistune/util.py
+++ b/mistune/util.py
@@ -20,7 +20,12 @@ def escape(s, quote=True):
def escape_url(link):
- safe = '/#:()*?=%@+,&'
+ safe = (
+ ':/?#@' # gen-delims - '[]' (rfc3986)
+ '!$&()*+,;=' # ... | Make mistune.util.escape_url less aggressive
This adds ';', '!', and '$' to the set of characters which will be
passed unmolested by escape_url. These are all in RFC <I> reserved
character list — that is to say: escaping these may change the meaning
of a URL. | lepture_mistune | train | py |
f9e8b0b1e2c7aa425fb8460d32607642a5c286f5 | diff --git a/lib/loaders/LoaderBase.js b/lib/loaders/LoaderBase.js
index <HASH>..<HASH> 100644
--- a/lib/loaders/LoaderBase.js
+++ b/lib/loaders/LoaderBase.js
@@ -191,12 +191,12 @@ var LoaderBase = new Class({
*/
_onStateChange: function () {
if (this.xhr.readyState > 1) {
- var status = ''
+ var ... | Bugfix wrong status type comparision | Jam3_preloader | train | js |
369ebf2a9100a2b9bf24c43eee2e465b5683f772 | diff --git a/lib/flor/instruction.rb b/lib/flor/instruction.rb
index <HASH>..<HASH> 100644
--- a/lib/flor/instruction.rb
+++ b/lib/flor/instruction.rb
@@ -37,17 +37,6 @@ class Flor::Instruction
:over
end
- def self.names(*names)
-
- names.each { |n| (@@instructions ||= {})[n] = self }
- end
- class << s... | set Flor::Instruction class methods apart | floraison_flor | train | rb |
c9a4fda35af77213e9db106d039dcef3aa47935c | diff --git a/lib/toto.rb b/lib/toto.rb
index <HASH>..<HASH> 100644
--- a/lib/toto.rb
+++ b/lib/toto.rb
@@ -143,7 +143,7 @@ module Toto
end
def self.articles ext
- Dir["#{Paths[:articles]}/*.#{ext}"].sort { |file_name| File.basename(file_name) }
+ Dir["#{Paths[:articles]}/*.#{ext}"].sort_by { |file... | Ops, wrong call to .sort_by | cloudhead_toto | train | rb |
0cd0477a4172f8c4d4d6c48c2bfb4ff942c10ce9 | diff --git a/symbols/funcdecl.py b/symbols/funcdecl.py
index <HASH>..<HASH> 100644
--- a/symbols/funcdecl.py
+++ b/symbols/funcdecl.py
@@ -11,7 +11,9 @@
from api import global_
from api.constants import TYPE_SIZES
+import api.symboltable
from symbol_ import Symbol
+from function import SymbolFUNCTION
class Sy... | Little fixes for bugs discovered by TDD | boriel_zxbasic | train | py |
57e2ff2a321d737ae3a63e2c49b8d6c07d30b2be | diff --git a/src/lib/exceptions.js b/src/lib/exceptions.js
index <HASH>..<HASH> 100644
--- a/src/lib/exceptions.js
+++ b/src/lib/exceptions.js
@@ -85,7 +85,8 @@ module.exports = {
'filename': this.cleanFileUrl(stack.fileName),
'lineno': stack.lineNumber,
'colno': stack.columnNumber,
- ... | Add abs_path param to stack frames | opbeat_opbeat-react | train | js |
e7ea0cd9673c300812fcebee8417cc24fcba96ab | diff --git a/gandi/conf.py b/gandi/conf.py
index <HASH>..<HASH> 100644
--- a/gandi/conf.py
+++ b/gandi/conf.py
@@ -143,11 +143,13 @@ class GandiContextHelper(object):
if ret is None:
return default
- def call(self, method, args):
+ def call(self, method, *args):
""" call a remote ... | Fixes args passing to api call | Gandi_gandi.cli | train | py |
4c27d574b81a321d0d5088cdb161bbd18a30e7ef | diff --git a/lib/ditty/controllers/component.rb b/lib/ditty/controllers/component.rb
index <HASH>..<HASH> 100644
--- a/lib/ditty/controllers/component.rb
+++ b/lib/ditty/controllers/component.rb
@@ -42,7 +42,7 @@ module Ditty
end
# Create Form
- get '/new' do
+ get '/new/?' do
authorize setting... | chore: Allow trailing / on certain component routes | EagerELK_ditty | train | rb |
5422655a863d4ddbfecd4c5040c0d2d723c6e3b9 | diff --git a/discord/invite.py b/discord/invite.py
index <HASH>..<HASH> 100644
--- a/discord/invite.py
+++ b/discord/invite.py
@@ -53,7 +53,7 @@ class Invite(Hashable):
max_age: int
How long the before the invite expires in seconds. A value of 0 indicates that it doesn't expire.
code: str
- Th... | Fix parsing of Invite.user | Rapptz_discord.py | train | py |
956bd19c8b670b8603490a91bd641dde905c80a7 | diff --git a/src/SearchableTrait.php b/src/SearchableTrait.php
index <HASH>..<HASH> 100644
--- a/src/SearchableTrait.php
+++ b/src/SearchableTrait.php
@@ -87,7 +87,11 @@ trait SearchableTrait
$this->makeGroupBy($query);
+ $clone_bindings = $query->getBindings();
+ $query->setBindings([]);
+
... | fix for bindings order when using where clause
Bindings order were wrong. | nicolaslopezj_searchable | train | php |
bc27b7cdf549d1648cb2f9c467ca0791db9bf4af | diff --git a/src/mesh.js b/src/mesh.js
index <HASH>..<HASH> 100644
--- a/src/mesh.js
+++ b/src/mesh.js
@@ -528,7 +528,7 @@ export default class Mesh {
break;
case Layout.UV.key:
dataView.setFloat32(offset, this.textures[i * 2], true);
- ... | Fix bug in Layout buffer data for UV textures. | frenchtoast747_webgl-obj-loader | train | js |
9ddea2d8d7b51470c3620da2913c74798471960c | diff --git a/scripts/updateLicense.py b/scripts/updateLicense.py
index <HASH>..<HASH> 100644
--- a/scripts/updateLicense.py
+++ b/scripts/updateLicense.py
@@ -50,10 +50,12 @@ def update_go_license(name, force=False):
if year == CURRENT_YEAR:
break
- new_line = COPYRIGHT_RE.sub('Copyright ... | Do not update year for copyright in license (#<I>) | jaegertracing_jaeger-lib | train | py |
a902e312d44bdc9fda95d7a2bcb43735182b0a1c | diff --git a/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerPresenter.java b/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerPresenter.java
index <HASH>..<HASH> 100644
--- a/jbpm-designer-client/src/main/java/org/jbpm/designer/client/DesignerPresenter.java
+++ b/jbpm-designer-cl... | - adding to more modifications regarding:
- adapted to recent URIEncoder->URIUtil refactoring on uberfire | kiegroup_jbpm-designer | train | java |
45852c7aab7ecd5fca597f3aaa828d812121bfbf | diff --git a/IndexedRedis/__init__.py b/IndexedRedis/__init__.py
index <HASH>..<HASH> 100644
--- a/IndexedRedis/__init__.py
+++ b/IndexedRedis/__init__.py
@@ -549,13 +549,17 @@ class IndexedRedisModel(object):
key = None
for key, value in myDict.items():
- if key not in self.BINARY_FIELDS:
+ if key not in s... | Fix repr and bytes fields on python2 and 3 | kata198_indexedredis | train | py |
28086a0b59488915d4b7ab42e74dd03462a91f61 | diff --git a/gtk_mock/combo_box_text.go b/gtk_mock/combo_box_text.go
index <HASH>..<HASH> 100644
--- a/gtk_mock/combo_box_text.go
+++ b/gtk_mock/combo_box_text.go
@@ -10,3 +10,6 @@ func (*MockComboBoxText) AppendText(v1 string) {
func (*MockComboBoxText) GetActiveText() string {
return ""
}
+
+func (*MockComboBoxTe... | Add support for removing all elements in a combobox text | coyim_gotk3adapter | train | go,go,go |
e1b61825099eb335bb3356bf8bec062efd662e67 | diff --git a/app/models/activation_key.rb b/app/models/activation_key.rb
index <HASH>..<HASH> 100644
--- a/app/models/activation_key.rb
+++ b/app/models/activation_key.rb
@@ -33,11 +33,16 @@ class ActivationKey < ActiveRecord::Base
validates :description, :katello_description_format => true
validates :environment... | <I> - validation in activation key model, can't be created for Locker env | Katello_katello | train | rb |
a57f9c34179d4adf44b9b93c4d79b6c6a06107a3 | diff --git a/plugins/blackbox/index.js b/plugins/blackbox/index.js
index <HASH>..<HASH> 100644
--- a/plugins/blackbox/index.js
+++ b/plugins/blackbox/index.js
@@ -39,7 +39,12 @@ function blackbox(name, deps) {
parser.on('data', function(data) {
_writeVideo(data);
})
- client.getVideoStream().pipe(... | The video stream can sometimes break during flight. We have to try to reconnect it so the blackbox keeps recording. | eschnou_ardrone-webflight | train | js |
413c5a16c9f9f74bab9228f8bf1532d32676f628 | diff --git a/html2asketch/nodeToSketchLayers.js b/html2asketch/nodeToSketchLayers.js
index <HASH>..<HASH> 100644
--- a/html2asketch/nodeToSketchLayers.js
+++ b/html2asketch/nodeToSketchLayers.js
@@ -113,7 +113,8 @@ export default async function nodeToSketchLayers(node) {
opacity,
overflowX,
overflowY,
- ... | Skip node that has 'rect (0 0 0 0)' on clip and 'absolute' on positon (#<I>) | brainly_html-sketchapp | train | js |
03a5f607cf72b067b72cc2ff48caad9221b6230a | diff --git a/lib/acts_as_enum.rb b/lib/acts_as_enum.rb
index <HASH>..<HASH> 100644
--- a/lib/acts_as_enum.rb
+++ b/lib/acts_as_enum.rb
@@ -80,7 +80,7 @@ module ActsAsEnum
const_set(method_name.upcase, attr_value)
- if Rails.version =~ /^[34]/
+ if Rails.version =~ /^[345]/
scope me... | rails 5 support
it does not work in rails 5, adding 5 support | liangwenke_acts_as_enum | train | rb |
2b97efefb4292e40342763c63bf0db84c93c818c | diff --git a/src/Entity/Ranking.php b/src/Entity/Ranking.php
index <HASH>..<HASH> 100644
--- a/src/Entity/Ranking.php
+++ b/src/Entity/Ranking.php
@@ -9,7 +9,7 @@ use Drupal\mespronos\RankingInterface;
use Drupal\mespronos\MPNEntityInterface;
use Drupal\mespronos_group\Entity\Group;
-abstract class Ranking extends ... | refactoring - clean Ranking | mespronos_mespronos | train | php |
602020879bb456695204d40b01bab5816800a724 | diff --git a/lib/chef/knife/azure_server_create.rb b/lib/chef/knife/azure_server_create.rb
index <HASH>..<HASH> 100755
--- a/lib/chef/knife/azure_server_create.rb
+++ b/lib/chef/knife/azure_server_create.rb
@@ -1090,4 +1090,4 @@ class Chef
end
end
end
-end
+end
\ No newline at end of file | Removed extra line for travis pass | chef_knife-azure | train | rb |
c9c357d6b774083a660424226ceff143cbde9579 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -558,6 +558,9 @@ async function activate() {
let CHANGELOG = await askForChangelog( VERSION_TYPE, NEXT_VERSION );
+ if ( CHANGELOG )
+ fs.writeFileSync( 'CHANGELOG.md.draft', CHANGELOG, 'UTF-8' );
+
//
// ---... | A draft changelog will be saved for future use when the user writes an entry and then aborts the update | Zelgadis87_npm-versionator | train | js |
102f8f5081a6f6e156266a1499223a45f782b737 | diff --git a/php/Element.php b/php/Element.php
index <HASH>..<HASH> 100644
--- a/php/Element.php
+++ b/php/Element.php
@@ -247,7 +247,8 @@ class Element extends Tag {
};
array_walk_recursive( $config, $replaceElements );
// Set '_' last to ensure that subclasses can't accidentally step on it.
- $config['_'] =... | Strip all namespaces from infused PHP widgets
This will allow us to put custom MediaWiki specific widgets in their own
namespace, but still be able to infuse them.
Change-Id: I5d<I>e<I>efc<I>ad<I>c<I>e2b<I>dc | wikimedia_oojs-ui | train | php,php |
83f3f3e8baac7cce18da75b187a479744e419700 | diff --git a/examples/notifications.rb b/examples/notifications.rb
index <HASH>..<HASH> 100644
--- a/examples/notifications.rb
+++ b/examples/notifications.rb
@@ -13,3 +13,6 @@ client.category_set_user_notification_level(1, notification_level: 3)
# mute a topic
client.topic_set_user_notification_level(1, notificati... | Pass params to get notifications API (#<I>) | discourse_discourse_api | train | rb,rb |
f993a24158c832d8c0fc76b63b3bc34074a40e5f | diff --git a/src/Ukey1/ApiClient/Request.php b/src/Ukey1/ApiClient/Request.php
index <HASH>..<HASH> 100644
--- a/src/Ukey1/ApiClient/Request.php
+++ b/src/Ukey1/ApiClient/Request.php
@@ -222,8 +222,7 @@ class Request
$this->httpClient = new Client(
[
"base_uri" => $thi... | Redirects allowed
In near future we may change API URL, so it's necessary to allow redirects by default. | asaritech_ukey1-php-sdk | train | php |
1822b2a298ac977a52938c57f9607020c56f6d4d | diff --git a/src/host/browser.js b/src/host/browser.js
index <HASH>..<HASH> 100644
--- a/src/host/browser.js
+++ b/src/host/browser.js
@@ -5,8 +5,8 @@
/*#ifndef(UMD)*/
"use strict";
/*global _GPF_HOST*/ // Host types
+/*global _gpfBootImplByHost*/ // Boot host specific implementation per host
/*global _gpfExit:true... | Uses switch pattern to improve coverage / simplify code | ArnaudBuchholz_gpf-js | train | js |
11fecafd4bd4eb522ed3f972f9aed20bc4d8a5bc | diff --git a/src/scripts/hubot-phrases.js b/src/scripts/hubot-phrases.js
index <HASH>..<HASH> 100644
--- a/src/scripts/hubot-phrases.js
+++ b/src/scripts/hubot-phrases.js
@@ -38,9 +38,9 @@ module.exports = function Plugin (robot) {
this.name = name;
this.tidbits = [];
this.alias = false;
- thi... | fix(*): make new facts open by default
Since the canEdit stuff doesn't really work without user roles, figured locking down by default
doesn't make much sense | halkeye_hubot-phrases | train | js |
56f724df3c9f515a1688879298a678f41f38e93c | diff --git a/pybar/daq/fifo_readout.py b/pybar/daq/fifo_readout.py
index <HASH>..<HASH> 100644
--- a/pybar/daq/fifo_readout.py
+++ b/pybar/daq/fifo_readout.py
@@ -100,9 +100,8 @@ class FifoReadout(object):
else:
fifo_size = self.dut['SRAM']['FIFO_SIZE']
data = self.read_data()
- ... | ENH: optimize check, reduce memory, check for FE data word | SiLab-Bonn_pyBAR | train | py |
d55def28016ecb7ec834ca152a254fb35700193e | diff --git a/bingo/image.py b/bingo/image.py
index <HASH>..<HASH> 100644
--- a/bingo/image.py
+++ b/bingo/image.py
@@ -66,7 +66,7 @@ def get_texts(bingo_fields, font):
if bingo_field.is_middle():
text += _("\n{time}\nBingo #{board_id}").format(
time=bingo_field.board.get_created()... | fix: show the correct board_id on the images.
The correct id is board.board_id and not board.id,
as "id" is the internal id assigned by django,
and "board_id" is the board number on the current site. | allo-_django-bingo | train | py |
9c4dc2ab9ec2fb58c6a2e2fe845e7b25a5496bd6 | diff --git a/moco-core/src/main/java/com/github/dreamhead/moco/UnexpectedRequestMatcher.java b/moco-core/src/main/java/com/github/dreamhead/moco/UnexpectedRequestMatcher.java
index <HASH>..<HASH> 100644
--- a/moco-core/src/main/java/com/github/dreamhead/moco/UnexpectedRequestMatcher.java
+++ b/moco-core/src/main/java/c... | added missing final to unexpected request matcher | dreamhead_moco | train | java |
e5943e6c9021aec91ce8dcad631f7aa382e60a2f | diff --git a/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php b/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php
index <HASH>..<HASH> 100644
--- a/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php
+++ b/src/Sculpin/Core/Permalink/SourcePermalinkFactory.php
@@ -116,7 +116,11 @@ class SourcePermalinkFactory... | Fixes bug with :basename tag in permalinks
When :basename was used for files in the root source directory, one character was removed from the beginning. This fixes this. | sculpin_sculpin | train | php |
f9b010a418a9a91d38ecc4c70a741cd5f6c7c455 | diff --git a/app/patients/edit/controller.js b/app/patients/edit/controller.js
index <HASH>..<HASH> 100644
--- a/app/patients/edit/controller.js
+++ b/app/patients/edit/controller.js
@@ -520,7 +520,13 @@ export default AbstractEditController.extend(BloodTypes, DOBDays, GenderList, Po
},
afterUpdate: fun... | Changed patient save workflow
Changed to display modal on save instead of redirect to search. | HospitalRun_hospitalrun-frontend | train | js,js |
f0eb53a8042f821c22cabc403110772667a690e8 | diff --git a/src/mouse.support.js b/src/mouse.support.js
index <HASH>..<HASH> 100644
--- a/src/mouse.support.js
+++ b/src/mouse.support.js
@@ -1,8 +1,8 @@
steal('src/synthetic.js', 'src/mouse.js', function checkSupport(Syn) {
if (!document.body) {
- Syn.schedule(function() {
- checkSupport(Syn);
+ Syn.schedul... | Remove extra trailing spaces in mouse.support.js | bitovi_syn | train | js |
fa3b90fea03cea88a3f36c9f8d1b974641f46023 | diff --git a/src/pubsub.js b/src/pubsub.js
index <HASH>..<HASH> 100644
--- a/src/pubsub.js
+++ b/src/pubsub.js
@@ -63,7 +63,9 @@ module.exports = (common) => {
const getTopic = () => 'pubsub-tests-' + Math.random()
- describe('callback API', () => {
+ describe('callback API', function () {
+ this.ti... | chore: increase timeout for CI | ipfs_interface-js-ipfs-core | train | js |
0af2127fc345ffc55dc30c40df6c5daf57703383 | diff --git a/haversine/__init__.py b/haversine/__init__.py
index <HASH>..<HASH> 100644
--- a/haversine/__init__.py
+++ b/haversine/__init__.py
@@ -21,7 +21,7 @@ def haversine(point1, point2, miles=False):
lat2, lng2 = point2
# convert all latitudes/longitudes from decimal degrees to radians
- lat1, lng1,... | unpack coordinates without building a list | mapado_haversine | train | py |
9891e57d084b9b39b4dfb058ff6dd67943c3da3a | diff --git a/routes/index.js b/routes/index.js
index <HASH>..<HASH> 100644
--- a/routes/index.js
+++ b/routes/index.js
@@ -32,6 +32,10 @@ var TEST_AND_DEPLOY = "TEST_AND_DEPLOY";
*/
exports.index = function(req, res){
+ // Work-around for Safari/Express etags bug on cookie logout.
+ // Without it, Safari will ca... | work-around Safari caching logged-in page after logout.
this is due to etag weirdness.
fixes #<I>. | Strider-CD_strider | train | js |
02a175f6d9dbed64a8018fc12c8011270946df4d | diff --git a/src/utils/mixins.js b/src/utils/mixins.js
index <HASH>..<HASH> 100644
--- a/src/utils/mixins.js
+++ b/src/utils/mixins.js
@@ -83,7 +83,7 @@ const on = (el, ev, fn, opts) => {
el = el instanceof Array ? el : [el];
for (let i = 0; i < ev.length; ++i) {
- el.forEach(elem => elem.addEventListener(ev... | Add checks in on/off mixins | artf_grapesjs | train | js |
ab20785210eeb07dbdc550d0aceccfeabfcb9892 | diff --git a/website/config.rb b/website/config.rb
index <HASH>..<HASH> 100644
--- a/website/config.rb
+++ b/website/config.rb
@@ -2,7 +2,7 @@ set :base_url, "https://www.consul.io/"
activate :hashicorp do |h|
h.name = "consul"
- h.version = "1.7.0"
+ h.version = "1.7.1"
h.github_slug = "hashi... | Update Consul version on website to <I> | hashicorp_consul | train | rb |
Subsets and Splits
Java Commits in Train Set
Queries for all entries where the diff_languages column is 'java', providing a filtered dataset but without deeper analysis.
Java Commits Test Data
Returns a subset of 5000 entries from the dataset where the programming language difference is Java, providing basic filtering for exploration.
Java Commits Sample
Retrieves the first 1,000 records where the 'diff_languages' column is 'java', providing limited insight into the specific data entries.
Java Commits Validation Sample
Retrieves a sample of entries from the validation dataset where the diff languages are Java, providing limited insight into specific Java-related data points.
Java Commits in Validation
This query retrieves a limited sample of entries from the validation dataset where the programming language difference is Java, providing basic filtering with minimal insight.
Java Commits Sample
This query retrieves a sample of 100 records where the 'diff_languages' is 'java', providing basic filtering but limited analytical value.
Java Commits Sample
Retrieves 100 samples where the language difference is Java, providing basic filtering but minimal analytical value.
Java Commits Sample
Retrieves 10 samples where the diff_languages column is 'java', providing basic examples of data entries with this specific language.
Java Commits Validation Sample
Retrieves 1,000 records where the differences in languages are marked as Java, providing a snapshot of that specific subset but limited to raw data.
Java Commits Sample
This query retrieves 1000 random samples from the dataset where the programming language is Java, offering limited insight beyond raw data.