hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
04357cf1a6ba108ea3b6ae63854faff68f2352f1 | diff --git a/test/http.js b/test/http.js
index <HASH>..<HASH> 100644
--- a/test/http.js
+++ b/test/http.js
@@ -790,7 +790,7 @@ suite('http', function () {
.end(end)
function end (err, res) {
- expect(err).to.not.be.empty
+ expect(err).to.not.be.null
expect(spy.calledOnce).to.be.true
... | fix(tests): retry | h2non_rocky | train |
7a1dffb99de2ae3c82d83d34d46993d30063d234 | diff --git a/hsreplay/utils.py b/hsreplay/utils.py
index <HASH>..<HASH> 100644
--- a/hsreplay/utils.py
+++ b/hsreplay/utils.py
@@ -211,4 +211,4 @@ def annotate_replay(infile, outfile):
):
target.set("EntityName", db[entities[target.attrib["entity"]]].name)
- tree.write(outfile)
+ tree.write(outfile, pretty_pri... | Always pretty-print annotated replays | HearthSim_python-hsreplay | train |
673b2e5eba5d2a5b6fd85dc6a56fbde109f0a983 | diff --git a/views/js/form/post-render-props.js b/views/js/form/post-render-props.js
index <HASH>..<HASH> 100644
--- a/views/js/form/post-render-props.js
+++ b/views/js/form/post-render-props.js
@@ -344,18 +344,28 @@ define([
_toggleModeBtn('disabled');
}
- function _isHiddenDependsOn($dependsOnSelec... | feat: depends on property validation on first render | oat-sa_tao-core | train |
614d6d11cfaed617401b734ec19edbb90328d969 | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -1,6 +1,21 @@
# LocaleSetter
-TODO: Write a gem description
+`LocaleSetter` sets the locale for the current request in a Rails application.
+
+## Rationale
+
+One of the challenges with internationalization is knowing w... | Actually put the locale in the URL unless it's the default | jcasimir_locale_setter | train |
e0f660301c01ca97080ef837674a519929ff2f32 | diff --git a/script/bootstrap.py b/script/bootstrap.py
index <HASH>..<HASH> 100755
--- a/script/bootstrap.py
+++ b/script/bootstrap.py
@@ -12,6 +12,7 @@ SOURCE_ROOT = os.path.abspath(os.path.dirname(os.path.dirname(__file__)))
VENDOR_DIR = os.path.join(SOURCE_ROOT, 'vendor')
BASE_URL = 'https://gh-contractor-zcbenz.s... | Specify the commit of libchromiumcontent to download. | electron_electron | train |
0e0bf51428863320b775db302c2c1d8a14d91fce | diff --git a/schema.go b/schema.go
index <HASH>..<HASH> 100644
--- a/schema.go
+++ b/schema.go
@@ -1,6 +1,8 @@
package saml
import (
+ "bytes"
+ "compress/flate"
"encoding/xml"
"strconv"
"time"
@@ -112,6 +114,43 @@ func (r *LogoutRequest) UnmarshalXML(d *xml.Decoder, start xml.StartElement) err
return nil
... | feat(slo): add Bytes() and Deflate() functions for LogoutRequest (#<I>)
Bytes() is needed in for returning a byte array for POST Binding.
Deflate() is needed for compressing using gzip algorithm a LogoutRequest
byte array. | crewjam_saml | train |
5a3399f48d4284af9e918bddb9c27fb2a7138f4b | diff --git a/cmd/kubeadm/app/constants/constants.go b/cmd/kubeadm/app/constants/constants.go
index <HASH>..<HASH> 100644
--- a/cmd/kubeadm/app/constants/constants.go
+++ b/cmd/kubeadm/app/constants/constants.go
@@ -262,6 +262,10 @@ const (
// DefaultEtcdVersion indicates the default etcd version that kubeadm uses
D... | Add etcd image version to kubeadm | kubernetes_kubernetes | train |
df524c4754461203c3dc88075adf7c084f71edb9 | diff --git a/lib/assets/Image.js b/lib/assets/Image.js
index <HASH>..<HASH> 100644
--- a/lib/assets/Image.js
+++ b/lib/assets/Image.js
@@ -1,7 +1,10 @@
var util = require('util'),
+ path = require('path'),
extendWithGettersAndSetters = require('../util/extendWithGettersAndSetters'),
Asset = require('./Ass... | First attempt at modelling image device pixel ratio based on the @dprx notation | assetgraph_assetgraph | train |
13e8818074c79ec32ea62d3dbbde67c02d522948 | diff --git a/src/Toggle/Toggle.js b/src/Toggle/Toggle.js
index <HASH>..<HASH> 100644
--- a/src/Toggle/Toggle.js
+++ b/src/Toggle/Toggle.js
@@ -195,18 +195,6 @@ export default class Toggle extends Component {
constructor(props) {
super(props)
- // this.setValue(this.props.value)
- this.state = {
- v... | remove componentWillMount from toggle component | rambler-digital-solutions_rambler-ui | train |
dcab92837046fcd7553b9c99b09893576ff9140c | diff --git a/src/Joseki/LeanMapper/ClosureTable/ClosureRepositoryTrait.php b/src/Joseki/LeanMapper/ClosureTable/ClosureRepositoryTrait.php
index <HASH>..<HASH> 100644
--- a/src/Joseki/LeanMapper/ClosureTable/ClosureRepositoryTrait.php
+++ b/src/Joseki/LeanMapper/ClosureTable/ClosureRepositoryTrait.php
@@ -3,6 +3,7 @@
... | Closure: added createNode, moveNode and improved order by property order from either Closure or Entity | Joseki_LeanMapper-extension | train |
53a3c9598d7a57fdc7e4efd8862be22f26167044 | diff --git a/test/integration/pkg_install_test.go b/test/integration/pkg_install_test.go
index <HASH>..<HASH> 100644
--- a/test/integration/pkg_install_test.go
+++ b/test/integration/pkg_install_test.go
@@ -65,6 +65,11 @@ func TestDebPackageInstall(t *testing.T) {
ctx, cancel := context.WithTimeout(context.Background... | skip the test if docker is not installed | kubernetes_minikube | train |
58dd4282a3e1deef06322b9bdd9d27f23a96f81d | diff --git a/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/webview/WebViewSingleton.java b/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/webview/WebViewSingleton.java
index <HASH>..<HASH> 100644
--- a/lib/commonAPI/coreapi/ext/platform/android/src/com/rho/webview/WebViewSingleton.java
+++ b/lib/common... | Android: webview cookie management made async | rhomobile_rhodes | train |
84dfb89e107b60523b8e41b0af199bfc30fa91df | diff --git a/src/main/locale/RU.js b/src/main/locale/RU.js
index <HASH>..<HASH> 100644
--- a/src/main/locale/RU.js
+++ b/src/main/locale/RU.js
@@ -1,17 +1,47 @@
define(function(require) {
var DateTime = require('../DateTime')
var DateFormat = require('../DateFormat')
+
+ /**
+ * For example:
+ * 1 год
+ ... | Russian diclensions for plurals a little bit more complicated. They have
usualy three forms, I numbered them in comment for pluralize() function. | continuouscalendar_dateutils | train |
051a510eb63c71361604c365b65b5ac6d17b7329 | diff --git a/js/src/forum/addComposerAutocomplete.js b/js/src/forum/addComposerAutocomplete.js
index <HASH>..<HASH> 100644
--- a/js/src/forum/addComposerAutocomplete.js
+++ b/js/src/forum/addComposerAutocomplete.js
@@ -172,7 +172,7 @@ export default function addComposerAutocomplete() {
}
... | Fix dropdown going off top of screen
The previous solution didn't properly account for document scroll, so when replying to posts, the parent offset would be extremely large, and it'd fall back to the top coordinate, which is out of bounds on small screens. | flarum_mentions | train |
d241cdb1adba9e26daf897ebdf65d4203c6fe839 | diff --git a/src/Behat/Mink/Driver/BrowserKitDriver.php b/src/Behat/Mink/Driver/BrowserKitDriver.php
index <HASH>..<HASH> 100644
--- a/src/Behat/Mink/Driver/BrowserKitDriver.php
+++ b/src/Behat/Mink/Driver/BrowserKitDriver.php
@@ -593,16 +593,48 @@ class BrowserKitDriver extends CoreDriver
* @return Response
... | Added support of any BrowserKit client with BrowserKit <I>+ | minkphp_MinkBrowserKitDriver | train |
d83ccf4246fc087858059099073b2e3c56159f91 | diff --git a/lib/cequel/uuids.rb b/lib/cequel/uuids.rb
index <HASH>..<HASH> 100644
--- a/lib/cequel/uuids.rb
+++ b/lib/cequel/uuids.rb
@@ -18,8 +18,10 @@ module Cequel
def uuid(value = nil)
if value.nil?
timeuuid_generator.next
- elsif value.is_a?(Time) || value.is_a?(DateTime)
- timeuu... | Fix DateTime cast in Rails 3 | cequel_cequel | train |
42b029fe14193b5d6d3d9ed9a6ecdc175ee25840 | diff --git a/rpg2d/quad/quad.go b/rpg2d/quad/quad.go
index <HASH>..<HASH> 100644
--- a/rpg2d/quad/quad.go
+++ b/rpg2d/quad/quad.go
@@ -230,7 +230,7 @@ func (q quadLeaf) Remove(remove entity.Entity) Quad {
func (q quadLeaf) QueryCell(c coord.Cell) []entity.Entity {
entities := make([]entity.Entity, 0, 1)
for _, e :... | Get any entities with bounds that overlap the cell queried | ghthor_filu | train |
156063ff804264a2f06f810499f091ad96f81925 | diff --git a/lib/representors/representor.rb b/lib/representors/representor.rb
index <HASH>..<HASH> 100644
--- a/lib/representors/representor.rb
+++ b/lib/representors/representor.rb
@@ -12,6 +12,7 @@ module Representors
PROTOCOL_TEMPLATE = "%s://%s"
UNKNOWN_PROTOCOL = 'ruby_id'
VALUE_KEY = :value
+ M... | update representors to deal with pulling meta links even if they are serailzed in transitions | mdsol_representors | train |
aac07542d859a5e0c64382acc86737c58cc9b82d | diff --git a/simulator/src/test/java/com/hazelcast/simulator/agent/AgentSmokeTest.java b/simulator/src/test/java/com/hazelcast/simulator/agent/AgentSmokeTest.java
index <HASH>..<HASH> 100644
--- a/simulator/src/test/java/com/hazelcast/simulator/agent/AgentSmokeTest.java
+++ b/simulator/src/test/java/com/hazelcast/simul... | Making sure the remote client is closed in AgentSmokeTest | hazelcast_hazelcast-simulator | train |
281e6dc6941c0987b75a8777df30b84928f44d6d | diff --git a/vendor/plugins/typo_login_system/lib/access_control.rb b/vendor/plugins/typo_login_system/lib/access_control.rb
index <HASH>..<HASH> 100644
--- a/vendor/plugins/typo_login_system/lib/access_control.rb
+++ b/vendor/plugins/typo_login_system/lib/access_control.rb
@@ -78,8 +78,8 @@ module AccessControl
... | Oooops seems some code was not taken into my last commit | publify_publify | train |
7ce7f9858d0daa6add34c3657d683d1676c17139 | diff --git a/src/test/java/com/networknt/schema/MaximumValidatorPerfTest.java b/src/test/java/com/networknt/schema/MaximumValidatorPerfTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/networknt/schema/MaximumValidatorPerfTest.java
+++ b/src/test/java/com/networknt/schema/MaximumValidatorPerfTest.java
@@ -1... | -ignore performance test, shouldn't include in build. | networknt_json-schema-validator | train |
303411e4fb8f7b53bac9f6880ddadf68a5bda67a | diff --git a/src/require.js b/src/require.js
index <HASH>..<HASH> 100644
--- a/src/require.js
+++ b/src/require.js
@@ -138,17 +138,18 @@ function _gpfRequireGet (name) {
}
/**
- * Defines a new module by executing the factory function with the specified dependencies.
+ * Defines a new module by executing the factor... | Documentation (#<I>) | ArnaudBuchholz_gpf-js | train |
363964c28382c8889f13b9c7078979b10895120e | diff --git a/src/Mmi/App/Bootstrap.php b/src/Mmi/App/Bootstrap.php
index <HASH>..<HASH> 100644
--- a/src/Mmi/App/Bootstrap.php
+++ b/src/Mmi/App/Bootstrap.php
@@ -137,7 +137,7 @@ class Bootstrap implements BootstrapInterface
\Mmi\Session\Session::start(\App\Registry::$config->session);
} catch (\M... | fix: more verbose session start errors | milejko_mmi | train |
7c57165ad2e60cc85ad6494de82013e6c90d8de5 | diff --git a/headers.js b/headers.js
index <HASH>..<HASH> 100644
--- a/headers.js
+++ b/headers.js
@@ -92,8 +92,10 @@ var encodeOct = function(val, n) {
var decodeOct = function(val, offset) {
// Older versions of tar can prefix with spaces
while (offset < val.length && val[offset] === 32) offset++
-
- return p... | trim null bytes from octal nums | mafintosh_tar-stream | train |
d3c6e220e3551b6048b57e7e38b619701f4dba52 | diff --git a/src/hamster/lib/parsing.py b/src/hamster/lib/parsing.py
index <HASH>..<HASH> 100644
--- a/src/hamster/lib/parsing.py
+++ b/src/hamster/lib/parsing.py
@@ -141,7 +141,7 @@ def extract_time(match, h="hour", m="minute"):
def parse_time(s):
"""Parse time from string."""
m = time_re.search(s)
- ret... | return None if time is not matched | projecthamster_hamster | train |
09d0cf7437d4e3cfed8c8e64099ab77555cd8867 | diff --git a/src/ui/MainContainer.js b/src/ui/MainContainer.js
index <HASH>..<HASH> 100644
--- a/src/ui/MainContainer.js
+++ b/src/ui/MainContainer.js
@@ -62,6 +62,9 @@ export default class MainContainer {
this.setup();
}
+ // set the max height
+ this.root.style('max-height', `${window.innerHeight}... | Set a max height on the main panel #<I> | pbeshai_d3-scale-interactive | train |
615cffd9ac6b2a84793acdfcecf21fb45b5b0e68 | diff --git a/gns3server/controller/drawing.py b/gns3server/controller/drawing.py
index <HASH>..<HASH> 100644
--- a/gns3server/controller/drawing.py
+++ b/gns3server/controller/drawing.py
@@ -16,7 +16,6 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.
import hashlib
-import asyncio
import ... | Prevent locked drawings to be deleted. Fixes <URL> | GNS3_gns3-server | train |
7f0c159698a010dc7dd87619167b30cf4f22bd7f | diff --git a/src/Extension/Console/BaseCommand.php b/src/Extension/Console/BaseCommand.php
index <HASH>..<HASH> 100644
--- a/src/Extension/Console/BaseCommand.php
+++ b/src/Extension/Console/BaseCommand.php
@@ -11,15 +11,12 @@ abstract class BaseCommand extends Command
*
* @param \Symfony\Component\Console... | Allow extension name to exclude vendor for further customization. | orchestral_extension | train |
db1a9b2630c2812e8d3b82034cda137bd71ba66a | diff --git a/go/client/cmd_ctl_restart.go b/go/client/cmd_ctl_restart.go
index <HASH>..<HASH> 100644
--- a/go/client/cmd_ctl_restart.go
+++ b/go/client/cmd_ctl_restart.go
@@ -48,14 +48,14 @@ func (s *CmdCtlRestart) Run() error {
return err
}
if err = cli.Stop(context.TODO(), 0); err != nil {
- G.Log.Warning("St... | some of patrick's comments from review | keybase_client | train |
f4d6848631bbece1f4de6977c655c1119a2cc221 | diff --git a/doppel/version.py b/doppel/version.py
index <HASH>..<HASH> 100644
--- a/doppel/version.py
+++ b/doppel/version.py
@@ -1 +1 @@
-version = '0.3.1'
+version = '0.4.0.dev0' | Update version to <I>.dev0 | jimporter_doppel | train |
470254f5de94060e311b4a60f196ddae976dc3e3 | diff --git a/tower_cli/cli/transfer/send.py b/tower_cli/cli/transfer/send.py
index <HASH>..<HASH> 100644
--- a/tower_cli/cli/transfer/send.py
+++ b/tower_cli/cli/transfer/send.py
@@ -242,10 +242,10 @@ class Sender(LoggingCommand):
reduced_object['credential_type'] = an_asset['credential... | Fixed bug where deleting an assigned field (i.e. clearing out a description) was failing. | ansible_tower-cli | train |
c0266e5cec8272a003e8c8a699235f02dbf580f1 | diff --git a/lib/authorizer/basic.js b/lib/authorizer/basic.js
index <HASH>..<HASH> 100644
--- a/lib/authorizer/basic.js
+++ b/lib/authorizer/basic.js
@@ -1,3 +1,5 @@
+var btoa = require('btoa');
+
module.exports = {
/**
* Initializes a item (fetches all required parameters, etc) before the actual authoriza... | Copy sign function for basic auth from sdk | postmanlabs_postman-runtime | train |
19e89b745473b9d22722de9654a425b5555f7218 | diff --git a/atomicpuppy/__init__.py b/atomicpuppy/__init__.py
index <HASH>..<HASH> 100644
--- a/atomicpuppy/__init__.py
+++ b/atomicpuppy/__init__.py
@@ -5,7 +5,8 @@ from .atomicpuppy import (
Event,
EventPublisher,
EventStoreJsonEncoder,
- SubscriptionInfoStore
+ SubscriptionInfoStore,
+ Redis... | Expose RedisCounter
This isn't really anything to do with this story, was just in my way
So can use old-style counter with new atomicpuppy configuration, without
referring to a sub-module of atomicpuppy (atomicpuppy.atomicpuppy),
which presumably is not intended to be public. | madedotcom_atomicpuppy | train |
7a6efbd9683c8cf1e78cd053e72b8558be8c8522 | diff --git a/packages/cozy-client/src/CozyClient.js b/packages/cozy-client/src/CozyClient.js
index <HASH>..<HASH> 100644
--- a/packages/cozy-client/src/CozyClient.js
+++ b/packages/cozy-client/src/CozyClient.js
@@ -1179,7 +1179,9 @@ instantiation of the client.`
*/
loadInstanceOptionsFromDOM(selector = '[role=ap... | feat: Support single cozy dataset in DOM | cozy_cozy-client | train |
a90d7cf93d109743074b0aa6884947d124a077b0 | diff --git a/admin/roles/lib.php b/admin/roles/lib.php
index <HASH>..<HASH> 100644
--- a/admin/roles/lib.php
+++ b/admin/roles/lib.php
@@ -109,7 +109,7 @@ abstract class capability_table_base {
/// Table cell for the capability name.
echo '<th scope="row" class="name"><span class="cap-desc">' . ... | roles ui: Fix notices and XHTML strict. | moodle_moodle | train |
2c7d34383a9b6b0dcfb4e9298a453a1784726e61 | diff --git a/common/class.Logger.php b/common/class.Logger.php
index <HASH>..<HASH> 100644
--- a/common/class.Logger.php
+++ b/common/class.Logger.php
@@ -179,7 +179,11 @@ class common_Logger
$errorLine = $current['line'];
}
}
- $requestURI = $_SERVER['QUERY_STRING'];
+ if(PHP_SAPI != 'cli'){
+ $r... | If the logger is called from a command line script, REQUEST URI won't exist ... use argv value
git-svn-id: <URL> | oat-sa_generis | train |
b3feef0c96c1411686e48de70e84c76770f01bb7 | diff --git a/Symfony/CS/Fixer/Symfony/SingleQuoteFixer.php b/Symfony/CS/Fixer/Symfony/SingleQuoteFixer.php
index <HASH>..<HASH> 100644
--- a/Symfony/CS/Fixer/Symfony/SingleQuoteFixer.php
+++ b/Symfony/CS/Fixer/Symfony/SingleQuoteFixer.php
@@ -35,9 +35,12 @@ class SingleQuoteFixer extends AbstractFixer
if (... | made SingleQuoteFixer more accurate | FriendsOfPHP_PHP-CS-Fixer | train |
d9e87d067e22837f7143f8b737320c8e18b882ab | diff --git a/pkg/endpoint/policy.go b/pkg/endpoint/policy.go
index <HASH>..<HASH> 100644
--- a/pkg/endpoint/policy.go
+++ b/pkg/endpoint/policy.go
@@ -130,9 +130,12 @@ func (e *Endpoint) cleanUnusedRedirects(owner Owner, oldMap policy.L4PolicyMap,
func (e *Endpoint) regenerateConsumable(owner Owner) (bool, error) {
... | policy: Avoid Fatal log message when endpoint policy is skipped due to missing identity
This should never happen but Fatal would quit the agent which we don't. | cilium_cilium | train |
8835ef5cb185ede3d1740c5b95fd3926b3bb885c | diff --git a/impact_functions/core.py b/impact_functions/core.py
index <HASH>..<HASH> 100644
--- a/impact_functions/core.py
+++ b/impact_functions/core.py
@@ -317,10 +317,11 @@ def get_question(hazard_title, exposure_title, function_title):
function_title
"""
- return _('In the event of <i>%s</i> how... | Used named interpolation to get rid of msgid warnings | inasafe_inasafe | train |
1ad696f360b937e1881b5ca63e340c86ebe61cf8 | diff --git a/fastlane/lib/fastlane/version.rb b/fastlane/lib/fastlane/version.rb
index <HASH>..<HASH> 100644
--- a/fastlane/lib/fastlane/version.rb
+++ b/fastlane/lib/fastlane/version.rb
@@ -1,5 +1,5 @@
module Fastlane
- VERSION = '2.61.0'.freeze
+ VERSION = '2.62.0'.freeze
DESCRIPTION = "The easiest way to autom... | Version bump to <I> (#<I>) | fastlane_fastlane | train |
d169f737c9dbb6ceec9079390457ff7ff3c9b69b | diff --git a/spec/oauth2/strategy/assertion_spec.rb b/spec/oauth2/strategy/assertion_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/oauth2/strategy/assertion_spec.rb
+++ b/spec/oauth2/strategy/assertion_spec.rb
@@ -52,29 +52,33 @@ RSpec.describe OAuth2::Strategy::Assertion do
@response_format = 'json'
end
... | Refactor JWT encoding specs to not directly reference JWT::Decode
This was blowing up for one version of jruby in the CI suite. | oauth-xx_oauth2 | train |
8c6054d1c4306820bb42096710267d0b387d821d | diff --git a/doitlive/ipython.py b/doitlive/ipython.py
index <HASH>..<HASH> 100644
--- a/doitlive/ipython.py
+++ b/doitlive/ipython.py
@@ -57,7 +57,8 @@ class PlayerTerminalInteractiveShell(TerminalInteractiveShell):
echo(carriage_return=True)
raise Abort()
if key_press.key == Keys.Ba... | Fix backspace behavior in ipython mode | sloria_doitlive | train |
0a8d92047b4b7a18efc5529fda8a0124b3d4c2b0 | diff --git a/src/Application.php b/src/Application.php
index <HASH>..<HASH> 100644
--- a/src/Application.php
+++ b/src/Application.php
@@ -136,6 +136,7 @@ class Application
'description' => $blog->getDescription(),
'latest' => $factory->massFactory($latest),
'blog_title' => ... | Adding some work to automate date display for blogs | corycollier_markdown-blogger | train |
4d87f01cba2c3284941e82e6edc7534d59785cf6 | diff --git a/DisplayBundle/DisplayBlock/DisplayBlockInterface.php b/DisplayBundle/DisplayBlock/DisplayBlockInterface.php
index <HASH>..<HASH> 100644
--- a/DisplayBundle/DisplayBlock/DisplayBlockInterface.php
+++ b/DisplayBundle/DisplayBlock/DisplayBlockInterface.php
@@ -38,6 +38,13 @@ interface DisplayBlockInterface
... | Move cache status from CacheManager to DisplayBlockStrategy | open-orchestra_open-orchestra-display-bundle | train |
fdccd128a9e7c9403d3e1f27b7e735ebe9942049 | diff --git a/bcbio/variation/strelka2.py b/bcbio/variation/strelka2.py
index <HASH>..<HASH> 100644
--- a/bcbio/variation/strelka2.py
+++ b/bcbio/variation/strelka2.py
@@ -86,16 +86,75 @@ def _configure_somatic(paired, ref_file, region, out_file, tx_work_dir):
do.run(cmd, "Configure Strelka2 germline calling: %s" %... | strelka2: provide standard GT fields for somatic
Translate the SGT and NT INFO fields from strelka2 somatic calls into
a FORMAT GT field. This enables validation with rtg and makes this
generally available for downstream tools that examine genotypes. | bcbio_bcbio-nextgen | train |
2917b5c8705e356d1d84bac25f3803e961244d98 | diff --git a/biojava3-structure/src/main/java/org/biojava/bio/structure/contact/StructureInterfaceList.java b/biojava3-structure/src/main/java/org/biojava/bio/structure/contact/StructureInterfaceList.java
index <HASH>..<HASH> 100644
--- a/biojava3-structure/src/main/java/org/biojava/bio/structure/contact/StructureInter... | Fixed bug: no clusters need be calculated if no interfaces in list | biojava_biojava | train |
b7005bbbaad9278f186ae847a8f8b987086a19eb | diff --git a/src/Codeception/Module/ZF2.php b/src/Codeception/Module/ZF2.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Module/ZF2.php
+++ b/src/Codeception/Module/ZF2.php
@@ -112,7 +112,7 @@ class ZF2 extends Framework implements DoctrineProvider
{
return $this->grabServiceFromContainer('Doctrine\... | Grab service from the current app and not initialize a new one
* fix issue #<I> where Doctrine2 gets different instance of the
entity manager everytime ZF2's grabServiceFromContainer method
is called | Codeception_Codeception | train |
9dc7fbbd37426a8a8d0b7e93f268cf91b213edbd | diff --git a/py/test/config.py b/py/test/config.py
index <HASH>..<HASH> 100644
--- a/py/test/config.py
+++ b/py/test/config.py
@@ -123,7 +123,9 @@ class Config(object):
""" return an initialized session object. """
cls = self._getsessionclass()
session = cls(self)
- #session.fixoptions... | [svn r<I>] Make clean complaints about lack of disthosts and call fixoptions if present.
--HG--
branch : trunk | pytest-dev_pytest | train |
ed85a2746cfeaf5dd02bcd9d07b9f3455c7befa7 | diff --git a/hvac/v1/__init__.py b/hvac/v1/__init__.py
index <HASH>..<HASH> 100644
--- a/hvac/v1/__init__.py
+++ b/hvac/v1/__init__.py
@@ -17,7 +17,7 @@ except ImportError:
class Client(object):
"""The hvac Client class for HashiCorp's Vault."""
- def __init__(self, url='http://localhost:8200', token=None,
+... | Fix precedence of `VAULT_ADDR` environment variable vs client `url` parameter
Fixes #<I>.
The vault CLI priorities the `-address` flag over the `VAULT_ADDR`
environment variable. This commit aligns hvac to that behaviour. | hvac_hvac | train |
992ec2fd8ef19d61b7f3bdb3d183fdc2b2ad3883 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -8,8 +8,8 @@ setup(
author='Chris Priest',
author_email='cp368202@ohiou.edu',
url='https://github.com/priestc/giotto',
- packages=['giotto'],
+ packages=['giotto','giotto.controllers','giotto.contrib.auth'... | setup.py now adds controllers, contrib and views | priestc_giotto | train |
c0abf719cc5380f70c14c42e2a73cfb40f67cb2f | diff --git a/vault/expiration_test.go b/vault/expiration_test.go
index <HASH>..<HASH> 100644
--- a/vault/expiration_test.go
+++ b/vault/expiration_test.go
@@ -32,6 +32,17 @@ var testImagePull sync.Once
// mockExpiration returns a mock expiration manager
func mockExpiration(t testing.TB) *ExpirationManager {
c, _, _... | Wait for expiration manager to be out of restore mode while testing. (#<I>) | hashicorp_vault | train |
cc743d1c9cbeaf3f04ef136c4aaec7cd73da0f44 | diff --git a/pypsa/io.py b/pypsa/io.py
index <HASH>..<HASH> 100644
--- a/pypsa/io.py
+++ b/pypsa/io.py
@@ -153,7 +153,11 @@ class ImporterHDF5(Importer):
if "/" + list_name not in self.ds:
return None
- df = self.ds["/" + list_name].set_index('name')
+ if self.pypsa_version is None... | io: Work around to enable import of HDF5 exports from old PyPSA | PyPSA_PyPSA | train |
62a8335aeb6e08320fcfbe653f78c4e1bcba6eee | diff --git a/lib/puppetserver/ca/version.rb b/lib/puppetserver/ca/version.rb
index <HASH>..<HASH> 100644
--- a/lib/puppetserver/ca/version.rb
+++ b/lib/puppetserver/ca/version.rb
@@ -1,5 +1,5 @@
module Puppetserver
module Ca
- VERSION = "2.3.2"
+ VERSION = "2.3.3"
end
end | (GEM) update puppetserver-ca version to <I> | puppetlabs_puppetserver-ca-cli | train |
b059cbe37c9d18adf37feae865ffd18a8673ca9f | diff --git a/src/Composer/Autoload/ClassMapGenerator.php b/src/Composer/Autoload/ClassMapGenerator.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Autoload/ClassMapGenerator.php
+++ b/src/Composer/Autoload/ClassMapGenerator.php
@@ -18,7 +18,6 @@
namespace Composer\Autoload;
-use Composer\Util\Silencer;
use Sym... | Removed unused variables and includes, fixed functions being called with more arguments than declared. | composer_composer | train |
49f835cfc87cefe98944dfbfe1d0ad8f260f936c | diff --git a/lib/optimize.js b/lib/optimize.js
index <HASH>..<HASH> 100644
--- a/lib/optimize.js
+++ b/lib/optimize.js
@@ -5,6 +5,7 @@ var aggregation = require('./aggregation');
var logger = require('juttle/lib/logger').getLogger('elastic-optimize');
var ALLOWED_REDUCE_OPTIONS = ['every', 'forget', 'groupby', 'on'... | tail: don't optimize beyond fetch_size
If the tail limit exceeds the fetch size, then we don't get points
in the right order. Rather than add a bunch of complexity to keep
optimizing this edge case, let's just not optimize it. | juttle_juttle-elastic-adapter | train |
ddb6e998f685ae658aa76308f42788c674317918 | diff --git a/test/bm0.rb b/test/bm0.rb
index <HASH>..<HASH> 100644
--- a/test/bm0.rb
+++ b/test/bm0.rb
@@ -10,6 +10,10 @@
$:.unshift('lib')
require 'benchmark'
+
+require 'date'
+require 'fileutils'
+
require 'rubygems'
N = 10_000 | bacon flunks with <I> :( | jmettraux_rufus-tokyo | train |
991b1d2563fe1391edfef16019b431271e678ffd | diff --git a/datanommer.commands/tests/test_commands.py b/datanommer.commands/tests/test_commands.py
index <HASH>..<HASH> 100644
--- a/datanommer.commands/tests/test_commands.py
+++ b/datanommer.commands/tests/test_commands.py
@@ -38,7 +38,7 @@ class TestCommands(unittest.TestCase):
'version': 1
... | This fixes the test suite that @pypingou found broken.
It used to be that 'topic_prefix_re' was in the fedmsg default config,
but it has since been removed in development to make way for non-fedora
installations that will have a non-fedora topic_prefix (like debian). | fedora-infra_datanommer | train |
a9cfb160c91d8b1bfcc57d768e88d39d218a0170 | diff --git a/src/app/components/timeSeries.js b/src/app/components/timeSeries.js
index <HASH>..<HASH> 100644
--- a/src/app/components/timeSeries.js
+++ b/src/app/components/timeSeries.js
@@ -12,6 +12,8 @@ function (_, kbn) {
}
function matchSeriesOverride(aliasOrRegex, seriesAlias) {
+ if (!aliasOrRegex) { r... | Added typeahead to series overrides, #<I> | grafana_grafana | train |
08c61caeaaa52e9d9dc7f3c4d60d07a449d0fab9 | diff --git a/astrocats/supernovae/tasks/cfa.py b/astrocats/supernovae/tasks/cfa.py
index <HASH>..<HASH> 100644
--- a/astrocats/supernovae/tasks/cfa.py
+++ b/astrocats/supernovae/tasks/cfa.py
@@ -105,7 +105,7 @@ def do_cfa_photo(catalog):
# Hicken 2012
with open(os.path.join(catalog.get_current_task_repo(),
... | MAINT: pbars for all cfa_photo | astrocatalogs_astrocats | train |
48bb64af4e3c756ad91f76f4866b4298439ee5ea | diff --git a/lib/function/algebra/derivative.js b/lib/function/algebra/derivative.js
index <HASH>..<HASH> 100644
--- a/lib/function/algebra/derivative.js
+++ b/lib/function/algebra/derivative.js
@@ -52,6 +52,8 @@ function factory (type, config, load, typed) {
},
'Object, SymbolNode, string': function (const... | Added some comments to the derivative file. Added some test cases as well (explicitly test partial derivatives and pure JS usage). | josdejong_mathjs | train |
f1f4b982d76809e95ffd0f59ac2eb176bac77d9c | diff --git a/utils/src/main/java/com/hazelcast/simulator/utils/CommonUtils.java b/utils/src/main/java/com/hazelcast/simulator/utils/CommonUtils.java
index <HASH>..<HASH> 100644
--- a/utils/src/main/java/com/hazelcast/simulator/utils/CommonUtils.java
+++ b/utils/src/main/java/com/hazelcast/simulator/utils/CommonUtils.ja... | Improved logging of possible NPE in FileUtils. | hazelcast_hazelcast-simulator | train |
55895ab494db249bc0fcd836237c3a23c9f36dfc | diff --git a/tests/Composer/Test/CacheTest.php b/tests/Composer/Test/CacheTest.php
index <HASH>..<HASH> 100644
--- a/tests/Composer/Test/CacheTest.php
+++ b/tests/Composer/Test/CacheTest.php
@@ -46,6 +46,10 @@ class CacheTest extends TestCase
public function testRemoveOutdatedFiles()
{
+ if (defined(... | Skip tests on hhvm | mothership-ec_composer | train |
6ce40f70c80e22c06e090f975898e856b41643a4 | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -54,9 +54,7 @@ module.exports = class FaviconsWebpackPlugin {
if (this.options.inject) {
// Hook into the html-webpack-plugin processing and add the html
tap(compilation, 'html-we... | fix: do not rely on html-webpack-plugin's internals | jantimon_favicons-webpack-plugin | train |
eec13cf41af98d63b555b2cdc711f76472c91b17 | diff --git a/packages/ra-ui-materialui/src/form/FormTab.js b/packages/ra-ui-materialui/src/form/FormTab.js
index <HASH>..<HASH> 100644
--- a/packages/ra-ui-materialui/src/form/FormTab.js
+++ b/packages/ra-ui-materialui/src/form/FormTab.js
@@ -73,6 +73,7 @@ const FormTab = ({
};
FormTab.propTypes = {
+ basePath: ... | Improved PropTypes definition in FormTab component. | marmelab_react-admin | train |
73e535f21c649f1f8dc19e9230c63aa46cb981c8 | diff --git a/ontrack-model/src/main/java/net/nemerosa/ontrack/model/structure/BranchBuildView.java b/ontrack-model/src/main/java/net/nemerosa/ontrack/model/structure/BranchBuildView.java
index <HASH>..<HASH> 100644
--- a/ontrack-model/src/main/java/net/nemerosa/ontrack/model/structure/BranchBuildView.java
+++ b/ontrack... | Gets the list of build diff actions in the branch build view. | nemerosa_ontrack | train |
f2511a4187ef039205de57c3fa87b68e00945a59 | diff --git a/org/postgresql/gss/MakeGSS.java b/org/postgresql/gss/MakeGSS.java
index <HASH>..<HASH> 100644
--- a/org/postgresql/gss/MakeGSS.java
+++ b/org/postgresql/gss/MakeGSS.java
@@ -3,7 +3,7 @@
* Copyright (c) 2008, PostgreSQL Global Development Group
*
* IDENTIFICATION
-* $PostgreSQL$
+* $PostgreSQL: pgjdb... | Remove unused Sun specific import.
As reported by Tom Lane. | pgjdbc_pgjdbc | train |
5a1a46170407802a878cddf1d50db082a829410d | diff --git a/lib/grizzly/request.rb b/lib/grizzly/request.rb
index <HASH>..<HASH> 100644
--- a/lib/grizzly/request.rb
+++ b/lib/grizzly/request.rb
@@ -44,7 +44,14 @@ module Grizzly
private
def response_to_json
- payload = JSON.parse(@response.body)
+ if @response.body.class == String
+ payl... | Request now checks the class of the incoming
object and reacts accordingly. More robust under
rails. | stewartmatheson_grizzly | train |
d8d0b8b39001e6cd07737680c4f97ab0e64322a6 | diff --git a/mod/scorm/datamodels/scorm_12.js.php b/mod/scorm/datamodels/scorm_12.js.php
index <HASH>..<HASH> 100644
--- a/mod/scorm/datamodels/scorm_12.js.php
+++ b/mod/scorm/datamodels/scorm_12.js.php
@@ -650,7 +650,7 @@ function SCORMapi1_2() {
}
if (cmi.core.lesson_mode == 'normal') {
... | MDL-<I> scorm: Accept 0 as a valid score | moodle_moodle | train |
d8c79383223885e6edf41ae99bc035acbe012935 | diff --git a/src/test/java/com/twilio/sdk/TwilioRestClientTest.java b/src/test/java/com/twilio/sdk/TwilioRestClientTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/com/twilio/sdk/TwilioRestClientTest.java
+++ b/src/test/java/com/twilio/sdk/TwilioRestClientTest.java
@@ -88,7 +88,7 @@ public class TwilioRestClie... | change the GET test to use https instead of http | twilio_twilio-java | train |
a00eebdbaf8c59eb2dd236a4d76ff2e852b61cc9 | diff --git a/src/main/java/org/zendesk/client/v2/Zendesk.java b/src/main/java/org/zendesk/client/v2/Zendesk.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/zendesk/client/v2/Zendesk.java
+++ b/src/main/java/org/zendesk/client/v2/Zendesk.java
@@ -1253,7 +1253,6 @@ public class Zendesk implements Closeable {
... | Merge remote-tracking branch 'upstream/master'
Conflicts:
src/main/java/org/zendesk/client/v2/Zendesk.java | cloudbees_zendesk-java-client | train |
8921d8bfffec070d20fd11660cb7f0c0f66775d0 | diff --git a/src/frontend/org/voltdb/dtxn/SimpleDtxnInitiator.java b/src/frontend/org/voltdb/dtxn/SimpleDtxnInitiator.java
index <HASH>..<HASH> 100644
--- a/src/frontend/org/voltdb/dtxn/SimpleDtxnInitiator.java
+++ b/src/frontend/org/voltdb/dtxn/SimpleDtxnInitiator.java
@@ -176,7 +176,13 @@ public class SimpleDtxnIniti... | Allow @LoadSinglepartTable and @LoadMultipartTable with the same txnId on the
secondary.
They'll all have the same txnId, which is the snapshot txnId. | VoltDB_voltdb | train |
2435f265f2d4d3fdd987380f9a605f6e2ecdaaae | diff --git a/commands.go b/commands.go
index <HASH>..<HASH> 100644
--- a/commands.go
+++ b/commands.go
@@ -471,11 +471,6 @@ var Commands = []cli.Command{
Action: func(c *cli.Context) {
name := c.Args().First()
- if name == "" {
- cli.ShowCommandHelp(c, "url")
- os.Exit(1)
- }
-
var (
err e... | fixes #<I>: url does not return active machine | docker_machine | train |
34097d0c3799dde4ceea9b1bec0b656107b0d11e | diff --git a/aioftp/server.py b/aioftp/server.py
index <HASH>..<HASH> 100644
--- a/aioftp/server.py
+++ b/aioftp/server.py
@@ -1,5 +1,6 @@
import asyncio
import pathlib
+import functools
from . import common
@@ -33,7 +34,7 @@ class Permission:
def __repr__(self):
return str.format(
- "... | * added loop argument
* cwd, cdup
* login_required decorator | aio-libs_aioftp | train |
78f34e4a961bb5c875167783d735bed9f3e5c822 | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -1,39 +1,61 @@
+var colors = require('colors')
+
module.exports = function(cwd){
var path = require('path')
- var fs = require('graceful-fs')
- var css = require('css')
+ , fs = require('graceful-fs')
+ , css = r... | Refactor, allows for nested imports | reworkcss_rework-import | train |
6c97c4c600a8960a52f19c3c26704325d81b922d | diff --git a/http/src/main/java/retrofit/http/Server.java b/http/src/main/java/retrofit/http/Server.java
index <HASH>..<HASH> 100644
--- a/http/src/main/java/retrofit/http/Server.java
+++ b/http/src/main/java/retrofit/http/Server.java
@@ -1,8 +1,6 @@
// Copyright 2010 Square, Inc.
package retrofit.http;
-import jav... | Clean up Server class a bit.
* Enforce trailing slash contract declared in javadoc for api and web URLs.
* Allow specifying of type in constructor.
* Remove property-file-driven instantiation in favor of constructors. | square_retrofit | train |
eb49c4a3b54fe2e985c62722d5588a2bb87f02c9 | diff --git a/benchmarks/single_row_mode.rb b/benchmarks/single_row_mode.rb
index <HASH>..<HASH> 100644
--- a/benchmarks/single_row_mode.rb
+++ b/benchmarks/single_row_mode.rb
@@ -33,22 +33,22 @@ end
def threads(repeat, concurrency)
db = Hash.new { |pool, id| pool[id] = PG::Connection.new }
- (repeat/concurrency)... | benchmarks: focus more on concurrency less on Thread/Fiber creation time | royaltm_ruby-em-pg-client | train |
b25bdc30ae36ed5811ef0cca1378eff21d243404 | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -159,9 +159,7 @@ module.exports = function(grunt) {
});
// Parse command line options
- grunt.registerTask('init', 'Default build', function() {
- if(grunt.config('concat.dist.src')) { return; } // Only ... | Re-add basic grunt task and add new all task | qTip2_qTip2 | train |
877d4e01c6005f62bcf5dd2452d530cc7f1e25be | diff --git a/flask_ask/core.py b/flask_ask/core.py
index <HASH>..<HASH> 100644
--- a/flask_ask/core.py
+++ b/flask_ask/core.py
@@ -793,7 +793,7 @@ class Ask(object):
else:
raise NotImplementedError('Intent "{}" not found and no default intent specified.'.format(intent.name))
- argspec = i... | Fixes warning about deprecated function. | johnwheeler_flask-ask | train |
9944ad67125e7539cb1dca47e29e451c0eeb6fe3 | diff --git a/src/server/pfs/server/driver.go b/src/server/pfs/server/driver.go
index <HASH>..<HASH> 100644
--- a/src/server/pfs/server/driver.go
+++ b/src/server/pfs/server/driver.go
@@ -1442,7 +1442,7 @@ func (d *driver) createBranch(ctx context.Context, branch *pfs.Branch, commit *p
commitInfo.Provenance = appe... | Don't make commits their own subvenance. | pachyderm_pachyderm | train |
ac3a87d458c6e3f82c348c899438c5c82788d93c | diff --git a/lib/gbm/gbm.rb b/lib/gbm/gbm.rb
index <HASH>..<HASH> 100644
--- a/lib/gbm/gbm.rb
+++ b/lib/gbm/gbm.rb
@@ -15,6 +15,6 @@ class Gbm
end
def score(features)
-
+ @decision_trees.map { |dt| dt.decide(features) }.reduce(:+)
end
end
\ No newline at end of file
diff --git a/spec/gbm_spec.rb b/sp... | gbm - output sum of trees scores as score | asafschers_scoruby | train |
fa6b7434db6424834244ca230491a0fc1d9a46c5 | diff --git a/components-mojarra/src/main/java/de/larmic/butterfaces/component/renderkit/html_basic/action/CommandLinkRenderer.java b/components-mojarra/src/main/java/de/larmic/butterfaces/component/renderkit/html_basic/action/CommandLinkRenderer.java
index <HASH>..<HASH> 100644
--- a/components-mojarra/src/main/java/de... | #8 commandLink: add some TODO | ButterFaces_ButterFaces | train |
447943befbbbbcdd91b3cba36bf3d62f54176a91 | diff --git a/kite-data/kite-data-core/src/main/java/org/kitesdk/data/spi/filesystem/PathConversion.java b/kite-data/kite-data-core/src/main/java/org/kitesdk/data/spi/filesystem/PathConversion.java
index <HASH>..<HASH> 100644
--- a/kite-data/kite-data-core/src/main/java/org/kitesdk/data/spi/filesystem/PathConversion.jav... | CDK-<I>: Adjusted the PathConversion code to encode String values to avoid creating invalid paths | kite-sdk_kite | train |
e253d9559d7ceb3b1397632c88705317f1fc1b23 | diff --git a/indra/preassembler/__init__.py b/indra/preassembler/__init__.py
index <HASH>..<HASH> 100644
--- a/indra/preassembler/__init__.py
+++ b/indra/preassembler/__init__.py
@@ -289,7 +289,8 @@ class Preassembler(object):
stmt_by_group[first_arg_key] += stmts
return stmt_by_group
- ... | Generalize pre-assembly map-getting. | sorgerlab_indra | train |
bf73382e17d334790a0b54d477577d297623f464 | diff --git a/tests/test_message_lengths.py b/tests/test_message_lengths.py
index <HASH>..<HASH> 100644
--- a/tests/test_message_lengths.py
+++ b/tests/test_message_lengths.py
@@ -1,96 +1,71 @@
-from time import sleep
-import logging
-from threading import Thread
-
-import pytest
-from websocket import create_connection... | Refactor message tests to use existing pytest fixtures | Pithikos_python-websocket-server | train |
9ad61c6bf757be8d8968fd5977ab3ae15b0c5aba | diff --git a/src/main/java/junit/runner/Version.java b/src/main/java/junit/runner/Version.java
index <HASH>..<HASH> 100644
--- a/src/main/java/junit/runner/Version.java
+++ b/src/main/java/junit/runner/Version.java
@@ -9,7 +9,7 @@ public class Version {
}
public static String id() {
- return "4.13.2-SNAPSHOT";
+... | Change version to <I>-SNAPSHOT | junit-team_junit4 | train |
661a467307f6348a0f2ccf1df7f13fcb11009881 | diff --git a/src/kundera-neo4j/src/test/java/com/impetus/client/neo4j/imdb/SimpleCRUDTest.java b/src/kundera-neo4j/src/test/java/com/impetus/client/neo4j/imdb/SimpleCRUDTest.java
index <HASH>..<HASH> 100644
--- a/src/kundera-neo4j/src/test/java/com/impetus/client/neo4j/imdb/SimpleCRUDTest.java
+++ b/src/kundera-neo4j/s... | Fix for issue #<I>. Fixed failing build. added dummy test case | Impetus_Kundera | train |
816aa211eae6e3f44e8f05dc4246da2e217f9963 | diff --git a/spec/controllers/admin/pages_controller_spec.rb b/spec/controllers/admin/pages_controller_spec.rb
index <HASH>..<HASH> 100644
--- a/spec/controllers/admin/pages_controller_spec.rb
+++ b/spec/controllers/admin/pages_controller_spec.rb
@@ -1,3 +1,4 @@
+# coding: utf-8
require 'spec_helper'
describe Admin... | Add encoding comments to spec files to satisfy Ruby <I>. | publify_publify | train |
415946654ddd204083d34bb243a742fba05616a5 | diff --git a/processors/wavefront/src/main/java/com/groupon/lex/metrics/processors/wavefront/WavefrontStrings.java b/processors/wavefront/src/main/java/com/groupon/lex/metrics/processors/wavefront/WavefrontStrings.java
index <HASH>..<HASH> 100644
--- a/processors/wavefront/src/main/java/com/groupon/lex/metrics/processo... | Review feedback: move big sub blocks to dedicated functions. | groupon_monsoon | train |
b608adbcce2f37074eb068e98bf09da428d1efa3 | diff --git a/router/hipache/router.go b/router/hipache/router.go
index <HASH>..<HASH> 100644
--- a/router/hipache/router.go
+++ b/router/hipache/router.go
@@ -119,8 +119,8 @@ func (hipacheRouter) AddCNAME(cname, name string) error {
if err != nil {
return &routeError{"get", err}
}
+ frontend = "frontend:" + cnam... | router/hipache/router.go: setting frontend outside loop | tsuru_tsuru | train |
2c7065f82a242e6f05eaefda4ec902ddf9d90037 | diff --git a/tests/test_stanc_warnings.py b/tests/test_stanc_warnings.py
index <HASH>..<HASH> 100644
--- a/tests/test_stanc_warnings.py
+++ b/tests/test_stanc_warnings.py
@@ -14,7 +14,24 @@ def test_stanc_no_warning() -> None:
assert "warning" not in buffer.getvalue().lower()
-def test_stanc_warning() -> None:... | test: Update test for Stan <I> | stan-dev_pystan | train |
fabce59e0b643bd993a46bcc5e2eb7a6899aa600 | diff --git a/core/server/index.js b/core/server/index.js
index <HASH>..<HASH> 100644
--- a/core/server/index.js
+++ b/core/server/index.js
@@ -53,6 +53,9 @@ function init() {
return settings.init();
}).then(function () {
debug('Update settings cache done');
+
+ common.events.emit('db.ready... | Trigger database ready event
no issue
- the database is ready when:
1. knex-migrator health is green (or `knexMigrator.isDatabaseOK`)
2. the settings where populated | TryGhost_Ghost | train |
04399178172fd03a43713f59a6a49a88b04204c9 | diff --git a/axiom/store.py b/axiom/store.py
index <HASH>..<HASH> 100644
--- a/axiom/store.py
+++ b/axiom/store.py
@@ -1352,7 +1352,35 @@ class Store(Empowered):
def getItemByID(self, storeID, default=_noItem, autoUpgrade=True):
"""
+ Retrieve an item by its storeID, and return it.
+
+ Not... | Test and fix private-application resource lookup.
Fixes #<I>
Author: glyph
Reviewer: moe
The major issue that this was addressing.
* There is now documentation for getItemByID
* Test cases have been added for private-application URL lookup
* private-application <I>s are now rendered properly instead of genera... | twisted_axiom | train |
a9cacc6c3e6a7714d97607688d7ac218b5ca3137 | diff --git a/serverless-plugin/index.js b/serverless-plugin/index.js
index <HASH>..<HASH> 100644
--- a/serverless-plugin/index.js
+++ b/serverless-plugin/index.js
@@ -89,19 +89,22 @@ class ServerlessPlugin {
envArgs.push('--stack-yaml', `${directory}stack.yaml`);
}
+ const stackArgs = [
+... | Better display of Stack errors
Rely on Serverless to show the error details instead of logging, making it
possible to catch the errors silently.
Provide exact Stack command line in the error message. | seek-oss_serverless-haskell | train |
8dc6a0233a1ebee7b5b130b1e1df8535e2df3acf | diff --git a/lib/guard/rspec-jruby.rb b/lib/guard/rspec-jruby.rb
index <HASH>..<HASH> 100644
--- a/lib/guard/rspec-jruby.rb
+++ b/lib/guard/rspec-jruby.rb
@@ -37,6 +37,10 @@ module Guard
success == 0
end
+ def replenish!
+ Thread.new(@options[:pool_size] - pool.count) { |n| n.times{ pool << make }... | adding spec to ensure replish defaults to correct pool size | garrettheaver_guard-rspec-jruby | train |
04d0489bb94459b69900b8720ade8ae914b89bd8 | diff --git a/webpack.config.js b/webpack.config.js
index <HASH>..<HASH> 100644
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -7,7 +7,7 @@ const args = require('minimist')(process.argv.slice(2));
const allowedEnvs = ['dev', 'dist', 'test'];
// Set the correct environment
-var env;
+let env;
if (args._.length >... | Lingering var in config file
There was a lingering `var` while throughout the webpack.config.js you use es<I> syntax. | react-webpack-generators_react-webpack-template | train |
15672b7e8fc5f424fefda398c5ec8beea989f228 | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -20,7 +20,7 @@ import os
# documentation root, use os.path.abspath to make it absolute, like shown here.
sys.path.insert(0, os.path.abspath('../'))
-#import tint
+import tint
# -- General configuration -... | Changes in the hope to get autodoc working.
On readthedocs.org, that is. | solute_python-tint | train |
5a32e92ec4ecdf054328cdfe1f0fa3c162926143 | diff --git a/src/Valkyrja/View/Engines/OrkaEngine.php b/src/Valkyrja/View/Engines/OrkaEngine.php
index <HASH>..<HASH> 100644
--- a/src/Valkyrja/View/Engines/OrkaEngine.php
+++ b/src/Valkyrja/View/Engines/OrkaEngine.php
@@ -63,6 +63,10 @@ class OrkaEngine extends PHPEngine
'/@for\s*\(\s*(.*)\s*\)/x' ... | View: Adding commenting capability to Orka views. | valkyrjaio_valkyrja | train |
03f234bd4dbebad580f4949550a53deb78cbe71f | diff --git a/fritzhome/actor.py b/fritzhome/actor.py
index <HASH>..<HASH> 100644
--- a/fritzhome/actor.py
+++ b/fritzhome/actor.py
@@ -28,7 +28,11 @@ class Actor(object):
self.temperature = 0.0
if self.has_temperature:
- self.temperature = int(device.find("temperature").find("celsius").te... | Crash when getting temperature of offline devices
requesting the temperature from a offline device should result in a
warning. not a error. | DerMitch_fritzbox-smarthome | train |
c45c1fb39ed8af8b5cf055bfbebabf58a74f20d0 | diff --git a/lib/deas/version.rb b/lib/deas/version.rb
index <HASH>..<HASH> 100644
--- a/lib/deas/version.rb
+++ b/lib/deas/version.rb
@@ -1,3 +1,3 @@
module Deas
- VERSION = "0.14.1"
+ VERSION = "0.15.0"
end | version to <I>
* make the Deas logger available in the template scope (#<I>)
* have the test runner `halt` return a `HaltArgs` class for use in testing (#<I>) | redding_deas | train |
fc635b565393bd6b70be4af524934b3ea359e83c | diff --git a/railties/lib/rails/application.rb b/railties/lib/rails/application.rb
index <HASH>..<HASH> 100644
--- a/railties/lib/rails/application.rb
+++ b/railties/lib/rails/application.rb
@@ -219,7 +219,11 @@ module Rails
# config.middleware.use ExceptionNotifier, config_for(:exception_notification)
... | Accept a Pathname in Application#config_for
That would make possible to use it with action cable configuration. | rails_rails | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.