hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
187f5c4041edd0ac37633c4dfeb937fe1f798552 | diff --git a/porespy/metrics/__funcs__.py b/porespy/metrics/__funcs__.py
index <HASH>..<HASH> 100644
--- a/porespy/metrics/__funcs__.py
+++ b/porespy/metrics/__funcs__.py
@@ -164,7 +164,7 @@ def radial_density(im, bins=10, voxel_size=1):
if im.dtype == bool:
im = spim.distance_transform_edt(im)
x = i... | fixing rdf back to proper density function | PMEAL_porespy | train |
9d33fcc33c4910dad2041749ae792f5de2df8204 | diff --git a/Manifest b/Manifest
index <HASH>..<HASH> 100644
--- a/Manifest
+++ b/Manifest
@@ -11,6 +11,7 @@ lib/thrift_client/connection/factory.rb
lib/thrift_client/connection/http.rb
lib/thrift_client/connection/socket.rb
lib/thrift_client/event_machine.rb
+lib/thrift_client/server.rb
lib/thrift_client/simple.rb... | Use Server as a proxy between the underlying Thrift transport and the thrift client. | twitter_thrift_client | train |
54aa3083cd76d7f73e91f974bd46c6ffef01973a | diff --git a/cmd/wl/commands/task.go b/cmd/wl/commands/task.go
index <HASH>..<HASH> 100644
--- a/cmd/wl/commands/task.go
+++ b/cmd/wl/commands/task.go
@@ -8,7 +8,14 @@ import (
"github.com/spf13/cobra"
)
+const (
+ completedTasksLongFlag = "completed"
+)
+
var (
+ // Flags
+ completedTasks bool
+
// Commands
... | Add CLI flag --completd to tasks methods.
[finishes #<I>] | robdimsdale_wl | train |
37539b0cf483efdde99802ac9ce54928a14c4bc1 | diff --git a/code/libraries/koowa/libraries/command/context/context.php b/code/libraries/koowa/libraries/command/context/context.php
index <HASH>..<HASH> 100755
--- a/code/libraries/koowa/libraries/command/context/context.php
+++ b/code/libraries/koowa/libraries/command/context/context.php
@@ -46,6 +46,28 @@ class KCom... | re #<I> : Added KCommandContextInterface::setSubject() and getSubject() methods. Removed KCommandContext::getError() and setError() functions. | timble_kodekit | train |
38a96c359faa18000837cbffe319ba219873b3c2 | diff --git a/xkcd.py b/xkcd.py
index <HASH>..<HASH> 100644
--- a/xkcd.py
+++ b/xkcd.py
@@ -17,6 +17,8 @@ import random
import urllib2 as urllib
import webbrowser
+explanationUrl = "http://explainxkcd.com/"
+
class Comic:
def __init__(self, number):
@@ -60,6 +62,11 @@ class Comic:
def getImageName(self):
... | Added basic getExplanation function for explain xkcd. | TC01_python-xkcd | train |
a35337092607d6ed76ebdfb09e7b9d9488dad898 | diff --git a/lib/tech/v2.js b/lib/tech/v2.js
index <HASH>..<HASH> 100644
--- a/lib/tech/v2.js
+++ b/lib/tech/v2.js
@@ -219,7 +219,17 @@ var Q = require('q'),
return this.storeBuildResults(
output,
- this.getBuildResults(decl, levels, output, opts));
+ this.g... | tech/v2: transformBuildDecl() is reborn and used in buildByDecl() | bem-archive_bem-tools | train |
92bb1fe319858b7833fce663bc8f6bd27a87f6d6 | diff --git a/Library/FunctionCall.php b/Library/FunctionCall.php
index <HASH>..<HASH> 100644
--- a/Library/FunctionCall.php
+++ b/Library/FunctionCall.php
@@ -127,7 +127,7 @@ class FunctionCall extends Call
* @param array $references
* @return boolean
*/
- protected function markReferences($funcName, $paramete... | Reporting wrong variables as references [ci skip] | phalcon_zephir | train |
baca07ac2a9ea611d9405ae092b1a7ec266a4ea4 | diff --git a/domain-management/src/main/java/org/jboss/as/domain/management/access/RoleMappingRemove.java b/domain-management/src/main/java/org/jboss/as/domain/management/access/RoleMappingRemove.java
index <HASH>..<HASH> 100644
--- a/domain-management/src/main/java/org/jboss/as/domain/management/access/RoleMappingRemo... | [WFCORE-<I>] Fix missing resource handling
If the resource to be removed doesn't exist, the operation should fail | wildfly_wildfly-core | train |
d1d4e9e5a928d7bd6462d3a27ffd92885ce7d218 | diff --git a/controller/src/main/java/org/jboss/as/controller/services/path/PathRemoveHandler.java b/controller/src/main/java/org/jboss/as/controller/services/path/PathRemoveHandler.java
index <HASH>..<HASH> 100644
--- a/controller/src/main/java/org/jboss/as/controller/services/path/PathRemoveHandler.java
+++ b/control... | [WFCORE-<I>] PathRemoveHandler.createSpecifiedNoServicesInstance should create a handler that actually doesn't use services | wildfly_wildfly-core | train |
f5cc112a4b7ff911b1d531b18ff9df634efb1f45 | diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb
index <HASH>..<HASH> 100644
--- a/lib/vagrant/environment.rb
+++ b/lib/vagrant/environment.rb
@@ -133,7 +133,7 @@ module Vagrant
# Call the hooks that does not require configurations to be loaded
# by using a "clean" action runner
- ... | core: allow hooks to send arbitrary data | hashicorp_vagrant | train |
663b965a7ba269f9b1ceee954fb29e24b7e47822 | diff --git a/lib/boxen/puppeteer.rb b/lib/boxen/puppeteer.rb
index <HASH>..<HASH> 100644
--- a/lib/boxen/puppeteer.rb
+++ b/lib/boxen/puppeteer.rb
@@ -23,6 +23,7 @@ module Boxen
flags = []
root = File.expand_path "../../..", __FILE__
+ flags << ["--group", "admin"]
flags << ["--confdi... | force puppet to try to own things with group admin, fixes chicken-egg problem with puppet group | boxen_boxen | train |
ce7d7bfd8dc985df02c12ee819ff5dbd423a7458 | diff --git a/lib/router/index.js b/lib/router/index.js
index <HASH>..<HASH> 100644
--- a/lib/router/index.js
+++ b/lib/router/index.js
@@ -243,11 +243,17 @@ Router.prototype.route = function(method, path, callbacks){
// ensure path was given
if (!path) throw new Error('Router#' + method + '() requires a path');
... | add throwing when a non-function is passed to a route | expressjs_express | train |
7449c94113996751ca6f710526baabc1717ac169 | diff --git a/engine/src/main/java/org/camunda/bpm/engine/impl/dmn/entity/repository/DecisionRequirementsDefinitionEntity.java b/engine/src/main/java/org/camunda/bpm/engine/impl/dmn/entity/repository/DecisionRequirementsDefinitionEntity.java
index <HASH>..<HASH> 100644
--- a/engine/src/main/java/org/camunda/bpm/engine/i... | chore(engine): compilation fix!
Related with #CAM-<I> | camunda_camunda-bpm-platform | train |
6063ab2836fc1146620e709c5bfe475833006b2d | diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb
index <HASH>..<HASH> 100644
--- a/spec/spec_helper.rb
+++ b/spec/spec_helper.rb
@@ -45,3 +45,29 @@ RSpec.configure do |config|
mocks.verify_partial_doubles = true
end
end
+
+[:get, :head, :patch, :post, :put, :delete].each do |verb|
+ Object.send :define_... | Define in spec_helper helper methods to stub http requests | skroutz_skroutz.rb | train |
79e31d2957983d408bf093a3e3168073b27002d2 | diff --git a/tests/src/test/java/tachyon/master/JournalShutdownIntegrationTest.java b/tests/src/test/java/tachyon/master/JournalShutdownIntegrationTest.java
index <HASH>..<HASH> 100644
--- a/tests/src/test/java/tachyon/master/JournalShutdownIntegrationTest.java
+++ b/tests/src/test/java/tachyon/master/JournalShutdownIn... | [SMALLFIX] Update integration tests | Alluxio_alluxio | train |
a5482a9e747f09ca6bc4354601a0dec77d335352 | diff --git a/closure/goog/array/array.js b/closure/goog/array/array.js
index <HASH>..<HASH> 100644
--- a/closure/goog/array/array.js
+++ b/closure/goog/array/array.js
@@ -1090,10 +1090,7 @@ goog.array.binarySearch_ = function(arr, compareFn, isEvaluator, opt_target,
*/
goog.array.sort = function(arr, opt_compareFn) ... | Reduce the implementation of goog.array.sort to the pure minimum.
When a NodeList was passed to the previous implementation, Chrome silently did nothing, and Firefox failed with an exception. The new implementation fails fast in all browsers.
-------------
Created by MOE: <URL> | google_closure-library | train |
1dfc0f78130a99e0a596aff547451c722294ef26 | diff --git a/lib/errors/DiscordHTTPError.js b/lib/errors/DiscordHTTPError.js
index <HASH>..<HASH> 100644
--- a/lib/errors/DiscordHTTPError.js
+++ b/lib/errors/DiscordHTTPError.js
@@ -6,39 +6,33 @@ class DiscordHTTPError extends Error {
Object.defineProperty(this, "req", {
enumerable: false,
- ... | Make custom Error properties writable (#<I>)
Fix compatibility with things that assume Node-like behavior on Error properties | abalabahaha_eris | train |
545cccd35b0a859accfba1ee32b4dc8138deb898 | diff --git a/test/test.js b/test/test.js
index <HASH>..<HASH> 100644
--- a/test/test.js
+++ b/test/test.js
@@ -18,7 +18,7 @@ describe('breakdance-reflinks', function() {
it('should generate reference links', function() {
breakdance.before('eos', reflinks());
- assert.equal(breakdance.render('<a href="/some... | fix test
in the latest breakdance, empty a tags are omitted | breakdance_breakdance-reflinks | train |
34bd426dd8e9b437c28fa691cc40855e11dd5a39 | diff --git a/lib/bagit.php b/lib/bagit.php
index <HASH>..<HASH> 100644
--- a/lib/bagit.php
+++ b/lib/bagit.php
@@ -502,7 +502,8 @@ class BagIt
public function getBagInfoData($key)
{
$this->_ensureBagInfoData();
- return $this->bagInfoData[strtolower($key)];
+ $key = strtolower($key);
+ ... | getBagInfoData should return null when the key doesn't exist. | scholarslab_BagItPHP | train |
030ed82e608cfa4a9b83975a4ae1c95ca6c55871 | diff --git a/test/automated/position_store/stream_name.rb b/test/automated/position_store/stream_name.rb
index <HASH>..<HASH> 100644
--- a/test/automated/position_store/stream_name.rb
+++ b/test/automated/position_store/stream_name.rb
@@ -73,9 +73,51 @@ context "Position Store" do
position_stream_name = Consum... | Stream name test includes consumer identifier | eventide-project_consumer-event-store | train |
3095a262aa6bd027d13c3b22a80fcabd5b2c2116 | diff --git a/war/src/main/webapp/scripts/hudson-behavior.js b/war/src/main/webapp/scripts/hudson-behavior.js
index <HASH>..<HASH> 100644
--- a/war/src/main/webapp/scripts/hudson-behavior.js
+++ b/war/src/main/webapp/scripts/hudson-behavior.js
@@ -2119,9 +2119,8 @@ function createComboBox(idOrField,valueFunction) {
}
... | making script error easiler to find | jenkinsci_jenkins | train |
d7b75620013f0c694ee9c939b9781c4b40e7ac1a | diff --git a/source/Net/Bazzline/Symfony/Console/IO/ConsoleIO.php b/source/Net/Bazzline/Symfony/Console/IO/ConsoleIO.php
index <HASH>..<HASH> 100644
--- a/source/Net/Bazzline/Symfony/Console/IO/ConsoleIO.php
+++ b/source/Net/Bazzline/Symfony/Console/IO/ConsoleIO.php
@@ -117,7 +117,7 @@ class ConsoleIO implements IOInte... | Finished (s|g)etArgument | stevleibelts-archive_php_symfony_console_io | train |
d3874695244bdde8a288b0155447cfb719449440 | diff --git a/lib/conf.d/minifyGroupsConfig.php b/lib/conf.d/minifyGroupsConfig.php
index <HASH>..<HASH> 100644
--- a/lib/conf.d/minifyGroupsConfig.php
+++ b/lib/conf.d/minifyGroupsConfig.php
@@ -36,7 +36,7 @@ $groups = array(
'//assets/bootstrap-switch/static/js/bootstrapSwitch.js',
'//assets/undersco... | Add missing trailing comma | alchemy-fr_Phraseanet | train |
67cd5ff849eee3b1ff574407fd7c4a66010441c4 | diff --git a/sdk/version/version_base.go b/sdk/version/version_base.go
index <HASH>..<HASH> 100644
--- a/sdk/version/version_base.go
+++ b/sdk/version/version_base.go
@@ -8,7 +8,7 @@ var (
// Whether cgo is enabled or not; set at build time
CgoEnabled bool
- Version = "1.9.0"
+ Version = "1.10... | <I>-dev version bump (#<I>)
* <I>-dev version bump
* Remove hard-coded versions from tests. (#<I>) | hashicorp_vault | train |
7cbdaaf25332a8b149b02f70ec58f64ae425c395 | diff --git a/lib/git-review/commands.rb b/lib/git-review/commands.rb
index <HASH>..<HASH> 100644
--- a/lib/git-review/commands.rb
+++ b/lib/git-review/commands.rb
@@ -56,7 +56,11 @@ module GitReview
branch_name = request.head.ref
if branch
if local.branch_exists?(:local, branch_name)
- g... | output warning if already on correct branch | b4mboo_git-review | train |
9c788325ae9a53c76dce82f92b274c8fc3a233de | diff --git a/src/Psy/Shell.php b/src/Psy/Shell.php
index <HASH>..<HASH> 100644
--- a/src/Psy/Shell.php
+++ b/src/Psy/Shell.php
@@ -69,7 +69,7 @@ class Shell extends Application
$this->cleaner = $this->config->getCodeCleaner();
$this->loop = $this->config->getLoop();
$this->context = new... | Ensure that Shell is properly including config value for defaultIncludes | bobthecow_psysh | train |
ba60643e9abc5dd19de1e7b22554e8ac78a76e6b | diff --git a/docs/src/markdown/about/changelog.md b/docs/src/markdown/about/changelog.md
index <HASH>..<HASH> 100644
--- a/docs/src/markdown/about/changelog.md
+++ b/docs/src/markdown/about/changelog.md
@@ -3,8 +3,9 @@
## 2.4.0
- **NEW**: Disable Aspell filters by default. Users must explicitly set the `mode` param... | Add tests for bad or no names and change some error types (#<I>)
* Add tests for bad or no names and change some error types
Use RuntimeError for when files are not found.
Change missing `matrix` error from ValueError to KeyError.
Also add tests for no name and bad names.
* Ensure we are testing that 'matrix' ... | facelessuser_pyspelling | train |
3afe5b98f804c301411deb429735c47999e305ad | diff --git a/lib/websearch_templates.py b/lib/websearch_templates.py
index <HASH>..<HASH> 100644
--- a/lib/websearch_templates.py
+++ b/lib/websearch_templates.py
@@ -3038,16 +3038,16 @@ class Template:
columnfill += "<td> </td>"
thead = """<table>
<tr><td><strong class="headline... | Prettified cite summary output: right justified numerical values, added thousands separator,
updated link argument order, added sorting by the number of citations. | inveniosoftware_invenio-records | train |
be7d82c29fdf2a6575c18521d09123a115d7bb29 | diff --git a/Kwc/Directories/List/ViewAjax/Component.js b/Kwc/Directories/List/ViewAjax/Component.js
index <HASH>..<HASH> 100644
--- a/Kwc/Directories/List/ViewAjax/Component.js
+++ b/Kwc/Directories/List/ViewAjax/Component.js
@@ -37,7 +37,8 @@ Kwf.onElementReady('.kwcDirectoriesListViewAjax', function initListViewAjax... | add option to defer onElementReady
this defers initializing that element for <I>ms after load | koala-framework_koala-framework | train |
8ef9a04534556342f6d78eea0a5a4d1f67410303 | diff --git a/.rubocop.yml b/.rubocop.yml
index <HASH>..<HASH> 100644
--- a/.rubocop.yml
+++ b/.rubocop.yml
@@ -12,6 +12,7 @@ AllCops:
- 'vendor/**/*'
- 'benchmarks/*'
- 'profile/*'
+ - 'tmp/*'
DisplayCopNames: true
TargetRubyVersion: 2.0
diff --git a/lib/daru/dataframe.rb b/lib/daru/dataframe.... | Fix #add_row for DF with multi index (#<I>) | SciRuby_daru | train |
c96cda4d453337573240d8a1b7879cbff904e763 | diff --git a/lib/copycopter_client/helper.rb b/lib/copycopter_client/helper.rb
index <HASH>..<HASH> 100644
--- a/lib/copycopter_client/helper.rb
+++ b/lib/copycopter_client/helper.rb
@@ -9,7 +9,7 @@ module CopycopterClient
default
end
- result = CopycopterClient.copy_for(scope... | Fix scoping issue with Rails 3. | copycopter_copycopter-ruby-client | train |
c45c49cf7763a0c19fe25238f28d380875c6ea38 | diff --git a/src/camera.js b/src/camera.js
index <HASH>..<HASH> 100644
--- a/src/camera.js
+++ b/src/camera.js
@@ -475,9 +475,8 @@ vgl.camera = function() {
return;
}
- d = d * vec3.distance(m_focalPoint, m_position);
-
if (!dir) {
+ d = d * vec3.distance(m_focalPoint, m_position);
dir... | Do not scale if not computing the delta | OpenGeoscience_vgl | train |
2927a947362f32e4e67bf9764e0d65a120aeb1f1 | diff --git a/Context.js b/Context.js
index <HASH>..<HASH> 100644
--- a/Context.js
+++ b/Context.js
@@ -35,7 +35,6 @@ var MATRIX_PROJECTION_BIT = 1 << 16;
var MATRIX_VIEW_BIT = 1 << 17;
var MATRIX_MODEL_BIT = 1 << 18;
var FRAMEBUFFER_BIT = 1 << 19;
-var BUFFER_BIT = 1 << 20;
var VERTEX_AR... | Context removed BUFFER_BIT | pex-gl_pex-context | train |
3c740da4a5de515e0240b6be8ad32c7f4beaec48 | diff --git a/unit_tests.py b/unit_tests.py
index <HASH>..<HASH> 100644
--- a/unit_tests.py
+++ b/unit_tests.py
@@ -844,13 +844,15 @@ class TableListTests:
else:
label = str(slc_tuple)
slc = slc_tuple
- del compare_list[slc]
- print(label)
- ... | add subTests to make tests more comprehensive | ptmcg_littletable | train |
954dad44a1454d7be95adba108b4ab9398adc909 | diff --git a/src/Symfony/Contracts/Service/ServiceSubscriberTrait.php b/src/Symfony/Contracts/Service/ServiceSubscriberTrait.php
index <HASH>..<HASH> 100644
--- a/src/Symfony/Contracts/Service/ServiceSubscriberTrait.php
+++ b/src/Symfony/Contracts/Service/ServiceSubscriberTrait.php
@@ -22,7 +22,7 @@ use Psr\Container\C... | Fixed incompatibility between ServiceSubscriberTrait and classes with protected $container property | symfony_symfony | train |
a190d9612a17db3a25842d1647017f258c9b6adf | diff --git a/route.go b/route.go
index <HASH>..<HASH> 100644
--- a/route.go
+++ b/route.go
@@ -7,7 +7,8 @@ import (
)
// Signature of function that can be bound to a Route
-type RouteFunction func(*Request, http.ResponseWriter)
+//type RouteFunction func(*Request, http.ResponseWriter)
+type RouteFunction func(*Requ... | use Response wrapper, added docs | emicklei_go-restful | train |
b0486978b4e4839210f996423e4c58ff7b026544 | diff --git a/firenado/test/conf.py b/firenado/test/conf.py
index <HASH>..<HASH> 100644
--- a/firenado/test/conf.py
+++ b/firenado/test/conf.py
@@ -45,6 +45,18 @@ class ApplicationComponentTestCase(unittest.TestCase):
self.assertEquals(firenado.conf.stack[1],
firenado.conf.APP_CONFIG_... | Add app port and pythonpath tests to the conf test.
Refs: #<I> | candango_firenado | train |
8849f398b6ebd4607de63c2f5d1318f44ec1d822 | diff --git a/msrestazure/azure_active_directory.py b/msrestazure/azure_active_directory.py
index <HASH>..<HASH> 100644
--- a/msrestazure/azure_active_directory.py
+++ b/msrestazure/azure_active_directory.py
@@ -641,7 +641,7 @@ class _ImdsTokenProvider(object):
expires_on_datetime = datetime.datetime.fromti... | Change log level (#<I>) | Azure_msrestazure-for-python | train |
8a5569fed0f80ecbe32443acc1dd1da869644c50 | diff --git a/lib/rubocop/cop/style/comment_indentation.rb b/lib/rubocop/cop/style/comment_indentation.rb
index <HASH>..<HASH> 100644
--- a/lib/rubocop/cop/style/comment_indentation.rb
+++ b/lib/rubocop/cop/style/comment_indentation.rb
@@ -51,14 +51,11 @@ module RuboCop
end
def less_indented?(line)
-... | Don't use dynamic regex in CommentIndentation | rubocop-hq_rubocop | train |
a78519071c261eab54d587b609bf76eecc7420b0 | diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index <HASH>..<HASH> 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,6 +1,6 @@
*SVN*
-* Changed the POST parameter processing to use the new QueryStringParser and make the result a indifferent hash [DHH]
+* Changed the POST parameter process... | Result is made indifferent on the way out
git-svn-id: <URL> | rails_rails | train |
3697df3d91d08a593a0bd3c3ff9a7fef85d7dd29 | diff --git a/src/main/java/org/gitlab4j/api/Constants.java b/src/main/java/org/gitlab4j/api/Constants.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/gitlab4j/api/Constants.java
+++ b/src/main/java/org/gitlab4j/api/Constants.java
@@ -526,4 +526,48 @@ public interface Constants {
return (enumHelper... | Added Applications API support (#<I>). | gmessner_gitlab4j-api | train |
67dbd63daeadbe35cf1e0f1d3587dbe41cb4f9a4 | diff --git a/scope.go b/scope.go
index <HASH>..<HASH> 100644
--- a/scope.go
+++ b/scope.go
@@ -5,14 +5,16 @@ package main
//-------------------------------------------------------------------------
type scope struct {
- parent *scope // nil for universe scope
- entities map[string]*decl
+ parent *scope // nil ... | scope: add typealias field to scope struct
typealias map field holds the underlying type of type alias | nsf_gocode | train |
8dfe0d1586e4525860bdbe0b3de86f91878d093e | diff --git a/a10_neutron_lbaas/neutron_ext/db/certificate_db.py b/a10_neutron_lbaas/neutron_ext/db/certificate_db.py
index <HASH>..<HASH> 100644
--- a/a10_neutron_lbaas/neutron_ext/db/certificate_db.py
+++ b/a10_neutron_lbaas/neutron_ext/db/certificate_db.py
@@ -74,7 +74,8 @@ class CertificateVipBindingsNotFoundByCerti... | Cert service fixes
Updated requirements for a<I>-neutronlib <I> | a10networks_a10-neutron-lbaas | train |
d4ea163b0b0f4c659a8977da460faacf08ff805a | diff --git a/agent/consul/stats_fetcher_test.go b/agent/consul/stats_fetcher_test.go
index <HASH>..<HASH> 100644
--- a/agent/consul/stats_fetcher_test.go
+++ b/agent/consul/stats_fetcher_test.go
@@ -7,6 +7,7 @@ import (
"time"
"github.com/hashicorp/consul/agent/metadata"
+ "github.com/hashicorp/consul/sdk/testuti... | Add retries to StatsFetcherTest (#<I>) | hashicorp_consul | train |
df826029ea79e9e17798ff348d821adcaa86c0f8 | diff --git a/fandjango/models.py b/fandjango/models.py
index <HASH>..<HASH> 100644
--- a/fandjango/models.py
+++ b/fandjango/models.py
@@ -42,7 +42,6 @@ class User(models.Model):
first_name = models.CharField(max_length=255, blank=True, null=True)
middle_name = models.CharField(max_length=255, blank=True, nul... | Make User#verified a cached property instead of a database field | jgorset_fandjango | train |
737cadaabce91fd6165789c93bfc6109d0f8edc6 | diff --git a/src/models/room.js b/src/models/room.js
index <HASH>..<HASH> 100644
--- a/src/models/room.js
+++ b/src/models/room.js
@@ -837,6 +837,15 @@ Room.prototype.getAvatarUrl = function(baseUrl, width, height, resizeMethod,
};
/**
+ * Get the mxc avatar url for the room, if one was set.
+ * @return {string} th... | Add a function to get a room's MXC URI
This matches the RoomMember function of the same name. | matrix-org_matrix-js-sdk | train |
f85ac7f88c7d08d999d46bd0a329192e783d3198 | diff --git a/src/composers/shared.list._standard.php b/src/composers/shared.list._standard.php
index <HASH>..<HASH> 100644
--- a/src/composers/shared.list._standard.php
+++ b/src/composers/shared.list._standard.php
@@ -88,18 +88,6 @@ View::composer('decoy::shared.list._standard', function($view) {
// Massage the s... | New relative() helper obviates this code | BKWLD_decoy | train |
704ee09f2bf260257282e401e7b4dec13b66b208 | diff --git a/inc/scripts.php b/inc/scripts.php
index <HASH>..<HASH> 100644
--- a/inc/scripts.php
+++ b/inc/scripts.php
@@ -1,19 +1,23 @@
<?php
+/**
+ * Scripts and stylesheets
+ */
function roots_scripts() {
- wp_enqueue_style('roots_bootstrap_style', '/css/bootstrap.css', false, null);
+ wp_enqueue_style('roots_... | Fix #<I> - Resolve some clean URL issues, re-open #<I> | roots_sage | train |
78b09960c5bfe391140a8187617294e2577baabe | diff --git a/Readme.md b/Readme.md
index <HASH>..<HASH> 100644
--- a/Readme.md
+++ b/Readme.md
@@ -516,6 +516,27 @@
Of course, you're free to structure your app however you like.
+## Running without Connect
+ Some of you may be wondering how to use Escort's routing framework without having to use
+ [Connect]... | Add the ability to run without the Connect framework | ckknight_escort | train |
f62476e1dc8c22ef2e5f873938fab1e3df6b9b30 | diff --git a/mplcursors/_mplcursors.py b/mplcursors/_mplcursors.py
index <HASH>..<HASH> 100644
--- a/mplcursors/_mplcursors.py
+++ b/mplcursors/_mplcursors.py
@@ -2,11 +2,11 @@ from collections.abc import Iterable
from contextlib import suppress
import copy
from functools import partial
+import sys
from types impor... | Don't import pyplot, to avoid forcing the backend. | anntzer_mplcursors | train |
78dc2d780cb3c22ebe6420752fdd6c5f053a31d9 | diff --git a/javacord-api/src/main/java/org/javacord/api/event/interaction/SelectMenuChooseEvent.java b/javacord-api/src/main/java/org/javacord/api/event/interaction/SelectMenuChooseEvent.java
index <HASH>..<HASH> 100644
--- a/javacord-api/src/main/java/org/javacord/api/event/interaction/SelectMenuChooseEvent.java
+++ ... | Add missing superclasses Event and ServerEvent | Javacord_Javacord | train |
5122e0d51f8d392bbeebff27f5a8fbab4bed8ba4 | diff --git a/insights/client/insights_spec.py b/insights/client/insights_spec.py
index <HASH>..<HASH> 100644
--- a/insights/client/insights_spec.py
+++ b/insights/client/insights_spec.py
@@ -47,8 +47,17 @@ class InsightsCommand(InsightsSpec):
# all commands should timeout after a long interval so the client ... | use SIGTERM for rpm and yum commands (#<I>) | RedHatInsights_insights-core | train |
4568a136893bf02c64eba7ba860e0c0eaaf04410 | diff --git a/client.go b/client.go
index <HASH>..<HASH> 100644
--- a/client.go
+++ b/client.go
@@ -566,8 +566,7 @@ func (c *client) Publish(topic string, qos byte, retained bool, payload interfac
DEBUG.Println(CLI, "enter Publish")
switch {
case !c.IsConnected():
- token.err = ErrNotConnected
- token.flowComple... | Use lock around setting error for tokens
#<I> | eclipse_paho.mqtt.golang | train |
9be13783a3515c0b1246d9e2fe8972d9f85b592f | diff --git a/src/Composer/Package/Version/VersionGuesser.php b/src/Composer/Package/Version/VersionGuesser.php
index <HASH>..<HASH> 100644
--- a/src/Composer/Package/Version/VersionGuesser.php
+++ b/src/Composer/Package/Version/VersionGuesser.php
@@ -65,17 +65,17 @@ class VersionGuesser
{
if (function_exi... | Updated VersionGuesser to check if we actually have a version in the returned array (fixes bug originating from f<I>e5 when array was first introduced) - as SVN Versions not being guessed as it would previously stop at Git check.
Fixes #<I> | composer_composer | train |
d2cc919e6a97c97162e7d240b3766343a4e464cd | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -419,10 +419,23 @@ Socket.prototype._onConnect = function () {
// this doesn't actually consume any bytes, because len=0
self.read(0)
})
-
}
/**
+ * The number of characters currently buffered to be written.
+... | move bufferSize getter to match position in `net` docs | feross_chrome-net | train |
e0cd70f834cbae753bdb781ad111486ab9f5b467 | diff --git a/khard/khard.py b/khard/khard.py
index <HASH>..<HASH> 100644
--- a/khard/khard.py
+++ b/khard/khard.py
@@ -400,43 +400,39 @@ def get_special_field(vcard, field):
return vcard.get_last_name_first_name()
elif field == 'phone':
if vcard.phone_numbers:
- phone_dict = vcard.... | Abstract email and phone number formatting into a function | scheibler_khard | train |
09bbdd52eaf84104de9ee87609ad6c90afcf8318 | diff --git a/svglib/svglib.py b/svglib/svglib.py
index <HASH>..<HASH> 100755
--- a/svglib/svglib.py
+++ b/svglib/svglib.py
@@ -1039,7 +1039,7 @@ class Svg2RlgShapeConverter(SvgShapeConverter):
("fill-opacity", "fillOpacity", "convertOpacity", 1),
("fill-rule", "_fillRule", "convertFillRule", "... | Fixed default stroke width as per SVG specs (from 0 to 1) | deeplook_svglib | train |
78373e723cd7539e5a3db4b0d9eb398f30918ae7 | diff --git a/src/Agent/AgentServiceRegistration.php b/src/Agent/AgentServiceRegistration.php
index <HASH>..<HASH> 100644
--- a/src/Agent/AgentServiceRegistration.php
+++ b/src/Agent/AgentServiceRegistration.php
@@ -37,9 +37,9 @@ class AgentServiceRegistration extends AbstractModel {
public $Address = '';
/** ... | Bugfix and tests
- Was using incorrect Check model with "AgentServiceRegistration"
object. Will need to check rest of check objects.
- More tests | dcarbone_php-consul-api | train |
32336c8b09324af1aa0465792bf5d57c93e69a0b | diff --git a/sharding-jdbc/sharding-jdbc-core/src/main/java/io/shardingsphere/shardingjdbc/jdbc/core/datasource/MasterSlaveDataSource.java b/sharding-jdbc/sharding-jdbc-core/src/main/java/io/shardingsphere/shardingjdbc/jdbc/core/datasource/MasterSlaveDataSource.java
index <HASH>..<HASH> 100644
--- a/sharding-jdbc/shard... | delete closeOriginalDataSources() | apache_incubator-shardingsphere | train |
511efa6d33b46e1d54bd1c0e9143f95c33b72869 | diff --git a/spec/unpoly/radio_spec.js.coffee b/spec/unpoly/radio_spec.js.coffee
index <HASH>..<HASH> 100644
--- a/spec/unpoly/radio_spec.js.coffee
+++ b/spec/unpoly/radio_spec.js.coffee
@@ -67,6 +67,44 @@ describe 'up.radio', ->
next.after interval, ->
expect(reloadSpy).not.toHaveBeenCalled()
+ ... | Stop polling when the fragment is aborted | unpoly_unpoly | train |
f9a5177abbe09ef6ff704034a5f3fc9713612ddc | diff --git a/bases.py b/bases.py
index <HASH>..<HASH> 100644
--- a/bases.py
+++ b/bases.py
@@ -387,7 +387,7 @@ class NodeNG(object):
return '%s(%s)' % (self.__class__.__name__, self._repr_name())
def __repr__(self):
- return '<%s(%s) l.%s [%s] at Ox%x>' % (self.__class__.__name__,
+ return... | Fix repr for ast nodes | PyCQA_astroid | train |
a88cd13c3f7334722acadefdd53904c4156d85fc | diff --git a/p2p/net/reuseport/reuseport.go b/p2p/net/reuseport/reuseport.go
index <HASH>..<HASH> 100644
--- a/p2p/net/reuseport/reuseport.go
+++ b/p2p/net/reuseport/reuseport.go
@@ -8,10 +8,10 @@ import (
reuseport "github.com/libp2p/go-reuseport"
)
-// ReuseErrShouldRetry diagnoses whether to retry after a reuse... | unexport ReuseErrShouldRetry
There's no reason a consumer of this package would use this error as *we* retry
internally. Exporting it will just confuse users. | libp2p_go-libp2p | train |
8da73831539d741785a27a9f9057e09487066ea8 | diff --git a/scss/__init__.py b/scss/__init__.py
index <HASH>..<HASH> 100644
--- a/scss/__init__.py
+++ b/scss/__init__.py
@@ -377,7 +377,7 @@ class Scss(object):
from scss.rule import Namespace
namespace = Namespace(variables=self.scss_vars, functions=self._library)
- children = deque()
+ ... | Fiddling with parse_children API. | Kronuz_pyScss | train |
31ff8c6b9a08d1168502e423bdd3fdbe4f2f729b | diff --git a/staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go b/staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go
index <HASH>..<HASH> 100644
--- a/staging/src/k8s.io/apiserver/pkg/storage/storagebackend/factory/etcd3.go
+++ b/staging/src/k8s.io/apiserver/pkg/storage/stora... | etcd client: add keepalive | kubernetes_kubernetes | train |
312952f716ecdfc6535254db78e85d045c517218 | diff --git a/jetserver/src/main/java/org/menacheri/service/impl/LookupService.java b/jetserver/src/main/java/org/menacheri/service/impl/LookupService.java
index <HASH>..<HASH> 100644
--- a/jetserver/src/main/java/org/menacheri/service/impl/LookupService.java
+++ b/jetserver/src/main/java/org/menacheri/service/impl/Look... | GameRoomMap is now a final variable. | menacher_java-game-server | train |
f4e980577d05855acbbf48c30dbcf0af8bc26be2 | diff --git a/bugzilla/_session.py b/bugzilla/_session.py
index <HASH>..<HASH> 100644
--- a/bugzilla/_session.py
+++ b/bugzilla/_session.py
@@ -4,6 +4,8 @@
from logging import getLogger
import os
+import sys
+
import requests
from ._compatimports import urlparse
@@ -97,6 +99,7 @@ class _BugzillaSession(object):
... | session: Scrape API key out of requests exceptions
Via the params dictionary this can leak into requests errors, depending
on the way it fails.
Perform a straight string replacement on the exception string and
re-raise the exception
<URL> | python-bugzilla_python-bugzilla | train |
92f1b8af08f59d457d693d9deb2633dbf399ac26 | diff --git a/xprocspec-runner/src/main/java/org/daisy/maven/xproc/xprocspec/XProcSpecRunner.java b/xprocspec-runner/src/main/java/org/daisy/maven/xproc/xprocspec/XProcSpecRunner.java
index <HASH>..<HASH> 100644
--- a/xprocspec-runner/src/main/java/org/daisy/maven/xproc/xprocspec/XProcSpecRunner.java
+++ b/xprocspec-run... | xprocspec-runner: Don't treat URL objects as unencoded | daisy_xproc-maven-plugin | train |
c862327c799689c2847a79e3c5252074b9e8f74a | diff --git a/mautrix/__init__.py b/mautrix/__init__.py
index <HASH>..<HASH> 100644
--- a/mautrix/__init__.py
+++ b/mautrix/__init__.py
@@ -1,3 +1,3 @@
-__version__ = "0.5.3"
+__version__ = "0.5.4"
__author__ = "Tulir Asokan <tulir@maunium.net>"
__all__ = ["api", "appservice", "bridge", "client", "errors", "util", "ty... | Fix notification disabler breaking when not using double puppeting | tulir_mautrix-python | train |
b70dd35450d85b18a7bad91c64aa3a96d9dbc354 | diff --git a/app/app.go b/app/app.go
index <HASH>..<HASH> 100644
--- a/app/app.go
+++ b/app/app.go
@@ -122,23 +122,38 @@ type Applog struct {
// field in the database. This method is already called by a connection
// middleware on requests with :app or :appname params that have side-effects.
func AcquireApplication... | app: add func that keeps trying to acquire an app lock | tsuru_tsuru | train |
d47e926e81cd16d251711d38da1d5df473bc67c0 | diff --git a/lib/Doctrine/DBAL/DBALException.php b/lib/Doctrine/DBAL/DBALException.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/DBAL/DBALException.php
+++ b/lib/Doctrine/DBAL/DBALException.php
@@ -27,6 +27,7 @@ class DBALException extends \Exception
const ERROR_FOREIGN_KEY_CONSTRAINT = 4;
const ERROR_NO... | [DBAL-<I>] Implement and detect non unique field name exception for sqlite | doctrine_dbal | train |
32669d8b513c28c3968bb75c1b260d58ca39cdad | diff --git a/lib/right_agent/command/command_serializer.rb b/lib/right_agent/command/command_serializer.rb
index <HASH>..<HASH> 100644
--- a/lib/right_agent/command/command_serializer.rb
+++ b/lib/right_agent/command/command_serializer.rb
@@ -37,16 +37,24 @@ module RightScale
# === Return
# data(String):: Cor... | acu<I> Respond to feedback and add in spec test | rightscale_right_agent | train |
337b08da9d9c95ce1ff9bc6716861fdc494d7d11 | diff --git a/lib/compilers.js b/lib/compilers.js
index <HASH>..<HASH> 100644
--- a/lib/compilers.js
+++ b/lib/compilers.js
@@ -3,23 +3,37 @@
var nanomatch = require('nanomatch');
var extglob = require('extglob');
-module.exports = function(micromatch) {
- var compilers = micromatch.compiler.compilers;
+module.expo... | edit nanomatch star pattern
with custom pattern | micromatch_micromatch | train |
53a2e17c74d71f2a6d0982b7a7a7470539f62373 | diff --git a/lib/mongodb/cursor.js b/lib/mongodb/cursor.js
index <HASH>..<HASH> 100644
--- a/lib/mongodb/cursor.js
+++ b/lib/mongodb/cursor.js
@@ -614,10 +614,10 @@ Cursor.prototype.close = function(callback) {
if(this.cursorId instanceof self.db.bson_serializer.Long && this.cursorId.greaterThan(self.db.bson_seriali... | fixed typo (again) in killCursorCommandHandler name | mongodb_node-mongodb-native | train |
194128049e1b564ad4c0fbd29f439f56dd2df6a2 | diff --git a/src/main/java/org/inferred/freebuilder/processor/property/PropertyCodeGenerator.java b/src/main/java/org/inferred/freebuilder/processor/property/PropertyCodeGenerator.java
index <HASH>..<HASH> 100644
--- a/src/main/java/org/inferred/freebuilder/processor/property/PropertyCodeGenerator.java
+++ b/src/main/j... | Fix stale JavaDoc
create hasn't returned an Optional.absent since we switched to Java 8 optionals on <I> Jan <I> (<I>a6c<I>c2 - "Replace old Guava code with Java 8 equivalents" - merged as part of PR #<I> and released in <I>) | inferred_FreeBuilder | train |
5e5f92c8f7b0c208c195c1503c6149b2f2840b72 | diff --git a/lib/format/format.js b/lib/format/format.js
index <HASH>..<HASH> 100644
--- a/lib/format/format.js
+++ b/lib/format/format.js
@@ -186,13 +186,30 @@ ${value}
}
if (markdown) {
// TODO: cache output?
- if (formattedValue.match(/^\*+$/) || formattedValue.match(/^#+$/)) {
- return formattedV... | Ensure that markdown does not process redacted values such as ***** or ###### | ministryofjustice_fb-runner-node | train |
e938b77c5269ecc3395363f69e7ec3c45e057958 | diff --git a/hrp/internal/builtin/utils.go b/hrp/internal/builtin/utils.go
index <HASH>..<HASH> 100644
--- a/hrp/internal/builtin/utils.go
+++ b/hrp/internal/builtin/utils.go
@@ -28,8 +28,19 @@ func Dump2JSON(data interface{}, path string) error {
return err
}
log.Info().Str("path", path).Msg("dump data to json"... | bugfix: avoid to escape html | HttpRunner_HttpRunner | train |
9864f5aab0ad7900e9cb1b3e069fffcac949f169 | diff --git a/web/src/main/webapp/resources/js/contrastTooltip.js b/web/src/main/webapp/resources/js/contrastTooltip.js
index <HASH>..<HASH> 100644
--- a/web/src/main/webapp/resources/js/contrastTooltip.js
+++ b/web/src/main/webapp/resources/js/contrastTooltip.js
@@ -12,16 +12,16 @@ var ContrastTooltip = (function(React... | Properly invoke tooltips with ReactDOM after upgrade to <I> | ebi-gene-expression-group_atlas | train |
b924e19eb6ad1d81741862a2da13f115254eca83 | diff --git a/lib/hako/schedulers/ecs.rb b/lib/hako/schedulers/ecs.rb
index <HASH>..<HASH> 100644
--- a/lib/hako/schedulers/ecs.rb
+++ b/lib/hako/schedulers/ecs.rb
@@ -30,7 +30,7 @@ module Hako
'S3_CONFIG_KEY' => front.config.s3.key(@app_id),
}
front_port = determine_front_port(front)
- ... | port_mapping isn't used in register_task_definition | eagletmt_hako | train |
5c01fd3ce4a4e031c725e9e7bbc1c8dce8e85771 | diff --git a/lib/Doctrine/ODM/PHPCR/ReferenceManyCollection.php b/lib/Doctrine/ODM/PHPCR/ReferenceManyCollection.php
index <HASH>..<HASH> 100644
--- a/lib/Doctrine/ODM/PHPCR/ReferenceManyCollection.php
+++ b/lib/Doctrine/ODM/PHPCR/ReferenceManyCollection.php
@@ -80,8 +80,8 @@ class ReferenceManyCollection extends Persi... | getting the referenced nodes from a property no longer can index the target by uuid | doctrine_phpcr-odm | train |
6c6851ff7a99fada6559230cbc7b436bb9d0b0f3 | diff --git a/gcs/requests.go b/gcs/requests.go
index <HASH>..<HASH> 100644
--- a/gcs/requests.go
+++ b/gcs/requests.go
@@ -71,11 +71,19 @@ type ReadObjectRequest struct {
// The generation of the object to read. Zero means the latest generation.
Generation int64
- // A [start, limit) range of the object to read. ... | Documented semantics and requirements forced on us by HTTP <I>. | jacobsa_gcloud | train |
595a1f298353fc034a1f7b02384d295f42c21351 | diff --git a/src/components/timeslider/timeslider.js b/src/components/timeslider/timeslider.js
index <HASH>..<HASH> 100644
--- a/src/components/timeslider/timeslider.js
+++ b/src/components/timeslider/timeslider.js
@@ -233,23 +233,12 @@ var TimeSlider = Component.extend({
if(hook._important) hook.on('change:whic... | Attempt to fix issues with startselected, endselected on tools page | vizabi_vizabi | train |
f48a36301153ffecce7e98c8fd58a7c6c960697e | diff --git a/salt/modules/ansiblegate.py b/salt/modules/ansiblegate.py
index <HASH>..<HASH> 100644
--- a/salt/modules/ansiblegate.py
+++ b/salt/modules/ansiblegate.py
@@ -109,6 +109,29 @@ class AnsibleModuleResolver(object):
_resolver = None
+
+def _set_callables(modules):
+ '''
+ Set all Ansible modules cal... | Set dynamically all possible Ansible callers as functions | saltstack_salt | train |
f50e063db8dc7c2e23c6ca97a2d6b734b95ebbb0 | diff --git a/bqplot/interacts.py b/bqplot/interacts.py
index <HASH>..<HASH> 100644
--- a/bqplot/interacts.py
+++ b/bqplot/interacts.py
@@ -41,7 +41,7 @@ from ipywidgets import Widget, Color, widget_serialization
from .scales import Scale, DateScale
from .traits import Date, NdArray
-from .marks import Lines, Scatte... | enabling lasso sel for MarkerLines mark as well | bloomberg_bqplot | train |
79ce5b02bd31402796ae374fc31a58e869c315a8 | diff --git a/fcn/datasets/segmentation_dataset.py b/fcn/datasets/segmentation_dataset.py
index <HASH>..<HASH> 100644
--- a/fcn/datasets/segmentation_dataset.py
+++ b/fcn/datasets/segmentation_dataset.py
@@ -36,14 +36,16 @@ class SegmentationDatasetBase(chainer.dataset.DatasetMixin):
return label
def img... | Copy before image/datum conversion in dataset | wkentaro_fcn | train |
597cf66fa3b5f43c69b85f2cb3f6d9508c22610d | diff --git a/bin/rez_release_git.py b/bin/rez_release_git.py
index <HASH>..<HASH> 100644
--- a/bin/rez_release_git.py
+++ b/bin/rez_release_git.py
@@ -229,6 +229,9 @@ def release_from_path(path, commit_message, njobs, build_time, allow_not_latest)
# git checkout-index it
try:
repo.git.checkout_index(a=True, p... | Added support for handling git submodules during the checkout-index phase in rez-release-git. This involves recursively running checkout-index for each submodule and its submodules and so forth. | nerdvegas_rez | train |
bd67615d0566d176201f3505743607163c1f9ce6 | diff --git a/client/src/main/java/io/pravega/client/stream/EventStreamWriter.java b/client/src/main/java/io/pravega/client/stream/EventStreamWriter.java
index <HASH>..<HASH> 100644
--- a/client/src/main/java/io/pravega/client/stream/EventStreamWriter.java
+++ b/client/src/main/java/io/pravega/client/stream/EventStreamW... | Issue <I>: Improve EventWriter javadocs. (#<I>)
Improve EventWriter javadocs in case of connectivity failures. | pravega_pravega | train |
dab316e39ac8cb459fd0cbbcba4b3595520f9ccf | diff --git a/liquibase-core/src/main/java/liquibase/database/AbstractJdbcDatabase.java b/liquibase-core/src/main/java/liquibase/database/AbstractJdbcDatabase.java
index <HASH>..<HASH> 100644
--- a/liquibase-core/src/main/java/liquibase/database/AbstractJdbcDatabase.java
+++ b/liquibase-core/src/main/java/liquibase/data... | Handle object names that end up with spaces around them | liquibase_liquibase | train |
0b0a0480b2eae9f7811339b1e0e7b9baf3025147 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100644
--- a/setup.py
+++ b/setup.py
@@ -1,6 +1,6 @@
from setuptools import setup
-url = ""
+url = "https://github.com/JIC-CSB/dtool-cli"
version = "0.1.0"
readme = open('README.rst').read() | Add url to setup.py | jic-dtool_dtool-cli | train |
d63248931cea504b1b24b4d7e17d6b72397c9ed7 | diff --git a/hazelcast/src/main/java/com/hazelcast/replicatedmap/impl/operation/PutAllOperation.java b/hazelcast/src/main/java/com/hazelcast/replicatedmap/impl/operation/PutAllOperation.java
index <HASH>..<HASH> 100644
--- a/hazelcast/src/main/java/com/hazelcast/replicatedmap/impl/operation/PutAllOperation.java
+++ b/h... | fixed broken replication logic in putAll operation | hazelcast_hazelcast | train |
0f1f24c7dc83bbbd15162e7a5ba0f09947e49bf3 | diff --git a/src/main/java/net/ravendb/client/documents/changes/DatabaseChanges.java b/src/main/java/net/ravendb/client/documents/changes/DatabaseChanges.java
index <HASH>..<HASH> 100644
--- a/src/main/java/net/ravendb/client/documents/changes/DatabaseChanges.java
+++ b/src/main/java/net/ravendb/client/documents/change... | RDBC-<I> [{"TopologyChange":true}] is poison pill for Java client | ravendb_ravendb-jvm-client | train |
f447c86880f5533698b33e6acb2f189a61e69983 | diff --git a/src/sap.f/src/sap/f/AvatarGroup.js b/src/sap.f/src/sap/f/AvatarGroup.js
index <HASH>..<HASH> 100644
--- a/src/sap.f/src/sap/f/AvatarGroup.js
+++ b/src/sap.f/src/sap/f/AvatarGroup.js
@@ -488,8 +488,8 @@ sap.ui.define([
/**
* Returns the net width of each <code>Avatar</code>
*
- * @param {int} iAvat... | [INTERNAL] sap.f.AvatarGroup: Updated to use sap.m.Avatar
The sap.f.Avatar control has been deprecated as of version <I>. This
change makes sap.f.AvatarGroup use sap.m.Avatar internally instead.
JIRA: BGSOFUIPIRIN-<I>
Change-Id: Ib4ad4f<I>cfaf5efd3ba7d<I>c<I>cbdeccca | SAP_openui5 | train |
58892fad9280eedc00bddecbb0d323b562868f56 | diff --git a/src/Codeception/Module/REST.php b/src/Codeception/Module/REST.php
index <HASH>..<HASH> 100644
--- a/src/Codeception/Module/REST.php
+++ b/src/Codeception/Module/REST.php
@@ -77,7 +77,7 @@ class REST extends \Codeception\Module
if (!$this->hasModule('PhpBrowser')) {
thr... | phpbrowser no longer has a session method. Get client from public property. | Codeception_Codeception | train |
df5655ed5bce1067bf0d0985ac7a33460d56bff0 | diff --git a/src/Container/src/AbstractContainer.php b/src/Container/src/AbstractContainer.php
index <HASH>..<HASH> 100644
--- a/src/Container/src/AbstractContainer.php
+++ b/src/Container/src/AbstractContainer.php
@@ -100,21 +100,9 @@ abstract class AbstractContainer implements ContainerContract
*/
public f... | AbstractContainer::get simplified. | venta_framework | train |
c4e370589a554c873b353c83e441f8e17ae62e6c | diff --git a/Server/Python/src/dbs/business/DBSDataset.py b/Server/Python/src/dbs/business/DBSDataset.py
index <HASH>..<HASH> 100644
--- a/Server/Python/src/dbs/business/DBSDataset.py
+++ b/Server/Python/src/dbs/business/DBSDataset.py
@@ -133,8 +133,7 @@ class DBSDataset:
dbsExceptionHandler('dbsException-... | change listDatsets API to parse the wildcarded dataset by server. | dmwm_DBS | train |
32d35be39cdaf52d8cf4d3105a52e3d91ac48dee | diff --git a/src/transition.js b/src/transition.js
index <HASH>..<HASH> 100644
--- a/src/transition.js
+++ b/src/transition.js
@@ -40,8 +40,12 @@ function $TransitionProvider() {
// Return a registration function of the requested type.
function registerEventHook(eventType) {
- return function(matchObject, ca... | feat($transition): Added priority sorting of event handlers | angular-ui_ui-router | train |
e4c6eec2114d2d95e48762dc8099b364e0a4e23c | diff --git a/tornado/web.py b/tornado/web.py
index <HASH>..<HASH> 100644
--- a/tornado/web.py
+++ b/tornado/web.py
@@ -254,7 +254,8 @@ class RequestHandler(object):
if not value: return None
parts = value.split("|")
if len(parts) != 3: return None
- if self._cookie_signature(parts[0], ... | Use time indepdent compare for secure cookie. | tornadoweb_tornado | train |
bf6461fed0a341162e04248ff1c0ebf65136ca49 | diff --git a/src/CurrenciesServiceProvider.php b/src/CurrenciesServiceProvider.php
index <HASH>..<HASH> 100644
--- a/src/CurrenciesServiceProvider.php
+++ b/src/CurrenciesServiceProvider.php
@@ -10,7 +10,7 @@ class CurrenciesServiceProvider extends ServiceProvider
public function boot()
{
if (! class... | Apply fixes from StyleCI (#<I>) | makeabledk_laravel-currencies | train |
c63213dce271c3b0f5c113caaf66daf74294f590 | diff --git a/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java b/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java
index <HASH>..<HASH> 100644
--- a/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java
+++ b/lib/src/main/java/com/github/kevinsawicki/http/HttpRequest.java
@@ -921,6... | Add helpers to get response headers as long date and int | kevinsawicki_http-request | train |
baf92dd481c9f19400db1b9dafb4a3220d331c19 | diff --git a/core/Version.php b/core/Version.php
index <HASH>..<HASH> 100644
--- a/core/Version.php
+++ b/core/Version.php
@@ -21,5 +21,5 @@ final class Version
* The current Piwik version.
* @var string
*/
- const VERSION = '2.5.1-b1';
+ const VERSION = '2.6.0-b1';
} | can't be bothered to cherry pick so we'll release <I> earlier | matomo-org_matomo | train |
31dedddac2a82af3c061779da749f0826930618d | diff --git a/src/Billable.php b/src/Billable.php
index <HASH>..<HASH> 100644
--- a/src/Billable.php
+++ b/src/Billable.php
@@ -797,13 +797,13 @@ trait Billable
}
/**
- * Get the tax percentage to apply to the subscription.
+ * Get the tax rates to apply to the subscription.
*
- * @return i... | Support default TaxRates for Subscriptions | laravel_cashier | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.