hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
28a648e5ce929614502b29876ec8d4c52eeec9ca | diff --git a/src/index.js b/src/index.js
index <HASH>..<HASH> 100644
--- a/src/index.js
+++ b/src/index.js
@@ -58,6 +58,8 @@ module.exports = (() => {
if (plugin) {
plugin(editor, config.pluginsOpts[pluginId] || {});
+ } else if (typeof pluginId === 'function') {
+ pluginId(editor,... | Allow plugins to be defined as functions and imported instead of globally namespaced | artf_grapesjs | train |
ff2be525b2819f40b7a1f8f96fc437967e3a8d04 | diff --git a/src/main/java/org/thymeleaf/standard/expression/Fragment.java b/src/main/java/org/thymeleaf/standard/expression/Fragment.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/thymeleaf/standard/expression/Fragment.java
+++ b/src/main/java/org/thymeleaf/standard/expression/Fragment.java
@@ -39,6 +39,7 @@... | Minor style corrections to Fragments and FragmentExpressions | thymeleaf_thymeleaf | train |
c2fc5aa18c0099361085069459374d54e7b88ec3 | diff --git a/elasticsearch/helpers/__init__.py b/elasticsearch/helpers/__init__.py
index <HASH>..<HASH> 100644
--- a/elasticsearch/helpers/__init__.py
+++ b/elasticsearch/helpers/__init__.py
@@ -168,7 +168,11 @@ def bulk(client, actions, stats_only=False, **kwargs):
a more human friendly interface - it consumes an... | Be more explicit with stats_only behavior | elastic_elasticsearch-py | train |
fa5530d6dc29341896671c40727a76f27d7daf46 | diff --git a/byte-buddy-dep/src/main/java/net/bytebuddy/agent/builder/AgentBuilder.java b/byte-buddy-dep/src/main/java/net/bytebuddy/agent/builder/AgentBuilder.java
index <HASH>..<HASH> 100644
--- a/byte-buddy-dep/src/main/java/net/bytebuddy/agent/builder/AgentBuilder.java
+++ b/byte-buddy-dep/src/main/java/net/bytebud... | Changed wording of javadoc. | raphw_byte-buddy | train |
c8e7de8e1a2adb050f9f49625a7f98780f8ce4c1 | diff --git a/lib/reporters.go b/lib/reporters.go
index <HASH>..<HASH> 100644
--- a/lib/reporters.go
+++ b/lib/reporters.go
@@ -4,10 +4,12 @@ import (
"encoding/json"
"fmt"
"io"
+ "sort"
"strconv"
"strings"
"text/tabwriter"
+ lttb "github.com/dgryski/go-lttb"
"github.com/lucasb-eyer/go-colorful"
)
@@ ... | report: Downsample time series in plot reporter
This commit introduces timeseries downsampling in the plot reporter
with the aim to be performant even with very large result sets.
Fixes #<I> | tsenart_vegeta | train |
c78ea3a377df1c40c05c70cb6ea2b9e9e234785a | diff --git a/tests/Test/Synapse/Mapper/AbstractMapperTest.php b/tests/Test/Synapse/Mapper/AbstractMapperTest.php
index <HASH>..<HASH> 100644
--- a/tests/Test/Synapse/Mapper/AbstractMapperTest.php
+++ b/tests/Test/Synapse/Mapper/AbstractMapperTest.php
@@ -4,6 +4,7 @@ namespace Test\Synapse\Mapper;
use Synapse\TestHel... | Refs #<I> - Use reflection to indirectly test that initialize only runs once. | synapsestudios_synapse-base | train |
a86c0fb1304d6646ed8b557fcbe89a6b19d09715 | diff --git a/bem-views/components/notice.blade.php b/bem-views/components/notice.blade.php
index <HASH>..<HASH> 100644
--- a/bem-views/components/notice.blade.php
+++ b/bem-views/components/notice.blade.php
@@ -1,6 +1,7 @@
-<div class="alert alert-danger">
+<div class="notice {{$type}}">
+ {{$icon}}
- @slot('bu... | Updates mesage logic in footer | helsingborg-stad_Municipio | train |
e1efb80aac3547f51338308071f655687ca9049b | diff --git a/README.md b/README.md
index <HASH>..<HASH> 100644
--- a/README.md
+++ b/README.md
@@ -67,6 +67,13 @@ Then request the enabled feature:
Featurer.on?(:feature, user_id)
```
+To add more users later on:
+
+```ruby
+Featurer.add(:feature, first_user_id)
+Featurer.add(:feature, [second_user_id, third_user_i... | ADD support to add values to a feature | ainformatico_featurer | train |
30e311d943119f052af1b239f7340b7e3cb6f0d3 | diff --git a/pytablereader/json/formatter.py b/pytablereader/json/formatter.py
index <HASH>..<HASH> 100644
--- a/pytablereader/json/formatter.py
+++ b/pytablereader/json/formatter.py
@@ -19,7 +19,13 @@ class JsonConverter(TableFormatter):
"""
_VALUE_TYPE_SCHEMA = {
- "anyOf": [{"type": "string"}, {"t... | Change to accept dict in dict values | thombashi_pytablereader | train |
98fb64853b55b361bde61b4f7a94b417341846be | diff --git a/lib/notify-send.js b/lib/notify-send.js
index <HASH>..<HASH> 100644
--- a/lib/notify-send.js
+++ b/lib/notify-send.js
@@ -32,12 +32,15 @@ var Notifier = function () {
Notifier.prototype.notify = function (options, callback) {
options = options || {};
if (!options.message) {
- throw new Error('Mes... | Returns callback with error instead of throwing errors. | mikaelbr_node-notifier | train |
8764abbbfb10dad4b195a2fed0a7ec80784fd0fe | diff --git a/captools/api/client.py b/captools/api/client.py
index <HASH>..<HASH> 100644
--- a/captools/api/client.py
+++ b/captools/api/client.py
@@ -211,6 +211,15 @@ class Client(object):
return result
#return '%s://%s/%s' % (self.parsed_endpoint.scheme, self.parsed_endpoint.netloc, result)
+ d... | convenience method for getting an account's example job | Captricity_captools | train |
370f929159e0dde3beb28c14464b04f102083943 | diff --git a/shared/common-adapters/markdown.desktop.js b/shared/common-adapters/markdown.desktop.js
index <HASH>..<HASH> 100644
--- a/shared/common-adapters/markdown.desktop.js
+++ b/shared/common-adapters/markdown.desktop.js
@@ -79,9 +79,9 @@ function messageCreateComponent(type, key, children, options) {
case '... | Max's magic: easy (#<I>) | keybase_client | train |
d137e7672d9b866768e08c2dce8bc47c8c825fcb | diff --git a/internal/ackhandler/sent_packet_handler.go b/internal/ackhandler/sent_packet_handler.go
index <HASH>..<HASH> 100644
--- a/internal/ackhandler/sent_packet_handler.go
+++ b/internal/ackhandler/sent_packet_handler.go
@@ -411,8 +411,7 @@ func (h *sentPacketHandler) getLossTimeAndSpace() (time.Time, protocol.En... | implement a GetPTOTimeAndSpace() as outlined in the draft | lucas-clemente_quic-go | train |
5f57314d740908839a28237cfcd2707989fc36d7 | diff --git a/js/ui/VirtualItemsView.js b/js/ui/VirtualItemsView.js
index <HASH>..<HASH> 100644
--- a/js/ui/VirtualItemsView.js
+++ b/js/ui/VirtualItemsView.js
@@ -609,7 +609,7 @@ define(['js/ui/View', 'js/core/Bindable', 'js/core/List', 'js/data/Collection',
id = null;
if (i... | fixed no id issue in VirtualItemsView | rappid_rAppid.js | train |
7ed8fbdb5f0fc5a77cc7296db0f3d3718b00b1da | diff --git a/cqlengine/__init__.py b/cqlengine/__init__.py
index <HASH>..<HASH> 100644
--- a/cqlengine/__init__.py
+++ b/cqlengine/__init__.py
@@ -15,10 +15,10 @@ SizeTieredCompactionStrategy = "SizeTieredCompactionStrategy"
LeveledCompactionStrategy = "LeveledCompactionStrategy"
# Caching constants.
-ALL = "all"
-... | Uppercase constants. That's how they're normalized by Cassandra. | cqlengine_cqlengine | train |
9223c5e49d3ea8c8c37f6366b157aaf3cad7165f | diff --git a/ext/UiaDll/RAutomation.UIA/Controls/SelectList.cs b/ext/UiaDll/RAutomation.UIA/Controls/SelectList.cs
index <HASH>..<HASH> 100644
--- a/ext/UiaDll/RAutomation.UIA/Controls/SelectList.cs
+++ b/ext/UiaDll/RAutomation.UIA/Controls/SelectList.cs
@@ -74,7 +74,20 @@ namespace RAutomation.UIA.Controls
... | push #select and #clear methods into SelectListOption | jarmo_RAutomation | train |
7377fea33ae20a5bfa80c81a98010bfb0b105aed | diff --git a/dockers/screenshotter/screenshotter.js b/dockers/screenshotter/screenshotter.js
index <HASH>..<HASH> 100644
--- a/dockers/screenshotter/screenshotter.js
+++ b/dockers/screenshotter/screenshotter.js
@@ -365,7 +365,7 @@ function setSize(reqW, reqH) {
}
function imageDimensions(img) {
- const buf = new... | chore(screenshotter): modernize calls to NodeJS Buffer interface (#<I>)
Avoid DeprecationWarning during screenshotting | KaTeX_KaTeX | train |
f567b5013121fa8291d82dec159709248ebd4b30 | diff --git a/src/ValueManager.js b/src/ValueManager.js
index <HASH>..<HASH> 100644
--- a/src/ValueManager.js
+++ b/src/ValueManager.js
@@ -1,7 +1,7 @@
"use strict";
-import {push, path as tpath, unique, noop, extend, isBoolean, isString, isDate, isArray, isNumber} from './tutils';
-import eventable from './eventable... | Fixed potential bug where type isnt innable | subschema_subschema | train |
eb5908a58ad4f7e0a26f757946855afd89e6dec0 | diff --git a/fastlane/lib/fastlane/fast_file.rb b/fastlane/lib/fastlane/fast_file.rb
index <HASH>..<HASH> 100644
--- a/fastlane/lib/fastlane/fast_file.rb
+++ b/fastlane/lib/fastlane/fast_file.rb
@@ -175,6 +175,7 @@ module Fastlane
# Execute shell command
def sh(command, log: true, error_callback: nil)
+ ... | Allow shell conversion when type is :shell_string (#<I>)
* Allow shell conversion when type is :shell_string. Allow arrays to be passed to FastFile.sh
* Added shell escaping to Actions.sh as well.
* Refactored sh method to use Open3 for better testability. Added tests.
* Use Shellwords.join
* Simplify test... | fastlane_fastlane | train |
88f9c18cc1b400913453203b359149d684bc527c | diff --git a/lib/chefspec/solo_runner.rb b/lib/chefspec/solo_runner.rb
index <HASH>..<HASH> 100644
--- a/lib/chefspec/solo_runner.rb
+++ b/lib/chefspec/solo_runner.rb
@@ -56,6 +56,8 @@ module ChefSpec
# Path of a json file that will be passed to fauxhai as :path option
# @option options [Array<String>] :ste... | allow passing file caching path from outside | chefspec_chefspec | train |
651dc171c0ad0fba629e9be9090c5ae4e5d16769 | diff --git a/middleware/_modelIndex.js b/middleware/_modelIndex.js
index <HASH>..<HASH> 100644
--- a/middleware/_modelIndex.js
+++ b/middleware/_modelIndex.js
@@ -170,7 +170,19 @@ module.exports = function (req, res, next) {
// minimise the fields we're selecting
function (cb) {
- ... | Linz will now automatically include fields used for the title virtual, if found on the model, in the select statement for the list query. | linzjs_linz | train |
dd17e1d44893f331204b370aef35bff2506c97d2 | diff --git a/lib/jars/lock_down.rb b/lib/jars/lock_down.rb
index <HASH>..<HASH> 100644
--- a/lib/jars/lock_down.rb
+++ b/lib/jars/lock_down.rb
@@ -68,6 +68,9 @@ module Jars
warn e.message
warn "no bundler found - ignore Gemfile if exists"
end
+ rescue Bundler::GemNotFound => e
+ warn "c... | some warning when bundler find Gemfile in parent directory and can not proceed | mkristian_jar-dependencies | train |
31ff8f9c5fb45aa1c19eb6c53f5d4edfe947b01b | diff --git a/Gruntfile.js b/Gruntfile.js
index <HASH>..<HASH> 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -102,8 +102,6 @@ module.exports = function (grunt) {
{
expand: true,
src: [
- '*.js',
- ... | Don't transpile files compatible with older Nodes | EE_grunt-inline-images | train |
57aa3c3444ea0c791c62883eff7e2fec72cbe7ba | diff --git a/wisdom-test/src/main/java/org/wisdom/test/http/HttpResponse.java b/wisdom-test/src/main/java/org/wisdom/test/http/HttpResponse.java
index <HASH>..<HASH> 100644
--- a/wisdom-test/src/main/java/org/wisdom/test/http/HttpResponse.java
+++ b/wisdom-test/src/main/java/org/wisdom/test/http/HttpResponse.java
@@ -2... | [TD] majors - minor
* Merge this if statement with the enclosing one.
* Move this constructor to comply with Java Code Conventions.
* Found reliance on default encoding in new org.wisdom.test.http.HttpResponse(HttpResponse, Class): new String(byte[]) | wisdom-framework_wisdom | train |
c48be47683a5202e36c3652d5bb42bb6568baeb7 | diff --git a/src/Sonata/Component/Product/ProductProviderInterface.php b/src/Sonata/Component/Product/ProductProviderInterface.php
index <HASH>..<HASH> 100644
--- a/src/Sonata/Component/Product/ProductProviderInterface.php
+++ b/src/Sonata/Component/Product/ProductProviderInterface.php
@@ -146,6 +146,11 @@ interface Pr... | SONATA-<I> - Updated edit form for variations | sonata-project_ecommerce | train |
be2bf9095d82581453f0ed573eec141f17777813 | diff --git a/tasks/aws_s3.js b/tasks/aws_s3.js
index <HASH>..<HASH> 100755
--- a/tasks/aws_s3.js
+++ b/tasks/aws_s3.js
@@ -731,8 +731,6 @@ module.exports = function (grunt) {
doGzipRename(object, options);
- console.log(object)
-
var server_file = _.where(server_files, { Key: object.dest })[0];
... | Recome stray console log | MathieuLoutre_grunt-aws-s3 | train |
62a442a10ce20d461b49c4248ed4c131c216d3c6 | diff --git a/beard.js b/beard.js
index <HASH>..<HASH> 100644
--- a/beard.js
+++ b/beard.js
@@ -201,8 +201,7 @@ function parser(statement) {
}
function compile(str, path) {
- const templateCode = scanner(str, path).join(' ')
- .replace(new RegExp('\\\\', 'g'), '\\\\');
+ const templateCode = scanner(str.replace... | Fix bug which prevented content with double quotes from rendering | shanebo_beard | train |
5222108be8ce0536b4f95d1743be406110afcb4b | diff --git a/src/com/google/javascript/jscomp/FunctionTypeBuilder.java b/src/com/google/javascript/jscomp/FunctionTypeBuilder.java
index <HASH>..<HASH> 100644
--- a/src/com/google/javascript/jscomp/FunctionTypeBuilder.java
+++ b/src/com/google/javascript/jscomp/FunctionTypeBuilder.java
@@ -352,21 +352,27 @@ final class... | Fix a bug where we would warn you when an interface implemented
another interface, but wire it up anyway.
R=dimvar
DELTA=<I> (<I> added, 5 deleted, <I> changed)
Revision created by MOE tool push_codebase.
MOE_MIGRATION=<I>
git-svn-id: <URL> | google_closure-compiler | train |
6bf3790e1a165828766d008ea774dc5ab44bb63f | diff --git a/.gitignore b/.gitignore
index <HASH>..<HASH> 100644
--- a/.gitignore
+++ b/.gitignore
@@ -25,7 +25,7 @@ nbactions.xml
# JetBrains IntelliJ
.idea/
-**.iml
+*.iml
# VS Code
.vscode
diff --git a/typescript-generator-core/src/main/java/cz/habarta/typescript/generator/ext/ClassEnumExtension.java b/types... | Class enum compatibility with regular enums (#<I>)
* handle enums with 'classEnumPattern'
* ** doesn't work when path contains \
* IntelliJ auto-import breaks AppVeyor check style :(
* wrong import order | vojtechhabarta_typescript-generator | train |
f22e8f1eb2b10b9291d38d68cfd824263faa0c3d | diff --git a/js/theia-sticky-sidebar.js b/js/theia-sticky-sidebar.js
index <HASH>..<HASH> 100755
--- a/js/theia-sticky-sidebar.js
+++ b/js/theia-sticky-sidebar.js
@@ -153,11 +153,14 @@
top = Math.max(top, staticLimitTop);
top = Math.min(top, staticLimitBottom - o.stickySidebar.outerHeight());
-
- ... | If the sidebar is the same height as the container, don't use fixed positioning | WeCodePixels_theia-sticky-sidebar | train |
a3a61b5a7f1aa5b99fe6f32abbc7c7dbfc9533e1 | diff --git a/plugins/UsersManager/API.php b/plugins/UsersManager/API.php
index <HASH>..<HASH> 100644
--- a/plugins/UsersManager/API.php
+++ b/plugins/UsersManager/API.php
@@ -323,19 +323,27 @@ class API extends \Piwik\Plugin\API
$loginsToLimit = $this->model->getUsersWithAccessToSites($adminIdSites);
... | Fixed SQL Exception in UsersManager\API->getUsersPlusRole() when access is managed by another plugin (#<I>) | matomo-org_matomo | train |
9b73ea6d6152df3c82168433a45498c3caffcdfc | diff --git a/src/lib/analytics.js b/src/lib/analytics.js
index <HASH>..<HASH> 100644
--- a/src/lib/analytics.js
+++ b/src/lib/analytics.js
@@ -2,7 +2,6 @@
var atob = require('./polyfill').atob;
var constants = require('../constants');
-var isTokenizationKey = require('./is-tokenization-key');
var braintreeClientVe... | Use client authorizationType when sending analytics events | braintree_braintree-web-drop-in | train |
e3a520c3dad8e1be63e08dcbe335045a10d90244 | diff --git a/Form/Admin/OrderFormBuilder.php b/Form/Admin/OrderFormBuilder.php
index <HASH>..<HASH> 100755
--- a/Form/Admin/OrderFormBuilder.php
+++ b/Form/Admin/OrderFormBuilder.php
@@ -12,6 +12,7 @@
namespace WellCommerce\Bundle\OrderBundle\Form\Admin;
use WellCommerce\Bundle\CoreBundle\Form\AbstractFormBuilder;
... | Added summary & modifiers in order edit form | WellCommerce_CouponBundle | train |
1878cbb0a38bb4bba477e16bcf04033163c622c2 | diff --git a/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/main/groovy/org/springframework/cloud/contract/verifier/plugin/ContractVerifierExtension.java b/spring-cloud-contract-tools/spring-cloud-contract-gradle-plugin/src/main/groovy/org/springframework/cloud/contract/verifier/plugin/ContractVeri... | Added serializable to Gradle plugin classes | spring-cloud_spring-cloud-contract | train |
d54124fc3a76277c6a8a9d4c1f32ba8d6d957a5f | diff --git a/pcapkit/protocols/misc/pcap/frame.py b/pcapkit/protocols/misc/pcap/frame.py
index <HASH>..<HASH> 100644
--- a/pcapkit/protocols/misc/pcap/frame.py
+++ b/pcapkit/protocols/misc/pcap/frame.py
@@ -136,13 +136,15 @@ class Frame(Protocol[DataType_Frame]):
"""
return self._protos.index(name)
... | bugfix in Frame class
* correct parsing process
* no redundant exception message from EOF | JarryShaw_PyPCAPKit | train |
85c1e3b42cf870268917330cb445b6ca304aad26 | diff --git a/lib/addressable/idna.rb b/lib/addressable/idna.rb
index <HASH>..<HASH> 100644
--- a/lib/addressable/idna.rb
+++ b/lib/addressable/idna.rb
@@ -1,6 +1,6 @@
# encoding:utf-8
#--
-# Copyright (C) 2006-2011 Bob Aman
+# Copyright (C) 2006-2013 Bob Aman
#
# Licensed under the Apache License, Version 2.0 (t... | Updated copyright date to <I>.
Conflicts:
spec/addressable/specializations/mailto_spec.rb | sporkmonger_addressable | train |
10558c8283e99fde0a546a6d56be9f75867b2810 | diff --git a/src/createLambdaProxyContext.js b/src/createLambdaProxyContext.js
index <HASH>..<HASH> 100644
--- a/src/createLambdaProxyContext.js
+++ b/src/createLambdaProxyContext.js
@@ -17,7 +17,8 @@ module.exports = function createLambdaProxyContext(request, options, stageVariab
if (body) {
if (typeof body ... | Stop stripping newlines and tabs from body
This change introduces request.rawPayload to the Hapi request
and uses that if request.payload is not a string.
Before, JSON.stringify(JSON.parse(request.payload)) was being
used, which is not the same as the rawPayload that should be
passed along. | dherault_serverless-offline | train |
6ef0a15937122f24b5c960f6de1d297e67088c43 | diff --git a/rootpy/roosh.py b/rootpy/roosh.py
index <HASH>..<HASH> 100644
--- a/rootpy/roosh.py
+++ b/rootpy/roosh.py
@@ -30,6 +30,7 @@ from .io import root_open, DoesNotExist
from .io.file import _DirectoryBase
from .userdata import DATA_ROOT
from .plotting import Canvas
+from .plotting.style import set_style
fro... | roosh: add style and clear commands | rootpy_rootpy | train |
de46ebe3a892f9fcc0fe388348224ad17c7e8c81 | diff --git a/cilium-net-daemon/daemon/daemon.go b/cilium-net-daemon/daemon/daemon.go
index <HASH>..<HASH> 100644
--- a/cilium-net-daemon/daemon/daemon.go
+++ b/cilium-net-daemon/daemon/daemon.go
@@ -4,6 +4,7 @@ import (
"fmt"
"net"
"sync"
+ "time"
"github.com/noironetworks/cilium-net/common"
"github.com/noi... | Fixes consul no leader error
When cilium-net-daemon starts it waits until consul is ready to receive
requests. | cilium_cilium | train |
3742e09b3665307b6ac2f59cf6479c27042ce029 | diff --git a/salt/modules/butterkvm.py b/salt/modules/butterkvm.py
index <HASH>..<HASH> 100644
--- a/salt/modules/butterkvm.py
+++ b/salt/modules/butterkvm.py
@@ -149,10 +149,10 @@ def create(instance, vda, image, pin):
pin - a "pin" data structure defining the myriad of possible vdb-vbz disk
images to genera... | Add check in butterkvm to verify th eexistence of the disk image | saltstack_salt | train |
5d60b90b81d63d0ae0614b6bcf0676658491a332 | diff --git a/hapi-fhir-jpaserver-uhnfhirtest/src/main/java/ca/uhn/fhirtest/config/TestDstu2Config.java b/hapi-fhir-jpaserver-uhnfhirtest/src/main/java/ca/uhn/fhirtest/config/TestDstu2Config.java
index <HASH>..<HASH> 100644
--- a/hapi-fhir-jpaserver-uhnfhirtest/src/main/java/ca/uhn/fhirtest/config/TestDstu2Config.java
+... | Update refererence server to avoid long calls | jamesagnew_hapi-fhir | train |
d76f128d462840a707b0941ee468ab09abfc6f74 | diff --git a/lib/mixlib/cli.rb b/lib/mixlib/cli.rb
index <HASH>..<HASH> 100644
--- a/lib/mixlib/cli.rb
+++ b/lib/mixlib/cli.rb
@@ -313,7 +313,7 @@ module Mixlib
if opt_setting.key?(:description)
description = opt_setting[:description].dup
description << " (required)" if opt_setting[:required]
-... | Improve the --help text output of 'in:'
The automatic addition of the 'in' options to the --help output could be
more clear about what the list is. | chef_mixlib-cli | train |
fa59060c514cd5c8a162aee917b178de3be60240 | diff --git a/lib/Thelia/Tools/URL.php b/lib/Thelia/Tools/URL.php
index <HASH>..<HASH> 100644
--- a/lib/Thelia/Tools/URL.php
+++ b/lib/Thelia/Tools/URL.php
@@ -347,6 +347,10 @@ class URL
// fallback for old parameter
$viewLocale = $request->query->get('locale', null);
}
+ if (nu... | Fix Url are not rewritten if no locale in url (#<I>) | thelia_core | train |
02b2f28e58bfd037b0717f91bf4ac2d35f55d2f4 | diff --git a/src/io/conekta/PaymentSource.java b/src/io/conekta/PaymentSource.java
index <HASH>..<HASH> 100644
--- a/src/io/conekta/PaymentSource.java
+++ b/src/io/conekta/PaymentSource.java
@@ -12,6 +12,9 @@ public class PaymentSource extends Resource{
public Customer customer;
public String type;
publi... | fix issue with subscription nullpointerexception + payment source attributes | conekta_conekta-java | train |
897e8c6522ad7182de4f7f54046f8a7f56c1e99b | diff --git a/bootstrapper.py b/bootstrapper.py
index <HASH>..<HASH> 100644
--- a/bootstrapper.py
+++ b/bootstrapper.py
@@ -107,11 +107,12 @@ def create_env(env, args, recreate=False, quiet=False):
Create virtual environment.
"""
cmd = None
+ inside_venv = hasattr(sys, 'real_prefix')
if not quie... | Fixes to not creating venv inside of already activated venv, fixes to running post-bootstrap hooks. | playpauseandstop_bootstrapper | train |
dd9b77ed96e768bd0c54755b0ea88272febea285 | diff --git a/src/Symfony/Component/HttpFoundation/Response.php b/src/Symfony/Component/HttpFoundation/Response.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Component/HttpFoundation/Response.php
+++ b/src/Symfony/Component/HttpFoundation/Response.php
@@ -580,7 +580,18 @@ class Response
return array();
... | [HttpFoundation] added Response::setVary() | symfony_symfony | train |
3f2f0344926cc442ff15d74a593bb937679d7226 | diff --git a/app/assets/javascripts/hyrax/turbolinks_events.js b/app/assets/javascripts/hyrax/turbolinks_events.js
index <HASH>..<HASH> 100644
--- a/app/assets/javascripts/hyrax/turbolinks_events.js
+++ b/app/assets/javascripts/hyrax/turbolinks_events.js
@@ -2,4 +2,7 @@
// See https://github.com/rails/jquery-ujs/issue... | Force loading of UV by resetting flag in turbolinks:load event handler | samvera_hyrax | train |
8a4fba360bc4431014c60b0c20c39883cba2ddf3 | diff --git a/examples/modify-features.js b/examples/modify-features.js
index <HASH>..<HASH> 100644
--- a/examples/modify-features.js
+++ b/examples/modify-features.js
@@ -148,7 +148,9 @@ var vectorSource = new ol.source.GeoJSON(
},
{
'type': 'Polygon',
- ... | Close polygon in modify-feature example. | openlayers_openlayers | train |
4ed037fba4b155cd8faaa122de2df3576c4eb965 | diff --git a/src/ambi-converters.js b/src/ambi-converters.js
index <HASH>..<HASH> 100755
--- a/src/ambi-converters.js
+++ b/src/ambi-converters.js
@@ -63,13 +63,94 @@ export class acn2bf {
}
}
+
///////////////////////////////////
-/* ACN/N3D TO B-FORMAT CONVERTER */
+/* ACN/SN3D TO ACN/N3D CONVERTER */
/////... | Added SN3D/N3D ambisonic converters. Added FuMa-to-ACN/N3D conversion gains. | polarch_JSAmbisonics | train |
be745e7fdaae008e8621309939a16a8accf88ecf | diff --git a/splunklib/searchcommands/__init__.py b/splunklib/searchcommands/__init__.py
index <HASH>..<HASH> 100644
--- a/splunklib/searchcommands/__init__.py
+++ b/splunklib/searchcommands/__init__.py
@@ -207,12 +207,16 @@ from .reporting_command import ReportingCommand
from .streaming_command import StreamingComman... | Added predicate argument to dispatch function
This predicate allows you to set the condition under which dispatch actually dispatches | splunk_splunk-sdk-python | train |
b331d289554db993877b5d0644fdd9d87c0a829d | diff --git a/lib/slimmer.rb b/lib/slimmer.rb
index <HASH>..<HASH> 100644
--- a/lib/slimmer.rb
+++ b/lib/slimmer.rb
@@ -257,7 +257,8 @@ module Slimmer
end
def template_path
- @template_path || (@asset_host.to_s + '/templates')
+ return (@asset_host.to_s + '/templates') unless @asset_host.nil?
+ ... | Attempt to use the asset host if one is set. | alphagov_slimmer | train |
67451936b805af467261c64c38519ef915bdb7a5 | diff --git a/controls/views/code.php b/controls/views/code.php
index <HASH>..<HASH> 100644
--- a/controls/views/code.php
+++ b/controls/views/code.php
@@ -28,7 +28,7 @@ data = _.defaults( data, {
<span class="description customize-control-description">{{{ data.description }}}</span>
<# } #>
<div class="customize... | make sure controls can be created dynamically | aristath_kirki | train |
f3d5353807561047975b56e05c5f1002858d3297 | diff --git a/lib/init.js b/lib/init.js
index <HASH>..<HASH> 100644
--- a/lib/init.js
+++ b/lib/init.js
@@ -7,7 +7,12 @@ var path = require('path');
var through = require('through2');
var vfs = require('vinyl-fs');
-module.exports = function() {
+module.exports = function(opts) {
+ if (typeof opts === 'undef... | Reset the internal data tree each time init() is called, to avoid getting duplicate data on subsequent builds | zurb_supercollider | train |
11a904c755a0ddece88a7158c3120ea4e5a9589f | diff --git a/test/test_helper.rb b/test/test_helper.rb
index <HASH>..<HASH> 100644
--- a/test/test_helper.rb
+++ b/test/test_helper.rb
@@ -1,6 +1,7 @@
require "bundler/setup"
Bundler.require(:default, :test)
+require 'minitest/autorun'
require 'em-http-request'
require "socket"
require 'support/my_observer' | added minitest/autorun to test helper | kaize_mail_sandbox | train |
b2653c1118a113f930a1f1ad8903714464b0c705 | diff --git a/csv.go b/csv.go
index <HASH>..<HASH> 100644
--- a/csv.go
+++ b/csv.go
@@ -361,6 +361,9 @@ func UnmarshalToCallbackWithError(in io.Reader, f interface{}) error {
}
v, notClosed := c.Recv()
if !notClosed || v.Interface() == nil {
+ if err := <- cerr; err != nil {
+ fErr = err
+ }
break
... | Receive error from cerr before exit of for loop | gocarina_gocsv | train |
e7cf1191b2e50cd022ec1da1a52867decaa86fae | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -69,6 +69,7 @@ install_requires = [
'astropy>=1.2.1',
'six>=1.5',
'lscsoft-glue>=1.55.2',
+ 'python-dateutil',
]
extras_require = {
'nds': ['nds2-client'], | setup.py: added python-dateutil to install_requires | gwpy_gwpy | train |
710998eb6099a9be8289c8d4000413387488c60b | diff --git a/scripts/create_django_issue.py b/scripts/create_django_issue.py
index <HASH>..<HASH> 100644
--- a/scripts/create_django_issue.py
+++ b/scripts/create_django_issue.py
@@ -23,7 +23,7 @@ if TYPE_CHECKING:
CURRENT_FILE = Path(__file__)
ROOT = CURRENT_FILE.parents[1]
REQUIREMENTS_DIR = ROOT / "{{cookiecutter... | Small fixes to script for creating Django Upgrade issue | pydanny_cookiecutter-django | train |
531acdc8a79e1baa2d622f52ad8768a4d3fec5bf | diff --git a/lib/features/modeling/cmd/ReplaceShapeHandler.js b/lib/features/modeling/cmd/ReplaceShapeHandler.js
index <HASH>..<HASH> 100644
--- a/lib/features/modeling/cmd/ReplaceShapeHandler.js
+++ b/lib/features/modeling/cmd/ReplaceShapeHandler.js
@@ -76,8 +76,12 @@ module.exports = ReplaceShapeHandler;
// (3) ... | fix(replace): retain moved shapes in context
closes #<I> | bpmn-io_diagram-js | train |
4243cd9f570954ad5114eb3a4a36bef6bd2da453 | diff --git a/src/renderers/sigma.renderers.canvas.js b/src/renderers/sigma.renderers.canvas.js
index <HASH>..<HASH> 100644
--- a/src/renderers/sigma.renderers.canvas.js
+++ b/src/renderers/sigma.renderers.canvas.js
@@ -254,7 +254,7 @@
renderers = sigma.canvas.nodes;
for (a = this.nodesOnScreen, i = 0, l =... | Fix issue with incorrect node type renderer. | jacomyal_sigma.js | train |
a83724ae11a6998e1c5a3ddd3867550d0521bb0f | diff --git a/packages/core/botpress/src/cli/templates/init-default/index.js b/packages/core/botpress/src/cli/templates/init-default/index.js
index <HASH>..<HASH> 100644
--- a/packages/core/botpress/src/cli/templates/init-default/index.js
+++ b/packages/core/botpress/src/cli/templates/init-default/index.js
@@ -2,3 +2,5 ... | fix(core): export entry-point from bot's index.js (resolve #<I>) | botpress_botpress | train |
763561230826e267613dbe66395714a56380db1d | diff --git a/src/main/java/edu/jhu/pacaya/gm/feat/ObsFeatureCache.java b/src/main/java/edu/jhu/pacaya/gm/feat/ObsFeatureCache.java
index <HASH>..<HASH> 100644
--- a/src/main/java/edu/jhu/pacaya/gm/feat/ObsFeatureCache.java
+++ b/src/main/java/edu/jhu/pacaya/gm/feat/ObsFeatureCache.java
@@ -3,6 +3,7 @@ package edu.jhu.p... | Hacky bug fix: ObsFeatureCache wasn't being properly initialized. | mgormley_pacaya | train |
061d35e5fd39839990986ecfbdec755bc711301c | diff --git a/modules/cms/ServiceProvider.php b/modules/cms/ServiceProvider.php
index <HASH>..<HASH> 100644
--- a/modules/cms/ServiceProvider.php
+++ b/modules/cms/ServiceProvider.php
@@ -1,11 +1,14 @@
<?php namespace Cms;
use App;
+use Lang;
+use File;
use Event;
use Backend;
use BackendMenu;
use BackendAuth;
... | Register theme backend localization files (#<I>)
Closes #<I>. | octobercms_october | train |
daa2829c89da49135b2a61be18664b19a1a083f7 | diff --git a/openquake/hazardlib/shakemap/parsers.py b/openquake/hazardlib/shakemap/parsers.py
index <HASH>..<HASH> 100644
--- a/openquake/hazardlib/shakemap/parsers.py
+++ b/openquake/hazardlib/shakemap/parsers.py
@@ -84,7 +84,7 @@ def urlextract(url, fname):
raise
-def parse_url_path(url):
+def p... | fix: raise correct error and better method name | gem_oq-engine | train |
2bccf2e90f6f6fa0e2025f0d26018d06b36f931c | diff --git a/core/container/inproccontroller/inproccontroller.go b/core/container/inproccontroller/inproccontroller.go
index <HASH>..<HASH> 100644
--- a/core/container/inproccontroller/inproccontroller.go
+++ b/core/container/inproccontroller/inproccontroller.go
@@ -198,7 +198,7 @@ func (ipc *inprocContainer) launchInP... | [FAB-<I>] stop using Sprintf in Errorf
fmt.Errorf formats a message with args; no need to use fmt.Sprintf
inside of that.
Change-Id: I6d<I>c<I>c<I>fd<I>acca2c<I>e<I>bc2bb | hyperledger_fabric | train |
e5761cc6b22bdd881d09598d4b0c33444fd0e6aa | diff --git a/core/src/main/java/io/undertow/server/protocol/framed/AbstractFramedChannel.java b/core/src/main/java/io/undertow/server/protocol/framed/AbstractFramedChannel.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/io/undertow/server/protocol/framed/AbstractFramedChannel.java
+++ b/core/src/main/java/io/... | Make sure resumeRead() is a resume and not a wakeup | undertow-io_undertow | train |
1e22015c1a0a5633a675ba16e49683747c64325c | diff --git a/DependencyInjection/Configuration.php b/DependencyInjection/Configuration.php
index <HASH>..<HASH> 100644
--- a/DependencyInjection/Configuration.php
+++ b/DependencyInjection/Configuration.php
@@ -43,6 +43,10 @@ class Configuration implements ConfigurationInterface
->scalarNode('e... | allow to set or pass some options for a given library | Troopers_AlertifyBundle | train |
ea1519de825ec082d4d407764ad718c9ad0ba8a8 | diff --git a/server/application/application.go b/server/application/application.go
index <HASH>..<HASH> 100644
--- a/server/application/application.go
+++ b/server/application/application.go
@@ -433,6 +433,11 @@ func (s *Server) Watch(q *ApplicationQuery, ws ApplicationService_WatchServer) e
if err != nil {
return... | Fix a goroutine leak in api-server application.PodLogs and application.Watch (#<I>) | argoproj_argo-cd | train |
95d3e1f9f5042494390b0d6cc4f0d088e0d8f2fa | diff --git a/eZ/Publish/Core/Persistence/Legacy/Content/FieldValue/Converter/RelationList.php b/eZ/Publish/Core/Persistence/Legacy/Content/FieldValue/Converter/RelationList.php
index <HASH>..<HASH> 100644
--- a/eZ/Publish/Core/Persistence/Legacy/Content/FieldValue/Converter/RelationList.php
+++ b/eZ/Publish/Core/Persis... | Fix EZP-<I>: Creating an object with relationlist fails when target class is being edited. | ezsystems_ezpublish-kernel | train |
4aac1ebb59922fdf368d5d9d4ae2ac831ebf88f9 | diff --git a/hpcbench/benchmark/shoc.py b/hpcbench/benchmark/shoc.py
index <HASH>..<HASH> 100644
--- a/hpcbench/benchmark/shoc.py
+++ b/hpcbench/benchmark/shoc.py
@@ -74,7 +74,7 @@ class SHOC(Benchmark):
"""
DEFAULT_DEVICE = '0'
DEFAULT_EXECUTABLE = 'shocdriver'
- DEFAULT_OPTIONS = ['-s', '3']
+ DE... | modify shoc.py to allow multiple gpu run and size of the pb | BlueBrain_hpcbench | train |
c8c687511f4480bbb323d41f417fad9118561b7e | diff --git a/aws/resource_aws_cognito_user_pool_client.go b/aws/resource_aws_cognito_user_pool_client.go
index <HASH>..<HASH> 100644
--- a/aws/resource_aws_cognito_user_pool_client.go
+++ b/aws/resource_aws_cognito_user_pool_client.go
@@ -77,7 +77,7 @@ func resourceAwsCognitoUserPoolClient() *schema.Resource {
Typ... | fix range according to aws docs | terraform-providers_terraform-provider-aws | train |
3c2888a49e31371e0cee4dbbf2e1cd6c1345c1b9 | diff --git a/va/va.go b/va/va.go
index <HASH>..<HASH> 100644
--- a/va/va.go
+++ b/va/va.go
@@ -23,9 +23,6 @@ import (
"time"
"github.com/jmhodges/clock"
- "github.com/prometheus/client_golang/prometheus"
- "golang.org/x/net/context"
-
"github.com/letsencrypt/boulder/bdns"
"github.com/letsencrypt/boulder/cance... | Add a counter for the tls alpn OID that is used (#<I>)
Fixes #<I>. | letsencrypt_boulder | train |
5aaf996e80e978f229c4f1a11fe1cfc998547236 | diff --git a/GPflow/svgp.py b/GPflow/svgp.py
index <HASH>..<HASH> 100644
--- a/GPflow/svgp.py
+++ b/GPflow/svgp.py
@@ -63,7 +63,7 @@ class SVGP(GPModel):
KL += 0.5*tf.reduce_sum(tf.square(Ldiag))
fmean, fvar = conditionals.gaussian_gp_predict_whitened(self.X, self.Z, self.kern, self.q_... | bug in KL computation for svgp | GPflow_GPflow | train |
d5357ac8680282ddfe5d5b6d740f5e3eaeefbf78 | diff --git a/lib/stormpath.js b/lib/stormpath.js
index <HASH>..<HASH> 100644
--- a/lib/stormpath.js
+++ b/lib/stormpath.js
@@ -113,7 +113,7 @@ module.exports.init = function (app, opts) {
next();
}
- function serveAngular(path) {
+ function addSpaRoute(path) {
router.get(path, function (req, ... | rename serveAngular as addSpaRoute | stormpath_express-stormpath | train |
70909479b99f2cc8fafa3ca666ff842b9c9f013e | diff --git a/demo/average/average.php b/demo/average/average.php
index <HASH>..<HASH> 100644
--- a/demo/average/average.php
+++ b/demo/average/average.php
@@ -4,17 +4,4 @@ require_once __DIR__ . '/../bootstrap.php';
$source = Rx\Observable::range(0, 9)->average();
-$subscription = $source->subscribeCallback(
- ... | Fixed takeLast doc block, demo updates (#<I>) | ReactiveX_RxPHP | train |
9d4bb9482a8cd29272b83283d8d9048361904165 | diff --git a/dropwizard-jooq/src/test/java/com/bendb/dropwizard/jooq/JodaDateTimeConverterTest.java b/dropwizard-jooq/src/test/java/com/bendb/dropwizard/jooq/JodaDateTimeConverterTest.java
index <HASH>..<HASH> 100644
--- a/dropwizard-jooq/src/test/java/com/bendb/dropwizard/jooq/JodaDateTimeConverterTest.java
+++ b/drop... | Improve coverage ever-so-slightly | benjamin-bader_droptools | train |
5e0351b5180b623d8e2f1130998e20fba755552a | diff --git a/cwltool/provenance.py b/cwltool/provenance.py
index <HASH>..<HASH> 100644
--- a/cwltool/provenance.py
+++ b/cwltool/provenance.py
@@ -719,6 +719,8 @@ class CreateProvProfile():
# TODO: Declare roles/parameters as well
def activity_has_provenance(self, activity, *prov_ids):
+ # type: ... | Add nested workflow prov annotation to manifest | common-workflow-language_cwltool | train |
1e26f92cc3f91be5a89e22fd68008f438dec9421 | diff --git a/lib/opal/sprockets/processor.rb b/lib/opal/sprockets/processor.rb
index <HASH>..<HASH> 100644
--- a/lib/opal/sprockets/processor.rb
+++ b/lib/opal/sprockets/processor.rb
@@ -69,6 +69,14 @@ module Opal
logical_path = context.logical_path
compiler_options = self.compiler_options.merge(file:... | Load opal right away
Not doing so can cause errors while interacting with external code if
such code is executed between corelib/runtime.js and Opal.load(‘opal’).
e.g. runtime.js forwards Array.prototype.toString() to Array.prototype.$to_s()
but $to_s is implemented only when corelib/array is loaded. | opal_opal | train |
2d38b754001628718c16deef7b3a737a1ac4ab67 | diff --git a/cmd/web.go b/cmd/web.go
index <HASH>..<HASH> 100644
--- a/cmd/web.go
+++ b/cmd/web.go
@@ -608,7 +608,7 @@ func runWeb(ctx *cli.Context) error {
}, context.RepoRef())
m.Get("/commit/:sha([a-f0-9]{7,40})\\.:ext(patch|diff)", repo.RawDiff)
- m.Get("/compare/:before([a-z0-9]{40})\\.\\.\\.:after([a-z0-... | diff: fix can't show compare page for fork repository (#<I>) | gogs_gogs | train |
baea844afbd5db0deb7441054de4a3ed1e1f79d9 | diff --git a/lib/App/Controller.php b/lib/App/Controller.php
index <HASH>..<HASH> 100644
--- a/lib/App/Controller.php
+++ b/lib/App/Controller.php
@@ -146,7 +146,7 @@ class Controller implements \Coast\App\Access, \Coast\App\Router\Routable
$parts = array_map('\Coast\str_camel_upper', $parts);
$c... | Don't camel case controller set names. | jacksleight_coast | train |
cb7522069317b6c9423bb728e2247f75d52ae838 | diff --git a/passpie/importers/pysswords_importer.py b/passpie/importers/pysswords_importer.py
index <HASH>..<HASH> 100644
--- a/passpie/importers/pysswords_importer.py
+++ b/passpie/importers/pysswords_importer.py
@@ -25,7 +25,6 @@ class PysswordsImporter(BaseImporter):
return True
-
def handle(self,... | Clean pysswords_importer | marcwebbie_passpie | train |
708d4121e8424a9eee5306d2b053bf3a132492c0 | diff --git a/caas/kubernetes/provider/base_test.go b/caas/kubernetes/provider/base_test.go
index <HASH>..<HASH> 100644
--- a/caas/kubernetes/provider/base_test.go
+++ b/caas/kubernetes/provider/base_test.go
@@ -171,6 +171,7 @@ func (s *BaseSuite) TearDownTest(c *gc.C) {
s.clock = nil
s.k8sClient = nil
s.mockApiex... | Ensure k8s watcher slice clean up properly to fix intermittent tests failure; | juju_juju | train |
c5358dcd2a2a734114924fcd92e8fa9b2143deec | diff --git a/influxql/functions.go b/influxql/functions.go
index <HASH>..<HASH> 100644
--- a/influxql/functions.go
+++ b/influxql/functions.go
@@ -1372,9 +1372,11 @@ func ReduceTop(values []interface{}, c *Call) interface{} {
o, _ := v.([]topOut)
out.values = append(out.values, o...)
}
+
+ // Have to always sor... | always sort results for ReduceTop. Skip test until we verify expected behavior | influxdata_influxdb | train |
c7bd8db91447de7e188ac311d0a2cb29e6c5ff53 | diff --git a/nose/test_orbit.py b/nose/test_orbit.py
index <HASH>..<HASH> 100644
--- a/nose/test_orbit.py
+++ b/nose/test_orbit.py
@@ -579,7 +579,6 @@ def test_liouville_planar():
rmpots.append('TwoPowerSphericalPotential')
rmpots.append('TwoPowerTriaxialPotential')
rmpots.append('TriaxialHernquistPotent... | Add test of phase-space conservation for TriaxialNFW | jobovy_galpy | train |
20885a195847a5df3fa026df403b7cad9a356996 | diff --git a/pmagpy/new_builder.py b/pmagpy/new_builder.py
index <HASH>..<HASH> 100644
--- a/pmagpy/new_builder.py
+++ b/pmagpy/new_builder.py
@@ -2040,6 +2040,8 @@ class MagicDataFrame(object):
mode = "w"
f = open(fname, mode)
print('\ngoing to write out the file')
+ print('len(df... | more debugging #<I> | PmagPy_PmagPy | train |
777535c218ecaa9403aa146a02788121740e4291 | diff --git a/annis-service/src/main/java/annis/administration/AdministrationDao.java b/annis-service/src/main/java/annis/administration/AdministrationDao.java
index <HASH>..<HASH> 100644
--- a/annis-service/src/main/java/annis/administration/AdministrationDao.java
+++ b/annis-service/src/main/java/annis/administration/... | Use prepared statement to update the amount of nodes and the used operator for example queries to avoid escaping issues.
Fixes #<I>. | korpling_ANNIS | train |
c7c66bedcba477d145dae01a4e07e0aa9d6cf806 | diff --git a/common/shell-local/config.go b/common/shell-local/config.go
index <HASH>..<HASH> 100644
--- a/common/shell-local/config.go
+++ b/common/shell-local/config.go
@@ -86,7 +86,7 @@ func Validate(config *Config) error {
// Clean up input
if config.Inline != nil && len(config.Inline) == 0 {
- config.Inline... | set inline to an empty array, rather than nil | hashicorp_packer | train |
8ce8f300bb8443f1c91a15e4df4086dceafded48 | diff --git a/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php b/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php
index <HASH>..<HASH> 100644
--- a/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php
+++ b/tests/Doctrine/Tests/DBAL/Functional/ModifyLimitQueryTest.php
@@ -43,7 +43,7 @@... | fix ModifyLimitQueryTest to correctly assert deterministic and non-deterministic results | doctrine_dbal | train |
41c6440eca1d1b218eb142ddf300408eff98d75d | diff --git a/pycbc/events/events.py b/pycbc/events/events.py
index <HASH>..<HASH> 100644
--- a/pycbc/events/events.py
+++ b/pycbc/events/events.py
@@ -127,12 +127,19 @@ def newsnr(snr, reduced_x2):
SNR and reduced chi-squared values. See http://arxiv.org/abs/1208.3491
for a definition of NewSNR.
"""
+ ... | allow array and scalar in newsnr events.py functions | gwastro_pycbc | train |
710530d47f7ecc4b403c448faa909c323045c9f9 | diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/docs/CHANGELOG.md
+++ b/docs/CHANGELOG.md
@@ -18,6 +18,8 @@
* [Fixed] Bug that caused search to miss delete object and delete package events ([#1987](https://github.com/quiltdata/quilt/pull/1987))
* [Changed] Tree view for files in p... | Don't aggressively retry content exceptions (#<I>) | quiltdata_quilt | train |
40d311e1474fd6d91918941b4a45c908415767a9 | diff --git a/lib/formtastic/form_builder.rb b/lib/formtastic/form_builder.rb
index <HASH>..<HASH> 100644
--- a/lib/formtastic/form_builder.rb
+++ b/lib/formtastic/form_builder.rb
@@ -70,7 +70,7 @@ module Formtastic
include Formtastic::Inputs::BooleanInput
include Formtastic::Inputs::CheckBoxesInput
- inc... | country input now inherits from NewBase | justinfrench_formtastic | train |
718c24d8c53f16e0075520941541abfae3c07701 | diff --git a/features/support/env.rb b/features/support/env.rb
index <HASH>..<HASH> 100644
--- a/features/support/env.rb
+++ b/features/support/env.rb
@@ -7,7 +7,7 @@ Before do
# Set the env var PWD to aruba's working directory, instead of inheriting
# the main process's PWD. See CHEF-3663 for why this changed ... | Replace deprecated method for directory selection | miketheman_knife-role-spaghetti | train |
9561bf3e282075fabf2a4f92e84c9bad801bc2e4 | diff --git a/src/parser/creative_linear_parser.js b/src/parser/creative_linear_parser.js
index <HASH>..<HASH> 100644
--- a/src/parser/creative_linear_parser.js
+++ b/src/parser/creative_linear_parser.js
@@ -315,85 +315,6 @@ function parseIcon(iconElement) {
}
/**
- * Parses the MediaFile element from VAST.
- * @par... | [parser] Refactored the icon parsing to a separate method | dailymotion_vast-client-js | train |
90a795cb530725547130dd706f8084af675376ee | diff --git a/eventsourcing/__init__.py b/eventsourcing/__init__.py
index <HASH>..<HASH> 100644
--- a/eventsourcing/__init__.py
+++ b/eventsourcing/__init__.py
@@ -1 +1 @@
-__version__ = "7.2.4dev0"
+__version__ = "7.2.4rc0" | Increased version number to <I>rc0. | johnbywater_eventsourcing | train |
03dd66bc8b4c6af6ed2ab55835e6a3b79017f3e6 | diff --git a/cmd/swagui/main.go b/cmd/swagui/main.go
index <HASH>..<HASH> 100644
--- a/cmd/swagui/main.go
+++ b/cmd/swagui/main.go
@@ -4,8 +4,10 @@ import (
"bytes"
"flag"
"fmt"
+ "io"
"net/http"
"os"
+ "path"
"time"
"github.com/codemodus/swagui"
@@ -14,7 +16,22 @@ import (
"github.com/codemodus/swagu... | Restructure cmd main/run and logging | codemodus_swagui | train |
792fcb0032b284b3a200ad7cf769770561d105b2 | diff --git a/.github/release_schedule.json b/.github/release_schedule.json
index <HASH>..<HASH> 100644
--- a/.github/release_schedule.json
+++ b/.github/release_schedule.json
@@ -6,5 +6,5 @@
"2022-08-11": "0.15.18",
"2022-08-18": "0.15.19",
"2022-08-25": "0.15.20",
- "2022-09-01": "0.15.21",
+ "202... | [BUGFIX] Spark Schema has unexpected field for `spark.sql.warehouse.dir` (#<I>)
* submitting attempted fix
* adding helpful print statements
* cleaning up changes after fix
* final clean up
* Update release_schedule.json | great-expectations_great_expectations | train |
3443de7801188dd07da65eafcc2792acd241f99f | diff --git a/pandas/tests/test_groupby.py b/pandas/tests/test_groupby.py
index <HASH>..<HASH> 100644
--- a/pandas/tests/test_groupby.py
+++ b/pandas/tests/test_groupby.py
@@ -6813,6 +6813,23 @@ class TestGroupBy(tm.TestCase):
assert_frame_equal(result, expected)
+ def test_agg_over_numpy_arrays(self):
+... | TST: Test aggregation over arrays (#<I>)
closes #<I> | pandas-dev_pandas | train |
0208aad28ea4ee011b78e8c7329dd74aac200a13 | diff --git a/src/main/java/strman/Strman.java b/src/main/java/strman/Strman.java
index <HASH>..<HASH> 100644
--- a/src/main/java/strman/Strman.java
+++ b/src/main/java/strman/Strman.java
@@ -774,6 +774,17 @@ public abstract class Strman {
return value.toLowerCase().replace(search.toLowerCase(), newValue);
... | Fixed #<I>. Added support for `reverse` function | shekhargulati_strman-java | train |
e4df29877ce29374d0e02ed2728b285d0f3b587f | diff --git a/tests/integration_tests/test_repeat.py b/tests/integration_tests/test_repeat.py
index <HASH>..<HASH> 100644
--- a/tests/integration_tests/test_repeat.py
+++ b/tests/integration_tests/test_repeat.py
@@ -117,7 +117,9 @@ class RepeatingEventListViewTest(SetMeUp):
description="Single event",
... | added test for Cancellation __str__() +fixed a test. | wreckage_django-happenings | train |
ec57cc1cbfa0e8c362bece803dfcc77ecfabc8c0 | diff --git a/sources/kube.go b/sources/kube.go
index <HASH>..<HASH> 100644
--- a/sources/kube.go
+++ b/sources/kube.go
@@ -34,8 +34,12 @@ import (
// Kubernetes released supported and tested against.
var kubeVersions = []string{"v0.3"}
-// Cadvisor port in kubernetes.
-const cadvisorPort = 4194
+const (
+ // Cadvis... | Fix messages to show master ip rather than a pointer address. | kubernetes-retired_heapster | train |
3516618e8065ab4b8a5ec5a01e657d79087cec8e | diff --git a/lib/authorizer/ntlm.js b/lib/authorizer/ntlm.js
index <HASH>..<HASH> 100644
--- a/lib/authorizer/ntlm.js
+++ b/lib/authorizer/ntlm.js
@@ -100,7 +100,8 @@ module.exports = {
password = auth.get(NTLM_PARAMETERS.PASSWORD) || EMPTY,
negotiateMessage, // type 1
challengeMe... | Update NTLM auth to find correct type2 header before parsing | postmanlabs_postman-runtime | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.