hash
stringlengths
40
40
diff
stringlengths
131
26.7k
message
stringlengths
7
694
project
stringlengths
5
67
split
stringclasses
1 value
diff_languages
stringlengths
2
24
cd8e6883347eb0585d5fee1ca7b2c99e7a1bee27
diff --git a/agrona/src/main/java/org/agrona/collections/IntHashSet.java b/agrona/src/main/java/org/agrona/collections/IntHashSet.java index <HASH>..<HASH> 100644 --- a/agrona/src/main/java/org/agrona/collections/IntHashSet.java +++ b/agrona/src/main/java/org/agrona/collections/IntHashSet.java @@ -471,6 +471,7 @@ publi...
[Java] Copy the containsMissingValue property for IntHashSet.copy().
real-logic_agrona
train
java
bf79be3fb54c626b40eacb5ca1c6cc9e07b80a93
diff --git a/blockstack/atlas.py b/blockstack/atlas.py index <HASH>..<HASH> 100644 --- a/blockstack/atlas.py +++ b/blockstack/atlas.py @@ -70,7 +70,7 @@ PEER_CRAWL_NEIGHBOR_WORK_INTERVAL = 300 # minimum amount of time (seconds) t PEER_HEALTH_NEIGHBOR_WORK_INTERVAL = 1 # minimum amount of time (seconds) that m...
retry storage every 2 hours, not <I>
blockstack_blockstack-core
train
py
eab19baba53cb30cba5f79185e1919af238a73dd
diff --git a/astroplan/scheduling.py b/astroplan/scheduling.py index <HASH>..<HASH> 100644 --- a/astroplan/scheduling.py +++ b/astroplan/scheduling.py @@ -552,11 +552,8 @@ class SequentialScheduler(Scheduler): times = current_time + transition_time + b._duration_offsets # make sure i...
more consistent syntax and fixing numpy<I> issue
astropy_astroplan
train
py
db60bed24ca47e117a7130b9e6d9a91f57f1bd29
diff --git a/salt/beacons/avahi_announce.py b/salt/beacons/avahi_announce.py index <HASH>..<HASH> 100644 --- a/salt/beacons/avahi_announce.py +++ b/salt/beacons/avahi_announce.py @@ -32,7 +32,7 @@ try: GROUP = dbus.Interface(BUS.get_object(avahi.DBUS_NAME, SERVER.EntryGroupNew()), avahi...
Add NameError to exception in avahi_announce beacon Fixes #<I> If you have dbus installed, but not avahi, you will get a NameError in the dbus.Interface call. We need to catch this situation and not stacktrace when the beacon gets loaded.
saltstack_salt
train
py
3883e7274156b64e5d48fe38af64b0664232a37e
diff --git a/PyMediaRSS2Gen.py b/PyMediaRSS2Gen.py index <HASH>..<HASH> 100644 --- a/PyMediaRSS2Gen.py +++ b/PyMediaRSS2Gen.py @@ -200,7 +200,7 @@ class MediaRSSItem(PyRSS2Gen.RSSItem, object): and not self.media_peerLink and not self.media_location ): - raise TypeError( +...
Change exception class to better reflect the error type.
wedi_PyMediaRSS2Gen
train
py
8031b81ec413983ac85067e5944022467f4cb5e8
diff --git a/sigh/lib/sigh/version.rb b/sigh/lib/sigh/version.rb index <HASH>..<HASH> 100644 --- a/sigh/lib/sigh/version.rb +++ b/sigh/lib/sigh/version.rb @@ -1,3 +1,3 @@ module Sigh - VERSION = "1.11.2" + VERSION = "1.12.0" end
Bump sign version (#<I>)
fastlane_fastlane
train
rb
7cd2d914e771cce56cc02176c31330c844dfef78
diff --git a/src/shared/js/ch.Viewport.js b/src/shared/js/ch.Viewport.js index <HASH>..<HASH> 100644 --- a/src/shared/js/ch.Viewport.js +++ b/src/shared/js/ch.Viewport.js @@ -100,7 +100,7 @@ * @name ch.Viewport#top * @type Number */ - this.top = this.$el.scrollTop(); + this.top = ch.util.getScrollTop(); ...
GH-<I> Implement ch.util.getScrollTop and Left into Viewport
mercadolibre_chico
train
js
ec39255a4404aab5bef2f608ba1f7efaa271b8f6
diff --git a/server-coreless/src/main/java/org/openqa/selenium/server/log/LoggingManager.java b/server-coreless/src/main/java/org/openqa/selenium/server/log/LoggingManager.java index <HASH>..<HASH> 100644 --- a/server-coreless/src/main/java/org/openqa/selenium/server/log/LoggingManager.java +++ b/server-coreless/src/ma...
Added to resolve SRC-<I>. Checks for null before passing the argument to setFormatter, which throws an NPE on a null argument. This bug and fix were investigated by Daniel Martin at Google. r<I>
SeleniumHQ_selenium
train
java
e4e729c57d257498f3300475fc5f66bb3145bcb1
diff --git a/harpoon/imager.py b/harpoon/imager.py index <HASH>..<HASH> 100644 --- a/harpoon/imager.py +++ b/harpoon/imager.py @@ -565,26 +565,6 @@ class Image(object): config = MergedOptions.using(self.configuration, {"this": {"name": self.name, "path": path}}) return MergedOptionStringFormatter(conf...
Don't need formatted_list anymore
delfick_harpoon
train
py
f3a97ebf4a67d1d436bd1fed614b1bb0fcf407b7
diff --git a/commands_test.go b/commands_test.go index <HASH>..<HASH> 100644 --- a/commands_test.go +++ b/commands_test.go @@ -109,6 +109,10 @@ func testCommands(t *testing.T, c *cli.Context, commands []cli.Command, prefix s // the agent command is blocking continue } + if cmd.Name == "configure" && prefix ...
Do not overwrite local manifest in tests by calling jsonapi configure, Fixes #<I> (#<I>)
gopasspw_gopass
train
go
fa2e78dab1fa9f3efcfcac6cb2eb308f77349b10
diff --git a/bin/scout-server.js b/bin/scout-server.js index <HASH>..<HASH> 100755 --- a/bin/scout-server.js +++ b/bin/scout-server.js @@ -1,4 +1,7 @@ #!/usr/bin/env node +if (!process.env.NODE_ENV) { + process.env.NODE_ENV = 'production'; +} /** * @todo (imlucas) Figure out how to make nodemon or another
:art: default NODE_ENV to production
mongodb-js_scope-server
train
js
1c10ad855881494329eae051d8149622f066a184
diff --git a/test.py b/test.py index <HASH>..<HASH> 100755 --- a/test.py +++ b/test.py @@ -161,6 +161,7 @@ def main(): filetiles = fin.read() filetiles = filetiles.replace(',',' ').replace('\n',' ').replace('\r',' ') filetiles = filetiles.split(' ') + filetiles = [x for x in filetiles if len(x...
Don't include blank tiles caused by new lines in testing merge
r-barnes_richdem
train
py
2f463b4212b0cbc492d9c9ff9ec578bea2e674e9
diff --git a/delphi/icm_api/icm_api_skeleton_generator.py b/delphi/icm_api/icm_api_skeleton_generator.py index <HASH>..<HASH> 100644 --- a/delphi/icm_api/icm_api_skeleton_generator.py +++ b/delphi/icm_api/icm_api_skeleton_generator.py @@ -231,6 +231,12 @@ class DatabaseModel(object): " model_id = db...
Modified icm api skeleton generator to implement ForeignKey for Evidence objects that links them to CausalRelationship objects
ml4ai_delphi
train
py
1a588d0115a0a16db74eb1d601c1be497fa28df0
diff --git a/src/prepare.js b/src/prepare.js index <HASH>..<HASH> 100644 --- a/src/prepare.js +++ b/src/prepare.js @@ -58,7 +58,6 @@ module.exports = function prepare(platformList, callback) { } var xml = cordova_util.projectConfig(projectRoot); - var cfg = new cordova_util.config_parser(xml); var o...
[CB-<I>] Read config.xml after "before prepare" hooks being executed.
apache_cordova-cli
train
js
0fbab572b8de09dc97193b2b606a883d25b76ae2
diff --git a/holoviews/plotting/plot.py b/holoviews/plotting/plot.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/plot.py +++ b/holoviews/plotting/plot.py @@ -199,7 +199,8 @@ class DimensionedPlot(Plot): comm = None if self.dynamic or self.renderer.widget_mode == 'live': - self.co...
Ensured Plot.comms is set
pyviz_holoviews
train
py
97852af00ee159e154d41f34871813250d43f4ae
diff --git a/js/src/mesh.js b/js/src/mesh.js index <HASH>..<HASH> 100644 --- a/js/src/mesh.js +++ b/js/src/mesh.js @@ -67,13 +67,15 @@ var MeshView = widgets.WidgetView.extend( { this.textures = null this.texture_video = document.createElement('video') texture.stream.then(_.bind(f...
fix: was using deprecated api for mediastream
maartenbreddels_ipyvolume
train
js
0667bfbfa07c1c7d91d6615027c5e4439a1cb22c
diff --git a/spec/addressable/uri_spec.rb b/spec/addressable/uri_spec.rb index <HASH>..<HASH> 100644 --- a/spec/addressable/uri_spec.rb +++ b/spec/addressable/uri_spec.rb @@ -326,9 +326,7 @@ describe Addressable::URI, "when frozen" do it "should not allow destructive operations" do (lambda do @uri.normal...
Error varies by Ruby version.
sporkmonger_addressable
train
rb
761e071280d015ce7065383ea4a31c044c16076f
diff --git a/github-updater.php b/github-updater.php index <HASH>..<HASH> 100644 --- a/github-updater.php +++ b/github-updater.php @@ -12,7 +12,7 @@ * Plugin Name: GitHub Updater * Plugin URI: https://github.com/afragen/github-updater * Description: A plugin to automatically update GitHub, Bitb...
move to load GHU_Upgrade only on pages GHU runs fix for @mlteal
afragen_github-updater
train
php,php
a49c9c92b4ab92c912ddea16033d37734770b3a6
diff --git a/app/models/socializer/activity_object.rb b/app/models/socializer/activity_object.rb index <HASH>..<HASH> 100644 --- a/app/models/socializer/activity_object.rb +++ b/app/models/socializer/activity_object.rb @@ -24,15 +24,15 @@ module Socializer has_many :memberships, -> { where active: true }, foreign_...
Prefer single-quoted strings when you don't need string interpolation or special symbols.
socializer_socializer
train
rb
373c8bd8527d3c61e4ea5c46d7850774e9e19f29
diff --git a/src/main/java/org/lmdbjava/Library.java b/src/main/java/org/lmdbjava/Library.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/lmdbjava/Library.java +++ b/src/main/java/org/lmdbjava/Library.java @@ -23,13 +23,13 @@ package org.lmdbjava; import edu.umd.cs.findbugs.annotations.SuppressFBWarnings; im...
Use Files.newOutputStream(..) as recommended by PMD
lmdbjava_lmdbjava
train
java
d95ef51aa04bf680649faf2fd11ff524982d6e2c
diff --git a/src/js/render.js b/src/js/render.js index <HASH>..<HASH> 100644 --- a/src/js/render.js +++ b/src/js/render.js @@ -366,14 +366,15 @@ output: function () { var options = this.options, - $this = this.$element; + $this = this.$element, + data = this.getData(); ...
Add argument to "change" event handler
fengyuanchen_cropper
train
js
644814deda75f75bb057c81671bd00a60c9a00f0
diff --git a/lib/asyncMainWrap.js b/lib/asyncMainWrap.js index <HASH>..<HASH> 100644 --- a/lib/asyncMainWrap.js +++ b/lib/asyncMainWrap.js @@ -1,8 +1,10 @@ function exitWithError(err) { - if (!process.env.DEBUG && err.customOutput) { + if (process.env.DEBUG) { + console.error(err); + } else if (err.customOutput)...
Only print err.stack by default [BREAKING] Since introducing the processError option and the customOutput property on error objects we can drop the verbosity from the default output. Instead of logging the err object itself, we now just print the contents of `err.stack`. Setting the DEBUG environment variable will t...
gustavnikolaj_async-main-wrap
train
js
3db34045ea04e68492eab372c8883164ee7cc38c
diff --git a/lib/toiler/actor/fetcher.rb b/lib/toiler/actor/fetcher.rb index <HASH>..<HASH> 100644 --- a/lib/toiler/actor/fetcher.rb +++ b/lib/toiler/actor/fetcher.rb @@ -22,7 +22,7 @@ module Toiler end def default_executor - Concurrent.global_fast_executor + Concurrent.global_io_executor ...
actors should use global io executor
mercadolibre_toiler
train
rb
a3338f56d835c4b58db13a29e0c275d22cf3eeb0
diff --git a/jinja2_highlight/highlight.py b/jinja2_highlight/highlight.py index <HASH>..<HASH> 100644 --- a/jinja2_highlight/highlight.py +++ b/jinja2_highlight/highlight.py @@ -26,7 +26,7 @@ class HighlightExtension(Extension): tags = set(['highlight']) def parse(self, parser): - lineno = parser.st...
Use the buildint next() function. Closes #3.
tlatsas_jinja2-highlight
train
py
fcfe943d39d795536827575da4e5da5c68ac2265
diff --git a/src/main/java/org/primefaces/component/api/UICalendar.java b/src/main/java/org/primefaces/component/api/UICalendar.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/primefaces/component/api/UICalendar.java +++ b/src/main/java/org/primefaces/component/api/UICalendar.java @@ -290,10 +290,16 @@ public ...
#<I>: DatePicker: smart behaviour for showTime and timeOnly-attributes with value-binding to LocalDate/LocalDateTime/LocalTime (#<I>) null handling
primefaces_primefaces
train
java
f53f4d6cdf2c6e52f29e17ffeb4b65bc742ae636
diff --git a/examples/benchmark.py b/examples/benchmark.py index <HASH>..<HASH> 100644 --- a/examples/benchmark.py +++ b/examples/benchmark.py @@ -77,5 +77,5 @@ for xi, j in enumerate(J): f.write(msg) print(msg, end="") - if comp_time + ll_time >= 1: + if comp_time + ll_time >= 2: ...
again more patience [ci skip]
dfm_celerite
train
py
45a7f07d1ce23dbd36e48c0fd76e0508e2d1f407
diff --git a/src/main/java/com/lowagie/text/pdf/PdfStamperImp.java b/src/main/java/com/lowagie/text/pdf/PdfStamperImp.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/lowagie/text/pdf/PdfStamperImp.java +++ b/src/main/java/com/lowagie/text/pdf/PdfStamperImp.java @@ -938,6 +938,7 @@ class PdfStamperImp extends P...
Remove the sigflags when flattening.
albfernandez_itext2
train
java
b5987836fcfcc65a1bda30b49d7afe152f6a1a30
diff --git a/lib/tablelib.php b/lib/tablelib.php index <HASH>..<HASH> 100644 --- a/lib/tablelib.php +++ b/lib/tablelib.php @@ -1419,6 +1419,21 @@ class flexible_table { * @return string HTML fragment. */ private function render_reset_button() { + $userprefs = false; + // Loop through the ...
MDL-<I> tablelib: Only display table preferences if necessary. A thank you to Tony Butler for a solution to this issue.
moodle_moodle
train
php
28a859b184c6173bd5271ef23f111bbafc47c608
diff --git a/mechanicalsoup/form.py b/mechanicalsoup/form.py index <HASH>..<HASH> 100644 --- a/mechanicalsoup/form.py +++ b/mechanicalsoup/form.py @@ -121,13 +121,14 @@ class Form(object): # url = BASE_DOMAIN + form_el.attrs['action'] # return browser.submit(form, url) + found = False ...
Delete all but chosen submit; allow match on name.
MechanicalSoup_MechanicalSoup
train
py
0240604999e358db345cc2483a799c7af1566638
diff --git a/src/Bases/ModelObserver.php b/src/Bases/ModelObserver.php index <HASH>..<HASH> 100644 --- a/src/Bases/ModelObserver.php +++ b/src/Bases/ModelObserver.php @@ -15,7 +15,9 @@ abstract class ModelObserver | ------------------------------------------------------------------------------------------------ ...
Updating the base ModelObserver's doc comment
ARCANEDEV_LaravelAuth
train
php
f4c2a38e7ac581216e5221c2f205a41906a6e205
diff --git a/js/gopax.js b/js/gopax.js index <HASH>..<HASH> 100644 --- a/js/gopax.js +++ b/js/gopax.js @@ -269,6 +269,21 @@ module.exports = class gopax extends Exchange { 'tradingPair': market['id'], }; const response = await this.publicGetTradingPairsTradingPairBook (this.extend (reques...
gopax fetchOrderBook comments
ccxt_ccxt
train
js
3ed09c98e0c30ed6db923ab6d0e6293083e6e25f
diff --git a/src/ondrs/UploadManager/Storages/S3Storage.php b/src/ondrs/UploadManager/Storages/S3Storage.php index <HASH>..<HASH> 100644 --- a/src/ondrs/UploadManager/Storages/S3Storage.php +++ b/src/ondrs/UploadManager/Storages/S3Storage.php @@ -81,6 +81,8 @@ class S3Storage implements IStorage /** @var Resul...
S3Storage: run GC manually after upload is done <URL>
ondrs_upload-manager
train
php
202a1bd1f5a19cad9354da6d395e0248e170d3cf
diff --git a/src/TestSuite/Stub/ConsoleInput.php b/src/TestSuite/Stub/ConsoleInput.php index <HASH>..<HASH> 100644 --- a/src/TestSuite/Stub/ConsoleInput.php +++ b/src/TestSuite/Stub/ConsoleInput.php @@ -15,6 +15,7 @@ namespace Cake\TestSuite\Stub; use Cake\Console\ConsoleInput as ConsoleInputBase; use Cake\Console\...
Fix missing input error message. The text didn't read well as it was missing ordinal suffixes.
cakephp_cakephp
train
php
354a09a3c68d99d1c50e5207ec56bd36d3573b8d
diff --git a/src/Config.php b/src/Config.php index <HASH>..<HASH> 100644 --- a/src/Config.php +++ b/src/Config.php @@ -38,7 +38,7 @@ class Config { } public function get(string $name):?string { - $env = getenv($name); + $env = getenv(str_replace(".", "_", $name)); if($env) { return $env; }
Replace dots with underscores when reading environment variables
PhpGt_Config
train
php
a0db4806a3bc4550e8024e9e1eed516b892827bf
diff --git a/lib/methods/sendMessage.js b/lib/methods/sendMessage.js index <HASH>..<HASH> 100644 --- a/lib/methods/sendMessage.js +++ b/lib/methods/sendMessage.js @@ -1,7 +1,7 @@ const toArray = require('../utils/toArray'); module.exports = function (userId, ...args) { - const [message, attachment, keyboard, stick...
Add support rundom_id in message.send (#<I>)
node-vk-bot-api_node-vk-bot-api
train
js
5118eb500b9a824f439266f5612ef59ba200a2ba
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ setup_params = dict( "pyyaml", "feedparser", "pytz", - "wordnik==2.0dev-rb0221ccc", + "wordnik>=2.0,<3.0", #for viewer "jinja2", "cherrypy",
wordnik <I> was released
yougov_pmxbot
train
py
d53a52022381c5b40e3a0e7b12fa4e6922da1416
diff --git a/src/Cache/Engine/FileEngine.php b/src/Cache/Engine/FileEngine.php index <HASH>..<HASH> 100644 --- a/src/Cache/Engine/FileEngine.php +++ b/src/Cache/Engine/FileEngine.php @@ -395,7 +395,10 @@ class FileEngine extends CacheEngine if (!$createKey && !$path->isFile()) { return false; ...
Fix warnings from FileEngine on shutdown Check if the current file is valid before re-using it. This fixes warnings emitted during process shutdown when DboSource is persisting the method cache. Forward port fix for #<I> to 3.x
cakephp_cakephp
train
php
50fabc7b372aeea6ae56ead8a8d0e6be40d2dd11
diff --git a/lib/jekyll/commands/build.rb b/lib/jekyll/commands/build.rb index <HASH>..<HASH> 100644 --- a/lib/jekyll/commands/build.rb +++ b/lib/jekyll/commands/build.rb @@ -46,7 +46,7 @@ module Jekyll Jekyll.logger.info "Auto-regeneration:", "enabled" - listener = Listen.to(source, :ignore => igno...
Update implementation of listen for <I>.x
jekyll_jekyll
train
rb
8f527db9c50264bc55e0022684907a7bc1e2f52b
diff --git a/lib/fortitude/rendering_context.rb b/lib/fortitude/rendering_context.rb index <HASH>..<HASH> 100644 --- a/lib/fortitude/rendering_context.rb +++ b/lib/fortitude/rendering_context.rb @@ -93,7 +93,7 @@ module Fortitude end def emitting_tag!(widget, tag_object) - validate_element_for_rules(wi...
Decouple :record_emitting_tag from :enforce_element_nesting_rules; i.e., allow us to be recording emitted tags without necessarily validating element-nesting rules.
ageweke_fortitude
train
rb
7f18af7c90ccf3b574adec508083da497abe6804
diff --git a/lib/faye/eventsource.js b/lib/faye/eventsource.js index <HASH>..<HASH> 100644 --- a/lib/faye/eventsource.js +++ b/lib/faye/eventsource.js @@ -35,6 +35,7 @@ var EventSource = function(request, response, options) { var handshake = 'HTTP/1.1 200 OK\r\n' + 'Content-Type: text/event-stream...
Use Connection:close on EventSource connections.
faye_websocket-driver-node
train
js
dbc4119f7078e9ba8b8a9044daa1723b4d9fcc37
diff --git a/treebeard/templatetags/admin_tree.py b/treebeard/templatetags/admin_tree.py index <HASH>..<HASH> 100644 --- a/treebeard/templatetags/admin_tree.py +++ b/treebeard/templatetags/admin_tree.py @@ -12,7 +12,10 @@ from django.db import models from django.conf import settings from django.contrib.admin.template...
Fixed ImportError in current Django `master` because `django.contrib.admin.util` became `django.contrib.admin.utils`
django-treebeard_django-treebeard
train
py
9a5a48975a9db38af4a75a13edf0cb1681654c98
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -24,7 +24,7 @@ module.exports = { target.import(path.join(this.vendorJavascriptsPath, 'switch.js')); target.import(path.join(app.bowerDirectory, '/sweetalert2/dist/sweetalert2.js')); target.import(path.joi...
Changed importing sweetalert shim
BookingSync_bootstrap-bookingsync-sass
train
js
ee4862e88f5cc726f0974b31b05deb599bbe9422
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -22,10 +22,9 @@ setup( 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', - ...
Update classifiers for supported Python versions [ci skip]
sjkingo_virtualenv-api
train
py
637efb0464e8601a5dc2a8469b770d7848762e34
diff --git a/lib/key_tree/tree.rb b/lib/key_tree/tree.rb index <HASH>..<HASH> 100644 --- a/lib/key_tree/tree.rb +++ b/lib/key_tree/tree.rb @@ -30,16 +30,16 @@ module KeyTree super(keys.map { |key_or_path| Path[key_or_path] }) end - def []=(key_or_path, value) + def []=(key_or_path, new_value) ...
Fix variable name shadowing Rename `value` to `new_value` in the outer scope of Tree#[]= to remove name shadowing in inner iteration over subkeys in the case of assigning a KeyTree value.
notCalle_ruby-keytree
train
rb
858f6396993e8aea7c6f0993a9423086d67486a4
diff --git a/go/service/chat_local.go b/go/service/chat_local.go index <HASH>..<HASH> 100644 --- a/go/service/chat_local.go +++ b/go/service/chat_local.go @@ -841,8 +841,9 @@ func (h *chatLocalHandler) PostAttachmentLocal(ctx context.Context, arg chat1.Po if arg.Preview != nil { g.Go(func() error { chatUI.Chat...
Change preview suffix to hex
keybase_client
train
go
0b5aa6ce98c0467bd977f1fb40790cacb491378c
diff --git a/nashvegas/management/commands/upgradedb.py b/nashvegas/management/commands/upgradedb.py index <HASH>..<HASH> 100644 --- a/nashvegas/management/commands/upgradedb.py +++ b/nashvegas/management/commands/upgradedb.py @@ -38,6 +38,9 @@ class Command(BaseCommand): make_option("-s", "--seed", action...
adding database option. Allows user to choose which database the migrations are run on.
paltman-archive_nashvegas
train
py
208f7cb7aab0d07ff302f29f23b5dfa432464455
diff --git a/source/config.js b/source/config.js index <HASH>..<HASH> 100644 --- a/source/config.js +++ b/source/config.js @@ -207,9 +207,3 @@ Object.defineProperty(Error.prototype, 'toJSON', { }, configurable: true }); - -Object.defineProperty(Error.prototype, 'toString', { - value: function() { - return 'M...
revert `Error.prototype.toString` override it does not work in Node.js <I>
FredrikNoren_ungit
train
js,js
b1727061c66a7207455ce8393b3e54b9de011902
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -50,7 +50,7 @@ copyright = u'2013, Koen Van Daele' # The short X.Y version. version = '0.2' # The full version, including alpha/beta/rc tags. -release = '0.2.0' +release = '0.2.1a1' # The language for con...
Back to development. Version <I>.
koenedaele_skosprovider
train
py,py
bad495ba161fb9f1e51d82b1dc0c8a8dd897309b
diff --git a/config/src/main/java/com/typesafe/config/Config.java b/config/src/main/java/com/typesafe/config/Config.java index <HASH>..<HASH> 100644 --- a/config/src/main/java/com/typesafe/config/Config.java +++ b/config/src/main/java/com/typesafe/config/Config.java @@ -142,6 +142,16 @@ public interface Config extends ...
mention in Config.resolve docs that ConfigFactory methods may call it for you
lightbend_config
train
java
ebe80d49cd1c34eac6cb21fa89384797e47274ae
diff --git a/cas-server-integration-ehcache/src/main/java/org/jasig/cas/ticket/registry/EhCacheTicketRegistry.java b/cas-server-integration-ehcache/src/main/java/org/jasig/cas/ticket/registry/EhCacheTicketRegistry.java index <HASH>..<HASH> 100644 --- a/cas-server-integration-ehcache/src/main/java/org/jasig/cas/ticket/r...
CAS-<I> mark as final ticketId parameter to deleteTicket Marks ticketId parameter to deleteTicket() as final since ticketId assignment is not and is not expected to be modified in deleteTicket() implementation.
apereo_cas
train
java
43a59ad8bafe9aef3cc47befb6fd84bfde788ca9
diff --git a/lxd/storage/pool_interface.go b/lxd/storage/pool_interface.go index <HASH>..<HASH> 100644 --- a/lxd/storage/pool_interface.go +++ b/lxd/storage/pool_interface.go @@ -91,7 +91,7 @@ type Pool interface { GetCustomVolumeUsage(projectName string, volName string) (int64, error) MountCustomVolume(projectName...
lxd/storage/pool/interface: Update ImportCustomVolume signature
lxc_lxd
train
go
6bda7dcb583cb5035411d13122d1275cd133eab9
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -87,12 +87,12 @@ setup( 'selenium.test.selenium.common', 'selenium.test.selenium.webdriver', 'selenium.test.selenium.webdriver.common', - 'selenium.test.selenium.webdriver.c...
DavidBurns it helps if I update the main package and not the test package in setup r<I>
SeleniumHQ_selenium
train
py
0473b50cf4736f8df6082795d346a9dd989db534
diff --git a/billy/importers/bills.py b/billy/importers/bills.py index <HASH>..<HASH> 100644 --- a/billy/importers/bills.py +++ b/billy/importers/bills.py @@ -148,12 +148,13 @@ def import_bill(data, votes, categorizer, oyster_documents=False): for version in data['versions']: # push versions to oyster ...
use data b/c bill isn't ready yet
openstates_billy
train
py
bbe515dbb1b78e6267a80ea831b125d8aa7fd8fe
diff --git a/chrome/src/java/org/openqa/selenium/chrome/ChromeBinary.java b/chrome/src/java/org/openqa/selenium/chrome/ChromeBinary.java index <HASH>..<HASH> 100644 --- a/chrome/src/java/org/openqa/selenium/chrome/ChromeBinary.java +++ b/chrome/src/java/org/openqa/selenium/chrome/ChromeBinary.java @@ -60,10 +60,9 @@ pu...
DanielWagnerHall: Fixing path which Vista loads Chrome from to be less hard coded. r<I>
SeleniumHQ_selenium
train
java
c9741e1e6dd01c987bd8f139c8359984dc4340f4
diff --git a/scripts/benchmark-rule.js b/scripts/benchmark-rule.js index <HASH>..<HASH> 100644 --- a/scripts/benchmark-rule.js +++ b/scripts/benchmark-rule.js @@ -22,7 +22,7 @@ if (!ruleOptions) { throw new Error('You must specify rule options'); } -const CSS_URL = 'https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/...
scripts/benchmark-rule.js: Switch to Bootstrap <I> (#<I>) * scripts/benchmark-rule.js: Switch to Bootstrap <I> * Update to <I>
stylelint_stylelint
train
js
08b06d68a703e7e12986b38ce4c8cf1c46089112
diff --git a/holoviews/plotting/mpl/chart.py b/holoviews/plotting/mpl/chart.py index <HASH>..<HASH> 100644 --- a/holoviews/plotting/mpl/chart.py +++ b/holoviews/plotting/mpl/chart.py @@ -20,6 +20,9 @@ from .plot import AdjoinedPlot class ChartPlot(ElementPlot): + show_legend = param.Boolean(default=True, doc=""...
Further minor fixes to matplotlib legends
pyviz_holoviews
train
py,py
8cae770e4a5738487b77449f85d035591429deb5
diff --git a/gulp/tasks/release.js b/gulp/tasks/release.js index <HASH>..<HASH> 100644 --- a/gulp/tasks/release.js +++ b/gulp/tasks/release.js @@ -33,7 +33,8 @@ gulp.task('release:commit', () => { function updateVersion(type) { return () => { const [release, identifier] = type.split('-'); - const version = ...
chore(release): fix release task [ci skip]
suguru03_aigle
train
js
2500c8c57c185bca30491069a6a7062d23037334
diff --git a/lib/modules/apostrophe-pieces-pages/index.js b/lib/modules/apostrophe-pieces-pages/index.js index <HASH>..<HASH> 100644 --- a/lib/modules/apostrophe-pieces-pages/index.js +++ b/lib/modules/apostrophe-pieces-pages/index.js @@ -54,10 +54,17 @@ module.exports = { } ]; - self.indexPage = funct...
added indexCursor hook so that custom piece types can modify the cursor before the indexPage method is invoked.
apostrophecms_apostrophe
train
js
de9b41cd861775ada42ed4447e6c410f1ffd9706
diff --git a/shared/actions/chat/inbox.js b/shared/actions/chat/inbox.js index <HASH>..<HASH> 100644 --- a/shared/actions/chat/inbox.js +++ b/shared/actions/chat/inbox.js @@ -103,11 +103,10 @@ function* onInboxStale(): SagaGenerator<any, any> { ) const incoming = yield loadInboxChanMap.race() - incoming....
Attempt a fix for undefined chatinboxunverified
keybase_client
train
js
babd7868bb3b6acef7d896de528cd3e6509d82cf
diff --git a/src/ViKon/ParserMarkdown/ParserMarkdownServiceProvider.php b/src/ViKon/ParserMarkdown/ParserMarkdownServiceProvider.php index <HASH>..<HASH> 100644 --- a/src/ViKon/ParserMarkdown/ParserMarkdownServiceProvider.php +++ b/src/ViKon/ParserMarkdown/ParserMarkdownServiceProvider.php @@ -19,6 +19,17 @@ class Pars...
Added config publish to service provider
vi-kon_laravel-parser-markdown
train
php
e635ff0b444851efc2e69c6be5f5105d34583323
diff --git a/gatling-recorder/src/main/java/com/excilys/ebi/gatling/recorder/ui/component/RunningFrame.java b/gatling-recorder/src/main/java/com/excilys/ebi/gatling/recorder/ui/component/RunningFrame.java index <HASH>..<HASH> 100644 --- a/gatling-recorder/src/main/java/com/excilys/ebi/gatling/recorder/ui/component/Runn...
Fix leaders filtering, close #<I>
gatling_gatling
train
java
1eb0bb2b17ff0e447720f33c3024f4bc5b64baa9
diff --git a/src/main/java/com/maestrano/account/MnoBill.java b/src/main/java/com/maestrano/account/MnoBill.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/maestrano/account/MnoBill.java +++ b/src/main/java/com/maestrano/account/MnoBill.java @@ -51,7 +51,7 @@ public class MnoBill extends MnoObject { if (bi...
fix #5 Throw exception if bill cancellation fails
maestrano_maestrano-java
train
java
b901f67e223a295585d9cb2f13f396dd26ccc8f8
diff --git a/src/wormling/phparia/Client/Phparia.php b/src/wormling/phparia/Client/Phparia.php index <HASH>..<HASH> 100644 --- a/src/wormling/phparia/Client/Phparia.php +++ b/src/wormling/phparia/Client/Phparia.php @@ -169,7 +169,7 @@ class Phparia */ public function asterisk() { - return $this->...
asterisk() was returning applications instance
wormling_phparia
train
php
d15feef40d6d4ab9742f0971d260972ba884e9e2
diff --git a/jaraco/__init__.py b/jaraco/__init__.py index <HASH>..<HASH> 100644 --- a/jaraco/__init__.py +++ b/jaraco/__init__.py @@ -1 +1 @@ -__path__ = __import__('pkgutil').extend_path(__path__, __name__) +__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore
🧎‍♀️ Genuflect to the types.
jaraco_jaraco.stream
train
py
5c2c39f3087613d9c827984e373d948083081661
diff --git a/lib/cri/command.rb b/lib/cri/command.rb index <HASH>..<HASH> 100644 --- a/lib/cri/command.rb +++ b/lib/cri/command.rb @@ -374,7 +374,8 @@ module Cri groups["options for #{self.supercommand.name}"] = self.supercommand.global_option_definitions end length = groups.values.inject(&:+).ma...
Show option groups in consistent order (fixes #<I>) This fix is intended for Ruby <I>.x, where hashes are not ordered.
ddfreyne_cri
train
rb,rb
0f4d824418ccaeaca3aee1c23a7e04b5139d752e
diff --git a/samples/guide/src/main/java/okhttp3/recipes/ParseResponseWithGson.java b/samples/guide/src/main/java/okhttp3/recipes/ParseResponseWithGson.java index <HASH>..<HASH> 100644 --- a/samples/guide/src/main/java/okhttp3/recipes/ParseResponseWithGson.java +++ b/samples/guide/src/main/java/okhttp3/recipes/ParseRes...
Updated gson recipe to close response body.
square_okhttp
train
java
3f4be2c47ed3ed30dd04f884d9fa0956e97b93ae
diff --git a/src/Drivers/DriverManager.php b/src/Drivers/DriverManager.php index <HASH>..<HASH> 100644 --- a/src/Drivers/DriverManager.php +++ b/src/Drivers/DriverManager.php @@ -156,7 +156,7 @@ class DriverManager foreach (self::getAvailableHttpDrivers() as $driver) { $driver = new $driver($reque...
Don't return first driver that can verify
botman_botman
train
php
4a48779e4091be28ef6a29a03d01116b0601ca10
diff --git a/extensions/roc-plugin-style-css/src/css/pipeline.js b/extensions/roc-plugin-style-css/src/css/pipeline.js index <HASH>..<HASH> 100644 --- a/extensions/roc-plugin-style-css/src/css/pipeline.js +++ b/extensions/roc-plugin-style-css/src/css/pipeline.js @@ -16,6 +16,6 @@ export default function cssPipeline(bas...
Disabled source maps for now since they can be a little buggy Will revisit later and make it possible to enable this behaviour.
rocjs_extensions
train
js
b75fa7b8e3ea8da358d16e116b745099c10924fd
diff --git a/web/apps/flickr/flickr.js b/web/apps/flickr/flickr.js index <HASH>..<HASH> 100644 --- a/web/apps/flickr/flickr.js +++ b/web/apps/flickr/flickr.js @@ -112,6 +112,10 @@ function getMinMaxDates(zoom) { if(zoom){ zoom(flickr.timeslider); ...
Automatic db lookup to bootstrap the application with real results.
Kitware_tangelo
train
js
d1a8c192708e00c6ab3e0f18c395f1a758d2e83c
diff --git a/lib/index.js b/lib/index.js index <HASH>..<HASH> 100644 --- a/lib/index.js +++ b/lib/index.js @@ -69,7 +69,7 @@ '---' , 'uuid: "' + post.uuid + '"' , 'title: "' + post.title.replace(/"/g, '\\"') + '"' - , 'date: "' + post.published.toISOString().replace(/[ T].*/,...
Include time in `date` metadata
solderjs_blogger2jekyll
train
js
046144c4d2ff3a3404b902de8beea4093f994293
diff --git a/jss/uapiobjects.py b/jss/uapiobjects.py index <HASH>..<HASH> 100644 --- a/jss/uapiobjects.py +++ b/jss/uapiobjects.py @@ -228,6 +228,7 @@ class SystemInitialize(UAPIObject): can_get = False can_put = False can_delete = False + can_post = True class User(UAPIContainer):
UAPI system initialize endpoint actually takes POST
jssimporter_python-jss
train
py
b94d703a44887a0d820a8e9f23c5a60d17e2e333
diff --git a/saharaclient/api/job_binaries.py b/saharaclient/api/job_binaries.py index <HASH>..<HASH> 100644 --- a/saharaclient/api/job_binaries.py +++ b/saharaclient/api/job_binaries.py @@ -25,7 +25,14 @@ class JobBinariesManager(base.ResourceManager): def create(self, name, url, description=None, extra=None, i...
Properly document job binary "extra" After bp sahara-support-s3 the use of the "extra" parameter is not only for binaries stored in Swift. So, modify some docstrings (which are in turn included in the actual docs) to reflect this. Change-Id: I<I>fce<I>a7d<I>d<I>f<I>e9a8b1d8ebb6ec1
openstack_python-saharaclient
train
py
31cc0b04dabcc25190de11211dc5cd6253f32540
diff --git a/webapps/client/scripts/directives/processDiagram.js b/webapps/client/scripts/directives/processDiagram.js index <HASH>..<HASH> 100644 --- a/webapps/client/scripts/directives/processDiagram.js +++ b/webapps/client/scripts/directives/processDiagram.js @@ -2,9 +2,7 @@ define([ 'angular', 'jquery', - '...
chore(processDiagram): remove dependency on some jquery plugins Related to CAM-<I>
camunda_camunda-bpm-platform
train
js
720fcc810e8940f278f4350fc7b36e801bd3ebe0
diff --git a/src/main/java/com/authlete/common/dto/Service.java b/src/main/java/com/authlete/common/dto/Service.java index <HASH>..<HASH> 100644 --- a/src/main/java/com/authlete/common/dto/Service.java +++ b/src/main/java/com/authlete/common/dto/Service.java @@ -147,7 +147,7 @@ import com.authlete.common.types.UserCode...
Incremented serialVersionUID of Service class.
authlete_authlete-java-common
train
java
2353ac02e7b72c85fb8794777241fed8d87c0ca8
diff --git a/env/xml-config/src/main/java/org/eobjects/analyzer/job/JaxbJobWriter.java b/env/xml-config/src/main/java/org/eobjects/analyzer/job/JaxbJobWriter.java index <HASH>..<HASH> 100644 --- a/env/xml-config/src/main/java/org/eobjects/analyzer/job/JaxbJobWriter.java +++ b/env/xml-config/src/main/java/org/eobjects/a...
Ticket #<I>: Made job writer write multi-line values to the simpleContent of the <property> element.
datacleaner_AnalyzerBeans
train
java
99cde07b59c0f4e370a598cb02ca738ff2800b88
diff --git a/lib/has_accounts.rb b/lib/has_accounts.rb index <HASH>..<HASH> 100644 --- a/lib/has_accounts.rb +++ b/lib/has_accounts.rb @@ -1,3 +1,4 @@ require 'has_accounts/model' +require 'has_accounts/core_ext/rounding' require 'has_accounts/railtie' if defined?(::Rails::Railtie)
Include rounding extensions for Rails 3.
huerlisi_has_accounts
train
rb
57240a822d32e63f50ff3c9d63f9fa07ecbd6fe2
diff --git a/lib/active_record/connection_adapters/sqlserver_adapter.rb b/lib/active_record/connection_adapters/sqlserver_adapter.rb index <HASH>..<HASH> 100644 --- a/lib/active_record/connection_adapters/sqlserver_adapter.rb +++ b/lib/active_record/connection_adapters/sqlserver_adapter.rb @@ -627,7 +627,7 @@ module Ac...
Making the repair_special_columns method a little stronger. It's not clear that this "fix the SQL via regexp" approach is super sustainable. Not very sure how well we can cope with the ORDER BY clauses. Also it's possible we've missed out on a bunch of ways that sql could be formatted.
rails-sqlserver_activerecord-sqlserver-adapter
train
rb
97c313489f1d4a1c4c731d23ead2ac31c46fa831
diff --git a/src/PayMe.php b/src/PayMe.php index <HASH>..<HASH> 100644 --- a/src/PayMe.php +++ b/src/PayMe.php @@ -9,6 +9,12 @@ use Shoperti\PayMe\Support\Helper; /** * This is the PayMe class. * + * @method \Shoperti\PayMe\Contracts\CardInterface cards() + * @method \Shoperti\PayMe\Contracts\ChargeInterface ...
Add docblock on PayMe class
Shoperti_Payme
train
php
d5bf9dc253193355684a7ce0be1617331ecbfb93
diff --git a/Gruntfile.js b/Gruntfile.js index <HASH>..<HASH> 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -241,5 +241,5 @@ module.exports = function (grunt) { 'test-webdriver', 'jshint']); - grunt.registerTask('dev', ['build', 'testconfig', 'connect', 'watch']); + grunt.registerTask('dev', ['build', 'testcon...
add fixture to grunt dev
dequelabs_axe-core
train
js
ce8ccf3647972be4179b209bd8256ab32a458b1f
diff --git a/smack-core/src/main/java/org/jivesoftware/smack/packet/Message.java b/smack-core/src/main/java/org/jivesoftware/smack/packet/Message.java index <HASH>..<HASH> 100644 --- a/smack-core/src/main/java/org/jivesoftware/smack/packet/Message.java +++ b/smack-core/src/main/java/org/jivesoftware/smack/packet/Messag...
Make Message and Presence class final In order to prevent users from trying to subclass those two, trying to add their custom attributes (or attribute values) in the element of those two, instead of using extension elements aka. PacketExtension. See - <URL>
igniterealtime_Smack
train
java,java
61815f29d285552d6c170e91800a243ec39fb62a
diff --git a/main.go b/main.go index <HASH>..<HASH> 100644 --- a/main.go +++ b/main.go @@ -87,9 +87,17 @@ func (s *SuperAgent) Send(content string) *SuperAgent { var val map[string]interface{} // check if it is json format if err := json.Unmarshal([]byte(content), &val); err == nil { - s.Type = "json" - for k, ...
If set to s.Type==form already, everything should be include in formData
parnurzeal_gorequest
train
go
d6cac45820cee327314738fdd2dd7c2d714fb1a8
diff --git a/service_provider.go b/service_provider.go index <HASH>..<HASH> 100644 --- a/service_provider.go +++ b/service_provider.go @@ -87,7 +87,7 @@ type ServiceProvider struct { // issued by the IDP and the time it is received by ParseResponse. This is used // to prevent old responses from being replayed (while ...
make MaxIssueDelay configurable at runtime (mini-hack)
crewjam_saml
train
go
31a4c01e937d0358d9a8b819ff9b94ed184070e6
diff --git a/code/libraries/koowa/http/uri.php b/code/libraries/koowa/http/uri.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/http/uri.php +++ b/code/libraries/koowa/http/uri.php @@ -323,10 +323,14 @@ class KHttpUri extends KObject if(!empty($uri)) { $segments = parse_url(urldecode($uri)); - + ...
Fixed bug. Format information wasn't being parsed properly.
joomlatools_joomlatools-framework
train
php
6dfb34c3e52b62a4790d4122930113f6b6643371
diff --git a/kernel/clustering/gateway.php b/kernel/clustering/gateway.php index <HASH>..<HASH> 100644 --- a/kernel/clustering/gateway.php +++ b/kernel/clustering/gateway.php @@ -17,7 +17,7 @@ abstract class ezpClusterGateway * Database instance, optional * @var mixed */ - private $db; + protect...
ClusterIndex: made protected instead of private
ezsystems_ezpublish-legacy
train
php
9bc954b2dbbce3c2c8d8871c930db72a7ca44f09
diff --git a/webpack.config.babel.js b/webpack.config.babel.js index <HASH>..<HASH> 100644 --- a/webpack.config.babel.js +++ b/webpack.config.babel.js @@ -63,7 +63,8 @@ const common = { include: [ config.paths.src, config.paths.documentation - ] + ], + exclude: /node_...
webpack - Exclude `node_modules` within packages for JS Otherwise React DnD fails.
reactabular_reactabular
train
js
95d17b030dae28a58cde1c131e76ce096e503c6f
diff --git a/src/index.js b/src/index.js index <HASH>..<HASH> 100644 --- a/src/index.js +++ b/src/index.js @@ -4,7 +4,7 @@ import Client from 'phantomjs-promise-es6/lib/client'; const phantomScriptPath = require.resolve('phantomjs-promise-es6/lib/phantom-script.js'); -class Element { +export class Element { con...
Expose Element for extensibility
vinsonchuong_phantomjs-adapter
train
js
24c1221b2d49107a60508176dcec2cce47b62280
diff --git a/spec/models/nocms/pages/page_spec.rb b/spec/models/nocms/pages/page_spec.rb index <HASH>..<HASH> 100644 --- a/spec/models/nocms/pages/page_spec.rb +++ b/spec/models/nocms/pages/page_spec.rb @@ -31,7 +31,7 @@ describe NoCms::Pages::Page do context "regarding templates" do it "should detect templat...
Modifying spec since templates now also include those in gems
simplelogica_nocms-pages
train
rb
fdb66fe84711f15208a96fc214660e5cdd80ceb2
diff --git a/src/org/mozilla/javascript/NativeString.java b/src/org/mozilla/javascript/NativeString.java index <HASH>..<HASH> 100644 --- a/src/org/mozilla/javascript/NativeString.java +++ b/src/org/mozilla/javascript/NativeString.java @@ -708,6 +708,10 @@ final class NativeString extends IdScriptable { private sta...
In NativeString.js_concat in the case of single argument call target.concat(arg) to avoid allocating StringBuffer instance.
mozilla_rhino
train
java
34ad41d54687fb478741c52d1fdadeaf2346d49e
diff --git a/app/controllers/rocket_job_mission_control/jobs_controller.rb b/app/controllers/rocket_job_mission_control/jobs_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/rocket_job_mission_control/jobs_controller.rb +++ b/app/controllers/rocket_job_mission_control/jobs_controller.rb @@ -4,25 +4,6 @@ ...
Move running method to its own controller; active processes.
rocketjob_rocketjob_mission_control
train
rb
3311c49f12f46c52bb3da9dbb21b7529bcf2b35d
diff --git a/lib/ProMotion/version.rb b/lib/ProMotion/version.rb index <HASH>..<HASH> 100644 --- a/lib/ProMotion/version.rb +++ b/lib/ProMotion/version.rb @@ -1,3 +1,3 @@ module ProMotion - VERSION = "1.0.4" unless defined?(ProMotion::VERSION) + VERSION = "1.1.0.rc1" unless defined?(ProMotion::VERSION) end
Version <I> release candidate 1
infinitered_ProMotion
train
rb
c2616054a12990176820805e138433f42d9817a5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ from setuptools import setup setup( name = 'python-mpv', - version = '0.3.6', + version = '0.3.7', py_modules = ['mpv'], description = 'A python interface to the mpv media player', url ...
<I>: Remove windows classifiers since nobody tests this on windows
jaseg_python-mpv
train
py
d07f14acfefc42692925b83c2412cde5021d9e3d
diff --git a/src/main/java/org/psjava/util/StrictEqualityTester.java b/src/main/java/org/psjava/util/StrictEqualityTester.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/psjava/util/StrictEqualityTester.java +++ b/src/main/java/org/psjava/util/StrictEqualityTester.java @@ -11,4 +11,7 @@ public class StrictEqua...
prevent public init of StrictEqualityTester
psjava_psjava
train
java
1814f21fdc7dfbb464203882ca5c601aec4a97a2
diff --git a/Resources/public/js/inherit.js b/Resources/public/js/inherit.js index <HASH>..<HASH> 100644 --- a/Resources/public/js/inherit.js +++ b/Resources/public/js/inherit.js @@ -1,8 +1,9 @@ -$(document).ready(function(){ +var inherit = function(){ + $('*[inherit="source"]').change(function(){ ...
Improved inherit.js so that it also applies to dynamically added content
sil-project_VarietyBundle
train
js
fb59f71cdcf3c26d84910ea4af6163c399bf7204
diff --git a/archivant/test/test_insert_volume.py b/archivant/test/test_insert_volume.py index <HASH>..<HASH> 100644 --- a/archivant/test/test_insert_volume.py +++ b/archivant/test/test_insert_volume.py @@ -129,3 +129,9 @@ class TestArchivantInsert(TestArchivant): eq_(att_metadata['size'], s.len) eq_(...
[archivant] test wrong file type during insertion
insomnia-lab_libreant
train
py
c0565e96a0eba736f8bf869ce998364c3cb7786c
diff --git a/eZ/Publish/Core/Persistence/Legacy/Content/Gateway/EzcDatabase.php b/eZ/Publish/Core/Persistence/Legacy/Content/Gateway/EzcDatabase.php index <HASH>..<HASH> 100644 --- a/eZ/Publish/Core/Persistence/Legacy/Content/Gateway/EzcDatabase.php +++ b/eZ/Publish/Core/Persistence/Legacy/Content/Gateway/EzcDatabase.p...
Fixed: field property language changed to languageCode
ezsystems_ezpublish-kernel
train
php
ba037cb41e57a02b0275992adf1010080a62ac14
diff --git a/lib/baby_tooth.rb b/lib/baby_tooth.rb index <HASH>..<HASH> 100644 --- a/lib/baby_tooth.rb +++ b/lib/baby_tooth.rb @@ -73,6 +73,10 @@ module BabyTooth super access_token, '/user' end + def street_team + @street_team ||= TeamFeed.new(access_token).members + end + def profile ...
return street team members as an array. Example: user.street_team # => [{"name"=>"Buster Bluth", "url"=>"/team/<I>", "profile"=>"<URL>
terriblelabs_BabyTooth
train
rb
43bd810f8e67fd4f22aa7dd22e54d2f4194ecb8a
diff --git a/lib/rails/webpack/version.rb b/lib/rails/webpack/version.rb index <HASH>..<HASH> 100644 --- a/lib/rails/webpack/version.rb +++ b/lib/rails/webpack/version.rb @@ -1,5 +1,5 @@ module Rails module Webpack - VERSION = '0.4.3' + VERSION = '0.4.4' end end
bump up version to <I>
astral1_rails-webpack
train
rb
ac58b230ba21601c5738a398f4f0514785d36474
diff --git a/structr-ui/src/main/resources/structr/js/websocket.js b/structr-ui/src/main/resources/structr/js/websocket.js index <HASH>..<HASH> 100644 --- a/structr-ui/src/main/resources/structr/js/websocket.js +++ b/structr-ui/src/main/resources/structr/js/websocket.js @@ -486,7 +486,7 @@ function send(text) { func...
Fixed loop, should fix issue #<I>
structr_structr
train
js
662f4c978aea0eea844c7db96092bf12bcff2b4b
diff --git a/tests/ClientTest.php b/tests/ClientTest.php index <HASH>..<HASH> 100644 --- a/tests/ClientTest.php +++ b/tests/ClientTest.php @@ -458,26 +458,6 @@ class ClientTest extends \PHPUnit_Framework_TestCase /** * @group udp */ - public function testReplicateIssue27() - { - $options =...
Removed duplicated testcase on issue #<I>
corley_influxdb-php-sdk
train
php
4ea64630aa3f0699f1fa6872b10faf1d0e1a9cd8
diff --git a/actionpack/lib/action_dispatch/journey/router/utils.rb b/actionpack/lib/action_dispatch/journey/router/utils.rb index <HASH>..<HASH> 100644 --- a/actionpack/lib/action_dispatch/journey/router/utils.rb +++ b/actionpack/lib/action_dispatch/journey/router/utils.rb @@ -35,7 +35,7 @@ module ActionDispatch ...
Reduce memory allocations Group sequential maps and remove unnecessary `to_a` in range
rails_rails
train
rb