hash
stringlengths
40
40
diff
stringlengths
131
114k
message
stringlengths
7
980
project
stringlengths
5
67
split
stringclasses
1 value
0b210802849ea63ca13a91c1c7e6c61b37653c7b
diff --git a/app/app.js b/app/app.js index <HASH>..<HASH> 100755 --- a/app/app.js +++ b/app/app.js @@ -130,6 +130,9 @@ angular.module('spotmop', [ MopidyService.getCurrentTlTracks().then( function( tlTracks ){ $scope.currentTracklist = tlTracks; }); + MopidyService.getConsume().then( function( isConsum...
Fetch consume mode on load, rather than assume the value
jaedb_spotmop
train
3129d6052d973bcbf744d962232945c0872fc73f
diff --git a/tests/test_pylast.py b/tests/test_pylast.py index <HASH>..<HASH> 100755 --- a/tests/test_pylast.py +++ b/tests/test_pylast.py @@ -40,7 +40,12 @@ class PyLastTestCase: assert str.endswith(suffix, start, end) -@flaky(max_runs=3, min_passes=1) +def _no_xfail_rerun_filter(err, name, test, plugin):...
Run xfail tests only once: no point re-running
pylast_pylast
train
87658c66c8b44fb3726e28ca95caccbd82a6bf19
diff --git a/lib/bucket.js b/lib/bucket.js index <HASH>..<HASH> 100644 --- a/lib/bucket.js +++ b/lib/bucket.js @@ -5,10 +5,11 @@ function Bucket() { } Bucket.prototype.set = function (key, value) { - this._cache[key] = value; + this._cache['!'+key] = value; }; Bucket.prototype.get = function (key) { + ...
fix: allow reserved object property names as keys
analog-nico_two-buckets-memcache
train
c4db71c9d67750d41a0841ea2fe55e4d236265ec
diff --git a/lib/Compilation.js b/lib/Compilation.js index <HASH>..<HASH> 100644 --- a/lib/Compilation.js +++ b/lib/Compilation.js @@ -219,7 +219,7 @@ Compilation.prototype.addModuleDependencies = function(module, dependencies, bai return errorOrWarningAndCallback(new ModuleNotFoundError(module, err)); } i...
added some async steps to prevent stack overflows
webpack_webpack
train
ec1e8b2b6b87445d07fe8965c0eb8d0e1446a979
diff --git a/app/controllers/people_controller.rb b/app/controllers/people_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/people_controller.rb +++ b/app/controllers/people_controller.rb @@ -46,6 +46,7 @@ class PeopleController < ApplicationController confirm_or_create else error :cre...
fix role section disappearing role section disappearing when a create action fails with validation errors.
ministryofjustice_peoplefinder
train
73e6064d56fc55230ff29f807abbfb5a3af94155
diff --git a/DependencyInjection/MonologExtension.php b/DependencyInjection/MonologExtension.php index <HASH>..<HASH> 100644 --- a/DependencyInjection/MonologExtension.php +++ b/DependencyInjection/MonologExtension.php @@ -65,6 +65,34 @@ class MonologExtension extends Extension } } ...
[MonologBundle] Added some compiled classes and moved public methods before private ones
symfony_monolog-bundle
train
887f7d8e9b813c8fe0f41d58a4cee216b46ed1f0
diff --git a/README.md b/README.md index <HASH>..<HASH> 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ React-mixin-manager is a simple manager for react mixins easily dependencies on Installation ------------ * Browser: include *react-mixin-manager[.min].js* after [React](http://facebook.github.io/react/)...
require React to be passed as param for commonJS init
jhudson8_react-mixin-manager
train
0701b98f97964a903efad3de2cbcbd605d98e99e
diff --git a/src/PostType.php b/src/PostType.php index <HASH>..<HASH> 100644 --- a/src/PostType.php +++ b/src/PostType.php @@ -505,7 +505,7 @@ class PostType $meta = $this->columns()->sortableMeta($orderby); // determine type of ordering - if (is_string($meta)) { + if (...
Allow setting false to sort by alphabetical
jjgrainger_PostTypes
train
e87ae4c880600110f1cf0923531cab4b6b891124
diff --git a/src/allTrue.spec.js b/src/allTrue.spec.js index <HASH>..<HASH> 100644 --- a/src/allTrue.spec.js +++ b/src/allTrue.spec.js @@ -3,7 +3,6 @@ import { allTrue } from './allTrue' test('with functions', () => { const foo = () => 1 const baz = () => false - const result = allTrue(foo, baz) expect(res...
feat: R.log is disabled by default
selfrefactor_rambdax
train
d6e949b3e10f91ca8c34364b0b6797a18201fb54
diff --git a/lib/proxy.spec.js b/lib/proxy.spec.js index <HASH>..<HASH> 100644 --- a/lib/proxy.spec.js +++ b/lib/proxy.spec.js @@ -249,6 +249,20 @@ describe('Proxy:', () => { }); }); + describe('when call metadata is modified by a middleware', () => { + it('should pass the modified call to the imp...
If metadata is modified in a middleware, the same metada will be received in the method
devsu_condor-framework
train
0e32853353926152c12e18f56062f11b715c4e4c
diff --git a/nailgun/entities.py b/nailgun/entities.py index <HASH>..<HASH> 100644 --- a/nailgun/entities.py +++ b/nailgun/entities.py @@ -958,6 +958,7 @@ class AbstractDockerContainer( # The "name" field may be any of a-zA-Z0-9_.-, # "alphanumeric" is a subset of those legal characters. ...
Change the length of AbstractDockerContainer name Docker container names must follow the following rule `[a-zA-Z0-9][a-zA-Z0-9_.-]`, to match that, update the length of the random generated length to have at least two characters. Closes #<I>
SatelliteQE_nailgun
train
379f5a3ed083dbdf23b848b976a25cf0d1929313
diff --git a/client/state/themes/actions.js b/client/state/themes/actions.js index <HASH>..<HASH> 100644 --- a/client/state/themes/actions.js +++ b/client/state/themes/actions.js @@ -418,6 +418,8 @@ export function installAndActivate( themeId, siteId, source = 'unknown', purchas return ( dispatch ) => { return dis...
state/themes/actions#installAndActivate: Add explanatory comment
Automattic_wp-calypso
train
40f13b60b7841d88ab1418308c843064b3837e56
diff --git a/xproc-engine-calabash/src/main/java/org/daisy/maven/xproc/calabash/Calabash.java b/xproc-engine-calabash/src/main/java/org/daisy/maven/xproc/calabash/Calabash.java index <HASH>..<HASH> 100644 --- a/xproc-engine-calabash/src/main/java/org/daisy/maven/xproc/calabash/Calabash.java +++ b/xproc-engine-calabash/...
Bugfix in catalog.xml support
daisy_xproc-maven-plugin
train
2a87d5fdddb564970b6d2dc5bae0ce82fc6100ca
diff --git a/seriously.py b/seriously.py index <HASH>..<HASH> 100755 --- a/seriously.py +++ b/seriously.py @@ -99,11 +99,18 @@ class Seriously(object): if __name__ == '__main__': srs = Seriously() - while 1: - try: - srs.eval(raw_input('>>> ')) - except EOFError: - exit() ...
added -e flag for command-line program input and file input
Mego_Seriously
train
4baf49d91bb37d5fd69b257ce5eebec4bba39ff2
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 @@ -23,6 +23,8 @@ unless ENV['CI'] end if ENV['CI'] + require 'webmock' + WebMock.disable_net_connect!(:allow => "codeclimate.com") require 'codeclimate-test-reporter' CodeC...
make webmock ignore requests to codeclimate.com
duse-io_duse.rb
train
a19eeb17b5334072e5e6d070f07a6ec1a5afe718
diff --git a/tests/framework/validators/RequiredValidatorTest.php b/tests/framework/validators/RequiredValidatorTest.php index <HASH>..<HASH> 100644 --- a/tests/framework/validators/RequiredValidatorTest.php +++ b/tests/framework/validators/RequiredValidatorTest.php @@ -30,7 +30,10 @@ class RequiredValidatorTest extend...
fixed BC compatibility test break for php7
yiisoft_yii-core
train
beef42c7ae3e8ba9ec4fc44db99d49497249ae1d
diff --git a/indra/tests/test_docs_code.py b/indra/tests/test_docs_code.py index <HASH>..<HASH> 100644 --- a/indra/tests/test_docs_code.py +++ b/indra/tests/test_docs_code.py @@ -231,6 +231,7 @@ def test_gene_network(): import networkx as nx paths = nx.single_source_shortest_path(G=indranet, source='BRCA1', ...
Assert output from nx algorithm
sorgerlab_indra
train
764fd4ab94866629c1d7c497bfa6eb8964b1a036
diff --git a/lib/rails-settings/active_record.rb b/lib/rails-settings/active_record.rb index <HASH>..<HASH> 100644 --- a/lib/rails-settings/active_record.rb +++ b/lib/rails-settings/active_record.rb @@ -9,6 +9,10 @@ ActiveRecord::Base.class_eval do ScopedSettings.for_target(self) end + def settin...
Added #settings= to set settings for object that has_settings in bulk
ledermann_rails-settings
train
ce231dfea5dd35a02e9719d4f8742ee18d10431c
diff --git a/helios-services/src/main/java/com/spotify/helios/master/ZooKeeperMasterModel.java b/helios-services/src/main/java/com/spotify/helios/master/ZooKeeperMasterModel.java index <HASH>..<HASH> 100644 --- a/helios-services/src/main/java/com/spotify/helios/master/ZooKeeperMasterModel.java +++ b/helios-services/src...
[Tokens] Specifying token during operation on job which has no token set is no longer allowed. Previously, if you specified a token while doing an operation on a job where a token was not set, it would work. We no longer allow that.
spotify_helios
train
51e26af4b4a064af41bbda919a07663dc9702e87
diff --git a/lib/undies/template.rb b/lib/undies/template.rb index <HASH>..<HASH> 100644 --- a/lib/undies/template.rb +++ b/lib/undies/template.rb @@ -25,12 +25,14 @@ module Undies # Add a text node (data escaped) to the nodes of the current node def _(data="") - self.___add(Node.new(self.escape_html(d...
refactored the '_' and '__' meths
redding_undies
train
8ecb0b22d80cae8f962b0de573fd276bbcac3385
diff --git a/parquet-hadoop/src/main/java/parquet/hadoop/util/ConfigurationUtil.java b/parquet-hadoop/src/main/java/parquet/hadoop/util/ConfigurationUtil.java index <HASH>..<HASH> 100644 --- a/parquet-hadoop/src/main/java/parquet/hadoop/util/ConfigurationUtil.java +++ b/parquet-hadoop/src/main/java/parquet/hadoop/util/...
first use current thread's classloader to load a class, if current thread does not have a classloader, use the class's current classloader to load a class. This will make sure a class not packaged in parquet but on classpath loaded properly. Otherwise, for example, if you set your own ReadSupport class to the Configura...
apache_parquet-mr
train
09fcd52bd4840b176af7666d5f2bb74c66165a71
diff --git a/lxd/storage/backend_lxd.go b/lxd/storage/backend_lxd.go index <HASH>..<HASH> 100644 --- a/lxd/storage/backend_lxd.go +++ b/lxd/storage/backend_lxd.go @@ -10,8 +10,9 @@ import ( "time" "github.com/pkg/errors" + "golang.org/x/sys/unix" log "gopkg.in/inconshreveable/log15.v2" - yaml "gopkg.in/yaml.v2"...
lxd/storage: Sync before snapshotting On storage drivers where Freeze is required for consistency, also call Fsync to ensure that any pending write has been properly flushed to disk.
lxc_lxd
train
da572449037974f3707d3ba18e9bcce3cfb75c01
diff --git a/master/buildbot/test/integration/test_integration_secrets_with_vault.py b/master/buildbot/test/integration/test_integration_secrets_with_vault.py index <HASH>..<HASH> 100644 --- a/master/buildbot/test/integration/test_integration_secrets_with_vault.py +++ b/master/buildbot/test/integration/test_integration...
test: Remove docker container even if vault setup fails
buildbot_buildbot
train
efe757f0691c09d1a1a92807e2f58010c576c52b
diff --git a/lib/ruby-fs-stack/familytree.rb b/lib/ruby-fs-stack/familytree.rb index <HASH>..<HASH> 100644 --- a/lib/ruby-fs-stack/familytree.rb +++ b/lib/ruby-fs-stack/familytree.rb @@ -219,7 +219,11 @@ module Org::Familysearch::Ws::Familytree::V2::Schema end def buildFullText - self.pieces.collec...
Fixed a Person#full_names bug when a NameForm had no fullText or pieces.
jimmyz_ruby-fs-stack
train
b72fa6d8148eba085a8e1e31658d94e30b9d36b1
diff --git a/src/org/jgroups/protocols/JDBC_PING.java b/src/org/jgroups/protocols/JDBC_PING.java index <HASH>..<HASH> 100644 --- a/src/org/jgroups/protocols/JDBC_PING.java +++ b/src/org/jgroups/protocols/JDBC_PING.java @@ -48,7 +48,7 @@ public class JDBC_PING extends FILE_PING { protected String connection_driver;...
Fixed typo: loosing -> losing
belaban_JGroups
train
a2e5132221024e99b1534f2b574cfad3ef4448bb
diff --git a/src/browser/extension/devpanel/index.js b/src/browser/extension/devpanel/index.js index <HASH>..<HASH> 100644 --- a/src/browser/extension/devpanel/index.js +++ b/src/browser/extension/devpanel/index.js @@ -30,7 +30,7 @@ function showDevTools() { rendered = true; } catch (error) { render(...
Include stack trace when throwing an exception in Chrome Devtools panel
zalmoxisus_redux-devtools-extension
train
03e960bea300a13a1d7a0e540453540f1fb5b936
diff --git a/safe_qgis/tools/osm_downloader.py b/safe_qgis/tools/osm_downloader.py index <HASH>..<HASH> 100644 --- a/safe_qgis/tools/osm_downloader.py +++ b/safe_qgis/tools/osm_downloader.py @@ -366,7 +366,7 @@ class OsmDownloader(QDialog, Ui_OsmDownloaderBase): Currently 'buildings' or 'roads' are support...
Fix wrong raises docstring.
inasafe_inasafe
train
e780e2fda326fa5ea616e1441a6ed81b2890085c
diff --git a/activerecord/CHANGELOG.md b/activerecord/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/activerecord/CHANGELOG.md +++ b/activerecord/CHANGELOG.md @@ -1,3 +1,10 @@ +* Provide :touch option to save() to accommodate saving without updating + timestamps. + + Fixes #18202 + + *Dan Olson* + * Provi...
Provide :touch option to save() to accommodate saving without updating timestamps. [#<I>]
rails_rails
train
6f92effcb9b8241546f1c114f373dbcc2b507518
diff --git a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowParcel.java b/shadows/framework/src/main/java/org/robolectric/shadows/ShadowParcel.java index <HASH>..<HASH> 100644 --- a/shadows/framework/src/main/java/org/robolectric/shadows/ShadowParcel.java +++ b/shadows/framework/src/main/java/org/robolec...
Make new @Implementation method protected.
robolectric_robolectric
train
16a5527fbb720a9d69e243946c285b94e41aa00f
diff --git a/colab/accounts/forms.py b/colab/accounts/forms.py index <HASH>..<HASH> 100644 --- a/colab/accounts/forms.py +++ b/colab/accounts/forms.py @@ -181,7 +181,7 @@ class UserCreationForm(UserForm): 'password_mismatch': _("The two password fields didn't match."), } username = forms.RegexField(l...
Changed regex for user creation and alter
colab_colab
train
efc71703634f21923670a122a843f38376fa53e6
diff --git a/launch_control/commands/dashboard.py b/launch_control/commands/dashboard.py index <HASH>..<HASH> 100644 --- a/launch_control/commands/dashboard.py +++ b/launch_control/commands/dashboard.py @@ -271,7 +271,7 @@ class XMLRPCCommand(Command): def invoke(self): try: - self.invoke_rem...
Allow commands to return error codes on error
zyga_json-schema-validator
train
63486bd173d23a2b0c48836e66d6b79557996178
diff --git a/lib/restforce/collection.rb b/lib/restforce/collection.rb index <HASH>..<HASH> 100644 --- a/lib/restforce/collection.rb +++ b/lib/restforce/collection.rb @@ -24,7 +24,7 @@ module Restforce # Return array of the elements on the current page def current_page - @raw_page['records'].collect { ...
Removing duplication of records parsing code
restforce_restforce
train
304dc52a5638c77e31a96b6cfccf9f0521b45b6b
diff --git a/lib/parser/tokenize.js b/lib/parser/tokenize.js index <HASH>..<HASH> 100644 --- a/lib/parser/tokenize.js +++ b/lib/parser/tokenize.js @@ -91,7 +91,7 @@ function tokenize(s) { } } else if (c === '"' || c === "'") { pushToken(c === '"' ? TokenType.StringDQ : TokenType.Strin...
fixes for windows (correct processing new line, normalize file content in test suite)
css_csso
train
73fbcef06ff0b387c69b645b1fcc8d0d6dbf7e20
diff --git a/lib/compareLocales.js b/lib/compareLocales.js index <HASH>..<HASH> 100644 --- a/lib/compareLocales.js +++ b/lib/compareLocales.js @@ -2,6 +2,9 @@ module.exports = function(localeA, localeB, options) { options = options || {}; + if (typeof localeA !== 'object' || typeof localeB !== 'object') { + t...
compareLocales throws error if either locale is not an object
bitjson_s18n
train
288f5746b90087bdb544e9e46beeaf73e6c1ab9f
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -6,14 +6,14 @@ module.exports = function (pluginConfig, config, cb) { if (env.WERCKER !== "true") { return cb(new SRError( - "semantic-release didn’t run on wercker and therefore a new version won’t be published...
fix: Put error code into message semantic-release currently does not put error code to log message so the io-monad/semantic-release step cannot get error code from messages.
io-monad_sr-condition-wercker
train
03ed104c6e46bb25c2a1b98270b122f33ba7297f
diff --git a/src/widgets/IndexLayoutSwitcher.php b/src/widgets/IndexLayoutSwitcher.php index <HASH>..<HASH> 100644 --- a/src/widgets/IndexLayoutSwitcher.php +++ b/src/widgets/IndexLayoutSwitcher.php @@ -10,6 +10,7 @@ namespace hipanel\widgets; +use hipanel\helpers\Url; use hipanel\models\IndexPageUiOptions; use ...
Fixed filters resetting after layout changing (#<I>) After layout changing the GET parameters of the current URL had been erasing and filter storage didn't work.
hiqdev_hipanel-core
train
d30f7098aa3400bfb46e8e341ccda1cde7ef70cf
diff --git a/pyforms/gui/Controls/ControlList.py b/pyforms/gui/Controls/ControlList.py index <HASH>..<HASH> 100755 --- a/pyforms/gui/Controls/ControlList.py +++ b/pyforms/gui/Controls/ControlList.py @@ -32,10 +32,8 @@ class ControlList(ControlBase, QWidget): self._plusFunction = plusFunction self._min...
pep8 compliance added new functionality: when clearing table, give the choice of resetting or not the current table headers
UmSenhorQualquer_pyforms
train
22d099b752157efbf0b50662acae8dddbba39927
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup setup( name = "1and1", packages = ['oneandone'], - version = "1.6.0", + version = "1.7.3", author = "Tyler Burkhardt (stackpoint.io)", author_email = "ty...
Incremented setup version to the latest release.
1and1_oneandone-cloudserver-sdk-python
train
ed911de68831fcb3894e3e41775c097c01c057d9
diff --git a/lib/hammer_cli_katello/organization.rb b/lib/hammer_cli_katello/organization.rb index <HASH>..<HASH> 100644 --- a/lib/hammer_cli_katello/organization.rb +++ b/lib/hammer_cli_katello/organization.rb @@ -46,14 +46,15 @@ module HammerCLIKatello build_options end - class DeleteCommand < Hammer...
Fixes #<I>,BZ<I> - Disable organization deletion
Katello_hammer-cli-katello
train
9a2493167994eda0f263e8eca9b6e8591b7f3fcd
diff --git a/lib/SymlinkPlugin.js b/lib/SymlinkPlugin.js index <HASH>..<HASH> 100644 --- a/lib/SymlinkPlugin.js +++ b/lib/SymlinkPlugin.js @@ -23,10 +23,6 @@ module.exports = class SymlinkPlugin { let containsSymlink = false; forEachBail.withIndex(paths, (path, idx, callback) => { - if(/^[a-zA-Z]:$/.test(p...
move fix into getPaths
webpack_enhanced-resolve
train
41e0df8f32d0baa065242c14bc4266c90be54599
diff --git a/scalar.py b/scalar.py index <HASH>..<HASH> 100755 --- a/scalar.py +++ b/scalar.py @@ -13,7 +13,6 @@ def main(): print(f.header); print("reading in data"); data = f.get_data(pool_size=24,lazy=False); - print("selecting data"); print("dumping"); with open(sys.argv[2],"...
removed extraneous print line...
noobermin_lspreader
train
3827744657d845ad5b518c619cbb55b46af7764e
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +### 1.0.0 RC34 - 2015-01-28 + +- Fix: Don't attempt to remove cached assets if they don't exist. + ### 1.0.0 RC33 - 2015-01-28 - Fix: Doesn't assume site plugin path is in site ...
Fixed plugin path issues, and internal asset paths. Closes #<I>.
octopress_ink
train
76b70834b0e46b4a5eeb2daa67ed3741d8931500
diff --git a/code/extensions/BlocksSiteTreeExtension.php b/code/extensions/BlocksSiteTreeExtension.php index <HASH>..<HASH> 100755 --- a/code/extensions/BlocksSiteTreeExtension.php +++ b/code/extensions/BlocksSiteTreeExtension.php @@ -12,6 +12,7 @@ use SilverStripe\Forms\CheckboxField; use SilverStripe\Forms\FieldList...
Adding tab use statement and commenting useless sort
sheadawson_silverstripe-blocks
train
bd9f162efaba56d4e0bfa5e980d50781affd47b4
diff --git a/xchange-gatecoin/src/main/java/org/knowm/xchange/gatecoin/GatecoinAuthenticated.java b/xchange-gatecoin/src/main/java/org/knowm/xchange/gatecoin/GatecoinAuthenticated.java index <HASH>..<HASH> 100644 --- a/xchange-gatecoin/src/main/java/org/knowm/xchange/gatecoin/GatecoinAuthenticated.java +++ b/xchange-ga...
Update GatecoinAuthenticated.java API address changed
knowm_XChange
train
8c7a7a80a193ca40598988ffeda6dbad131a86d0
diff --git a/kuyruk/master.py b/kuyruk/master.py index <HASH>..<HASH> 100644 --- a/kuyruk/master.py +++ b/kuyruk/master.py @@ -59,9 +59,13 @@ class Master(KuyrukProcess): def shutdown_workers(self, kill=False): """Sends shutdown signal to all workers.""" - kill_signal = signal.SIGKILL if kill els...
run worker in seperate process group
cenkalti_kuyruk
train
cbf87a73de6f2cb3673ab2568be5a9bf38c6d2ee
diff --git a/test/color_scheme.rb b/test/color_scheme.rb index <HASH>..<HASH> 100644 --- a/test/color_scheme.rb +++ b/test/color_scheme.rb @@ -29,6 +29,12 @@ module Vic assert_equal :Baz, @colorscheme.links.last.to_group end + def test_it_creates_unique_links + @colorscheme.link :Foo, :Bar, :Baz +...
make sure duplicate links aren't added
noprompt_vic
train
4ecf8f6d6f8cf498dc86a419af360ff5018f54b7
diff --git a/src/org/opencms/ade/upload/CmsUploadBean.java b/src/org/opencms/ade/upload/CmsUploadBean.java index <HASH>..<HASH> 100644 --- a/src/org/opencms/ade/upload/CmsUploadBean.java +++ b/src/org/opencms/ade/upload/CmsUploadBean.java @@ -258,8 +258,7 @@ public class CmsUploadBean extends CmsJspBean { ...
Setting the not translated file name as title property instead of the translated version.
alkacon_opencms-core
train
9dbafef7729613363e2e4801683acb26c4f2ec57
diff --git a/main.go b/main.go index <HASH>..<HASH> 100644 --- a/main.go +++ b/main.go @@ -226,6 +226,7 @@ func executeLinter(issues chan *Issue, name, command, pattern, paths string) { if p, ok := predefinedPatterns[pattern]; ok { pattern = p } + regexp.Compile(pattern) re, err := regexp.Compile(pattern) ki...
Implemented getTopic, getTopics, createTopic API calls.
alecthomas_gometalinter
train
476fca6e5b4b58d40a9340fc6dcfc31f4c7c0be2
diff --git a/test/regression/api/v2/admin/settings_spec.js b/test/regression/api/v2/admin/settings_spec.js index <HASH>..<HASH> 100644 --- a/test/regression/api/v2/admin/settings_spec.js +++ b/test/regression/api/v2/admin/settings_spec.js @@ -7,46 +7,46 @@ const ghost = testUtils.startGhost; // NOTE: in future itera...
Updated settings API v2 tests to also check for correct types refs <URL>
TryGhost_Ghost
train
1d08f839762c7321df5e1a0c01df66403a20af7d
diff --git a/src/Composer/Repository/ComposerRepository.php b/src/Composer/Repository/ComposerRepository.php index <HASH>..<HASH> 100644 --- a/src/Composer/Repository/ComposerRepository.php +++ b/src/Composer/Repository/ComposerRepository.php @@ -90,7 +90,7 @@ class ComposerRepository extends ArrayRepository implements...
Only clone if needed
composer_composer
train
6f670accadf153885e99803f86588d42dc124ed8
diff --git a/geomdl/operations.py b/geomdl/operations.py index <HASH>..<HASH> 100644 --- a/geomdl/operations.py +++ b/geomdl/operations.py @@ -619,7 +619,92 @@ def refine_knotvector(obj, param, **kwargs): # Start volume knot refinement if isinstance(obj, abstract.Volume): - raise GeomdlException("Kno...
Add volume support to operations.refine_knotvector
orbingol_NURBS-Python
train
cea1f31eda5779472776bae27d25e891711faf76
diff --git a/src/filters.js b/src/filters.js index <HASH>..<HASH> 100644 --- a/src/filters.js +++ b/src/filters.js @@ -8,11 +8,20 @@ */ angular.module('angular.filters', [ + 'a8m.ucfirst', 'a8m.uri-encode', 'a8m.remove-spaces', + 'a8m.strip-tags', + 'a8m.concat', 'a8m.unique', 'a8m.is-empty', - ...
fix(main): register all filter to angular.filter module
a8m_angular-filter
train
b04f87f62dd9f2935b9d1c85696f9ac0cd520701
diff --git a/cake/tests/lib/reporter/cake_cli_reporter.php b/cake/tests/lib/reporter/cake_cli_reporter.php index <HASH>..<HASH> 100644 --- a/cake/tests/lib/reporter/cake_cli_reporter.php +++ b/cake/tests/lib/reporter/cake_cli_reporter.php @@ -98,7 +98,7 @@ class CakeCliReporter extends CakeBaseReporter { */ functio...
fixed E_NOTICE undefined variable in CakeCliReporter::paintException
cakephp_cakephp
train
c3dde683158863ae764684c5b7d958e39e905874
diff --git a/test/ral/providers/package.rb b/test/ral/providers/package.rb index <HASH>..<HASH> 100755 --- a/test/ral/providers/package.rb +++ b/test/ral/providers/package.rb @@ -146,6 +146,8 @@ class TestPackageProvider < Test::Unit::TestCase assert(provider, "Could not retrieve provider") + return...
Fixing #<I> -- installed packages used for testing are just ignored, rather than throwing a failure.
puppetlabs_puppet
train
9140742fd381626d059500089341c8318633a053
diff --git a/security/BasicAuth.php b/security/BasicAuth.php index <HASH>..<HASH> 100755 --- a/security/BasicAuth.php +++ b/security/BasicAuth.php @@ -24,23 +24,25 @@ class BasicAuth { * * @param string $realm * @param string|array $permissionCode + * @param boolean $tryUsingSessionLogin If true, then the me...
BUGFIX: Fixed bug in basicauth failover to session member. BUGFIX: Don't use session member for test site protection feature. git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/<I>@<I> <I>b<I>ca-7a2a-<I>-9d3b-<I>d<I>a<I>a9
silverstripe_silverstripe-framework
train
881f38e50455668fbc6435ebe50c3ca586255fee
diff --git a/core/ledger/ledgerstorage/store.go b/core/ledger/ledgerstorage/store.go index <HASH>..<HASH> 100644 --- a/core/ledger/ledgerstorage/store.go +++ b/core/ledger/ledgerstorage/store.go @@ -116,7 +116,7 @@ func (s *Store) GetPvtDataAndBlockByNum(blockNum uint64, filter ledger.PvtNsColl if block, err = s.Retr...
[FAB-<I>] ledgerstore uses RLock^2 and deadlocks Re-entrent RLocking while a Lock happens in between is a deadlock in golang. This makes the ledgerstore deadlock if it writes blocks while some peer fetches blocks from it via state transfer. Full details in the JIRA. Change-Id: I<I>f<I>c<I>cacdbeec<I>c<I>e9b<I>c9c6b<...
hyperledger_fabric
train
2e4631e4f9a44104e2b9f6e888f5d6f08d80ac97
diff --git a/CHANGELOG.md b/CHANGELOG.md index <HASH>..<HASH> 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - Added experimental `filter_data` option - Localized times on maintenance page +- Improved connection pooling ## 2.4.2 (2020-04-16) diff --git a/lib/pghero.rb b/lib/pghero.rb index <HASH>...
Ensure only one connection pool per database
ankane_pghero
train
29b00fb744d2e27f835d0130b88ed4bda08c63f7
diff --git a/lib/puppet/type.rb b/lib/puppet/type.rb index <HASH>..<HASH> 100644 --- a/lib/puppet/type.rb +++ b/lib/puppet/type.rb @@ -198,16 +198,16 @@ class Type < Puppet::Element raise Puppet::DevError, "must pass a Puppet::Type object" end - if @objects.has_key?(newobj.name) and self....
Adding "alias" metaparam; you can now create as many aliases as you want for any of your objects. git-svn-id: <URL>
puppetlabs_puppet
train
e383758011c0b17ac51d5683ac060b5922c2f342
diff --git a/app/assets/javascripts/alchemy/alchemy.file_progress.js b/app/assets/javascripts/alchemy/alchemy.file_progress.js index <HASH>..<HASH> 100644 --- a/app/assets/javascripts/alchemy/alchemy.file_progress.js +++ b/app/assets/javascripts/alchemy/alchemy.file_progress.js @@ -67,7 +67,9 @@ if (typeof(Alchemy) ===...
Each html5 upload can now be stopped on its own.
AlchemyCMS_alchemy_cms
train
474fb2f817462b63557e58b9aec94d90b9dcc525
diff --git a/setget.go b/setget.go index <HASH>..<HASH> 100644 --- a/setget.go +++ b/setget.go @@ -7,54 +7,45 @@ import "net" import "time" import "sync" +import "./rend" + type CacheItem struct { key string value string } // constants and configuration -// No constant arrays -var letters = []rune("A...
Much better set/get test. Uses a constant string and slices instead of a new random one every time. Also uses common bits.
Netflix_rend
train
4b7162de9e64027b6d3839e83b2fb683f1c8a216
diff --git a/cpuid.go b/cpuid.go index <HASH>..<HASH> 100644 --- a/cpuid.go +++ b/cpuid.go @@ -143,6 +143,8 @@ type CPUInfo struct { Family int // CPU family number Model int // CPU model number CacheLine int // Cache line size in bytes. Will be 0 if undetectable. + maxFunc u...
Read current core from APIC cpu info and provide function for it.
klauspost_cpuid
train
08539032fd944cdc9f453807eed1cad53b3c5dbb
diff --git a/src/components/RangeSelector.js b/src/components/RangeSelector.js index <HASH>..<HASH> 100644 --- a/src/components/RangeSelector.js +++ b/src/components/RangeSelector.js @@ -94,45 +94,27 @@ class RangeSelector extends React.Component { } _handleTrackMouseDown (e) { - const updatedState = { - ...
_handleTrackMouseDown has been condensed
mxenabled_mx-react-components
train
e8230963be8f061f35c98670a72fc49fa8fe387f
diff --git a/src/Repository/OMA/StudentRepository.php b/src/Repository/OMA/StudentRepository.php index <HASH>..<HASH> 100644 --- a/src/Repository/OMA/StudentRepository.php +++ b/src/Repository/OMA/StudentRepository.php @@ -83,6 +83,30 @@ class StudentRepository extends BaseRepository return $data; } + +...
student repository: added new method for task list fetch
OliveMedia_academyhq-api-client
train
473dda5313efdd3f86d27a7d88aa7939f900c084
diff --git a/api/controller/legacy_test.go b/api/controller/legacy_test.go index <HASH>..<HASH> 100644 --- a/api/controller/legacy_test.go +++ b/api/controller/legacy_test.go @@ -248,7 +248,7 @@ func (s *legacySuite) TestAPIServerCanShutdownWithOutstandingNext(c *gc.C) { select { case <-srvStopped: - case <-time....
Add comment about why we're not using LongWait
juju_juju
train
c013e50d0d97bed3eed8aae752c515b8d5cdfe13
diff --git a/main.js b/main.js index <HASH>..<HASH> 100644 --- a/main.js +++ b/main.js @@ -1062,7 +1062,7 @@ layerContext.width = layer.bounds.right - layer.bounds.left; layerContext.height = layer.bounds.bottom - layer.bounds.top; - if (layerContext.width < 1 || layerContext.he...
No need to print warnings for layers of size 0x0, they are simply empty
adobe-photoshop_generator-assets
train
cf4cdf9bc091b293de192ad89b8d7e3ce0c61d4b
diff --git a/src/Adapters/Phpunit/Style.php b/src/Adapters/Phpunit/Style.php index <HASH>..<HASH> 100644 --- a/src/Adapters/Phpunit/Style.php +++ b/src/Adapters/Phpunit/Style.php @@ -182,6 +182,7 @@ final class Style '/bin\/pest/', '/vendor\/pestphp\/pest/', '/vendor\/phpspec\/pro...
Add prophecy to ignore files in writeError
nunomaduro_collision
train
d3e37099c565aa5e1ec3fd9927f1b4b97287c0e7
diff --git a/pythainlp/corpus/core.py b/pythainlp/corpus/core.py index <HASH>..<HASH> 100644 --- a/pythainlp/corpus/core.py +++ b/pythainlp/corpus/core.py @@ -156,7 +156,7 @@ def get_corpus_path(name: str, version : str = None) -> Union[str, None]: """ # Customize your the corpus path then close the line aft...
Fixed PEP8 (build and deploy docs)
PyThaiNLP_pythainlp
train
a2cc0c24c13bd94136ac1a98b5021316147ec381
diff --git a/tests/unit/commands/init/test_cli.py b/tests/unit/commands/init/test_cli.py index <HASH>..<HASH> 100644 --- a/tests/unit/commands/init/test_cli.py +++ b/tests/unit/commands/init/test_cli.py @@ -1089,6 +1089,7 @@ foo user_input = """ 1 2 +1 """ args = [ "--no-input"...
fix: Added Template User Input to Unit Test for Python Image Init Templates
awslabs_aws-sam-cli
train
0b757e1ac9057767c52f299a54d1fd0245ac9f9f
diff --git a/test/cases/CrawlDelayTest.php b/test/cases/CrawlDelayTest.php index <HASH>..<HASH> 100644 --- a/test/cases/CrawlDelayTest.php +++ b/test/cases/CrawlDelayTest.php @@ -9,9 +9,9 @@ { // init parser $parser = new RobotsTxtParser($robotsTxtContent); - $this->assertEquals(0, $parser->getCrawlDelay()...
Update CrawlDelayTest.php
t1gor_Robots.txt-Parser-Class
train
7fd898226f0acfe7eaff9375659171fb8ce6d627
diff --git a/src/serial-data-source.js b/src/serial-data-source.js index <HASH>..<HASH> 100644 --- a/src/serial-data-source.js +++ b/src/serial-data-source.js @@ -18,10 +18,19 @@ var optionKeys = [ -var SerialDataSource = DataSource.extend({ +var SerialDataSource = DataSource.extend(/** @lends SerialDataSource# *...
Complete SerialDataSource documentation and tests.
danielwippermann_resol-vbus
train
154e168da5d2032fcd05777c47805cf89306d3d8
diff --git a/app/controllers/maestrano/synchronizations_controller.rb b/app/controllers/maestrano/synchronizations_controller.rb index <HASH>..<HASH> 100644 --- a/app/controllers/maestrano/synchronizations_controller.rb +++ b/app/controllers/maestrano/synchronizations_controller.rb @@ -71,13 +71,12 @@ class Maestrano::...
do not skip conenc webhook on push_disabled (transac! compatibility)
maestrano_maestrano-connector-rails
train
f5fe43e8b9e393399622050deefef6a9dab44709
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -247,10 +247,11 @@ function convert(swagger, options) { data = options.templateCallback('heading_main', 'post', data); if (data.append) { content += data.append; delete data.append; } - if (swagger.securityDefinitions) {...
Start of auth for v3
Mermade_widdershins
train
3cc177dcb4ca1f4bae5c52ac3c467eafa7c41588
diff --git a/lxd/cluster/notify.go b/lxd/cluster/notify.go index <HASH>..<HASH> 100644 --- a/lxd/cluster/notify.go +++ b/lxd/cluster/notify.go @@ -60,12 +60,23 @@ func NewNotifier(state *state.State, cert *shared.CertInfo, policy NotifierPolic } if node.IsOffline(offlineThreshold) { - switch policy { - ...
Attempt to probe to a member which is considered offline This is last resort attempt, just in case the heartbeat couldn't reach the node for whatever reason but the node is actually alive.
lxc_lxd
train
504da9b1f0c82e57d3ef0cda7377f6a0889a63e5
diff --git a/cache/cache.go b/cache/cache.go index <HASH>..<HASH> 100644 --- a/cache/cache.go +++ b/cache/cache.go @@ -357,7 +357,7 @@ func (r *RowCache) RowsByCondition(conditions []ovsdb.Condition) (map[string]mod results[rowUUID] = row } } - } else if index, err := r.Index(condition.Column); err != n...
cache: fix RowsByCondition so non-index conditions are checked
socketplane_libovsdb
train
6cdb587e084b478a4904f264af8728cddcec55f0
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ tests_require = [ 'pytest-cache>=1.0', 'pytest-cov>=1.8.0', 'pytest-pep8>=1.0.6', - 'pytest-reana>=0.4.1,<0.5.0', + 'pytest-reana>=0.5.0.dev20181119', 'pytest>=3.8' ]
installation: bump pytest-reana
reanahub_reana-commons
train
ea33b1093b0c89e46aeb43e08caa90d6fea73d99
diff --git a/server/monitor.go b/server/monitor.go index <HASH>..<HASH> 100644 --- a/server/monitor.go +++ b/server/monitor.go @@ -873,6 +873,7 @@ type Varz struct { TotalConnections uint64 `json:"total_connections"` Routes int `json:"routes"` Remotes int ...
Add leafnode connections to varz
nats-io_gnatsd
train
7fcf5fb6011a5164ce651820c5fc478d82bfcc91
diff --git a/benchmark/encode.rb b/benchmark/encode.rb index <HASH>..<HASH> 100644 --- a/benchmark/encode.rb +++ b/benchmark/encode.rb @@ -20,46 +20,49 @@ rescue LoadError end filename = ARGV[0] || 'benchmark/subjects/ohai.json' -json = File.new(filename, 'r') -hash = Yajl::Parser.new.parse(json) -json.close +hash ...
adding headings to benchmarks, adding a benchmark for streaming psych
brianmario_yajl-ruby
train
c6390e3779ab54cd88fc760300e52b7f4247c7d6
diff --git a/cherrypy/wsgiserver/__init__.py b/cherrypy/wsgiserver/__init__.py index <HASH>..<HASH> 100644 --- a/cherrypy/wsgiserver/__init__.py +++ b/cherrypy/wsgiserver/__init__.py @@ -116,8 +116,12 @@ def plat_specific_errors(*errnames): # de-dupe the list return dict.fromkeys(nums).keys() +socket_error_...
Finished the nonblocking fileobject by handling EWOULDBLOCK during recv and accept. Also added experimental code to check SSL pending(), but no verdict yet on whether it's necessary or not.
cherrypy_cheroot
train
3277124d81de0fe24ecaa195992b8821520531f6
diff --git a/model/QtiJsonItemCompiler.php b/model/QtiJsonItemCompiler.php index <HASH>..<HASH> 100644 --- a/model/QtiJsonItemCompiler.php +++ b/model/QtiJsonItemCompiler.php @@ -26,8 +26,6 @@ use core_kernel_classes_Resource; use oat\taoQtiItem\model\pack\QtiItemPacker; use oat\taoQtiItem\model\qti\exception\XInclud...
empty json property to avoid cheating
oat-sa_extension-tao-itemqti
train
2f0d40663d4c17f6729933de667b7ed9567d8051
diff --git a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/naming/QualifiedName.java b/plugins/org.eclipse.xtext/src/org/eclipse/xtext/naming/QualifiedName.java index <HASH>..<HASH> 100644 --- a/plugins/org.eclipse.xtext/src/org/eclipse/xtext/naming/QualifiedName.java +++ b/plugins/org.eclipse.xtext/src/org/eclipse/x...
[Xtext] fixed <I> - Check that you cannot append a null segment to a QualifiedName
eclipse_xtext-core
train
13115c295710c82e22423373509c3c3756a285c4
diff --git a/java/client/test/org/openqa/selenium/AlertsTest.java b/java/client/test/org/openqa/selenium/AlertsTest.java index <HASH>..<HASH> 100644 --- a/java/client/test/org/openqa/selenium/AlertsTest.java +++ b/java/client/test/org/openqa/selenium/AlertsTest.java @@ -352,7 +352,6 @@ public class AlertsTest extends J...
[java] Unignoring the test, regression bug in marionette has been fixed already
SeleniumHQ_selenium
train
1b048b167627275301b8b4f48fe4a79ea3fe3479
diff --git a/executor/executor_test.go b/executor/executor_test.go index <HASH>..<HASH> 100644 --- a/executor/executor_test.go +++ b/executor/executor_test.go @@ -8178,7 +8178,7 @@ func (s *testSerialSuite) TestIssue24210(c *C) { func (s *testSerialSuite) TestDeadlockTable(c *C) { deadlockhistory.GlobalDeadlockHisto...
infoschema: Use system local time for tables of lock view (#<I>)
pingcap_tidb
train
4e208ea2fe9d4981e4de37233670f5677d552289
diff --git a/SpiffWorkflow/bpmn/specs/event_definitions.py b/SpiffWorkflow/bpmn/specs/event_definitions.py index <HASH>..<HASH> 100644 --- a/SpiffWorkflow/bpmn/specs/event_definitions.py +++ b/SpiffWorkflow/bpmn/specs/event_definitions.py @@ -193,13 +193,13 @@ class SignalEventDefinition(CatchingEventDefinition, Throwi...
changed _event_ready to _message_ready removed some unused code
knipknap_SpiffWorkflow
train
adf45d2ec12cd880e2c090893bf260b4f1cfcc37
diff --git a/workflows/logging/test_logging.py b/workflows/logging/test_logging.py index <HASH>..<HASH> 100644 --- a/workflows/logging/test_logging.py +++ b/workflows/logging/test_logging.py @@ -12,7 +12,8 @@ def test_callback_handler_works_within_logging_framework(): log.setLevel(logging.INFO) cbh = workflows....
Errors during logging should be handled gracefully
DiamondLightSource_python-workflows
train
6f79953aa52c08581a5ce5a9a0dafa89d79ba390
diff --git a/sentinel.go b/sentinel.go index <HASH>..<HASH> 100644 --- a/sentinel.go +++ b/sentinel.go @@ -157,9 +157,9 @@ func (d *sentinelFailover) MasterAddr() (string, error) { } } - for i, addr := range d.sentinelAddrs { + for i, sentinelAddr := range d.sentinelAddrs { sentinel := newSentinel(&Options{ -...
sentinel: don't leak goroutines on sentinel fail. Fixes #<I>.
go-redis_redis
train
9bb3332c63b29cd6997681c96ed0838e040daba4
diff --git a/test/e2e/scheduling/predicates.go b/test/e2e/scheduling/predicates.go index <HASH>..<HASH> 100644 --- a/test/e2e/scheduling/predicates.go +++ b/test/e2e/scheduling/predicates.go @@ -219,9 +219,9 @@ var _ = SIGDescribe("SchedulerPredicates [Serial]", func() { // 4. Create another pod with no affinity to a...
Adding details to Conformance Tests using RFC <I> standards.
kubernetes_kubernetes
train
0ef27db90352bdfdd4af92b5237e7a1d2b250ce7
diff --git a/noxfile.py b/noxfile.py index <HASH>..<HASH> 100644 --- a/noxfile.py +++ b/noxfile.py @@ -23,14 +23,8 @@ def tests(session): # any doctests, there isn't any) session.run('pytest', 'examples/', '--doctest-modules') - session._run('conda', - 'env', - 'update', -...
debugging sphinx not found error
edublancas_sklearn-evaluation
train
22029692268b29d2125b297aea6c542032bd0cb6
diff --git a/lib/sup/modes/thread-view-mode.rb b/lib/sup/modes/thread-view-mode.rb index <HASH>..<HASH> 100644 --- a/lib/sup/modes/thread-view-mode.rb +++ b/lib/sup/modes/thread-view-mode.rb @@ -261,7 +261,7 @@ EOS end if chunk.is_a?(Message) jump_to_message chunk - jump_to_next_open + jump_t...
don't jump to the next open message when expanding When pressing enter to expand an entire message, don't jump to the next open message. Only jump when you've collapsed the message.
sup-heliotrope_sup
train
3b7788bf880d58b0fcd42daba1515f5fb05dfe09
diff --git a/python/ray/worker.py b/python/ray/worker.py index <HASH>..<HASH> 100644 --- a/python/ray/worker.py +++ b/python/ray/worker.py @@ -441,6 +441,14 @@ class Worker(object): objectid (object_id.ObjectID): The object ID of the value to be put. value: The value to put in the object store. """ +...
Disallow calling ray.put on an object ID. (#<I>)
ray-project_ray
train
3bb3f684cf1b4365f75698e7416568309dd22eb5
diff --git a/lib/calabash/gestures.rb b/lib/calabash/gestures.rb index <HASH>..<HASH> 100644 --- a/lib/calabash/gestures.rb +++ b/lib/calabash/gestures.rb @@ -179,13 +179,13 @@ module Calabash # Performs a `pan` heading `left` on the screen. # @see pan_left def pan_screen_left(options={}) - pan_left...
Prefer single quotes for non-interpolated strings
calabash_calabash
train
1879f8331ed886fba00d13bb9d0951e334cc7fde
diff --git a/client/lib/media/test/utils.js b/client/lib/media/test/utils.js index <HASH>..<HASH> 100644 --- a/client/lib/media/test/utils.js +++ b/client/lib/media/test/utils.js @@ -674,6 +674,7 @@ describe( 'MediaUtils', () => { describe( '#createTransientMedia()', () => { const GUID = 'URL'; + const original...
[Private files] Don't use proxy with blobs (#<I>) * Don't use proxy with blob files * A better fix - in mediaURLToProxyConfig * Harden mediaURLToProxyConfig and add tests * Make sure window.URL is available in tests
Automattic_wp-calypso
train
236d66b0401e4c59efe0b164ab01386890d687ca
diff --git a/lib/write_xlsx/format.rb b/lib/write_xlsx/format.rb index <HASH>..<HASH> 100644 --- a/lib/write_xlsx/format.rb +++ b/lib/write_xlsx/format.rb @@ -506,7 +506,7 @@ module Writexlsx def set_align(location) return unless location # No default - location.downcase! + location ...
[JUNO-<I>] Get rid of decisely-write-xlsx repo
cxn03651_write_xlsx
train
88a1fbf68548aab5abc88d511784d274d73ea749
diff --git a/jax/interpreters/xla.py b/jax/interpreters/xla.py index <HASH>..<HASH> 100644 --- a/jax/interpreters/xla.py +++ b/jax/interpreters/xla.py @@ -266,7 +266,15 @@ def _jaxpr_computation(jaxpr, backend, axis_env, const_vals, freevar_shapes, *ar _map(write, jaxpr.invars, map(c.ParameterWithShape, arg_shapes))...
Error on nested conflicting explicit jit backend specifications.
tensorflow_probability
train
3f91adf7666b1e8e6841f8c1d82fda1aab6871d0
diff --git a/templates/index.html b/templates/index.html index <HASH>..<HASH> 100644 --- a/templates/index.html +++ b/templates/index.html @@ -34,6 +34,12 @@ white-space: pre; } + iframe { + width: 100%; + height: auto; + border: 0; + } + </style> </head> <body> diff --git a/templates/js/editor.js ...
Solved issue, when inserting iframe template body and head tags were stripped. Iframe somewhat resizable.
devbridge_Styleguide
train
50bc15f87a78d5f336b2682195409682c75c9b11
diff --git a/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php b/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php index <HASH>..<HASH> 100644 --- a/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php +++ b/src/Illuminate/Foundation/Bootstrap/LoadConfiguration.php @@ -42,9 +42,7 @@ class LoadConfi...
Convert closures to arrow functions (#<I>) * Convert closures to arrow functions * Convert closures to arrow functions fix style
laravel_framework
train
0c122312aa9c1b82bdcf122fcc522533974a8281
diff --git a/pom.xml b/pom.xml index <HASH>..<HASH> 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ <name>User-Agent-Utils</name> <url>http://java.net/projects/user-agent-utils</url> <artifactId>UserAgentUtils</artifactId> - <version>1.2.3</version> + <version>1.2.4</version> <description>Utility classes to ...
Added Android 3.x tablet detection.
HaraldWalker_user-agent-utils
train
c708b9109e209c36f2844969641fc7da505e95d4
diff --git a/rapidoid-demo/src/main/java/org/rapidoid/demo/taskplanner/Main.java b/rapidoid-demo/src/main/java/org/rapidoid/demo/taskplanner/Main.java index <HASH>..<HASH> 100644 --- a/rapidoid-demo/src/main/java/org/rapidoid/demo/taskplanner/Main.java +++ b/rapidoid-demo/src/main/java/org/rapidoid/demo/taskplanner/Mai...
Added stream showcase in the Task Planner demo.
rapidoid_rapidoid
train
555e64a5c9b3c1bf137741960aafbca4d358a8af
diff --git a/lib/gemsmith/cli.rb b/lib/gemsmith/cli.rb index <HASH>..<HASH> 100644 --- a/lib/gemsmith/cli.rb +++ b/lib/gemsmith/cli.rb @@ -56,6 +56,7 @@ module Gemsmith def initialize args = [], options = {}, config = {} super args, options, config @configuration = Configuration.new + @spec_aid ...
Updated CLI to use gem spec aid. - Makes use of the new spec object for processing of gem specs.
bkuhlmann_gemsmith
train
ac1a363c6ed889d11e8fabd6dd69a8a6df9e3cfd
diff --git a/actionpack/test/controller/resources_test.rb b/actionpack/test/controller/resources_test.rb index <HASH>..<HASH> 100644 --- a/actionpack/test/controller/resources_test.rb +++ b/actionpack/test/controller/resources_test.rb @@ -532,7 +532,7 @@ class ResourcesTest < ActionController::TestCase routes.ea...
Pull up a method we only use once.
rails_rails
train
c4e4c00cfa214603e3271214de1eb1ad5e5c3559
diff --git a/lib/util/logger.js b/lib/util/logger.js index <HASH>..<HASH> 100644 --- a/lib/util/logger.js +++ b/lib/util/logger.js @@ -33,9 +33,9 @@ function createLogger () { 'timestamp': true, level: logConfig.level || 'error' })) - var postfix = '.master.log' + var postfix = '.master.' + config....
using token in logfile names in case of global log file directory for multiple apps
sematext_spm-agent
train