hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
234d3a0bf300d15e60848aa11439b7a2c5731633 | diff --git a/version.go b/version.go
index <HASH>..<HASH> 100644
--- a/version.go
+++ b/version.go
@@ -19,6 +19,6 @@ package fdk
import "fmt"
// Version is the FDK version
-const Version = "0.0.3"
+const Version = "0.0.4"
var versionHeader = fmt.Sprintf("fdk-go/%s", Version) | <I> release [skip ci] | fnproject_fdk-go | train |
4927a800efa2701942dde2486d7e35d729e75673 | diff --git a/js/lightbox.js b/js/lightbox.js
index <HASH>..<HASH> 100755
--- a/js/lightbox.js
+++ b/js/lightbox.js
@@ -437,7 +437,7 @@ function Lightbox () {
currImage.img.setAttribute('height',newImgHeight)
currImage.img.setAttribute('style','margin-top:'+((getHeight() - newImgHeight) /2)+'px')
- repositionCo... | added timeout for correct repositioning of controls | felixhagspiel_jsOnlyLightbox | train |
4ba4ab799c5a0372510031f2bbdaa99234397da3 | diff --git a/test/collection-algorithms.js b/test/collection-algorithms.js
index <HASH>..<HASH> 100644
--- a/test/collection-algorithms.js
+++ b/test/collection-algorithms.js
@@ -995,4 +995,25 @@ describe('Algorithms', function(){
expect( res.betweenness(d) ).to.equal(0);
expect( res.betweenness(e) ).to.equal... | betweenness tests based on stress tests | cytoscape_cytoscape.js | train |
4c3d2fb3d464b23fa4f002bc0ea90c5ca72aaca9 | diff --git a/libraries/lithium/console/command/Library.php b/libraries/lithium/console/command/Library.php
index <HASH>..<HASH> 100644
--- a/libraries/lithium/console/command/Library.php
+++ b/libraries/lithium/console/command/Library.php
@@ -276,22 +276,24 @@ class Library extends \lithium\console\Command {
}
$t... | updating \command\Library::install() | UnionOfRAD_framework | train |
8bd68e0f107cc241c17ea02b8a2eeeb3fcbc3ecf | diff --git a/src/store/indexeddb-remote-backend.js b/src/store/indexeddb-remote-backend.js
index <HASH>..<HASH> 100644
--- a/src/store/indexeddb-remote-backend.js
+++ b/src/store/indexeddb-remote-backend.js
@@ -31,20 +31,16 @@ import Promise from 'bluebird';
const RemoteIndexedDBStoreBackend = function RemoteIndexedDB... | Create indexeddb worker when starting the store
Rather than when creating it, otherwise we could potentially end
up starting workers unnecessarily. | matrix-org_matrix-js-sdk | train |
d85c9c3c71af7792e440889c3f4ebf393d752517 | diff --git a/test_jujupy.py b/test_jujupy.py
index <HASH>..<HASH> 100644
--- a/test_jujupy.py
+++ b/test_jujupy.py
@@ -256,7 +256,7 @@ class TestJujuClientDevel(TestCase):
self.assertEqual('https://example.org/juju/tools', result)
def test_set_env_option(self):
- client = JujuClientDevelFake(None... | Use the real client in the tests. Check the call_count() | juju_juju | train |
5ef3e1f32b55b97227c4a2d4a0d609df538f14b0 | diff --git a/system/user.go b/system/user.go
index <HASH>..<HASH> 100644
--- a/system/user.go
+++ b/system/user.go
@@ -34,6 +34,8 @@ func CreateUser(u *User) error {
if u.PasswordHash != "" {
args = append(args, "--password", u.PasswordHash)
+ } else {
+ args = append(args, "--password", "*")
}
if u.GECOS... | fix(user): Use '*' as default password field rather than '!'
When using openssh without pam it checks for a ! prefix in the password
field, locking the account entirely if found. The other common lock
character, *, is allowed by ssh to login via ssh keys so use it instead. | coreos_coreos-cloudinit | train |
3d19faccbc58d88df40c5b427e5dfac74eb4dea8 | diff --git a/demonstrations/src/boofcv/demonstrations/calibration/DetectCalibrationCircleAsymmetricApp.java b/demonstrations/src/boofcv/demonstrations/calibration/DetectCalibrationCircleAsymmetricApp.java
index <HASH>..<HASH> 100644
--- a/demonstrations/src/boofcv/demonstrations/calibration/DetectCalibrationCircleAsymm... | - crap found some code that should not have been commited that was in the stable release... | lessthanoptimal_BoofCV | train |
dac4feeae1900f833ab431824aee81e6a82cb0cb | diff --git a/lib/chars/char_set.rb b/lib/chars/char_set.rb
index <HASH>..<HASH> 100644
--- a/lib/chars/char_set.rb
+++ b/lib/chars/char_set.rb
@@ -113,6 +113,22 @@ module Chars
#
# Returns an Array of the specified _length_ containing
+ # random bytes from the character set with no duplicate bytes.
+ ... | added random_distinct_string and random_distinct_chars methods to the chars library | postmodern_chars | train |
8eabcd73d8a04c411b3983c8240b72a85c95312b | diff --git a/impl-servlet-tests/src/test/java/org/ocpsoft/rewrite/servlet/config/ConfigurationDeploymentTest.java b/impl-servlet-tests/src/test/java/org/ocpsoft/rewrite/servlet/config/ConfigurationDeploymentTest.java
index <HASH>..<HASH> 100644
--- a/impl-servlet-tests/src/test/java/org/ocpsoft/rewrite/servlet/config/C... | Testing deployment errors doesn't work with Wildfly and Glassfish | ocpsoft_rewrite | train |
bcd39da7ab4629da17f014ddfb5ca2c63a9c9051 | diff --git a/tests/test_tpm.py b/tests/test_tpm.py
index <HASH>..<HASH> 100644
--- a/tests/test_tpm.py
+++ b/tests/test_tpm.py
@@ -1,21 +1,22 @@
-import os.path
+import requests
+import requests_mock
import unittest
-import json
-
+import os.path
import tpm
-from mock import patch
+import json
-class fake_req():
- ... | change test based on requests_mock | peshay_tpm | train |
30265e98f14cd4f4c8d2db52c40c3410b021bd3b | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -1,6 +1,7 @@
'use strict'
const {Worker} = require('worker_threads')
+const {AsyncResource} = require('async_hooks')
const afterAll = require('after-all')
const noop = function () {}
@@ -19,7 +20,7 @@ module.exports = ... | Add support for Async Hooks (#1)
Use the Embedder API of Async Hooks to make sure that context
propagation works correctly | watson_worker-threads-pool | train |
906d1ea739c7156e336842a2c465083b1353d205 | diff --git a/xchange-therock/src/main/java/org/knowm/xchange/therock/TheRockAuthenticated.java b/xchange-therock/src/main/java/org/knowm/xchange/therock/TheRockAuthenticated.java
index <HASH>..<HASH> 100644
--- a/xchange-therock/src/main/java/org/knowm/xchange/therock/TheRockAuthenticated.java
+++ b/xchange-therock/src... | [therock] added implementation for user trade history | knowm_XChange | train |
45ff3c2e43cc97020f999ded1b02a93135e036ee | diff --git a/gwt-material/src/main/java/gwt/material/design/client/constants/CssName.java b/gwt-material/src/main/java/gwt/material/design/client/constants/CssName.java
index <HASH>..<HASH> 100644
--- a/gwt-material/src/main/java/gwt/material/design/client/constants/CssName.java
+++ b/gwt-material/src/main/java/gwt/mat... | Added test case for NEW SideNav Content component.
Simply the css name on MaterialSideNavContent to store on enum. | GwtMaterialDesign_gwt-material | train |
1ebde9222d9c4ef7b8aa35658ec5836bdee3458d | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,4 +1,4 @@
-from strings import Template
+from string import Template
from setuptools import setup, find_packages
version = '1.0'
@@ -17,9 +17,9 @@ $CHANGES
setup(
name='edeposit.amqp.aleph',
version=version,
... | setup.py changed and debugged to be ready to create PIP package.
- Licence changed from GPL to GPL2+.
- README changed to restructured text.
- Added team email
- Dependencies debugged. | edeposit_edeposit.amqp.aleph | train |
aa97fc53dc79e1489c0d59ecc8bfcbbb12604944 | diff --git a/lib/grape_token_auth/authorizer_data.rb b/lib/grape_token_auth/authorizer_data.rb
index <HASH>..<HASH> 100644
--- a/lib/grape_token_auth/authorizer_data.rb
+++ b/lib/grape_token_auth/authorizer_data.rb
@@ -30,7 +30,7 @@ module GrapeTokenAuth
end
def token_prerequisites_present?
- token.pre... | Remove ActiveSupport usage in AuthorizerData
present? is a support method and we don't want to depend on active
support. | mcordell_grape_token_auth | train |
7c8756df3643a3fa92efde05bee8796e24443a98 | diff --git a/lib/status.js b/lib/status.js
index <HASH>..<HASH> 100644
--- a/lib/status.js
+++ b/lib/status.js
@@ -13,7 +13,7 @@ module.exports = function (ebookr) {
});
ebookr.addRenderer('status', function (state, stateText, url) {
return util.format('Status: %s', url
- ? util.format('<a href="%s%s">%s (%s)... | Changed how link is formatted
From HTML to MD, and let Pandoc do the magic | ebookr_ebookr-status | train |
f623729b649dc6d3c396dca6daae5aa5d88de443 | diff --git a/channeldb/graph.go b/channeldb/graph.go
index <HASH>..<HASH> 100644
--- a/channeldb/graph.go
+++ b/channeldb/graph.go
@@ -1295,21 +1295,21 @@ func fetchEdges(edgeIndex *bolt.Bucket, edges *bolt.Bucket, nodes *bolt.Bucket,
chanID []byte, db *DB) (*ChannelEdge, *ChannelEdge, error) {
edgeInfo := edgeIn... | channeldb: fix panic in query for nonexistent channel ID
This commit fixes a panic that would arise when the daemon attempts to
query for a channel that doesn’t currently exist. The bug was the
result of a typo which checked for the nil existence of the incorrect
variable. | lightningnetwork_lnd | train |
9d9b4e62b5558306539b118381cfaace240a71ae | diff --git a/src/components/TabSelect/TabSelect.js b/src/components/TabSelect/TabSelect.js
index <HASH>..<HASH> 100644
--- a/src/components/TabSelect/TabSelect.js
+++ b/src/components/TabSelect/TabSelect.js
@@ -22,7 +22,7 @@ const bordersOnlyTop = props => `
const TabContent = styled.div`
padding: 20px;
backgrou... | use whitesmoke as secondary bg TabSElect | weaveworks_ui-components | train |
c618ea486b2801c59d413eaa1a234423764eab31 | diff --git a/bcbio/variation/effects.py b/bcbio/variation/effects.py
index <HASH>..<HASH> 100644
--- a/bcbio/variation/effects.py
+++ b/bcbio/variation/effects.py
@@ -101,7 +101,7 @@ def prep_vep_cache(dbkey, ref_file, tooldir=None, config=None):
vep_path = "%s/bin/" % tooldir if tooldir else ""
... | added flags to vep cache install command | bcbio_bcbio-nextgen | train |
56050833f380f9452325aa9c48fa5b897bb9b0d5 | diff --git a/spec/plugin.py b/spec/plugin.py
index <HASH>..<HASH> 100644
--- a/spec/plugin.py
+++ b/spec/plugin.py
@@ -518,6 +518,8 @@ class SpecPlugin(Plugin):
self.stream.print_context(context)
def _print_spec(self, color, test, status=None):
- if isinstance(test.test, doctest.DocTestCase) and ... | Fix #<I>: failure if setUp() fails during nose.suite.run() | bitprophet_spec | train |
cabad33e461289c420f780563d32a19acaf8be81 | diff --git a/packages/ember-routing-handlebars/lib/helpers/link_to.js b/packages/ember-routing-handlebars/lib/helpers/link_to.js
index <HASH>..<HASH> 100644
--- a/packages/ember-routing-handlebars/lib/helpers/link_to.js
+++ b/packages/ember-routing-handlebars/lib/helpers/link_to.js
@@ -329,7 +329,9 @@ var LinkView = Em... | [BUGFIX beta] Fix active link to nested parent with query params
failing test of link-to helper with query-params;
make tests pass by checking for non-empty query params and isActive | emberjs_ember.js | train |
864e26b135f83f001f2dab6c75add7623722efb1 | diff --git a/src/Filter/IntToRoman.php b/src/Filter/IntToRoman.php
index <HASH>..<HASH> 100644
--- a/src/Filter/IntToRoman.php
+++ b/src/Filter/IntToRoman.php
@@ -12,6 +12,7 @@ use Romans\Grammar\GrammarAwareTrait;
*/
class IntToRoman
{
+ use CacheAwareTrait;
use GrammarAwareTrait;
/**
@@ -36,6 +37,1... | Use cache on filter from integer to roman number | wandersonwhcr_romans | train |
6c64e172425911045a9fb3252c75d6395e9d57ae | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -7,23 +7,26 @@ Conditions and parameters are managed by YAML files.
## Usage
-You need to get an access token for your firebase project.
+### Get the current configs into your local
```bash
-export REMOCON_FIREBASE... | Updated README.md | jmatsu_remocon | train |
c79dca34e9f237a7b33cf29560df9193e5cac322 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -260,7 +260,7 @@ end
##### Finders
-Basic finding by filters is supported by resources. However if you have more complex requirements for finding you can override the `find` and `find_by_key` methods on the resource.
... | Add a hook to change the underlying relation for finder methods | cerebris_jsonapi-resources | train |
1f307eb36e51c6f2343a10a7f8f4953e2928a89c | diff --git a/lib/linguist/language.rb b/lib/linguist/language.rb
index <HASH>..<HASH> 100644
--- a/lib/linguist/language.rb
+++ b/lib/linguist/language.rb
@@ -291,12 +291,11 @@ module Linguist
# If group name is set, save the name so we can lazy load it later
if attributes[:group_name]
- @group =... | Remove language group recursion (#<I>)
Remove recursion | github_linguist | train |
38518baf4463fe0f05858de6a8d1c83c679f9c73 | diff --git a/lib/GUI/entry.hbs b/lib/GUI/entry.hbs
index <HASH>..<HASH> 100644
--- a/lib/GUI/entry.hbs
+++ b/lib/GUI/entry.hbs
@@ -8,7 +8,10 @@
</div>
<div class="col-md-4 col-sm-4">
<div class="author pull-right">
- <small>By: {{ author.name }}</small>
+ {{!-- I can't make hbs helper wor... | fix: search leak private package and ui bug
- Check permission in search API
- Fix author's name not show in search result | verdaccio_verdaccio | train |
4870bb50b340416df75aedbfcd6a416d6a8b3689 | diff --git a/src/Yosymfony/Spress/Core/ContentLocator/ContentLocator.php b/src/Yosymfony/Spress/Core/ContentLocator/ContentLocator.php
index <HASH>..<HASH> 100644
--- a/src/Yosymfony/Spress/Core/ContentLocator/ContentLocator.php
+++ b/src/Yosymfony/Spress/Core/ContentLocator/ContentLocator.php
@@ -26,6 +26,7 @@ class C... | Cached the result of getProcessableExtention method during lifecycle | spress_spress | train |
0cf9e31215541774f89deb5c68b53430c9056ca6 | diff --git a/assets/gii.js b/assets/gii.js
index <HASH>..<HASH> 100644
--- a/assets/gii.js
+++ b/assets/gii.js
@@ -35,9 +35,10 @@ yii.gii = (function ($) {
};
var initPreviewDiffLinks = function () {
- $('.preview-code,.diff-code').on('click', function () {
+ $('.preview-code,.diff-code,.modal-refresh').on('cli... | Improvements in view of changed files in Gii | yiisoft_yii2-gii | train |
2fba2fe86caf11fdb5ea6a1b5afe32d3850e975a | diff --git a/src/scs_core/aws/manager/configuration_finder.py b/src/scs_core/aws/manager/configuration_finder.py
index <HASH>..<HASH> 100644
--- a/src/scs_core/aws/manager/configuration_finder.py
+++ b/src/scs_core/aws/manager/configuration_finder.py
@@ -37,14 +37,12 @@ class ConfigurationFinder(object):
def fin... | Added ConfigurationSample class | south-coast-science_scs_core | train |
ae7cb4a4718ff177d5c879ce1a719e21e2591422 | diff --git a/bcbio/pipeline/main.py b/bcbio/pipeline/main.py
index <HASH>..<HASH> 100644
--- a/bcbio/pipeline/main.py
+++ b/bcbio/pipeline/main.py
@@ -285,6 +285,7 @@ def fastrnaseqpipeline(config, run_info_yaml, parallel, dirs, samples):
with profile.report("fastrnaseq", dirs):
samples = rnaseq.f... | fastRNAseq: Create tx2gene file.
cc @roryk, in case I broke something else.
Thanks @mjsteinbaugh | bcbio_bcbio-nextgen | train |
cfa1280e94298c82549fb87e504c15d45c381071 | diff --git a/pmxbot/botbase.py b/pmxbot/botbase.py
index <HASH>..<HASH> 100644
--- a/pmxbot/botbase.py
+++ b/pmxbot/botbase.py
@@ -106,7 +106,7 @@ class LoggingCommandBot(irc.bot.SingleServerIRCBot):
if isinstance(when, datetime.datetime):
cmd = irc.client.DelayedCommand.at_time(
when, self.background_runne... | Fixed issues with scheduling tasks under irc <I> | yougov_pmxbot | train |
4e49b11e30517e8065421c1bd78610a09c7fa046 | diff --git a/RedisRobotsCache.java b/RedisRobotsCache.java
index <HASH>..<HASH> 100644
--- a/RedisRobotsCache.java
+++ b/RedisRobotsCache.java
@@ -4,6 +4,7 @@ import java.io.IOException;
import java.net.URL;
import java.util.concurrent.LinkedBlockingQueue;
import java.util.logging.ConsoleHandler;
+import java.util.l... | don't add duplicate LOGGER handlers | iipc_openwayback | train |
2d8d31cd88632fd5d6a6151925aaa1e999d618fe | diff --git a/src/main/java/org/jenkinsci/plugins/ghprb/GhprbBuildListener.java b/src/main/java/org/jenkinsci/plugins/ghprb/GhprbBuildListener.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jenkinsci/plugins/ghprb/GhprbBuildListener.java
+++ b/src/main/java/org/jenkinsci/plugins/ghprb/GhprbBuildListener.java
@... | Prevent NPE when job started manually | jenkinsci_ghprb-plugin | train |
8aed575458b06373b11c1dd676c5443dc4cbaa21 | diff --git a/apptentive/src/com/apptentive/android/sdk/util/Util.java b/apptentive/src/com/apptentive/android/sdk/util/Util.java
index <HASH>..<HASH> 100644
--- a/apptentive/src/com/apptentive/android/sdk/util/Util.java
+++ b/apptentive/src/com/apptentive/android/sdk/util/Util.java
@@ -12,6 +12,7 @@ import android.app.... | Add a utility method for converting web colors in #RRGGBBA into Android's #AARRGGBB format. Add tests for it. | apptentive_apptentive-android | train |
968109fa379d4d760f7f68cf752aa185be061c23 | diff --git a/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/dataflow/PlainChangesLogImpl.java b/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/dataflow/PlainChangesLogImpl.java
index <HASH>..<HASH> 100644
--- a/exo.jcr.component.core/src/main/java/org/exoplatform/services/jcr/dataf... | EXOJCR-<I> : The problem with NullPointerException on serialization of PlainChangesLogImpl was fixed. | exoplatform_jcr | train |
2425dd534860ee66aa8c458ef74855d378d5579f | diff --git a/src/components/observables/QResizeObservable.js b/src/components/observables/QResizeObservable.js
index <HASH>..<HASH> 100644
--- a/src/components/observables/QResizeObservable.js
+++ b/src/components/observables/QResizeObservable.js
@@ -33,13 +33,16 @@ export default {
object = document.createEleme... | refactor(QResizeObservable): Small addition to previous commit | quasarframework_quasar | train |
5d455566a97250e91ab79c2659f688f4078e2705 | diff --git a/test/tests/clone.js b/test/tests/clone.js
index <HASH>..<HASH> 100644
--- a/test/tests/clone.js
+++ b/test/tests/clone.js
@@ -12,7 +12,6 @@ describe("Clone", function() {
var http = local("../repos/http");
var https = local("../repos/https");
var ssh = local("../repos/ssh");
- var sshManual = loc... | Refactored tests to use before to clean
This allowed us to reuse folders. I also fixed the tests to allow use a
certificate check callback (where required). | nodegit_nodegit | train |
4a4134c529902c8f04c7f29f391598bb96232f46 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -27,6 +27,7 @@
* [#4268](https://github.com/bbatsov/rubocop/issues/4268): Handle end-of-line comments when autocorrecting Style/EmptyLinesAroundAccessModifier. ([@vergenzt][])
* [#4275](https://github.com/bba... | Allow enabling departments when DisabledByDefault is true
When DisabledByDefault is true, only cops explicitly enabled
in user configuration are run. This should work for
departments too. | rubocop-hq_rubocop | train |
53025d50a3a77374838b7df0b43902877b8ca3da | diff --git a/app-addon/views/liquid-child.js b/app-addon/views/liquid-child.js
index <HASH>..<HASH> 100644
--- a/app-addon/views/liquid-child.js
+++ b/app-addon/views/liquid-child.js
@@ -3,9 +3,10 @@ import Ember from "ember";
export default Ember.ContainerView.extend({
classNames: ['liquid-child'],
resolveInser... | Use visibility:hidden and explicit sizes to prevent flickering | ember-animation_liquid-fire | train |
ee2edfe9bb5d978b6ebcc42a5117b094edc5964c | diff --git a/tests/pagination.tests.js b/tests/pagination.tests.js
index <HASH>..<HASH> 100644
--- a/tests/pagination.tests.js
+++ b/tests/pagination.tests.js
@@ -12,6 +12,7 @@ import {
goBackOne,
handleLongPagItemClick,
handleLongPagNextClick,
+ handleLongPagPrevClick,
} from '../src/assets/drizzle/scripts/... | increase long pag spark site coverage to <I>, overall at <I> | sparkdesignsystem_spark-design-system | train |
17d4dbdc673536345d16bfc67d9dabb3556b8b74 | diff --git a/src/ij.js b/src/ij.js
index <HASH>..<HASH> 100644
--- a/src/ij.js
+++ b/src/ij.js
@@ -123,27 +123,37 @@ export default class IJ {
return this.getCanvas().toDataURL();
}
- setMatrix(matrix) {
+ setMatrix(matrix, channel) {
// the user is expected to know what he is doing !
... | Fix the invertMatrix example and give the possibility to get just one specific channel with getMatrix(channel) and setMatrix(matrix, channel) | image-js_image-js | train |
ba153d7782ce10bb8f3bd92b4c42e163506d79e2 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ setup(
packages=find_packages(),
include_package_data=True,
install_requires=['pyhamcrest'],
- tests_requires=['pyhamcrest'],
+ tests_require=['pyhamcrest'],
test_suite="tests",
zi... | Update setup.py
My apologies I got it wrong the first time. Always get the plural wrong. | drslump_pyshould | train |
6d97628cc72d62278be15a2b09625fdb04e00677 | diff --git a/fluo/forms/widgets.py b/fluo/forms/widgets.py
index <HASH>..<HASH> 100644
--- a/fluo/forms/widgets.py
+++ b/fluo/forms/widgets.py
@@ -20,11 +20,15 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
# THE SOFTWARE.
+import datetime
+import re
+from itertools import chain
fro... | implemented fluo.forms.SelectYearWidget, to select only a Year | rsalmaso_django-fluo | train |
31d5902bfb688c21521a015019388d64f5f90353 | diff --git a/confit.py b/confit.py
index <HASH>..<HASH> 100644
--- a/confit.py
+++ b/confit.py
@@ -367,6 +367,27 @@ def as_choice(choices):
return f
+# YAML.
+
+class Loader(yaml.SafeLoader):
+ """A customized YAML safe loader that reads all strings as Unicode
+ objects.
+ """
+ def _construct_unic... | always load Unicode strings from YAML files | sampsyo_confuse | train |
325667113e8d2bd7f6787b7b54a38e6358fda1ed | diff --git a/src/components/ModalPortal.js b/src/components/ModalPortal.js
index <HASH>..<HASH> 100644
--- a/src/components/ModalPortal.js
+++ b/src/components/ModalPortal.js
@@ -232,6 +232,9 @@ export default class ModalPortal extends Component {
if (this.moveFromContentToOverlay === null) {
this.shouldClo... | [fixed] when ModalPortal is clicked, shouldClose is true if shouldCloseOnOverlayClick is true.
Associate #<I> | reactjs_react-modal | train |
5967fe6899ef18faf3eadec3a2f24701a65dfd06 | diff --git a/lib/specinfra/command/base/file.rb b/lib/specinfra/command/base/file.rb
index <HASH>..<HASH> 100644
--- a/lib/specinfra/command/base/file.rb
+++ b/lib/specinfra/command/base/file.rb
@@ -28,6 +28,10 @@ class Specinfra::Command::Base::File < Specinfra::Command::Base
"test -L #{escape(file)}"
end
... | Add check that symlinks can be fully resolved to their real path | mizzy_specinfra | train |
8dd08d2f2d844b460fb0bb754573557939d56222 | diff --git a/lib/aggregate.js b/lib/aggregate.js
index <HASH>..<HASH> 100644
--- a/lib/aggregate.js
+++ b/lib/aggregate.js
@@ -259,8 +259,10 @@ Aggregator.prototype.handleAfterTrace = function handleAfterTrace (trace, client
}
}
trace.wrapperCost = trace.wrapperEndOffset - trace.fnTime - trace.childTotalTime... | Check for nodeCache in case of reset() | Concurix_module-stats | train |
892874c049807d344cacddd08806dca444c3dd71 | diff --git a/concrete/blocks/top_navigation_bar/edit.php b/concrete/blocks/top_navigation_bar/edit.php
index <HASH>..<HASH> 100644
--- a/concrete/blocks/top_navigation_bar/edit.php
+++ b/concrete/blocks/top_navigation_bar/edit.php
@@ -89,6 +89,7 @@ if ($includeBrandText && $includeBrandLogo) {
includeT... | Fix Top Navigation Bar block 'include sticky nav' setting not set appropriately when editing the block | concrete5_concrete5 | train |
e2698daeee0972b90d7407c1be35081cc270168e | diff --git a/dynesty/bounding.py b/dynesty/bounding.py
index <HASH>..<HASH> 100644
--- a/dynesty/bounding.py
+++ b/dynesty/bounding.py
@@ -1379,6 +1379,7 @@ def bounding_ellipsoid(points, pointvol=0.):
# us numerically unstable again. Just to be **ultra safe**.
covar2 = np.array(covar_mod)
for trials in ... | clean up inversion checks in ellipsoids | joshspeagle_dynesty | train |
7ccbb6604812703c0a26c48510f07c5156128156 | diff --git a/openquake/calculators/export/risk.py b/openquake/calculators/export/risk.py
index <HASH>..<HASH> 100644
--- a/openquake/calculators/export/risk.py
+++ b/openquake/calculators/export/risk.py
@@ -488,13 +488,13 @@ def export_losses_by_tag_csv(ekey, dstore):
:param dstore: datastore object
"""
... | Fixed losses_by_tag to take into account the loss_type [skip hazardlib]
Former-commit-id: 7a<I>d9bd<I>adb<I>d<I>fc5eba1e<I>f<I>e<I> | gem_oq-engine | train |
e77da4675c5ca2646604ca26755494321ddac31f | diff --git a/README.rdoc b/README.rdoc
index <HASH>..<HASH> 100644
--- a/README.rdoc
+++ b/README.rdoc
@@ -78,6 +78,10 @@ Methadone gives you a simple,lightweight DSL to help. It's important to note th
# If something goes wrong, you can just raise an exception
# or call exit_now! if you want to control... | Can use ENV to get full backtrace | davetron5000_methadone | train |
3546bf1a58c1370cb1143659adc0fddcce46a7bd | diff --git a/lib/page_object_wrapper.rb b/lib/page_object_wrapper.rb
index <HASH>..<HASH> 100644
--- a/lib/page_object_wrapper.rb
+++ b/lib/page_object_wrapper.rb
@@ -38,11 +38,11 @@ module PageObjectWrapper
def self.load(path_to_pages='.')
processed = 0
- Dir.glob("#{path_to_pages}/*_page.rb"){|fn|
+ D... | all .rb files are loaded as pages | evgeniy-khatko_page_object_wrapper | train |
d5229f760cdb1e7b390f1f0b981162a14e7d0cf7 | diff --git a/helpers/sendData.js b/helpers/sendData.js
index <HASH>..<HASH> 100644
--- a/helpers/sendData.js
+++ b/helpers/sendData.js
@@ -3,18 +3,18 @@ const assert = require('assert')
const getDevice = require('./getDevice');
module.exports = ({ host, hexData, log, name, debug }) => {
- assert(hexData && typeof ... | Improved error logging when sending data to RM devices | lprhodes_homebridge-broadlink-rm | train |
83ae6820e6a9954a264719df00fc3e9e206a48cb | diff --git a/providers/nodebb/chat.js b/providers/nodebb/chat.js
index <HASH>..<HASH> 100644
--- a/providers/nodebb/chat.js
+++ b/providers/nodebb/chat.js
@@ -9,6 +9,7 @@ const utils = require('../../lib/utils');
* @returns {User} A ChatRoomPo class bound to the provided `forum` instance
*/
exports.bindChat = func... | feat(chats): Retry chat messages for rate limit
retry chat messages that fail due to rate limiting | SockDrawer_SockBot | train |
66373618ef1a8e4b3acf094c04879ec883804549 | diff --git a/python/dllib/test/dev/modules.py b/python/dllib/test/dev/modules.py
index <HASH>..<HASH> 100644
--- a/python/dllib/test/dev/modules.py
+++ b/python/dllib/test/dev/modules.py
@@ -90,3 +90,10 @@ test_load_caffe = Module(
"test.load_caffe_test"
]
)
+
+test_tensorflow = Module(
+ name="tensor... | refine tensorflow support doc (#<I>)
* refine tensorflow support
* meet review
* add tensorflow saver to python api and refine docs | intel-analytics_BigDL | train |
ce60396426e86fba950c79a642bb0456317bc6d4 | diff --git a/lib/rails_admin/adapters/active_record.rb b/lib/rails_admin/adapters/active_record.rb
index <HASH>..<HASH> 100644
--- a/lib/rails_admin/adapters/active_record.rb
+++ b/lib/rails_admin/adapters/active_record.rb
@@ -107,6 +107,10 @@ module RailsAdmin
false
end
+ def adapter_supports_jo... | adds ability to sort on belongs_to columns with Mongoid | sferik_rails_admin | train |
7cf7955094fde1dcad4591208b03a72c439c2db8 | diff --git a/public/js/pezauth_test.js b/public/js/pezauth_test.js
index <HASH>..<HASH> 100644
--- a/public/js/pezauth_test.js
+++ b/public/js/pezauth_test.js
@@ -82,17 +82,21 @@ describe('PezPortalController', function() {
it('should return the right item among multiple expiring items', function() {
var ... | [#<I>] adding more assertions to the tests from previous change to angular controller. | pivotal-pez_pezauth | train |
c6897b5f6297c87f97a002dfc57979f5643282d4 | diff --git a/server/container_create.go b/server/container_create.go
index <HASH>..<HASH> 100644
--- a/server/container_create.go
+++ b/server/container_create.go
@@ -7,6 +7,7 @@ import (
"io"
"os"
"path/filepath"
+ "strconv"
"strings"
"syscall"
@@ -157,6 +158,51 @@ func buildOCIProcessArgs(containerKubeCon... | Set the uid, gid and groups from container user | cri-o_cri-o | train |
4b408b21e0b199db0c55b1ecf23f29763aa9b024 | diff --git a/View/ViewHandler.php b/View/ViewHandler.php
index <HASH>..<HASH> 100644
--- a/View/ViewHandler.php
+++ b/View/ViewHandler.php
@@ -188,6 +188,10 @@ class ViewHandler extends ContainerAware implements ViewHandlerInterface
$format = $view->getFormat() ?: $request->getRequestFormat();
+ if ... | moved supports() check back into handle() | FriendsOfSymfony_FOSRestBundle | train |
12220ccac76234121e64a9e993b863d69a029353 | diff --git a/lib/rules/adjacent-overload-signatures.js b/lib/rules/adjacent-overload-signatures.js
index <HASH>..<HASH> 100644
--- a/lib/rules/adjacent-overload-signatures.js
+++ b/lib/rules/adjacent-overload-signatures.js
@@ -88,7 +88,9 @@ module.exports = {
if (index > -1 && lastName !== name) {
... | Chore: Update prettier and pin the version (#<I>) | bradzacher_eslint-plugin-typescript | train |
0fa4cd625f80af13c9b6f70e3bf0aebc2c8b755a | diff --git a/multiselect.go b/multiselect.go
index <HASH>..<HASH> 100644
--- a/multiselect.go
+++ b/multiselect.go
@@ -273,7 +273,10 @@ func (m *MultiSelect) Prompt(config *PromptConfig) (interface{}, error) {
// start waiting for input
for {
- r, _, _ := rr.ReadRune()
+ r, _, err := rr.ReadRune()
+ if err != ... | Error handling for inputs (#<I>)
SIGHUP is ignored and the program gets into a weird loop waiting for select to happen.
Steps to reproduce:
`go run examples/longmulti.go`
In a different terminat run `kill -s hup (pidof longmulti)` Or simply close the terminal while the program waits for input.
The program is not k... | AlecAivazis_survey | train |
430cc8a51befa186769bb6514c4089d717f74a19 | diff --git a/voltron/plugins/debugger/dbg_gdb.py b/voltron/plugins/debugger/dbg_gdb.py
index <HASH>..<HASH> 100644
--- a/voltron/plugins/debugger/dbg_gdb.py
+++ b/voltron/plugins/debugger/dbg_gdb.py
@@ -35,6 +35,7 @@ if HAVE_GDB:
'powerpc': 4,
}
max_frame = 64
+ max_string = 128
... | Work around GDB hanging on some x/s commands, causing the stack view to crash GDB | snare_voltron | train |
cfe84ac944a496d975afee56c36acdcd37f7bd17 | diff --git a/openquake/hazardlib/gsim/abrahamson_2015.py b/openquake/hazardlib/gsim/abrahamson_2015.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/gsim/abrahamson_2015.py
+++ b/openquake/hazardlib/gsim/abrahamson_2015.py
@@ -176,9 +176,11 @@ def _compute_focal_depth_term(trt, C, ctx):
indicated by equati... | Unvectorized abrahamson_<I> | gem_oq-engine | train |
a4a5343efa04fffc761054e23e4c6f5e6f02dc80 | diff --git a/ui/app/components/exec/open-button.js b/ui/app/components/exec/open-button.js
index <HASH>..<HASH> 100644
--- a/ui/app/components/exec/open-button.js
+++ b/ui/app/components/exec/open-button.js
@@ -21,7 +21,7 @@ export default class OpenButton extends Component {
job: this.job,
taskGroup: thi... | Fix typo in exec button URL-generation (#<I>)
This closes #<I>, another bug facilitated by the difficulty
of automated testing when opening another window. | hashicorp_nomad | train |
fb5502f9f1964010037b7c99bd69e60304d32490 | diff --git a/gui2py/components.py b/gui2py/components.py
index <HASH>..<HASH> 100644
--- a/gui2py/components.py
+++ b/gui2py/components.py
@@ -129,6 +129,10 @@ class Component(object):
wx_parent = self._parent
else:
wx_parent = self._parent.wx_obj
+ # sanitize parameters
+ ... | sanitize negatives id to -1 to prevent AssertionError on windows, wx<I> | reingart_gui2py | train |
23402555afc21d39d49e41e2f3977a7b8e8fde43 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -208,7 +208,6 @@ module.exports = function(grunt) {
}
],
options: {
- banner: '<%= banner %>',
report: 'gzip'
}
} | Removed banner option from Grunt cssmin task.
The grunt-contrib-cssmin task removed the banner option in <I>. | stevenbenner_jquery-powertip | train |
92f8b6a133a8fc614a8d0d891b709c005ebe29fa | diff --git a/src/main/java/org/jboss/ws/common/management/AbstractServerConfig.java b/src/main/java/org/jboss/ws/common/management/AbstractServerConfig.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/jboss/ws/common/management/AbstractServerConfig.java
+++ b/src/main/java/org/jboss/ws/common/management/Abstrac... | [JBWS-<I>] Validate value of wsdl-path-rewrite-rule when setting it | jbossws_jbossws-common | train |
0ca79a89ab5c926a3546ee577a231d56cb6c0957 | diff --git a/docs/apiguide/titlecase.js.html b/docs/apiguide/titlecase.js.html
index <HASH>..<HASH> 100644
--- a/docs/apiguide/titlecase.js.html
+++ b/docs/apiguide/titlecase.js.html
@@ -65,12 +65,23 @@
var snakecase = require('./snakecase'),
lowercase = require('./lowercase'),
+ trimcase = require('./trimca... | Version incremented to <I> | okunishinishi_node-stringcase | train |
8e4aa5407a27ee73fd6111462897fad7a9290865 | diff --git a/src/Inphinit/Routing/Router.php b/src/Inphinit/Routing/Router.php
index <HASH>..<HASH> 100644
--- a/src/Inphinit/Routing/Router.php
+++ b/src/Inphinit/Routing/Router.php
@@ -28,7 +28,7 @@ abstract class Router
/**
* Parse string like.: {[a-z]+}.domain.com or /user/{[a-z]+}/{\d+} to regex
*... | Fixed doc and improved args in regex routes | inphinit_framework | train |
41d7f90c2f24b067a7d60504ba1cbd45a0b9bd61 | diff --git a/tests/runTests.js b/tests/runTests.js
index <HASH>..<HASH> 100644
--- a/tests/runTests.js
+++ b/tests/runTests.js
@@ -7,8 +7,8 @@ module.exports = {
return browser
.url(baseurl+"/waitForAttribute")
.waitForAttribute("#div", "class", function (divclass) {
- return divclass === "myclass";... | tests: tabs for indentation | maxgalbu_nightwatch-custom-commands-assertions | train |
af3d97498bec7a76bb58012eb03a6e18031bbc48 | diff --git a/cookiecutter/prompt.py b/cookiecutter/prompt.py
index <HASH>..<HASH> 100755
--- a/cookiecutter/prompt.py
+++ b/cookiecutter/prompt.py
@@ -33,6 +33,6 @@ def prompt_for_config(context):
new_val = input(prompt)
new_val = new_val.strip()
- cookiecutter_dict['key'] = n... | Assign to the right key when prompting. | audreyr_cookiecutter | train |
c3752330473ca2e781cd27ae64442fe4afe19141 | diff --git a/tests-node/unit/utils/compile-markdown-test.js b/tests-node/unit/utils/compile-markdown-test.js
index <HASH>..<HASH> 100644
--- a/tests-node/unit/utils/compile-markdown-test.js
+++ b/tests-node/unit/utils/compile-markdown-test.js
@@ -5,7 +5,7 @@ const stripIndent = require('common-tags').stripIndent;
cons... | added test for angle bracket parser | ember-learn_ember-cli-addon-docs | train |
f0003ed303face8fdfbb4cc69c9dfd54869ac025 | diff --git a/RELEASE-NOTES.md b/RELEASE-NOTES.md
index <HASH>..<HASH> 100644
--- a/RELEASE-NOTES.md
+++ b/RELEASE-NOTES.md
@@ -33,6 +33,7 @@
- Rewrote `Multinomial._random` method to better handle shape broadcasting (#3271)
- Fixed `Rice` distribution, which inconsistently mixed two parametrizations (#3286).
- `Rice... | Rebase (#<I>) | pymc-devs_pymc | train |
b448c956077d6e990c38f5524821006c90b50f1b | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -119,11 +119,7 @@ module.exports = function SkipperS3 (globalOpts) {
},
rm: function (filepath, cb){
- return fsx.unlink(filepath, function(err) {
- // Ignore "doesn't exist" errors
- if (err && ... | Clarify that rm() doesnt work yet. | balderdashy_skipper-s3 | train |
d31805232b7f114ed33b99d399b3690eeafef599 | diff --git a/glances/outdated.py b/glances/outdated.py
index <HASH>..<HASH> 100644
--- a/glances/outdated.py
+++ b/glances/outdated.py
@@ -25,6 +25,7 @@ import threading
import json
import pickle
import os
+from ssl import CertificateError
from glances import __version__
from glances.compat import nativestr, url... | Ctach CertificateError in outdated plugin | nicolargo_glances | train |
3cccca61ec719a87e8281689afe0161c3a88291c | diff --git a/lib/pi-sys/stats/cpu.rb b/lib/pi-sys/stats/cpu.rb
index <HASH>..<HASH> 100644
--- a/lib/pi-sys/stats/cpu.rb
+++ b/lib/pi-sys/stats/cpu.rb
@@ -15,10 +15,10 @@ module PiSys
to_hash(KEY, output, 3) do |data|
name = data[7]
- {name => {user: data[2].to_f, system: data[3].to_f, guest: d... | Updated with more and more accurate cpu tests | joseairosa_pi-sys | train |
33824f6146e5eee85c908013f07564e17b3c0369 | diff --git a/sos/plugins/hardware.py b/sos/plugins/hardware.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/hardware.py
+++ b/sos/plugins/hardware.py
@@ -29,6 +29,7 @@ class Hardware(Plugin, RedHatPlugin, DebianPlugin, UbuntuPlugin):
])
self.add_cmd_output("dmidecode", root_symlink="dmidecode")
+ ... | [hardware] Add output of lshw
This plugin adds the output of the command
lshw, and its output complements what we
already collect with dmidecode. | sosreport_sos | train |
d0d76137d031f21064d2098bb44691fe8092c65b | diff --git a/gcli.js b/gcli.js
index <HASH>..<HASH> 100644
--- a/gcli.js
+++ b/gcli.js
@@ -46,17 +46,17 @@ else {
// running GCLI in Firefox just by opening index.html
var requirejs = require('./scripts/r.js');
requirejs.config({
- nodeRequire: require,
- paths: { 'text': 'scripts/text', 'i18n': 'scripts/i... | nodetest-<I>: Minor changes
Correct indenting in gcli.js
Use requirejs.config() rather than require()
Explicitly output result log
Document that CTRL+C is needed 3 times, and put space after prompt | joewalker_gcli | train |
e283bfe0865420dde6d576a657010609c06eaf8a | diff --git a/lib/Services/Paymill/Preauthorizations.php b/lib/Services/Paymill/Preauthorizations.php
index <HASH>..<HASH> 100644
--- a/lib/Services/Paymill/Preauthorizations.php
+++ b/lib/Services/Paymill/Preauthorizations.php
@@ -11,30 +11,4 @@ class Services_Paymill_Preauthorizations extends Services_Paymill_Transact... | Remove duplicate methods from preauth service | paymill_paymill-php | train |
c0fc6785c162b95cfe9277b975028cb94c164d8c | diff --git a/core/src/main/java/io/grpc/internal/ServerImpl.java b/core/src/main/java/io/grpc/internal/ServerImpl.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/grpc/internal/ServerImpl.java
+++ b/core/src/main/java/io/grpc/internal/ServerImpl.java
@@ -585,9 +585,6 @@ public final class ServerImpl extends... | core: JumpToApplicationThreadServerStreamListener should not close context (#<I>)
Calling CancellableContext#close() multiple times does not cause problems, but is unnecessary here. The return value of getListener() is a ServerStreamListenerImpl, which already calls CancellableContext#cancel() inside of the finally bl... | grpc_grpc-java | train |
9305569342d35810465208c3ef850aaf36a25ca9 | diff --git a/src/Subscription/PubSub/RedisPubSubHandler.php b/src/Subscription/PubSub/RedisPubSubHandler.php
index <HASH>..<HASH> 100644
--- a/src/Subscription/PubSub/RedisPubSubHandler.php
+++ b/src/Subscription/PubSub/RedisPubSubHandler.php
@@ -39,11 +39,11 @@ class RedisPubSubHandler implements PubSubHandlerInterfac... | does not use timeout in redis connection | ynloultratech_graphql-bundle | train |
7e26330a9a3a7810ab98a1c0de5744781429e021 | diff --git a/lib/wed/wed.js b/lib/wed/wed.js
index <HASH>..<HASH> 100644
--- a/lib/wed/wed.js
+++ b/lib/wed/wed.js
@@ -1952,9 +1952,7 @@ Editor.prototype._mousedownHandler = log.wrap(function(e) {
var range = this.getDOMSelectionRange();
if (!range || range.collapsed) {
- this.my_window.setTimeout(th... | _seekCaret has not needed the x, y coordinates in a long, long, long time! | mangalam-research_wed | train |
77ea3babe3dac9d9ed771868beaafa5f3440ccd4 | diff --git a/src/Egulias/EmailValidator/EmailParser.php b/src/Egulias/EmailValidator/EmailParser.php
index <HASH>..<HASH> 100644
--- a/src/Egulias/EmailValidator/EmailParser.php
+++ b/src/Egulias/EmailValidator/EmailParser.php
@@ -102,14 +102,6 @@ class EmailParser
if ($this->lexer->token['type'] === Email... | Improvements derived from scrutinizer-ci | egulias_EmailValidator | train |
280d07c4a0bab259ed21466f1262e2409805daa5 | diff --git a/executor/ddl_test.go b/executor/ddl_test.go
index <HASH>..<HASH> 100644
--- a/executor/ddl_test.go
+++ b/executor/ddl_test.go
@@ -1167,6 +1167,9 @@ func (s *testSuite6) TestSetDDLReorgWorkerCnt(c *C) {
tk.MustExec("set @@global.tidb_ddl_reorg_worker_cnt = 100")
res = tk.MustQuery("select @@global.tidb_... | sessionctx, executor: make the upper limit of tidb_ddl_reorg_worker_cnt work (#<I>) | pingcap_tidb | train |
b7a364f893937e2689d4a79d016cc03b0a9e4295 | diff --git a/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java b/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java
index <HASH>..<HASH> 100644
--- a/wayback-core/src/main/java/org/archive/wayback/webapp/AccessPoint.java
+++ b/wayback-core/src/main/java/org/archive/wayback/webap... | FIX: Self-redirects CAN be found in the same warc, so don't throw exception
, also just in case, don't filter out same file for other attempts | iipc_openwayback | train |
515d9ebd26f5c2da16e326b7cefc1913fc034e2f | diff --git a/samcli/commands/build/build_context.py b/samcli/commands/build/build_context.py
index <HASH>..<HASH> 100644
--- a/samcli/commands/build/build_context.py
+++ b/samcli/commands/build/build_context.py
@@ -252,6 +252,7 @@ Built Template : {template}
Commands you can use next
=========================
[*] ... | chore: add accelerate commands for next commands to try (#<I>) | awslabs_aws-sam-cli | train |
c8c1345d45756208dfe8a727211d97a9c2646576 | diff --git a/src/Tabs/Tabs.js b/src/Tabs/Tabs.js
index <HASH>..<HASH> 100644
--- a/src/Tabs/Tabs.js
+++ b/src/Tabs/Tabs.js
@@ -9,7 +9,7 @@ const styles = theme => ({
tabs: {
extend: isolateMixin,
display: 'inline-flex',
- fontFamily: theme.fontFamily,
+ fontFamily: theme.tabs.fontFamily,
padding... | feat(Tabs): added fontFamily for tabs | rambler-digital-solutions_rambler-ui | train |
d477b65dd94b3838a0e2a0b6895b575903f18d23 | diff --git a/lib/runner.js b/lib/runner.js
index <HASH>..<HASH> 100644
--- a/lib/runner.js
+++ b/lib/runner.js
@@ -40,7 +40,8 @@ FiveBeansRunner.prototype.go = function()
function readConfiguration(fname)
{
- var config = require(fname)[0];
+ var config = fs.readFileSync(fname, "utf8");
+ config = yaml.load(config)... | Parsing yaml file the correct way | ceejbot_fivebeans | train |
dbb1679d6d512437a2788cbbd993e87eb3f6541f | diff --git a/molgenis-data-rest/src/main/java/org/molgenis/data/rest/v2/RestControllerV2.java b/molgenis-data-rest/src/main/java/org/molgenis/data/rest/v2/RestControllerV2.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-rest/src/main/java/org/molgenis/data/rest/v2/RestControllerV2.java
+++ b/molgenis-data-rest/src... | add typing of the map and added uri to the session filter | molgenis_molgenis | train |
f382756db726af5f947805a0c10db9d69ddbc393 | diff --git a/sos/plugins/gluster.py b/sos/plugins/gluster.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/gluster.py
+++ b/sos/plugins/gluster.py
@@ -83,6 +83,7 @@ class Gluster(Plugin, RedHatPlugin):
self.add_cmd_output("gluster peer status")
self.add_copy_specs([
+ "/etc/redhat-storage... | [gluster] add redhat-storage-release
Fixes #<I>. | sosreport_sos | train |
ceb8dcf38ef21c2b2e658d93d0dc8dee9b30db6b | diff --git a/libkbfs/block_journal.go b/libkbfs/block_journal.go
index <HASH>..<HASH> 100644
--- a/libkbfs/block_journal.go
+++ b/libkbfs/block_journal.go
@@ -121,7 +121,7 @@ type blockJournalEntry struct {
Contexts map[BlockID][]BlockContext `codec:",omitempty"`
// Only used for mdRevMarkerOps.
Revision Metadata... | block_journal: fix typo caught by @akalin-keybase
Issue: #<I> | keybase_client | train |
028a490986152939b62cbf3afa9267dc1a30ca41 | diff --git a/docs/teams.md b/docs/teams.md
index <HASH>..<HASH> 100644
--- a/docs/teams.md
+++ b/docs/teams.md
@@ -24,6 +24,11 @@ $team->members($team_name);
$team->followers($team_name);
```
+### Get a list of accounts the team is following: (API 2.0)
+```php
+$team->following($team_name);
+```
+
----
#### Rel... | implemented Teams::following (API <I>) | gentlero_bitbucket-api | train |
3581c2079e44feaffbac1dde361400a4a3399312 | diff --git a/src/main/java/com/github/sebhoss/reguloj/CompositeConclusion.java b/src/main/java/com/github/sebhoss/reguloj/CompositeConclusion.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/github/sebhoss/reguloj/CompositeConclusion.java
+++ b/src/main/java/com/github/sebhoss/reguloj/CompositeConclusion.java
@... | CompositeConclusion is no longer public visible | sebhoss_reguloj | train |
2d00e228bb4100bdd99b8389927096045e6df609 | diff --git a/wsgidav/lock_storage_redis.py b/wsgidav/lock_storage_redis.py
index <HASH>..<HASH> 100644
--- a/wsgidav/lock_storage_redis.py
+++ b/wsgidav/lock_storage_redis.py
@@ -24,11 +24,12 @@ class LockStorageRedis(object):
A (high performance?) lock manager implementation using redis!
"""
- def __ini... | add password option to lock_storage_redis (issue#<I>). (#<I>) | mar10_wsgidav | train |
7b7e5ff0eecb88413beaec5eb7213c0b34901787 | diff --git a/test/sample.spec.js b/test/sample.spec.js
index <HASH>..<HASH> 100644
--- a/test/sample.spec.js
+++ b/test/sample.spec.js
@@ -37,6 +37,27 @@ describe('quicklink tests', function () {
expect(responseURLs).to.include(`${server}/3.html`);
});
+ it('should prefetch in-viewport links that scroll into... | infra(tests): add test for links scrolled into viewport | GoogleChromeLabs_quicklink | train |
144c4f0b96e259ea2d6a16227fde60177691a3ab | diff --git a/fractions/javaee/undertow/src/main/java/org/wildfly/swarm/undertow/detect/UndertowPackageDetector.java b/fractions/javaee/undertow/src/main/java/org/wildfly/swarm/undertow/detect/UndertowPackageDetector.java
index <HASH>..<HASH> 100644
--- a/fractions/javaee/undertow/src/main/java/org/wildfly/swarm/underto... | SWARM-<I>: Detect Undertow fraction when Vaadin is present (#<I>)
Motivation
----------
Undertow fraction is not auto-detected when Vaadin is present.
Modifications
-------------
Added "com.vaadin" to the packages Undertow fraction will be detected for.
Result
------
Undertow fraction is pulled in when Vaa... | thorntail_thorntail | train |
df9fefdc3da1807ae41f1bea0edad0110eb36eca | diff --git a/src/Propel/Runtime/ActiveQuery/InstancePoolTrait.php b/src/Propel/Runtime/ActiveQuery/InstancePoolTrait.php
index <HASH>..<HASH> 100644
--- a/src/Propel/Runtime/ActiveQuery/InstancePoolTrait.php
+++ b/src/Propel/Runtime/ActiveQuery/InstancePoolTrait.php
@@ -31,8 +31,8 @@ trait InstancePoolTrait
{
... | Address failed tests after applying fix for issue #<I> (#<I>)
Address failed tests after applying fix for issue #<I> which is ralated to the countable issue in php <I>. | propelorm_Propel2 | train |
04b70c621e772581d231ca36341489ad8cecf327 | diff --git a/debian/changelog b/debian/changelog
index <HASH>..<HASH> 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,4 +1,5 @@
[Michele Simionato]
+ * Added /extract/relevant_events
* Removed the GMF npz exporter
* Speed-up risk saving in scenario_risk and scenario_damage
diff --git a/openquake/... | Added /extract/relevant_events [skip hazardlib] | gem_oq-engine | train |
9b8e52d84712715c013edefa977a5c5ce2eccf24 | diff --git a/.editorconfig b/.editorconfig
index <HASH>..<HASH> 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -10,3 +10,6 @@ insert_final_newline = true
[*.yml]
indent_size = 2
+
+[*.json]
+indent_size = 2
diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,... | New distribution [<I>]
* bugfix for potential DictDumper unsupported data exceptions (introduced a fallback encoder)
* thanks for #<I> to raise this issue | JarryShaw_PyPCAPKit | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.