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
32531c891025508c478d02073ea838f1cef585e0
diff --git a/log.go b/log.go index <HASH>..<HASH> 100644 --- a/log.go +++ b/log.go @@ -15,7 +15,9 @@ Examples: force log [list] - force log 07Le000000sKUylEAG + force log <id> + + force log delete <id> `, } @@ -30,6 +32,15 @@ func getLog(cmd *Command, args []string) { ErrorAndExit(err.Error()) } ...
Support Deleting Debug Logs Add `delete` sub-command to `force log` to support deletion of debug logs.
ForceCLI_force
train
go
662a7a3b422d83a343a2dab61a3b27acafb4b95a
diff --git a/src/Leevel/Kernel/IApp.php b/src/Leevel/Kernel/IApp.php index <HASH>..<HASH> 100644 --- a/src/Leevel/Kernel/IApp.php +++ b/src/Leevel/Kernel/IApp.php @@ -223,9 +223,9 @@ interface IApp /** * 获取命名空间目录真实路径. * - * 一般用于获取文件 PSR4 所在的命名空间,当然如果存在命名空间。 - * 基于某个具体的类查询该类目录的真实路径。 - * 为简化开...
refactor(kernel): code poem
hunzhiwange_framework
train
php
50d6203ae0b79a0f03c5adc8188ef0a6817c5873
diff --git a/ipyrad/assemble/consens_se.py b/ipyrad/assemble/consens_se.py index <HASH>..<HASH> 100644 --- a/ipyrad/assemble/consens_se.py +++ b/ipyrad/assemble/consens_se.py @@ -400,9 +400,6 @@ class Processor: self.init_arrays() self.chroms2ints() - # run the processor - self...
fixes Step5 run to call run only once; counts nsites by excluding Ns
dereneaton_ipyrad
train
py
9c408933f88e7edbe44e6a9c72f9aaa2c5228617
diff --git a/commands.go b/commands.go index <HASH>..<HASH> 100644 --- a/commands.go +++ b/commands.go @@ -499,7 +499,10 @@ func doImport(c *cli.Context) error { eg.Go(func() error { sem <- struct{}{} defer func() { <-sem }() - return processLine(line) + if err := processLine(line); err != nil { + ...
log immediately when error occured in parallel import
motemen_ghq
train
go
e515debab6ed2eed1facdea7c975bc29c2d841a5
diff --git a/ipyrad/analysis/pca.py b/ipyrad/analysis/pca.py index <HASH>..<HASH> 100644 --- a/ipyrad/analysis/pca.py +++ b/ipyrad/analysis/pca.py @@ -22,7 +22,6 @@ try: import toyplot import toyplot.svg import toyplot.pdf - import toyplot.png except ImportError: pass @@ -649,16 +648,14 @@ cla...
Remove the png outfile from pca because it wants ghostscript package installed and apparently toytree doesn't have that as a dependency. Annoying.
dereneaton_ipyrad
train
py
f5ee741602994cc315fd49826a5e3441dfd4a3ee
diff --git a/animanager/cmd/__init__.py b/animanager/cmd/__init__.py index <HASH>..<HASH> 100644 --- a/animanager/cmd/__init__.py +++ b/animanager/cmd/__init__.py @@ -148,6 +148,10 @@ class ArgumentParser(argparse.ArgumentParser): """ArgumentParser customized for Animanager's CLI.""" + def __init__(self, *a...
Disable help flag on command parsing
darkfeline_animanager
train
py
f19beb1581e99ae3278c12054a5b2512395f3b0e
diff --git a/packages/ember-metal/lib/run_loop.js b/packages/ember-metal/lib/run_loop.js index <HASH>..<HASH> 100644 --- a/packages/ember-metal/lib/run_loop.js +++ b/packages/ember-metal/lib/run_loop.js @@ -52,22 +52,21 @@ var Backburner = requireModule('backburner').Backburner, @param {Object} [args*] Any additiona...
Don't deoptimize every Ember.run TryCatchStatements are currently non-optimizable statements in v8 (and likely other run times). Additionally, methods containing try/catch statements are not inlineable Although Ember.run's shouldn't be in a tight loop, we should incur the deopt penalty if we don't even use Ember.oner...
emberjs_ember.js
train
js
0dd892555647a0904db0dc7f564d9e4cc22cc5c1
diff --git a/worker/provisioner/container_initialisation_test.go b/worker/provisioner/container_initialisation_test.go index <HASH>..<HASH> 100644 --- a/worker/provisioner/container_initialisation_test.go +++ b/worker/provisioner/container_initialisation_test.go @@ -339,13 +339,6 @@ func (s *ContainerSetupSuite) testCo...
Removes now-tautological container manager test for model UUID.
juju_juju
train
go
c5cae1059f9168c002ab1fe03d8eff2b45f55cc6
diff --git a/View.py b/View.py index <HASH>..<HASH> 100644 --- a/View.py +++ b/View.py @@ -28,7 +28,7 @@ class View(object): def pretty_print(self): """ Pretty prints the view. """ - return '\n'.join(pretty_print(self._todos, True, True)) + return '\n'.join(pretty_print(self._viewdata, Tru...
Print the filtered/sorted data, not the original data.
bram85_topydo
train
py
098bb847bdccf476daa231811b7ad5f919f274d9
diff --git a/lib/generators/sufia/templates/catalog_controller.rb b/lib/generators/sufia/templates/catalog_controller.rb index <HASH>..<HASH> 100644 --- a/lib/generators/sufia/templates/catalog_controller.rb +++ b/lib/generators/sufia/templates/catalog_controller.rb @@ -367,6 +367,15 @@ class CatalogController < Applic...
Exclude non-GenericFile results from the search
samvera_hyrax
train
rb
727a3485f36ad768d1207553412b748f7e0fb63c
diff --git a/lib/parser.js b/lib/parser.js index <HASH>..<HASH> 100644 --- a/lib/parser.js +++ b/lib/parser.js @@ -63,6 +63,17 @@ Parser.prototype = { advance: function(){ return this.lexer.advance(); }, + + /** + * Skip `n` tokens. + * + * @param {Number} n + * @api private + */ + + skip: functi...
Fixed code indentation when followed by newline(s). Closes #<I> [reported by masylum]
pugjs_then-pug
train
js
8b7a09439e5e660a4df9dac8780be2aa80df3d85
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ def readme(fname): setup( name='cjdnsadmin', - version='0.1.0a1', + version='0.1.0', description='A library to interact with the cjdns Admin Interface', long_description=readme('README.md...
Apparently alpha versions are a bitch to install
hyperboria_python-cjdns
train
py
97bcf652a18808d89c8de2235e2b32ae933036b6
diff --git a/tests/options_tests.py b/tests/options_tests.py index <HASH>..<HASH> 100644 --- a/tests/options_tests.py +++ b/tests/options_tests.py @@ -25,3 +25,12 @@ def default_style_mappings_are_ignored_if_include_default_style_map_is_false(): "include_default_style_map": False })["style_map"] asse...
Add test to ensure that style map lines beginning with hash are ignored
mwilliamson_python-mammoth
train
py
21e79b83d16f398597e256c8ee0b7bd79a757499
diff --git a/src/getSchema.js b/src/getSchema.js index <HASH>..<HASH> 100644 --- a/src/getSchema.js +++ b/src/getSchema.js @@ -1,5 +1,3 @@ -// @flow - import { printSchema, buildClientSchema, diff --git a/src/getWriter.js b/src/getWriter.js index <HASH>..<HASH> 100644 --- a/src/getWriter.js +++ b/src/getWriter.j...
Disable flow on schema and writer files Importing `graphql` module has flow conflicts.
danielholmes_relay-compiler-webpack-plugin
train
js,js
de6e388179060b5c26c4f7e075ba13131d3ea920
diff --git a/src/pylexibank/dataset.py b/src/pylexibank/dataset.py index <HASH>..<HASH> 100644 --- a/src/pylexibank/dataset.py +++ b/src/pylexibank/dataset.py @@ -578,9 +578,8 @@ class Dataset(object): stats_lines.extend([ '- **Cognacy:** {0:,} cognates in {1:,} cognate sets ({2:,} singlet...
Fixed flake indentation warning.
lexibank_pylexibank
train
py
1bc0c0ee960f5847d31d4d93e467902feee357ea
diff --git a/cmd/test.go b/cmd/test.go index <HASH>..<HASH> 100644 --- a/cmd/test.go +++ b/cmd/test.go @@ -157,7 +157,7 @@ You can add it to a run mode configuration with the following line: if !suiteResult.Passed { fmt.Printf("\nFailures:\n") for _, result := range suiteResult.Results { - if(!result.Pass...
removing parens around if statements
revel_revel
train
go,go
235697e900fdd93e6884698b87aae8b840ce528b
diff --git a/lxc/image.go b/lxc/image.go index <HASH>..<HASH> 100644 --- a/lxc/image.go +++ b/lxc/image.go @@ -1248,14 +1248,20 @@ func (c *cmdImageList) Run(cmd *cobra.Command, args []string) error { return err } + serverFilters, clientFilters := getServerSupportedFilters(filters, api.Image{}) + var images []...
lxc/image: Use server-side filtering for list command
lxc_lxd
train
go
806021014b9253bb225f38da04dfe80574185398
diff --git a/mod/forum/post.php b/mod/forum/post.php index <HASH>..<HASH> 100644 --- a/mod/forum/post.php +++ b/mod/forum/post.php @@ -145,6 +145,12 @@ error("Sorry, but you can not post a new discussion in this forum."); } + if ($cm = get_coursemodule_from_instance("forum", $forum->id, $...
Some fixes to ensure students can't post to hidden forums
moodle_moodle
train
php
d665177bf94c62a255a193d83f5ae6f17909e61d
diff --git a/application.go b/application.go index <HASH>..<HASH> 100644 --- a/application.go +++ b/application.go @@ -71,7 +71,7 @@ type Application struct { LastTaskFailure *LastTaskFailure `json:"lastTaskFailure,omitempty"` } -// ApplicationVersions is a collection of application versions for a specifi...
Fix typo in application.go (marathin -> marathon). Super unspectacular PR that fixes a tiny typo in application.go.
gambol99_go-marathon
train
go
919bcbb2cef2a47cf986eb587858e595c3450873
diff --git a/packages/@vue/cli/lib/promptModules/cssPreprocessors.js b/packages/@vue/cli/lib/promptModules/cssPreprocessors.js index <HASH>..<HASH> 100644 --- a/packages/@vue/cli/lib/promptModules/cssPreprocessors.js +++ b/packages/@vue/cli/lib/promptModules/cssPreprocessors.js @@ -3,7 +3,7 @@ module.exports = cli => {...
fix(ui): CSS Pre-processors "More info" link leads to <I> (#<I>)
vuejs_vue-cli
train
js
112b3a3dc5a68ac50eea535d0376cf7aed6f5ec6
diff --git a/app/controllers/concerns/sufia/files_controller_behavior.rb b/app/controllers/concerns/sufia/files_controller_behavior.rb index <HASH>..<HASH> 100644 --- a/app/controllers/concerns/sufia/files_controller_behavior.rb +++ b/app/controllers/concerns/sufia/files_controller_behavior.rb @@ -115,7 +115,7 @@ modul...
Encapsulate the decision of whether to revert versions for this request
samvera_hyrax
train
rb
71fb59e7ec1dcb1237b5586755f5d4801e7bb648
diff --git a/bugzilla/base.py b/bugzilla/base.py index <HASH>..<HASH> 100644 --- a/bugzilla/base.py +++ b/bugzilla/base.py @@ -256,10 +256,6 @@ class RequestsTransport(Transport): # xmlrpclib fails to escape \r request_body = request_body.replace(b'\r', b'&#xd;') - # Needed for python-request...
Remove workaround for requests < <I> on python 3 - this workaround caused systems with ndg-httpsclient installed to error out when requests is used - requests versions <I> to <I> do not work due to unrelated issues and hence no point carrying this workaround - requests version <I> and earlier works without this wo...
python-bugzilla_python-bugzilla
train
py
ae78e34941e9446ede901dceac594adac2358862
diff --git a/raven/processors.py b/raven/processors.py index <HASH>..<HASH> 100644 --- a/raven/processors.py +++ b/raven/processors.py @@ -73,7 +73,13 @@ class SanitizePasswordsProcessor(Processor): """ MASK = '*' * 8 FIELDS = frozenset([ - 'password', 'secret', 'passwd', 'authorization', 'api_key...
sanitize sentry_dsn
getsentry_raven-python
train
py
f3fe21438ec7a71f945a3580ead33d77e6297d69
diff --git a/lib/number_to_words_ru/i18n_initialization.rb b/lib/number_to_words_ru/i18n_initialization.rb index <HASH>..<HASH> 100644 --- a/lib/number_to_words_ru/i18n_initialization.rb +++ b/lib/number_to_words_ru/i18n_initialization.rb @@ -3,9 +3,9 @@ module I18nInitialization def environment I18n.locale =...
Add special paths to I<I>n load paths end.
kslazarev_numbers_and_words
train
rb
cd48908401d6d4a4f626d9fb0b2f2bf626879c98
diff --git a/definitions/npm/express_v4.16.x/flow_v0.32.x-/express_v4.16.x.js b/definitions/npm/express_v4.16.x/flow_v0.32.x-/express_v4.16.x.js index <HASH>..<HASH> 100644 --- a/definitions/npm/express_v4.16.x/flow_v0.32.x-/express_v4.16.x.js +++ b/definitions/npm/express_v4.16.x/flow_v0.32.x-/express_v4.16.x.js @@ -1...
Adding express$RequestResponseBase to express$Request and express$Response (#<I>) * Adding express$RequestResponseBase to express$Request and express$Response This seems to have been forgotten / accidentally removed? * Typo
flow-typed_flow-typed
train
js
e5809b84a745733335bd929be8acbbfcb8eaec93
diff --git a/src/Postman/CollectionWriter.php b/src/Postman/CollectionWriter.php index <HASH>..<HASH> 100644 --- a/src/Postman/CollectionWriter.php +++ b/src/Postman/CollectionWriter.php @@ -25,7 +25,12 @@ class CollectionWriter public function getCollection() { - URL::forceRootUrl(config('app.url'))...
Fix call to undefined method forceRootUrl in lumen Calls to undefined methods are a subclass of `\Error` in PHP 7
mpociot_laravel-apidoc-generator
train
php
1cd2c247401ac55a955abc89aaa04d790a0e834f
diff --git a/lib/character.js b/lib/character.js index <HASH>..<HASH> 100644 --- a/lib/character.js +++ b/lib/character.js @@ -21,6 +21,9 @@ exports.exec = function(term, chr) { case '\x88': // TABSET term.setTab(); break; + case '\x0e': /* SO */ + case '\x0f': /* SI */ + break; default: term.inje...
0x0e and 0x0f are non printable characters.
Gottox_terminal.js
train
js,js
622f9cf7c4ee6b04f27a5ca44c894041c20e4912
diff --git a/lib/storage.js b/lib/storage.js index <HASH>..<HASH> 100644 --- a/lib/storage.js +++ b/lib/storage.js @@ -65,6 +65,9 @@ Storage.prototype._createIndexes = function() { address: 1, }); this.db.collection(collections.EMAIL_QUEUE).createIndex({ + id: 1, + }); + this.db.collection(collections.E...
adding needed index for email_queue.id
bitpay_bitcore-wallet-service
train
js
392750a0e02db80884c16c58c186c62e7ffdb088
diff --git a/src/Command/Site/ModeCommand.php b/src/Command/Site/ModeCommand.php index <HASH>..<HASH> 100644 --- a/src/Command/Site/ModeCommand.php +++ b/src/Command/Site/ModeCommand.php @@ -126,7 +126,7 @@ class ModeCommand extends ContainerAwareCommand if (!copy($defaultServicesFile, $settingsServicesFil...
[site:mode] Invalid message on copy problem Correct typo on a path when there's a copy problem on services.yml
hechoendrupal_drupal-console
train
php
97c2d95ea66518f6b15da83a0bf1afcd0def01a4
diff --git a/src/base/Model.php b/src/base/Model.php index <HASH>..<HASH> 100644 --- a/src/base/Model.php +++ b/src/base/Model.php @@ -11,6 +11,10 @@ use Yii; class Model extends \hiqdev\hiart\ActiveRecord { + /** + * @var string the i18n dictionary name that will be used to translate labels of Model + *...
Model - added i<I>nDictionary property
hiqdev_hipanel-core
train
php
0fe7d1cb3186570734faac49290f889d2e66115d
diff --git a/ballet/client.py b/ballet/client.py index <HASH>..<HASH> 100644 --- a/ballet/client.py +++ b/ballet/client.py @@ -96,5 +96,17 @@ class Client: accepter_class, feature, result.features, result.X_df, result.y_df, result.X_df, result.y, False) + def discover(self, **kwargs) -> p...
Write spec for Client.discover
HDI-Project_ballet
train
py
310cb6b9f927b67825d82207c8e4f3d0e17b30b4
diff --git a/src/scene.js b/src/scene.js index <HASH>..<HASH> 100755 --- a/src/scene.js +++ b/src/scene.js @@ -701,6 +701,7 @@ export default class Scene { } }); this.tile_manager.updateTilesForView(); // picks up additional tiles for any new/changed data sources + ...
resolve rebuildGeometry() immediately if no tiles to build
tangrams_tangram
train
js
73176ecaba0e6ba926ef18420daf526efbdefb1e
diff --git a/notification/models.py b/notification/models.py index <HASH>..<HASH> 100644 --- a/notification/models.py +++ b/notification/models.py @@ -24,6 +24,10 @@ class LanguageStoreNotAvailable(Exception): pass +def create_notice_type(label, display, description, **kwargs): + NoticeType.create(label, di...
added the create_notice_type wrapper in models In the docs it is advised to use create_notice_type to create a new NoticeType object. But this function was absent. Although it is possible to create a new NoticeType using the 'create' function of the class, this addition makes the code follow the docs and compatible wi...
GeoNode_geonode-notification
train
py
72785b998a96e98c11a5712cdf71ee73b60370b9
diff --git a/lib/bumbleworks/support.rb b/lib/bumbleworks/support.rb index <HASH>..<HASH> 100644 --- a/lib/bumbleworks/support.rb +++ b/lib/bumbleworks/support.rb @@ -24,11 +24,9 @@ module Bumbleworks constant = Object name_parts.each do |name_part| - constant_defined = if Module.method(:const_de...
DRY constantize a bit - improves test coverage :)
bumbleworks_bumbleworks
train
rb
b217f4ac66176404c3dcabbc72b69e9667d22885
diff --git a/industrial_test.py b/industrial_test.py index <HASH>..<HASH> 100755 --- a/industrial_test.py +++ b/industrial_test.py @@ -735,7 +735,7 @@ class DeployManyAttempt(SteppedStageAttempt): timeout_start = datetime.now() yield results # Joyent needs longer to deploy so many containers ...
Switch industrial tests to env.provider.
juju_juju
train
py
666fbd9c17348ed0b907228261369688ec8dbb6a
diff --git a/requirements.txt b/requirements.txt index <HASH>..<HASH> 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,5 +3,4 @@ scipy>=0.16.0 matplotlib>=1.4.3 biopython>=1.65 pandas>=0.17.0 -rpy2>=2.8.0 seaborn>=0.7.0 diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setu...
remove requirement for rpy2
widdowquinn_pyani
train
txt,py,py
00b70c75278896495365e25f0327af4a1b61acce
diff --git a/src/ajax.js b/src/ajax.js index <HASH>..<HASH> 100644 --- a/src/ajax.js +++ b/src/ajax.js @@ -380,6 +380,9 @@ jQuery.extend({ // Fire the complete handlers complete(); + if ( isTimeout ) + xhr.abort(); + // Stop memory leaks if ( s.async ) xhr = null; @@ -394,14 +397,8 @@...
Landed a fix for timeouts not being aborted properly. Fixes jQuery bug #<I>.
jquery_jquery
train
js
4eeee576b381a29ff91da0babd7fbe4b5ac30448
diff --git a/otis.js b/otis.js index <HASH>..<HASH> 100644 --- a/otis.js +++ b/otis.js @@ -99,9 +99,11 @@ otis.get('/tags', function(req, res) { } } } - tagValues["host"] = ["host1","host2","host3"]; - tagValues["user"] = ["jon","dave","joe","simo...
Only add dev tags to response if we're in dev mode
eswdd_aardvark
train
js
53faf901fa6770506a8839be9d35dc7a39a53d28
diff --git a/Grid/Grid.php b/Grid/Grid.php index <HASH>..<HASH> 100644 --- a/Grid/Grid.php +++ b/Grid/Grid.php @@ -1113,7 +1113,9 @@ class Grid implements GridInterface protected function set($key, $data) { // Only the filters values are removed from the session - if (isset($data['from']) && (...
Filtering with "between" operator now works even if only "to" is specified.
APY_APYDataGridBundle
train
php
ef5ba8b11d5b2357a49e611083fc89139bd6af74
diff --git a/lib/credentials_manager/password_manager.rb b/lib/credentials_manager/password_manager.rb index <HASH>..<HASH> 100644 --- a/lib/credentials_manager/password_manager.rb +++ b/lib/credentials_manager/password_manager.rb @@ -50,18 +50,8 @@ module CredentialsManager # This will ask the user, if he wants t...
Added nice error message when password is wrong
fastlane_fastlane
train
rb
559665363167fc45ba113d2693daa124394e4ecc
diff --git a/src/org/zaproxy/zap/view/ScanPanel.java b/src/org/zaproxy/zap/view/ScanPanel.java index <HASH>..<HASH> 100644 --- a/src/org/zaproxy/zap/view/ScanPanel.java +++ b/src/org/zaproxy/zap/view/ScanPanel.java @@ -757,7 +757,7 @@ public abstract class ScanPanel extends AbstractPanel { scanFinshedEventHan...
Fixes #<I> Stop Attack Feature Locks up ZAP
zaproxy_zaproxy
train
java,java
788cdb209f2b8aed21c84bf8eda00986e7f04308
diff --git a/bosh-director/spec/unit/jobs/export_release_spec.rb b/bosh-director/spec/unit/jobs/export_release_spec.rb index <HASH>..<HASH> 100644 --- a/bosh-director/spec/unit/jobs/export_release_spec.rb +++ b/bosh-director/spec/unit/jobs/export_release_spec.rb @@ -40,6 +40,10 @@ module Bosh::Director allow...
Fix the unit tests that are trying to use redis in the export release [#<I>] <URL>
cloudfoundry_bosh
train
rb
01c2e9239935ba88ca782ffe4faba7fd99f1f0cc
diff --git a/lib/slop.rb b/lib/slop.rb index <HASH>..<HASH> 100644 --- a/lib/slop.rb +++ b/lib/slop.rb @@ -267,9 +267,7 @@ private end def check_invalid_option(item, flag) - if item[/^--?/] && @strict - @invalid_options << flag - end + @invalid_options << flag if item[/^--?/] && @strict end ...
roflscale code by removing lines
leejarvis_slop
train
rb
e769d24f44449de435e1be77d74723c8da3c9030
diff --git a/app/models/catarse_pagarme/payment_delegator.rb b/app/models/catarse_pagarme/payment_delegator.rb index <HASH>..<HASH> 100644 --- a/app/models/catarse_pagarme/payment_delegator.rb +++ b/app/models/catarse_pagarme/payment_delegator.rb @@ -70,7 +70,7 @@ module CatarsePagarme def transaction gat...
Payment delegator should not raise exception when gateway_id is nil
catarse_catarse_pagarme
train
rb,rb
324140d2e626f23c4dde5bc546da8ed455218407
diff --git a/extensions/approval/bootstrap.php b/extensions/approval/bootstrap.php index <HASH>..<HASH> 100644 --- a/extensions/approval/bootstrap.php +++ b/extensions/approval/bootstrap.php @@ -16,7 +16,8 @@ use Illuminate\Contracts\Events\Dispatcher; return [ (new Extend\Assets('forum')) - ->defaultAss...
Extender: List all assets explicitly
flarum_core
train
php
db7ac53e6ed22766597726ec428ed1b2167e9e6e
diff --git a/lib/ransack/version.rb b/lib/ransack/version.rb index <HASH>..<HASH> 100644 --- a/lib/ransack/version.rb +++ b/lib/ransack/version.rb @@ -1,3 +1,3 @@ module Ransack - VERSION = "1.2.3" + VERSION = "1.3.0" end
Release version <I> Additions: - search scopes by popular demand - JOINS merging - OR grouping on base search - authorizations for attributes, associations and scopes - improved boolean predicates’ handling of false values - allow configuring to raise on or ignore unknown search conditions - allow passing blank values...
activerecord-hackery_ransack
train
rb
bd56200361c9e4a21c5a0f824f9e9f222e615914
diff --git a/aeron-cluster/src/main/java/io/aeron/cluster/Election.java b/aeron-cluster/src/main/java/io/aeron/cluster/Election.java index <HASH>..<HASH> 100644 --- a/aeron-cluster/src/main/java/io/aeron/cluster/Election.java +++ b/aeron-cluster/src/main/java/io/aeron/cluster/Election.java @@ -677,10 +677,18 @@ class E...
[Java] Timeout follower if fail to join the catchup or live log.
real-logic_aeron
train
java
b80c6d5c61711fff5df17553fad30cd04281b8c8
diff --git a/build.py b/build.py index <HASH>..<HASH> 100755 --- a/build.py +++ b/build.py @@ -297,8 +297,7 @@ def examples_star_json(name, match): 'id': match.group('id'), 'inherits': '../../buildcfg/base.json', 'inputs': [ - '../examples/%(id)s.js' % match.groupdi...
Replace typedefs with externs Since the compiler leaves externs untouched and learns the used properties from object literals, this replaces the otherwise required typedefs just fine.
openlayers_openlayers
train
py
cc5f38d80ab67b681cfdb49c16ef45a9ed651954
diff --git a/skrebate/relieff.py b/skrebate/relieff.py index <HASH>..<HASH> 100644 --- a/skrebate/relieff.py +++ b/skrebate/relieff.py @@ -236,6 +236,8 @@ class ReliefF(BaseEstimator): """Normalizes continuous features so they are in the same range""" idx = 0 for i in attr: + ...
Bug fix for index out of range error The pre_normalize function should only consider continuous attributes.
EpistasisLab_scikit-rebate
train
py
835fc52f58c3d5f97bb660034b1a129e7f8e673f
diff --git a/coursera/coursera_dl.py b/coursera/coursera_dl.py index <HASH>..<HASH> 100755 --- a/coursera/coursera_dl.py +++ b/coursera/coursera_dl.py @@ -135,6 +135,32 @@ def grab_hidden_video_url(session, href): return None +def grab_more_subtitles(session, href): + """ + Follow some extra redirect...
coursera: Download subtitles for languages other than English. This is an initial, brute-force, kludgy, not yet hooked implementation into the main script, only tested interactively (read: "from ipython") for downloading subtitles for other languages. It is slow and should probably be replaced with the use of Courser...
coursera-dl_coursera-dl
train
py
a36933a4af0b2568acbf4a83a023d26a614ef159
diff --git a/library/src/com/nostra13/universalimageloader/cache/disc/LimitedDiscCache.java b/library/src/com/nostra13/universalimageloader/cache/disc/LimitedDiscCache.java index <HASH>..<HASH> 100644 --- a/library/src/com/nostra13/universalimageloader/cache/disc/LimitedDiscCache.java +++ b/library/src/com/nostra13/uni...
Init LimitedDiscCache asynchronously, prevent long I/O operation on UI thread
nostra13_Android-Universal-Image-Loader
train
java
4ebf5a026e28a2e8175c4845a511ea4223d6cb99
diff --git a/lib/rib.rb b/lib/rib.rb index <HASH>..<HASH> 100644 --- a/lib/rib.rb +++ b/lib/rib.rb @@ -1,8 +1,8 @@ require 'rib/shell' +require 'rib/version' module Rib - autoload :VERSION, 'rib/version' Skip = Object.new module_function
Just load the version in case of bundler...
godfat_rib
train
rb
7c81f2b11489ead0a9a3023ce49e3b77a68e03d3
diff --git a/treetime/gtr.py b/treetime/gtr.py index <HASH>..<HASH> 100644 --- a/treetime/gtr.py +++ b/treetime/gtr.py @@ -232,6 +232,7 @@ class GTR(object): print (' the iterative scheme has not converged') elif np.abs(1-np.max(pi.sum(axis=0))) > dp: print (' the it...
assign mutation rate after gtr inference
neherlab_treetime
train
py
e48612bd34b920969b7869d40719e27ef1bd2718
diff --git a/lib/options/urls.js b/lib/options/urls.js index <HASH>..<HASH> 100644 --- a/lib/options/urls.js +++ b/lib/options/urls.js @@ -24,8 +24,9 @@ async function parseUrlsOption (state, urls) { } const pageUrls = normalizedUrls.filter(isPageUrl) + const sectionUrls = normalizedUrls.filter(isSectionUrl)...
fix: handling of check with custom URLs
octokit_routes
train
js
33771b2634f6690e1cc1e7c183fe83f88d26dcec
diff --git a/lib/celluloid/depreciate.rb b/lib/celluloid/depreciate.rb index <HASH>..<HASH> 100644 --- a/lib/celluloid/depreciate.rb +++ b/lib/celluloid/depreciate.rb @@ -1,3 +1,13 @@ +class Thread + def self.mailbox + Celluloid.mailbox + end + + def self.receive(timeout = nil, &block) + Celluloid.receive(time...
contents of depreciate.rb
celluloid_celluloid
train
rb
00b613754e28ee877e0a164e6e33817c37a9d518
diff --git a/troposphere/autoscalingplans.py b/troposphere/autoscalingplans.py index <HASH>..<HASH> 100644 --- a/troposphere/autoscalingplans.py +++ b/troposphere/autoscalingplans.py @@ -13,7 +13,7 @@ VALID_PREDICTIVESCALINGMAXCAPACITYBEHAVIOR = ( 'SetMaxCapacityToForecastCapacity', 'SetMaxCapacityAboveForeca...
Updated autoscalingplans to match cloudformation doco (#<I>) - Fixed ScalingInstruction's TargetTrackingConfigurations object type - Added missing valid option for VALID_PREDICTIVESCALINGMODE - Fixed object type of PredefinedLoadMetricSpecification
cloudtools_troposphere
train
py
8842c692725061d935883671c798a7445aae5d4c
diff --git a/java/server/src/org/openqa/selenium/grid/docker/DockerOptions.java b/java/server/src/org/openqa/selenium/grid/docker/DockerOptions.java index <HASH>..<HASH> 100644 --- a/java/server/src/org/openqa/selenium/grid/docker/DockerOptions.java +++ b/java/server/src/org/openqa/selenium/grid/docker/DockerOptions.ja...
[grid] Fixing NPE [skip ci]
SeleniumHQ_selenium
train
java
cc139642a275827f8eb07c4751445f68fa5ae5e9
diff --git a/Logger.php b/Logger.php index <HASH>..<HASH> 100644 --- a/Logger.php +++ b/Logger.php @@ -170,4 +170,10 @@ class Logger extends SolariumPlugin implements DataCollectorInterface, \Serializ { $this->data = unserialize($data); } + + public function reset() + { + $this->data = a...
Update Logger.php to support SF 4.x
nelmio_NelmioSolariumBundle
train
php
2f40752a8dd10ac8329c5605c298f508033b86e6
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 @@ -22,11 +22,14 @@ RSpec.configure do |config| end end -def an_illegal_claim_code +def generate_code(number) legal_map = [*'A'..'Z'] + [*'a'..'z'] + [*0..9] - first_length = ...
Refactor claim code generation This refactor makes the code much easier to understand and takes advantage of **rand(Range)** and **Array.new** with a block.
bitpay_ruby-client
train
rb
4c1d9a5aa74d4561dad61924059bba4169c25b84
diff --git a/addon/util/filter.js b/addon/util/filter.js index <HASH>..<HASH> 100644 --- a/addon/util/filter.js +++ b/addon/util/filter.js @@ -24,7 +24,6 @@ var filterByQuery = function(array, propertyKeys, query, options) { }); options.fields = options.fields || propertyKeys; - options.limit = options.limit |...
Don't set options.limit to array.length This can hardcode the limit with a previous array length, which will keep that limit even if the array grows later on. Sifter does not require a limit property, so just delete it here and pass it optionally.
lazybensch_ember-cli-filter-by-query
train
js
c55fd90510d798ea18c9c7027431a8f48774cf18
diff --git a/modules/wyone/src/wyone/io/PrettyAutomataWriter.java b/modules/wyone/src/wyone/io/PrettyAutomataWriter.java index <HASH>..<HASH> 100644 --- a/modules/wyone/src/wyone/io/PrettyAutomataWriter.java +++ b/modules/wyone/src/wyone/io/PrettyAutomataWriter.java @@ -26,8 +26,6 @@ package wyone.io; import java...
Minor fix to resolve cyclic module dependency.
Whiley_WhileyCompiler
train
java
4b91bc98c90e011a273ade2d316aadf14f0b7e70
diff --git a/src/Concerns/ManagesCustomer.php b/src/Concerns/ManagesCustomer.php index <HASH>..<HASH> 100644 --- a/src/Concerns/ManagesCustomer.php +++ b/src/Concerns/ManagesCustomer.php @@ -318,6 +318,32 @@ trait ManagesCustomer } /** + * Credit a customer's balance. + * + * @param int $amoun...
Add new balance transaction methods (#<I>) * Add new balance transaction methods * wip * Update ManagesCustomer.php
laravel_cashier
train
php
e758ccdc12eaa90197909738246bd6064919c89b
diff --git a/lib/disneytokyo/disneyTokyoBase.js b/lib/disneytokyo/disneyTokyoBase.js index <HASH>..<HASH> 100644 --- a/lib/disneytokyo/disneyTokyoBase.js +++ b/lib/disneytokyo/disneyTokyoBase.js @@ -162,6 +162,9 @@ class DisneyTokyoPark extends Park { const rideData = { // ride name name:...
Add facilityCode to TDR wait time meta property (#<I>) * add facilityCode to TDR wait time meta property * Address feedback * Add commas to address linter
cubehouse_themeparks
train
js
b5ad4249d0a488ec5ab144f77f65683ca803feea
diff --git a/public/javascripts/rails_admin/ra.remote-form.js b/public/javascripts/rails_admin/ra.remote-form.js index <HASH>..<HASH> 100644 --- a/public/javascripts/rails_admin/ra.remote-form.js +++ b/public/javascripts/rails_admin/ra.remote-form.js @@ -15,6 +15,7 @@ dialog: null, options: { dialogCla...
Fix dialog's vertical positioning by defining a default height for it
sferik_rails_admin
train
js
a2d6c570c40b8a74ea5e5fd6f8c6c395c13b4cc1
diff --git a/lib/compilers.js b/lib/compilers.js index <HASH>..<HASH> 100644 --- a/lib/compilers.js +++ b/lib/compilers.js @@ -147,7 +147,7 @@ function generateFootnotes() { * @this {HTMLCompiler} */ function unknown(node) { - var content = 'children' in node ? this.all(node) : node.value; + var content = 'c...
Fix output of unknown node with multiple children HTML output for unknown nodes are separated by commas. Fix by converting the content value to a string prior to stringification. Closes GH-5. Closes GH-6.
remarkjs_remark-html
train
js
efa8a073cb6f9ae83fb2bb3f7f5c2270e90cbe6c
diff --git a/src/main/java/org/dasein/cloud/azure/compute/vm/VMCapabilities.java b/src/main/java/org/dasein/cloud/azure/compute/vm/VMCapabilities.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/dasein/cloud/azure/compute/vm/VMCapabilities.java +++ b/src/main/java/org/dasein/cloud/azure/compute/vm/VMCapabilitie...
fixed azure naming constraints (letters, numbers and hyphens only 3-<I> chars)
dasein-cloud_dasein-cloud-azure
train
java
8d1ee18fcca333662c607a4707fc60f6d8da0f16
diff --git a/adapter.go b/adapter.go index <HASH>..<HASH> 100644 --- a/adapter.go +++ b/adapter.go @@ -221,14 +221,14 @@ func parse(data image.Image, plane uint, interlaced bool) (*Plane, error) { } switch plane { case 0: - p.Data = yuv.Y[yuv.YOffset(0, 0):] p.Pitch = yuv.YStride + p.Data = yuv.Y[yuv.YOffset...
Set proper plane sizes We're not supposed to overwrite, but better let the compiler check it for us
bamiaux_rez
train
go
e2a4f9492f15e230bdc419ebabd54f84aceec5c0
diff --git a/blocks/html/db/upgrade.php b/blocks/html/db/upgrade.php index <HASH>..<HASH> 100644 --- a/blocks/html/db/upgrade.php +++ b/blocks/html/db/upgrade.php @@ -34,7 +34,7 @@ function xmldb_block_html_upgrade($oldversion) { $dbman = $DB->get_manager(); - if ($oldversion < 2010071501) { + if ($oldve...
MDL-<I> html block - prevent this update to happen. It cleans all the HTML blocks!
moodle_moodle
train
php
35250d3332c8d81497d3ecf0d6cd49d4f71d03e1
diff --git a/apio/util.py b/apio/util.py index <HASH>..<HASH> 100644 --- a/apio/util.py +++ b/apio/util.py @@ -409,12 +409,16 @@ def set_env_variables(base_dir, bin_dir): if not config_data: # /etc/apio.json file does not exist os.environ["IVL"] = safe_join(base_dir.get(IVERILOG), "lib", "ivl") - os...
Bug fixed: trellis and icebox env. variables fixed
FPGAwars_apio
train
py
d97d91aa0ec13dac8c25fb0b0547af99d0c5bb98
diff --git a/spyderlib/widgets/arrayeditor.py b/spyderlib/widgets/arrayeditor.py index <HASH>..<HASH> 100644 --- a/spyderlib/widgets/arrayeditor.py +++ b/spyderlib/widgets/arrayeditor.py @@ -557,7 +557,7 @@ class ArrayEditor(QDialog): self.slicing_label = QLabel() btn_layout.addWidget...
Variable Explorer: Fix displaying Numpy 3D arrays - Their view was empty after double clicking on them.
spyder-ide_spyder
train
py
e0da2bc81fb2dc04a588006b771df9df6c2f398a
diff --git a/symphony/lib/toolkit/class.frontendpage.php b/symphony/lib/toolkit/class.frontendpage.php index <HASH>..<HASH> 100644 --- a/symphony/lib/toolkit/class.frontendpage.php +++ b/symphony/lib/toolkit/class.frontendpage.php @@ -239,6 +239,12 @@ } } + #### + # Delegate: FrontendParamsPostResolve...
Additional delegate for once the entire param pool has been resolved. Existing "FrontendParamsResolve" executes before Data Source output parameters have been created.
symphonycms_symphony-2
train
php
23122bd7f6a676e1f58dbeeb08f477b3f751f235
diff --git a/schedula/utils/drw.py b/schedula/utils/drw.py index <HASH>..<HASH> 100755 --- a/schedula/utils/drw.py +++ b/schedula/utils/drw.py @@ -853,6 +853,7 @@ class SiteMap(collections.OrderedDict): 'digraph', 'node_styles', 'node_data', 'node_function', 'edge_data', 'max_lines', 'max_width' ...
feat(drw): Add option include_folders_as_filenames to SiteMap.
vinci1it2000_schedula
train
py
156a3c6cf176e8ec18e17446d9cc93a5ce82d472
diff --git a/config/webpack.config.dev.js b/config/webpack.config.dev.js index <HASH>..<HASH> 100644 --- a/config/webpack.config.dev.js +++ b/config/webpack.config.dev.js @@ -98,7 +98,16 @@ module.exports = { useEslintrc: false }, postcss: function() { - return [autoprefixer]; + return [ + autopre...
Added a reasonable config for autoprefixer (resolves #<I>) (#<I>) * Added a reasonable config for autoprefixer (resolves #<I>) * Moved autoprefixer config to webpack.config
vcarl_create-react-app
train
js,js
31d0374c64248e209384b77cc2685b0f013fbe14
diff --git a/lib/extract/extractGradient.js b/lib/extract/extractGradient.js index <HASH>..<HASH> 100644 --- a/lib/extract/extractGradient.js +++ b/lib/extract/extractGradient.js @@ -9,7 +9,7 @@ import units from "../units"; const percentReg = /^([+\-]?\d+(?:\.\d+)?(?:[eE][+\-]?\d+)?)(%?)$/; function percentToFloat...
Fix percent.match is not a function when percent is a number
react-native-community_react-native-svg
train
js
d69bd654300eb20e71572ed5c2ba215504a79b9c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ setuptools.setup( long_description=read_description(), license="GPL3", keywords="chess fen pgn polyglot", - url="http://github.com/niklasf/python-chess", + url="https://github.com/niklasf/py...
Directly link to https github page
niklasf_python-chess
train
py
9467b53a795aa5ba716b20d8db113682570649fd
diff --git a/src/components/tabs/tabs.js b/src/components/tabs/tabs.js index <HASH>..<HASH> 100644 --- a/src/components/tabs/tabs.js +++ b/src/components/tabs/tabs.js @@ -66,7 +66,7 @@ class Tab extends ContentSwitcher { const trigger = eventMatches(event, this.options.selectorTrigger); if (button) { s...
fix(tabs): fix for mobile tab selection not closing the dropdown (#<I>) (#<I>) Fixes #<I>. Closes #<I>.
carbon-design-system_carbon-components
train
js
fa9dc74550cd4c773f04f5b85dcbf5a897793abd
diff --git a/remi/gui.py b/remi/gui.py index <HASH>..<HASH> 100644 --- a/remi/gui.py +++ b/remi/gui.py @@ -137,6 +137,7 @@ class Tag(object): self.children = _VersionedDictionary() self.attributes = _VersionedDictionary() # properties as class id style + self.style = _VersionedDictionary() ...
gui: fix broken opencv app
dddomodossola_remi
train
py
121d194257d9bdc107a9a19c7a118338d678a0ee
diff --git a/angr/analyses/dfg.py b/angr/analyses/dfg.py index <HASH>..<HASH> 100644 --- a/angr/analyses/dfg.py +++ b/angr/analyses/dfg.py @@ -149,8 +149,6 @@ class DFG(Analysis): tmpsnodes[stmt.oldLo] = stmt_node else: - if hasattr(stmt, 'tmp'): - ...
dfg: remove useless code Only WrTmp and Dirty have a tmp attribute so this condition will never be true since they already have been processed. Also, it makes no sense to have a tag as a key in tmpsnodes, probably an old typo.
angr_angr
train
py
c768ff940aa314eedd0c9f01d116856f90540703
diff --git a/lib/specjour/db_scrub.rb b/lib/specjour/db_scrub.rb index <HASH>..<HASH> 100644 --- a/lib/specjour/db_scrub.rb +++ b/lib/specjour/db_scrub.rb @@ -13,7 +13,7 @@ module Specjour extend self def drop - Rake::Task['db:drop'] + Rake::Task['db:drop'].invoke end def scrub
DbScrub.drop actually drops the database
sandro_specjour
train
rb
d4b6fce16dd58d898dfb2a35cd3b15a2a90d526f
diff --git a/public/js/admin/content-manager2.js b/public/js/admin/content-manager2.js index <HASH>..<HASH> 100644 --- a/public/js/admin/content-manager2.js +++ b/public/js/admin/content-manager2.js @@ -411,8 +411,6 @@ function RcmEdit(config) { $("#rcmAdminTitleBarMenu li ul").toggle(); }); - ...
Removed un-needed calls, due to refactoring the admin screens.
reliv_Rcm
train
js
a5329edae03a057c3fe2dd241f55f4996ab8ab4e
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -484,10 +484,13 @@ func (c *client) internalConnLost(err error) { DEBUG.Println(CLI, "internalConnLost waiting on workers") <-stopDone DEBUG.Println(CLI, "internalConnLost workers stopped") - if c.options.Cle...
Issue #<I> - If options.AutoReconnect is true calling Disconnect could trigger another connection attempt.
eclipse_paho.mqtt.golang
train
go
2b0152f6f4ad7e9dbc6127a051a29e10e0b534c7
diff --git a/src/app/services/graphite/gfunc.js b/src/app/services/graphite/gfunc.js index <HASH>..<HASH> 100644 --- a/src/app/services/graphite/gfunc.js +++ b/src/app/services/graphite/gfunc.js @@ -112,6 +112,19 @@ function (_) { }); addFuncDef({ + name: "consolidateBy", + category: categories.Special, +...
add support for graphite func consolidateBy
grafana_grafana
train
js
4a67d46723031429867d7734380a5ed0b6608b6c
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ import sys # When creating the sdist, make sure the django.mo file also exists: -if 'sdist' in sys.argv: +if 'sdist' in sys.argv or 'develop' in sys.argv: try: os.chdir('fluent_comments') ...
Compile .mo files on `pip install -e` too.
django-fluent_django-fluent-comments
train
py
cedef71d67c07dc85f408a0a5b1ee87e1df0a424
diff --git a/library/Zepto/Router.php b/library/Zepto/Router.php index <HASH>..<HASH> 100644 --- a/library/Zepto/Router.php +++ b/library/Zepto/Router.php @@ -155,21 +155,6 @@ class Router } /** - * If the router cannot match the current URL to any of the given routes, - * the function passed to thi...
Removed ``default_route()`` method
hassankhan_Sonic
train
php
8bce051145ae31c373174957ee50c2f617a6164f
diff --git a/openquake/risklib/riskinput.py b/openquake/risklib/riskinput.py index <HASH>..<HASH> 100644 --- a/openquake/risklib/riskinput.py +++ b/openquake/risklib/riskinput.py @@ -146,12 +146,12 @@ class CompositeRiskModel(collections.Mapping): 'an exposure' % oqparam.inputs['job_ini']) ...
Added sorting of risk functions [skip hazardlib]
gem_oq-engine
train
py
4db541a684a8c897e89f5330871c296179385324
diff --git a/web/concrete/blocks/dashboard_app_status/controller.php b/web/concrete/blocks/dashboard_app_status/controller.php index <HASH>..<HASH> 100644 --- a/web/concrete/blocks/dashboard_app_status/controller.php +++ b/web/concrete/blocks/dashboard_app_status/controller.php @@ -7,6 +7,7 @@ protected $btCacheBloc...
Fixing long checks between newsflow slot blocks and dashboard app status blocks Former-commit-id: a5fd<I>c9d<I>ed<I>b0c<I>b<I>d6
concrete5_concrete5
train
php,php
2eacac0f4d18e5929ebacff2c359725ecd8e88e5
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="toutf8", - version="1.3.0", + version="1.3.1", license='http://www.apache.org/licenses/LICENSE-2.0', description="A tool to change all files in spe...
chardet has a bug and the authors are releasing a new version; during this time, just work around it.
leonsim_toutf8
train
py,py
993069deef08f349a0e4092c36f9dfb4fa953a80
diff --git a/js/src/sidebar.js b/js/src/sidebar.js index <HASH>..<HASH> 100644 --- a/js/src/sidebar.js +++ b/js/src/sidebar.js @@ -352,7 +352,7 @@ class Sidebar extends BaseComponent { // Static - static _sidebarInterface(element, config) { + static sidebarInterface(element, config) { let data = Data.getD...
refactor: rename `_sidebarInterface` to `sidebarInterface`
coreui_coreui
train
js
01500421b17190601364aa8a776485a02ae738cf
diff --git a/PyFunceble/status.py b/PyFunceble/status.py index <HASH>..<HASH> 100644 --- a/PyFunceble/status.py +++ b/PyFunceble/status.py @@ -65,7 +65,6 @@ from PyFunceble.expiration_date import ExpirationDate from PyFunceble.generate import Generate from PyFunceble.helpers import Regex from PyFunceble.http_code im...
Deletion of the import of implicitly already imported classes
funilrys_PyFunceble
train
py
f1bc08429884284bb54be7812e7135c87d28c6b2
diff --git a/lib/scorpion/rails/job.rb b/lib/scorpion/rails/job.rb index <HASH>..<HASH> 100644 --- a/lib/scorpion/rails/job.rb +++ b/lib/scorpion/rails/job.rb @@ -11,9 +11,7 @@ module Scorpion # Setup dependency injection base.send :include, Scorpion::Object base.send :include, Scorpion::Rail...
Fix with_scorpion around filter reference in mailer and job mixins
phallguy_scorpion
train
rb,rb
eef894ef99df6cf4f602d81c481651880bdd74a4
diff --git a/js/core/Component.js b/js/core/Component.js index <HASH>..<HASH> 100644 --- a/js/core/Component.js +++ b/js/core/Component.js @@ -597,6 +597,20 @@ define(["require", "js/core/Element", "js/core/TextElement", "js/core/Bindable", }); Component.Configuration = Component.inherit("js.core.Co...
added getConfigraionByKeyValue in Configuration
rappid_rAppid.js
train
js
93cd4e4d325cdf3b00f7a13fb0d229a37e9dae5c
diff --git a/angr/analyses/cfg_fast.py b/angr/analyses/cfg_fast.py index <HASH>..<HASH> 100644 --- a/angr/analyses/cfg_fast.py +++ b/angr/analyses/cfg_fast.py @@ -802,10 +802,6 @@ class CFGFast(ForwardAnalysis, CFGBase): # pylint: disable=abstract-method self._update_progress(percentage) - cu...
Move _changed_functions modification code around. Move the modification to _changed_functions to _scan_irsb() and _scan_procedure(), since the function address might be changed (see next commit).
angr_angr
train
py
c14029f70e8423d157b83f908ced5d22169033b4
diff --git a/setup.py b/setup.py index <HASH>..<HASH> 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ import os from setuptools import setup __author__ = "Igor R. Dejanović <igor DOT dejanovic AT gmail DOT com>" -__version__ = "0.1" +__version__ = "0.2-dev" NAME = 'textX' DESC = 'Meta-language in Arpeggio ...
Version bump to <I>-dev
textX_textX
train
py
1856de896940ab5efce673caaf901f5f368128b5
diff --git a/Model/Service/TransactionHandlerService.php b/Model/Service/TransactionHandlerService.php index <HASH>..<HASH> 100755 --- a/Model/Service/TransactionHandlerService.php +++ b/Model/Service/TransactionHandlerService.php @@ -337,11 +337,12 @@ class TransactionHandlerService $parentTransac...
Updated the transaction state handling for voided payments
checkout_checkout-magento2-plugin
train
php
0fd9dc38849fd1f91b311399e951847e5674bcc2
diff --git a/lib/solidus_shipwire/shipwireable/shipwire_api.rb b/lib/solidus_shipwire/shipwireable/shipwire_api.rb index <HASH>..<HASH> 100644 --- a/lib/solidus_shipwire/shipwireable/shipwire_api.rb +++ b/lib/solidus_shipwire/shipwireable/shipwire_api.rb @@ -66,6 +66,8 @@ module SolidusShipwire end ...
Raise error if shipwire id is missing
solidusio-contrib_solidus_shipwire
train
rb,rb
60d8e4ac28726d04d029b25cff82181a9b0ab5c3
diff --git a/activerecord/test/cases/relations_test.rb b/activerecord/test/cases/relations_test.rb index <HASH>..<HASH> 100644 --- a/activerecord/test/cases/relations_test.rb +++ b/activerecord/test/cases/relations_test.rb @@ -1018,7 +1018,7 @@ class RelationTest < ActiveRecord::TestCase end def test_update_all...
Ensure correct ordering of results in test_update_all_with_joins_and_offset_and_order Last two asserts in this test assume that all_comments are ordered by posts.id and then by comments.id therefore additional ordering is added. Without it test was failing on Oracle which returned results in different order.
rails_rails
train
rb
42e6e57cf09f2af586a3ea722817769416414992
diff --git a/lib/eventhub/processor.rb b/lib/eventhub/processor.rb index <HASH>..<HASH> 100644 --- a/lib/eventhub/processor.rb +++ b/lib/eventhub/processor.rb @@ -103,7 +103,7 @@ module EventHub # try to convert to Eventhub message message = Message.from_json(payload) EventHub.logger.info(...
updated trail to be as in spec
thomis_eventhub-processor
train
rb
5ebb731c046434406b0d9dbfbcb69280a74c1a06
diff --git a/uncompyle6/semantics/pysource.py b/uncompyle6/semantics/pysource.py index <HASH>..<HASH> 100644 --- a/uncompyle6/semantics/pysource.py +++ b/uncompyle6/semantics/pysource.py @@ -1860,7 +1860,7 @@ class SourceWalker(GenericASTTraversal, object): 'CALL_FUNCTION_VAR_KW', 'CALL_FUNCTIO...
Worse results. Revert some of the last changes
rocky_python-uncompyle6
train
py
eee99e4735a72348f7e82e47e2dd556a637df650
diff --git a/lancet/launch.py b/lancet/launch.py index <HASH>..<HASH> 100644 --- a/lancet/launch.py +++ b/lancet/launch.py @@ -773,10 +773,9 @@ class review_and_launch(core.PrettyPrinted, param.Parameterized): launch_fn = param.Callable(doc='''The function that is to be decorated.''') - def __init__(self, o...
Fixed constructor of review_and_launch
ioam_lancet
train
py
13511cbc9dd6aafbaeec3d60b54c38ccfb8cd95e
diff --git a/src/Payum/Paypal/ExpressCheckout/Nvp/Tests/Functional/ApiTest.php b/src/Payum/Paypal/ExpressCheckout/Nvp/Tests/Functional/ApiTest.php index <HASH>..<HASH> 100644 --- a/src/Payum/Paypal/ExpressCheckout/Nvp/Tests/Functional/ApiTest.php +++ b/src/Payum/Paypal/ExpressCheckout/Nvp/Tests/Functional/ApiTest.php @...
[paypal] Modified test after removed payer id requirement
Payum_Payum
train
php