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
63b93121b5aa0afc1ba8caeb43050c9b7a1494ff
diff --git a/src/Model/AppConfig.php b/src/Model/AppConfig.php index <HASH>..<HASH> 100644 --- a/src/Model/AppConfig.php +++ b/src/Model/AppConfig.php @@ -91,7 +91,7 @@ class AppConfig } // The `web` section has changed to `web`.`locations`. - if (isset($config['web']['document_root']) && !is...
Fix config normalization when there is an empty locations array
platformsh_platformsh-cli
train
php
c1b838926c09d13f69d7d26238e171e48cd97dae
diff --git a/pyphantom/flex.py b/pyphantom/flex.py index <HASH>..<HASH> 100755 --- a/pyphantom/flex.py +++ b/pyphantom/flex.py @@ -385,6 +385,9 @@ class Phantom(object): return parse_response(response) + except AttributeError: + logger.warn('Trying to send data without connection'...
Warn if we try to send without a socket
OTTOMATIC-IO_pyphantom
train
py
6cfaf55636306a966634f5e84e8a724882a248b9
diff --git a/runners/vr/runners/base.py b/runners/vr/runners/base.py index <HASH>..<HASH> 100644 --- a/runners/vr/runners/base.py +++ b/runners/vr/runners/base.py @@ -106,7 +106,7 @@ class BaseRunner(object): print("Writing env.sh") envsh_path = os.path.join(get_container_path(self.config), 'env.sh') ...
Save env.sh as text
yougov_vr.runners
train
py
24ed20cbc5be943aa49f24f130e6158ab2f15dd6
diff --git a/pysat/_files.py b/pysat/_files.py index <HASH>..<HASH> 100644 --- a/pysat/_files.py +++ b/pysat/_files.py @@ -193,9 +193,11 @@ class Files(object): # Get list of potential data directory paths from pysat. Construct # possible locations for data. Ensure path always ends with directory - ...
BUG: refresh path search Allow `directory_format` to fully specify a potential file path, not just a subpath.
rstoneback_pysat
train
py
550d90009f011893e3a424c67b971ceac9ce6b33
diff --git a/src/main/java/org/codehaus/groovy/classgen/ReturnAdder.java b/src/main/java/org/codehaus/groovy/classgen/ReturnAdder.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/codehaus/groovy/classgen/ReturnAdder.java +++ b/src/main/java/org/codehaus/groovy/classgen/ReturnAdder.java @@ -114,7 +114,7 @@ publi...
GROOVY-<I>: Line number information for automatically inserted return statements slightly different for <I> vs <I> (provide fallback) If the approach now taken in <I> (which we believe is the preferred approach) would yield no line number info, fall back to the approach used for <I>
apache_groovy
train
java
67fa0d535f9e4bc3cbcbf881f39c336df227128b
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 @@ -1,5 +1,5 @@ require 'rubygems' -gem 'rspec' +gem 'rspec', '>= 1.2.8' require 'spec' require File.join(File.dirname(__FILE__), '..', 'lib', 'httparty')
Bumped required version of rspec. One of specs was failing simply from bug in older version of rspec. All specs pass with at least this version.
jnunemaker_httparty
train
rb
28555b114fc3db947dd76ef92b66c4f4c60a71fe
diff --git a/packages/webiny-app/src/plugins/fileUploaderPlugin.js b/packages/webiny-app/src/plugins/fileUploaderPlugin.js index <HASH>..<HASH> 100644 --- a/packages/webiny-app/src/plugins/fileUploaderPlugin.js +++ b/packages/webiny-app/src/plugins/fileUploaderPlugin.js @@ -20,7 +20,7 @@ export default (config: Object ...
fix: undo accidental find / replace (blame storm)
Webiny_webiny-js
train
js
f9db71a6d331325fe58ae822507811b416bddc7b
diff --git a/app/models/katello/rhsm_fact_name.rb b/app/models/katello/rhsm_fact_name.rb index <HASH>..<HASH> 100644 --- a/app/models/katello/rhsm_fact_name.rb +++ b/app/models/katello/rhsm_fact_name.rb @@ -5,5 +5,9 @@ module Katello def set_name self.short_name = self.name.split(SEPARATOR).last end + ...
Fixes #<I> - Display subscription-manager fact origin This allows the fact name to show up in the fact_values page. The 'Redhat.png' icon is in Foreman already so there is no need to add it to this commit.
Katello_katello
train
rb
645c280ee0ddd38af4f2b3e7ad40f08f09eceee6
diff --git a/IO/IOInterface.php b/IO/IOInterface.php index <HASH>..<HASH> 100644 --- a/IO/IOInterface.php +++ b/IO/IOInterface.php @@ -83,6 +83,16 @@ interface IOInterface public function write($messages, $newline = true, $verbosity = self::VERBOSITY_NORMAL); /** + * Overwrites a previous message to the...
Added the method "overwrite" to the IOInterface
spress_spress-core
train
php,php
fb31dfb5795edf1c76accb827bf2152ea86aac47
diff --git a/src/SwedbankJson.php b/src/SwedbankJson.php index <HASH>..<HASH> 100644 --- a/src/SwedbankJson.php +++ b/src/SwedbankJson.php @@ -32,7 +32,7 @@ class SwedbankJson * List of available user profile(s) with per session IDs. Each user can only have one private profile but several corporate profiles. ...
Update documentation for profileList() The JSON decoded result is not returning an array but an object.
walle89_SwedbankJson
train
php
503b6ea6c85904b237cd6c05acd0d361c5d128ac
diff --git a/src/store/indexeddb-local-backend.js b/src/store/indexeddb-local-backend.js index <HASH>..<HASH> 100644 --- a/src/store/indexeddb-local-backend.js +++ b/src/store/indexeddb-local-backend.js @@ -44,7 +44,7 @@ function createDatabase(db) { */ function selectQuery(store, keyRange, resultMapper) { cons...
Correct incorrect Promise() invocation you're supposed to call Promise() as a constructor rather than a static function.
matrix-org_matrix-js-sdk
train
js
57b25e5645162ac5c0e1008194dd978631ba8f21
diff --git a/lib/fog/storage/aws.rb b/lib/fog/storage/aws.rb index <HASH>..<HASH> 100644 --- a/lib/fog/storage/aws.rb +++ b/lib/fog/storage/aws.rb @@ -337,20 +337,19 @@ DATA signature = Base64.encode64(signed_string).chomp! end - private def request(params, &block) p...
Temporary redirect should not execute the block
fog_fog
train
rb
90025b3289c5324fe8440992f125b3a693c2c460
diff --git a/tests/Message/TaskMessageTest.php b/tests/Message/TaskMessageTest.php index <HASH>..<HASH> 100644 --- a/tests/Message/TaskMessageTest.php +++ b/tests/Message/TaskMessageTest.php @@ -56,10 +56,10 @@ class TaskMessageTest extends MessageTestCase public function consumeMessageData() { retur...
Increase chance of getting bug for random path reducer
tienvx_mbt-bundle
train
php
28f4fa158b4b0df62af726163bd6ee93f3918cb5
diff --git a/lib/assets/JavaScript.js b/lib/assets/JavaScript.js index <HASH>..<HASH> 100644 --- a/lib/assets/JavaScript.js +++ b/lib/assets/JavaScript.js @@ -374,6 +374,7 @@ class JavaScript extends Text { estraverse.traverse(parseTree, { enter: (node, parent) => { if (parent) { + // This...
Note why we shift/unshift rather than push/pop onto the stack
assetgraph_assetgraph
train
js
0214291fbfc35bf5aaa8bfa2995bb049f72f1e74
diff --git a/src/jottalib/JFS.py b/src/jottalib/JFS.py index <HASH>..<HASH> 100644 --- a/src/jottalib/JFS.py +++ b/src/jottalib/JFS.py @@ -20,7 +20,7 @@ # metadata __author__ = 'havard@gulldahl.no' -__version__ = '0.2' +from jottalib import __version__ # importing stdlib import sys, os, os.path, time @@ -29,7 +...
get __version__ from jottalib, and change cache timeout
havardgulldahl_jottalib
train
py
cb1d4b8e7cb9873546963470b9a4e2eb2535ad7b
diff --git a/src/Sulu/Bundle/ContactBundle/Controller/AccountsController.php b/src/Sulu/Bundle/ContactBundle/Controller/AccountsController.php index <HASH>..<HASH> 100644 --- a/src/Sulu/Bundle/ContactBundle/Controller/AccountsController.php +++ b/src/Sulu/Bundle/ContactBundle/Controller/AccountsController.php @@ -29,7 ...
refactored name of entity to entityName
sulu_sulu
train
php
b506fd3f13f0d14033d1054edf277e84345717cd
diff --git a/indra/sources/bel/pybel_processor.py b/indra/sources/bel/pybel_processor.py index <HASH>..<HASH> 100644 --- a/indra/sources/bel/pybel_processor.py +++ b/indra/sources/bel/pybel_processor.py @@ -66,7 +66,7 @@ class PybelProcessor(object): # FIXME: Handle reactions def get_statements(self): - ...
Update PyBEL processor to work with networkx 2
sorgerlab_indra
train
py
449704db4a0aa4ebb02ce77399d7b518d44a88e2
diff --git a/Controller/Component/CrudComponent.php b/Controller/Component/CrudComponent.php index <HASH>..<HASH> 100644 --- a/Controller/Component/CrudComponent.php +++ b/Controller/Component/CrudComponent.php @@ -82,18 +82,15 @@ class CrudComponent extends Component { * * `eventPrefix` All emitted events will be ...
Move documentation around to match the key order
FriendsOfCake_crud-json-api
train
php
308876fca262736a5fa36dddb3990b27fbc6e64a
diff --git a/activesupport/lib/active_support/core_ext/file/atomic.rb b/activesupport/lib/active_support/core_ext/file/atomic.rb index <HASH>..<HASH> 100644 --- a/activesupport/lib/active_support/core_ext/file/atomic.rb +++ b/activesupport/lib/active_support/core_ext/file/atomic.rb @@ -1,5 +1,3 @@ -require 'tempfile' -...
Lazy-require tempfile for File#atomic_write
rails_rails
train
rb
7b444a96ec7a535f9d4f3e9237236058fabbfe94
diff --git a/lib/tests/moodlelib_test.php b/lib/tests/moodlelib_test.php index <HASH>..<HASH> 100644 --- a/lib/tests/moodlelib_test.php +++ b/lib/tests/moodlelib_test.php @@ -1897,4 +1897,27 @@ class moodlelib_testcase extends advanced_testcase { $this->resetDebugging(); } + + /** + * Test functi...
MDL-<I> added unit test for function convert_to_array()
moodle_moodle
train
php
7417f6ed8d38e876813720befb5ab2422248e075
diff --git a/templates/BaseRenderer.php b/templates/BaseRenderer.php index <HASH>..<HASH> 100644 --- a/templates/BaseRenderer.php +++ b/templates/BaseRenderer.php @@ -34,7 +34,7 @@ abstract class BaseRenderer extends Component /** * @var array files for guide pages */ - public $markDownFiles; + public $markDown...
fixed issue with apidoc without guide
yiisoft_yii2-apidoc
train
php
960ad1e034c5e74752a0ec1f34d9c5a65650bbe1
diff --git a/src/Middleware/Authorize.php b/src/Middleware/Authorize.php index <HASH>..<HASH> 100644 --- a/src/Middleware/Authorize.php +++ b/src/Middleware/Authorize.php @@ -3,7 +3,7 @@ namespace Silber\Bouncer\Middleware; use Closure; -use Illuminate\Auth\Access\Gate; +use Illuminate\Contracts\Auth\Access\Gate; ...
Updating Gate import to use the contract
JosephSilber_bouncer
train
php
d4beb13723e24bd05dd820c2a9cd9b96122e8a40
diff --git a/packages/ssf/bits/98_exports.js b/packages/ssf/bits/98_exports.js index <HASH>..<HASH> 100644 --- a/packages/ssf/bits/98_exports.js +++ b/packages/ssf/bits/98_exports.js @@ -6,3 +6,4 @@ SSF.load_table = function load_table(tbl/*:SSFTable*/)/*:void*/ { }; SSF.init_table = init_table; SSF.format = format;...
(ssf) export choose_fmt (closes #<I>) [ci skip]
SheetJS_js-xlsx
train
js
f9fdf4c430a15d8201314c932ebe4679bc573dbf
diff --git a/docs/conf.py b/docs/conf.py index <HASH>..<HASH> 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -113,7 +113,7 @@ todo_include_todos = False # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. -html_theme = 'alabaster' +html_theme = 'default' # The...
Set html_theme as default
APSL_puput
train
py
4caa4af6ae275db9a499c27b66cc636cb9c596a1
diff --git a/ez_setup.py b/ez_setup.py index <HASH>..<HASH> 100644 --- a/ez_setup.py +++ b/ez_setup.py @@ -36,7 +36,7 @@ try: except ImportError: USER_SITE = None -DEFAULT_VERSION = "8.0.2" +DEFAULT_VERSION = "8.0.3" DEFAULT_URL = "https://pypi.python.org/packages/source/s/setuptools/" def _python_cmd(*args...
Bumped to <I> in preparation for next release.
pypa_setuptools
train
py,py
fec63826b9c2c7b626b30cf1bdb35535dfe45f17
diff --git a/docs/registry.go b/docs/registry.go index <HASH>..<HASH> 100644 --- a/docs/registry.go +++ b/docs/registry.go @@ -69,7 +69,8 @@ func ResolveRepositoryName(reposName string) (string, string, error) { return "", "", ErrInvalidRepositoryName } nameParts := strings.SplitN(reposName, "/", 2) - if !string...
Always consider localhost as a domain name when parsing the FQN repos name
docker_distribution
train
go
5654e07be5b65beda3c7492539ec072577b99771
diff --git a/build/tasks/build-release/download.js b/build/tasks/build-release/download.js index <HASH>..<HASH> 100644 --- a/build/tasks/build-release/download.js +++ b/build/tasks/build-release/download.js @@ -21,7 +21,7 @@ module.exports = function(grunt, config, parameters, done) { } fs.mkdir(workFolder); p...
[grunt-build-release] Fix permissions extracting downloaded ZIP (#<I>) Former-commit-id: e<I>b1f<I>fcff6a<I>e6edc<I>bdc5a7f7 Former-commit-id: <I>b<I>bcf<I>d<I>df<I>f<I>bdb<I>d3b<I>c
concrete5_concrete5
train
js
bc1d71b3741a1561590168cf25b6397ee6adb180
diff --git a/concepts/junctors.py b/concepts/junctors.py index <HASH>..<HASH> 100644 --- a/concepts/junctors.py +++ b/concepts/junctors.py @@ -47,7 +47,7 @@ class Relations(list): <'Possibly' Contingency>, <'Maybe' Contingency>, <'Possibly' Equivalent 'Maybe'>] - >>> print(r) + >>> print(r) # noqa:...
wanted trailing whitespace in doctest
xflr6_concepts
train
py
ff209db700cbc53bc0dcd1f0e3d393366c853eb3
diff --git a/lib/slim/smart_text.rb b/lib/slim/smart_text.rb index <HASH>..<HASH> 100644 --- a/lib/slim/smart_text.rb +++ b/lib/slim/smart_text.rb @@ -16,16 +16,16 @@ module Slim def on_multi(*exps) block = [:multi] - last = nil + prev = nil last_exp = exps.reject{ |exp| exp.first == ...
Cosmetic change to make the code a bit more readable.
slim-template_slim
train
rb
3913ac1d9e626ad1352d610414767b99ad0ecb36
diff --git a/js/core/Bindable.js b/js/core/Bindable.js index <HASH>..<HASH> 100644 --- a/js/core/Bindable.js +++ b/js/core/Bindable.js @@ -31,6 +31,15 @@ define(["js/core/EventDispatcher", "js/lib/parser", "js/core/Binding","underscor } })(); + + var isEqual = function(a,b){ + ...
added isEqual function for rAppidjs core instances ...
rappid_rAppid.js
train
js
5f34af4d7171f39d9bddb08ad84d6ba1d37b44d0
diff --git a/core/Tracker/Request.php b/core/Tracker/Request.php index <HASH>..<HASH> 100644 --- a/core/Tracker/Request.php +++ b/core/Tracker/Request.php @@ -226,7 +226,7 @@ class Request public function getParam($name) { - $supportedParams = array( + static $supportedParams = array( ...
Improve Tracker performance by using static variable inside function
matomo-org_matomo
train
php
410f5f7c8b911f2cd8b35bdf7ab6cddc899ca68b
diff --git a/src/API/Entity.php b/src/API/Entity.php index <HASH>..<HASH> 100755 --- a/src/API/Entity.php +++ b/src/API/Entity.php @@ -651,7 +651,7 @@ class Entity extends Injectable * @param \PhalconRest\API\BaseModel $resultSet * @return array */ - protected function loadAllowedColumns($resultSet...
fix bug relating to empty recs
gte451f_phalcon-json-api-package
train
php
ca7f46a4acb02d48975cac4458bb1782a93550b9
diff --git a/meshio/h5m_io.py b/meshio/h5m_io.py index <HASH>..<HASH> 100644 --- a/meshio/h5m_io.py +++ b/meshio/h5m_io.py @@ -209,9 +209,9 @@ def write( tstt.create_dataset( 'history', data=[ - __name__.encode('utf8'), - __about__.__version__.encode('utf8'), - str(datetim...
utf8 -> utf-8
nschloe_meshio
train
py,py
3dc7e68eaee47b796eeb66c509fab2f482389142
diff --git a/src/AssetsAutoCompressComponent.php b/src/AssetsAutoCompressComponent.php index <HASH>..<HASH> 100644 --- a/src/AssetsAutoCompressComponent.php +++ b/src/AssetsAutoCompressComponent.php @@ -434,7 +434,10 @@ JS if (!$file) { throw new \Exception("Unable to open file: '{$filePath}'"); ...
Update AssetsAutoCompressComponent.php If file is empty, fread() is complaining about filesize.
skeeks-semenov_yii2-assets-auto-compress
train
php
e977e603b9a8fd4fb4a3646fd588208ab799a6ec
diff --git a/client.go b/client.go index <HASH>..<HASH> 100644 --- a/client.go +++ b/client.go @@ -55,7 +55,7 @@ func (c *Client) Get(path string, args Arguments, target interface{}) error { c.Throttle() params := args.ToURLValues() - c.log("GET request to %s?%s", path, params.Encode()) + c.log("[trello] GET %s?%...
Makes debug logging available for POST requests. Adds [trello] prefix in front of logging statements.
adlio_trello
train
go
4852f53aa630cb6b0247d0c8bbecd6747126c208
diff --git a/integration-tests/src/test/java/integration/system/collectors/CollectorsTest.java b/integration-tests/src/test/java/integration/system/collectors/CollectorsTest.java index <HASH>..<HASH> 100644 --- a/integration-tests/src/test/java/integration/system/collectors/CollectorsTest.java +++ b/integration-tests/s...
Using proper annotation instead of commenting out the test one.
Graylog2_graylog2-server
train
java
f53ddc7642dbedb19ff13d4e21d414908a11549c
diff --git a/modules/map.py b/modules/map.py index <HASH>..<HASH> 100644 --- a/modules/map.py +++ b/modules/map.py @@ -139,7 +139,8 @@ def mavlink_packet(m): else: return - mpstate.map.set_position('plane', (state.lat, state.lon), rotation=state.heading) + if state.lat != 0 or state.lon != 0: + ...
map: don't display the north pole :-)
ArduPilot_MAVProxy
train
py
bbb53af6784d09c697033d2d0332d3ca8cd1f4c5
diff --git a/horizon/static/angular/table/table.js b/horizon/static/angular/table/table.js index <HASH>..<HASH> 100644 --- a/horizon/static/angular/table/table.js +++ b/horizon/static/angular/table/table.js @@ -32,7 +32,7 @@ */ app.constant('expandSettings', { expandIconClasses: 'fa-chevron-right fa-chevron...
[Launch Instance Fix] Making table expand faster Currently, the animation is too slow to show the details in the table's row. It looks like it to hard for the UI to do such a simple thing. We should make it faster and slick. Change-Id: Ia8cff<I>b<I>c<I>b<I>e<I>ca<I>d<I>ee<I>a4 Closes-Bug: #<I>
openstack_horizon
train
js
d87abbb668002804632d063f9aefa13a7c4b81b4
diff --git a/indra/tools/reading/read_pmids.py b/indra/tools/reading/read_pmids.py index <HASH>..<HASH> 100644 --- a/indra/tools/reading/read_pmids.py +++ b/indra/tools/reading/read_pmids.py @@ -38,12 +38,18 @@ parser.add_argument( 'option, so no reading will be done.') ) parser.add_argument( - '-f'...
Re-introduce force-read option implementation.
sorgerlab_indra
train
py
526b0878dce8780a62dbee3f4ca55ed76ea17746
diff --git a/scripts/test.js b/scripts/test.js index <HASH>..<HASH> 100644 --- a/scripts/test.js +++ b/scripts/test.js @@ -93,7 +93,7 @@ try { } else { if (args.indexOf("--quiet") > -1) { console.log("-- Running test suite in quiet mode"); - execSync(`output=$(${jest()}); ret=$?; e...
print in background so travis doesnt complain
finos_perspective
train
js
5df4f07a482283fb7f0eb8bb570509332b7880ae
diff --git a/Entity/Task.php b/Entity/Task.php index <HASH>..<HASH> 100644 --- a/Entity/Task.php +++ b/Entity/Task.php @@ -19,10 +19,10 @@ use Sulu\Component\Persistence\Model\AuditableTrait; */ class Task implements TaskInterface { - const RESOURCE_KEY = 'tasks'; - use AuditableTrait; + const RESOURCE...
Fix code style (#<I>)
sulu_SuluAutomationBundle
train
php
eb8491f754dc65964088554eb9ec5969faa59138
diff --git a/src/Symfony/Component/Routing/Loader/AnnotationDirectoryLoader.php b/src/Symfony/Component/Routing/Loader/AnnotationDirectoryLoader.php index <HASH>..<HASH> 100644 --- a/src/Symfony/Component/Routing/Loader/AnnotationDirectoryLoader.php +++ b/src/Symfony/Component/Routing/Loader/AnnotationDirectoryLoader.p...
re-add filename based directory filter to the AnnotationDirectoryLoader, now restricting to *.php files and therefore disregarding e.g. SVN metadata files
symfony_symfony
train
php
32e0f0056c967128d1fc33ae260dc4bff98a84aa
diff --git a/rectpack/pack_algo.py b/rectpack/pack_algo.py index <HASH>..<HASH> 100644 --- a/rectpack/pack_algo.py +++ b/rectpack/pack_algo.py @@ -100,7 +100,7 @@ class PackingAlgorithm(object): Returns a list with all rectangles placed into the surface. Returns: - List: Format [(...
Fix incorrect args sequence in comment
secnot_rectpack
train
py
2a7ca60225e4f2bf400a84ebfac9fa0d8cb89291
diff --git a/mpyq.py b/mpyq.py index <HASH>..<HASH> 100755 --- a/mpyq.py +++ b/mpyq.py @@ -176,7 +176,7 @@ class MPQArchive(object): if (entry.hash_a == hash_a and entry.hash_b == hash_b): return entry - def read_file(self, filename): + def read_file(self, filename, force_decompres...
Adds a force_decompress option to read_file. This is useful when you know that a file must be decompressed regardless of what the block tables might indicate. Allows reading of tampered MPQs.
eagleflo_mpyq
train
py
75eabe6de997eda281fdb48cbe07f8a6096b3d06
diff --git a/lib/spinning_cursor.rb b/lib/spinning_cursor.rb index <HASH>..<HASH> 100644 --- a/lib/spinning_cursor.rb +++ b/lib/spinning_cursor.rb @@ -112,13 +112,10 @@ module SpinningCursor @start = Time.now if block_given? yield - @finish = Time.now - @elapsed = @finish - @start ...
DRY code removing unecessary 'else' for repeating ending code
prydonius_spinning_cursor
train
rb
682723a7822b99dd5128f02263a1b3c06f3a338b
diff --git a/lib/connection.js b/lib/connection.js index <HASH>..<HASH> 100644 --- a/lib/connection.js +++ b/lib/connection.js @@ -94,7 +94,7 @@ function escapeCQL(val) { if (Array.isArray(val)) { var sanitized = val.map( function( v ) { return escapeCQL( v ); } ); - return "'" + sanitized.join( "','" ) + ...
fix for arrays not interpolated properly into params [ closes #<I> ]
lyveminds_scamandrios
train
js
57ca151839f8640cef199d441012efc271586cac
diff --git a/Lib/fontParts/objects/base/validators.py b/Lib/fontParts/objects/base/validators.py index <HASH>..<HASH> 100644 --- a/Lib/fontParts/objects/base/validators.py +++ b/Lib/fontParts/objects/base/validators.py @@ -277,7 +277,7 @@ def validateGuidelineAngle(value): if not isinstance(value, (int, float)): ...
Opps. Caught this.
robotools_fontParts
train
py
b4f8e78e9041f7ac112c913bd0bbaa8c46aadcc8
diff --git a/varcode/vcf.py b/varcode/vcf.py index <HASH>..<HASH> 100644 --- a/varcode/vcf.py +++ b/varcode/vcf.py @@ -367,7 +367,7 @@ def read_vcf_into_dataframe(path, include_info=False, chunk_size=None): if path.endswith(".gz"): compression = "gzip" elif path.endswith(".bz2"): - compression...
fix bzip2 -> bz2 typo in vcf.py
openvax_varcode
train
py
c3607301f89266315b0eed708c4745055d16d92e
diff --git a/library/PHPIMS/FrontController.php b/library/PHPIMS/FrontController.php index <HASH>..<HASH> 100644 --- a/library/PHPIMS/FrontController.php +++ b/library/PHPIMS/FrontController.php @@ -138,8 +138,10 @@ class FrontController { if ($operation === null) { throw new Exception('Unsupporte...
Fixed a bug where the configuration would not be set to the operation class, causing all auth-requests to fail.
imbo_imboclient-php
train
php
9663d30f7efa3630fd8f4e791af0996a0be712af
diff --git a/picotui/widgets.py b/picotui/widgets.py index <HASH>..<HASH> 100644 --- a/picotui/widgets.py +++ b/picotui/widgets.py @@ -122,14 +122,16 @@ class Dialog(Widget): class WLabel(Widget): - def __init__(self, text): + def __init__(self, text, w=0): self.t = text self.h = 1 - ...
widgets: WLabel: Allow to specify width. Useful when label text is dynamically changed, leftover characters will be cleared. By default, the width is set to the length of the initial value.
pfalcon_picotui
train
py
a7960d4ffa7b684a623495dd0c7e35611cb70b9c
diff --git a/tests/Neoxygen/NeoClient/Tests/Functional/UseCaseTest.php b/tests/Neoxygen/NeoClient/Tests/Functional/UseCaseTest.php index <HASH>..<HASH> 100644 --- a/tests/Neoxygen/NeoClient/Tests/Functional/UseCaseTest.php +++ b/tests/Neoxygen/NeoClient/Tests/Functional/UseCaseTest.php @@ -102,6 +102,16 @@ class UseCas...
added test for relationship getProperty
neoxygen_neo4j-neoclient
train
php
f855077d4b00febd97372a825c7bf138d09c75cf
diff --git a/datasize/__datasize__.py b/datasize/__datasize__.py index <HASH>..<HASH> 100644 --- a/datasize/__datasize__.py +++ b/datasize/__datasize__.py @@ -204,13 +204,11 @@ class DataSize(__data_size_super__): c=code[0], n=(int(code) ...
PEP8 E<I> traded for bogus E<I>
aphor_datasize
train
py
300857f2a41ebc5aecf8074820789e74e467c65d
diff --git a/build-tools/geomajas-jetty-runner/src/main/java/org/geomajas/jetty/JettyRunner.java b/build-tools/geomajas-jetty-runner/src/main/java/org/geomajas/jetty/JettyRunner.java index <HASH>..<HASH> 100644 --- a/build-tools/geomajas-jetty-runner/src/main/java/org/geomajas/jetty/JettyRunner.java +++ b/build-tools/g...
BUTO-<I>: added jetty.port system property to change port
geomajas_geomajas-project-client-gwt2
train
java
49f1cd57470d50cda0f038411c501cf7d55bf7ed
diff --git a/calendar-bundle/contao/classes/Calendar.php b/calendar-bundle/contao/classes/Calendar.php index <HASH>..<HASH> 100644 --- a/calendar-bundle/contao/classes/Calendar.php +++ b/calendar-bundle/contao/classes/Calendar.php @@ -445,7 +445,7 @@ class Calendar extends \Frontend if (is_array($arrEnclosure)) ...
[Calendar] Replace the remaining `findMultipleByIds()` calls with `findMultipleByUuids()`
contao_contao
train
php
251035093a491fa68c1e85e53621754650e6f855
diff --git a/pyroSAR/sqlite_util.py b/pyroSAR/sqlite_util.py index <HASH>..<HASH> 100644 --- a/pyroSAR/sqlite_util.py +++ b/pyroSAR/sqlite_util.py @@ -59,6 +59,9 @@ class __Handler(object): self.load_extension(ext) elif extensions is not None: raise RuntimeError('extensions must e...
enabled printing of sqlite and spatialite versions
johntruckenbrodt_spatialist
train
py
060f8b5aa80538f56e62387d0d3f6d3c5ed9c439
diff --git a/src/main/java/org/codehaus/mojo/gwt/shell/DebugMojo.java b/src/main/java/org/codehaus/mojo/gwt/shell/DebugMojo.java index <HASH>..<HASH> 100644 --- a/src/main/java/org/codehaus/mojo/gwt/shell/DebugMojo.java +++ b/src/main/java/org/codehaus/mojo/gwt/shell/DebugMojo.java @@ -23,6 +23,7 @@ import org.apache.m...
DebugMojo @Mojo must redefine all parameters @Mojo annotation does not support inheritance of its parameters.
gwt-maven-plugin_gwt-maven-plugin
train
java
7be8336fb54ae2907c8f6549f26272c102a867af
diff --git a/daemon/network/settings.go b/daemon/network/settings.go index <HASH>..<HASH> 100644 --- a/daemon/network/settings.go +++ b/daemon/network/settings.go @@ -2,11 +2,13 @@ package network import "github.com/docker/docker/pkg/nat" +// Address represents an IP address type Address struct { Addr stri...
golint on daemon/network package
moby_moby
train
go
8ec304755a3a8d1ae3d86da688c81b658d8158d3
diff --git a/cypress/plugins/index.js b/cypress/plugins/index.js index <HASH>..<HASH> 100644 --- a/cypress/plugins/index.js +++ b/cypress/plugins/index.js @@ -0,0 +1,3 @@ +module.exports = function () { + // configure plugins here +};
fix: cypress plugins
marmelab_gremlins.js
train
js
2c39be78f0bedbd4270461fc07bae34528dc70a0
diff --git a/public/javascripts/user.js b/public/javascripts/user.js index <HASH>..<HASH> 100644 --- a/public/javascripts/user.js +++ b/public/javascripts/user.js @@ -63,7 +63,9 @@ $(document).ready(function() { success: function(data) { refill.html(data); ...
fenced env_select.env_changed_callback when creating new user and choosing default org
Katello_katello
train
js
7668f5c18e430e7d5571d35637e03b25223a4f69
diff --git a/lib/bc-middleware.rb b/lib/bc-middleware.rb index <HASH>..<HASH> 100644 --- a/lib/bc-middleware.rb +++ b/lib/bc-middleware.rb @@ -7,7 +7,7 @@ end class ActionController::Base def self.bc_middleware(options={}) - inherited_resources + inherit_resources include BcMiddleware::SearchApi end...
Fixing inheret->ed<- bug
Byclosure_bc-middleware
train
rb
c3f4f321bf8564cb60fa8dad442985fb98a318a2
diff --git a/lib/codemirror.js b/lib/codemirror.js index <HASH>..<HASH> 100644 --- a/lib/codemirror.js +++ b/lib/codemirror.js @@ -877,9 +877,10 @@ window.CodeMirror = (function() { clearInterval(display.blinker); var on = true; display.cursor.style.visibility = display.otherCursor.style.visibility = "";...
Added ability to disable cursor blinking. When the cursor blink rate is zero (or negative) the cursor should not blink. Previously, it was blinking as fast as possible when the rate was zero.
codemirror_CodeMirror
train
js
f9bc90401db901cb517a275dd7c8a47797a43317
diff --git a/mapillary_tools/process_csv.py b/mapillary_tools/process_csv.py index <HASH>..<HASH> 100644 --- a/mapillary_tools/process_csv.py +++ b/mapillary_tools/process_csv.py @@ -255,7 +255,7 @@ def process_csv( "Error, csv column numbers start with 1, one of the columns specified is 0." ) -...
fix columns that contains None (#<I>)
mapillary_mapillary_tools
train
py
8d7ee82a74517261998b441c91191e81d438f87f
diff --git a/lib/chatrix/api/room_actions.rb b/lib/chatrix/api/room_actions.rb index <HASH>..<HASH> 100644 --- a/lib/chatrix/api/room_actions.rb +++ b/lib/chatrix/api/room_actions.rb @@ -74,6 +74,23 @@ module Chatrix end end + # @overload invite(room, user) + # Invites a user to a room by ...
Add support for /rooms/*/invite endpoint
Sharparam_chatrix
train
rb
c0807e6243b9fc53ac57a3526b578e46fc40c6f6
diff --git a/src/NewRelicMiddleware.php b/src/NewRelicMiddleware.php index <HASH>..<HASH> 100644 --- a/src/NewRelicMiddleware.php +++ b/src/NewRelicMiddleware.php @@ -43,6 +43,10 @@ class NewRelicMiddleware $response = $next($request); $this->newRelic->nameTransaction($this->getTransactionName($requ...
Set the app name and license on each transaction
digiaonline_lumen-newrelic
train
php
3756ce29ce3d7ca92ea5269993e360cc43a920d8
diff --git a/ga4gh/converters.py b/ga4gh/converters.py index <HASH>..<HASH> 100644 --- a/ga4gh/converters.py +++ b/ga4gh/converters.py @@ -73,15 +73,13 @@ class SamConverter(object): alignmentFile.close() def _getHeader(self): - # TODO where to get actual values for header? - # need some k...
Added header information to ga2sam
ga4gh_ga4gh-server
train
py
1afc348ce1038bbaa341137760754777bf446f13
diff --git a/code/CloudFileExtension.php b/code/CloudFileExtension.php index <HASH>..<HASH> 100644 --- a/code/CloudFileExtension.php +++ b/code/CloudFileExtension.php @@ -262,8 +262,8 @@ class CloudFileExtension extends DataExtension */ public function createLocalIfNeeded() { if ($this->owner->CloudStatus === '...
Spaces => Tabs in CloudFileExtension.php
markguinn_silverstripe-cloudassets
train
php
2495e4a179046648110cea07760f7e3ce4766d6e
diff --git a/lib/Manager.js b/lib/Manager.js index <HASH>..<HASH> 100644 --- a/lib/Manager.js +++ b/lib/Manager.js @@ -30,6 +30,27 @@ Manager.prototype = Object.create(Host.prototype); Manager.prototype.bindListener = function bindListener(listener) { listener.use(this.getRequestLogMiddleware()); + listener.get(...
Added a GET: / and POST: /shutdown endpoints to managers. Mostly as a convenience, they output a "Shutdown" button, enabling you to kill the manager and its hosts.
markfinger_js-host
train
js
8cec66f6adabc3cd065af1767b61e09662fd60c4
diff --git a/asyncpg/__init__.py b/asyncpg/__init__.py index <HASH>..<HASH> 100644 --- a/asyncpg/__init__.py +++ b/asyncpg/__init__.py @@ -15,4 +15,4 @@ from .types import * # NOQA __all__ = ('connect', 'create_pool', 'Record', 'Connection') + \ exceptions.__all__ # NOQA -__version__ = '0.14.0' +__versi...
Post-release version bump for <I> development.
MagicStack_asyncpg
train
py
e0cfcbefa4d798387085ddbdc064cacc9c0d1d0d
diff --git a/crispy_forms/layout.py b/crispy_forms/layout.py index <HASH>..<HASH> 100644 --- a/crispy_forms/layout.py +++ b/crispy_forms/layout.py @@ -373,7 +373,6 @@ class MultiField(LayoutObject): # We need to render fields using django-uni-form render_field so that MultiField can # hold other Layou...
Redoing bound_fields to be self contained
django-crispy-forms_django-crispy-forms
train
py,py
fecbf7b05394f8a1cc8db1ab98cf1b50e1666076
diff --git a/client/login/controller.js b/client/login/controller.js index <HASH>..<HASH> 100644 --- a/client/login/controller.js +++ b/client/login/controller.js @@ -36,21 +36,30 @@ const enhanceContextWithLogin = context => { ); }; +const showErrorForBadOAuthQueryStringParameters = context => { + context.primary...
Catch the case when a user tries to access log in with a client id but no redirect url
Automattic_wp-calypso
train
js
12f37ddbe5a77cffcf97d044d59cf2a3a4b44c1b
diff --git a/src/homeAssistant/Websocket.js b/src/homeAssistant/Websocket.js index <HASH>..<HASH> 100644 --- a/src/homeAssistant/Websocket.js +++ b/src/homeAssistant/Websocket.js @@ -66,8 +66,8 @@ class Websocket { const auth = { type: 'auth', - [this.config.legacy ? 'api_password' : ...
fix: Handle promise rejection when user doesn't have tags component enabled in HA
zachowj_node-red-contrib-home-assistant-websocket
train
js
fa390ec9124fc69f80230a8a63f54acca72cb4ce
diff --git a/src/Schema/Table/Table.php b/src/Schema/Table/Table.php index <HASH>..<HASH> 100644 --- a/src/Schema/Table/Table.php +++ b/src/Schema/Table/Table.php @@ -253,12 +253,12 @@ ->from($this->table) ->fields(array($this->table . '.*')); - if (!is_null($inputQuery)) { + $query->setEntity($this->en...
Allow override entity in table objects
liftkit_database
train
php
c32bea776e26791ba4f8d602deef0eae7fdb3889
diff --git a/domain-management/src/main/java/org/jboss/as/domain/management/logging/DomainManagementLogger.java b/domain-management/src/main/java/org/jboss/as/domain/management/logging/DomainManagementLogger.java index <HASH>..<HASH> 100644 --- a/domain-management/src/main/java/org/jboss/as/domain/management/logging/Do...
[WFCORE-<I>] Bump the message ID as on rebasing another commit has already used '<I>'
wildfly_wildfly-core
train
java
a013a7a44b18a8d4927f24ddee7e2c63142044ac
diff --git a/spec/unit/config_spec.rb b/spec/unit/config_spec.rb index <HASH>..<HASH> 100644 --- a/spec/unit/config_spec.rb +++ b/spec/unit/config_spec.rb @@ -16,11 +16,14 @@ describe Eastwood do describe '#hash' do it { should respond_to( :hash ) } - it 'should add a new hash' do - Eastwood.hash :foo...
Use more specific matcher for hashes
jeremyruppel_eastwood
train
rb
bc0066ff81ea7e3f8581c6172966acff45efad68
diff --git a/index.js b/index.js index <HASH>..<HASH> 100644 --- a/index.js +++ b/index.js @@ -3,11 +3,17 @@ import UtilityHelper from './lib/utilityHelper'; var turndownService = new TurndownService(); -function transform(input) { - var transform = turndownService.turndown(input); - return transform; +funct...
get ready for new json to html method, support old call signature for now
rcasto_adaptive-html
train
js
383600d8a7768d78e53903edb88b50b76fae8c95
diff --git a/python/run-tests.py b/python/run-tests.py index <HASH>..<HASH> 100644 --- a/python/run-tests.py +++ b/python/run-tests.py @@ -3,7 +3,6 @@ from test.misc import * # Annotator tests unittest.TextTestRunner().run(BasicAnnotatorsTestSpec()) -unittest.TextTestRunner().run(RegexNERApproachTestSpec()) unitte...
-Removed deprecated setRequiredAnnotatorTypes function -Removed deprecated unit test of Regex NER
JohnSnowLabs_spark-nlp
train
py,py
43e3bdb15bc8519eba067e04b8be0c2f78685a14
diff --git a/plugins/hooks/hooks.go b/plugins/hooks/hooks.go index <HASH>..<HASH> 100644 --- a/plugins/hooks/hooks.go +++ b/plugins/hooks/hooks.go @@ -38,6 +38,8 @@ func (p *Plugin) Run(hook function.Hook, fn *function.Function) error { command = fn.Hooks.Clean case function.BuildHook: command = fn.Hooks.Build ...
add missing DeployHook to hooks plugin
apex_apex
train
go
cc840ceb84a23ab71184dfa3e65eff9de3152df4
diff --git a/code/libraries/koowa/libraries/user/session/abstract.php b/code/libraries/koowa/libraries/user/session/abstract.php index <HASH>..<HASH> 100644 --- a/code/libraries/koowa/libraries/user/session/abstract.php +++ b/code/libraries/koowa/libraries/user/session/abstract.php @@ -320,8 +320,11 @@ class KUserSessi...
Update abstract.php Making sure that we have an identifier. Before was trying to getConfig on an array.
joomlatools_joomlatools-framework
train
php
f669f937a74322eaaff26548f992c96035b9b16c
diff --git a/ndio/remote/ndingest.py b/ndio/remote/ndingest.py index <HASH>..<HASH> 100644 --- a/ndio/remote/ndingest.py +++ b/ndio/remote/ndingest.py @@ -361,7 +361,8 @@ specify the time steps?') resp.close() except AssertionError: raise OSErro...
Update ndingest.py
neurodata_ndio
train
py
ce38d170b113835e3a6e14f3b83245141a167a05
diff --git a/lib/praxis/extensions/attribute_filtering/filtering_params.rb b/lib/praxis/extensions/attribute_filtering/filtering_params.rb index <HASH>..<HASH> 100644 --- a/lib/praxis/extensions/attribute_filtering/filtering_params.rb +++ b/lib/praxis/extensions/attribute_filtering/filtering_params.rb @@ -106,7 +106,7 ...
Fix FilteringParams type Fix the splat of the rest of components, while parsing the dotted-separated pieces.
praxis_praxis
train
rb
fd956b234ed77384bb3c2bc7e625d3ebbc5dd8a7
diff --git a/src/IcalParser.php b/src/IcalParser.php index <HASH>..<HASH> 100644 --- a/src/IcalParser.php +++ b/src/IcalParser.php @@ -203,13 +203,13 @@ class IcalParser { break; case 'END:VCALENDAR': - $section = 'VEVENT'; - if(!empty($this->data[$section])) { - ...
Fixed a bug when parsing calendars without VEVENT items.
OzzyCzech_icalparser
train
php
99756307c394296ba273693583cf2fdcb9b2ce3d
diff --git a/src/Yosymfony/Spress/Operation/NewOperation.php b/src/Yosymfony/Spress/Operation/NewOperation.php index <HASH>..<HASH> 100644 --- a/src/Yosymfony/Spress/Operation/NewOperation.php +++ b/src/Yosymfony/Spress/Operation/NewOperation.php @@ -156,7 +156,10 @@ class NewOperation "type": "spress-theme", ...
Added vendor-dir option to composer.json in blank template
spress_spress
train
php
437601bdf5fc410b25f470ed86e61fbdf484550b
diff --git a/lib/raabro.rb b/lib/raabro.rb index <HASH>..<HASH> 100644 --- a/lib/raabro.rb +++ b/lib/raabro.rb @@ -119,20 +119,6 @@ module Raabro acc end - def nodes(path) - - nodes = [ self ] - - loop do - name, path = path.split('.', 2) - return nil if name == nil - nod...
drop the Tree #node / #nodes idea for now
floraison_raabro
train
rb,rb
b76fc79cf211bbfcc4e0e6398dc8a974d22a359b
diff --git a/generators/generator-constants.js b/generators/generator-constants.js index <HASH>..<HASH> 100644 --- a/generators/generator-constants.js +++ b/generators/generator-constants.js @@ -41,7 +41,7 @@ const DOCKER_JHIPSTER_LOGSTASH = 'jhipster/jhipster-logstash:v4.0.0'; const DOCKER_JHIPSTER_IMPORT_DASHBOARDS ...
Update consul docker image to <I>
jhipster_generator-jhipster
train
js
c66c9745344947bfcebc2cac1da4d2a3a7d0cdbc
diff --git a/jspdf.js b/jspdf.js index <HASH>..<HASH> 100644 --- a/jspdf.js +++ b/jspdf.js @@ -1303,7 +1303,7 @@ var jsPDF = (function (global) { } prevX = x; text = da[0] + ") Tj\n"; - for (i = 1, len = da.length; i < len...
Missing 'var' keyword in for loop
MrRio_jsPDF
train
js
a3d35e611b773b6ec4a9dffed2706897785acf94
diff --git a/datadog_checks_dev/datadog_checks/dev/docker.py b/datadog_checks_dev/datadog_checks/dev/docker.py index <HASH>..<HASH> 100644 --- a/datadog_checks_dev/datadog_checks/dev/docker.py +++ b/datadog_checks_dev/datadog_checks/dev/docker.py @@ -79,6 +79,10 @@ def shared_logs(example_log_configs, mount_whitelist=N...
Provide a good default for `service` field of E2E logs config (#<I>)
DataDog_integrations-core
train
py
3e89d399cf5ee93ba50ac43d0ae9b26dfbf03133
diff --git a/workshift/views.py b/workshift/views.py index <HASH>..<HASH> 100644 --- a/workshift/views.py +++ b/workshift/views.py @@ -277,7 +277,7 @@ def view_semester(request, semester, profile=None): return render_to_response("semester.html", template_dict, context_instance=Reques...
Only let managers undo verify / blown
knagra_farnsworth
train
py
c88d1cdacf88bab7558f253b3c0c3ed1db074273
diff --git a/model/DeliveryContainerService.php b/model/DeliveryContainerService.php index <HASH>..<HASH> 100644 --- a/model/DeliveryContainerService.php +++ b/model/DeliveryContainerService.php @@ -178,8 +178,7 @@ class DeliveryContainerService extends ConfigurableService implements DeliveryCo { $disable...
Extract method to get all test runner features
oat-sa_extension-tao-delivery-rdf
train
php
727355d9cee1cbee6663c3d41a3c1ab840a3928d
diff --git a/js/bigwig.js b/js/bigwig.js index <HASH>..<HASH> 100644 --- a/js/bigwig.js +++ b/js/bigwig.js @@ -734,8 +734,6 @@ BigWigView.prototype.getFirstAdjacentById = function(chr, pos, dir, callback) { var bestPos = -1; var createFeature = function(chrx, fmin, fmax, opts) { // dl...
More-or-less got skip-across-chromosomes working.
dasmoth_dalliance
train
js
197f0824ae01c77122026f5edc8bb88f5fc146ab
diff --git a/core/src/main/java/com/google/bitcoin/core/NetworkParameters.java b/core/src/main/java/com/google/bitcoin/core/NetworkParameters.java index <HASH>..<HASH> 100644 --- a/core/src/main/java/com/google/bitcoin/core/NetworkParameters.java +++ b/core/src/main/java/com/google/bitcoin/core/NetworkParameters.java @...
Use my DNS seed instead of Jeff's, as his is just a static list and the nodes often appear to be overloaded.
bitcoinj_bitcoinj
train
java
d98da14c27538bf17a7ae4e235af853fa790d670
diff --git a/builtin/credential/cert/path_login.go b/builtin/credential/cert/path_login.go index <HASH>..<HASH> 100644 --- a/builtin/credential/cert/path_login.go +++ b/builtin/credential/cert/path_login.go @@ -90,6 +90,7 @@ func (b *backend) pathLogin(ctx context.Context, req *logical.Request, data *fra Metadata: ...
Fix alias data being used for cert auth (serial number -> common name) (#<I>) Fixes #<I>
hashicorp_vault
train
go
8b46f3e4f96c69b8db1bf57344d3fba4fd2cb5d0
diff --git a/Kwc/Chained/Trl/Generator.php b/Kwc/Chained/Trl/Generator.php index <HASH>..<HASH> 100644 --- a/Kwc/Chained/Trl/Generator.php +++ b/Kwc/Chained/Trl/Generator.php @@ -68,7 +68,7 @@ class Kwc_Chained_Trl_Generator extends Kwc_Chained_Abstract_Generator if ($this->_getChainedGenerator() instanceof Kw...
fix tests: only access name if it is set
koala-framework_koala-framework
train
php
4b1f498c6c6f0ec69610d06e59f7b900d5c0d15a
diff --git a/lib/yinx/note_meta.rb b/lib/yinx/note_meta.rb index <HASH>..<HASH> 100644 --- a/lib/yinx/note_meta.rb +++ b/lib/yinx/note_meta.rb @@ -5,12 +5,11 @@ class NoteMeta [:updated, :created, :title, :notebookGuid, :guid, :contentLength, :tagGuids].each do |method| define_method method do iv_name = ...
fix bug: tagGuids maybe nil, use `instance_variable_defined?` instead of `unless` to detect it
turnon_yinx
train
rb,rb
415878ef987e49a054c3c447afe6a30adaf6f720
diff --git a/setup_functions.py b/setup_functions.py index <HASH>..<HASH> 100644 --- a/setup_functions.py +++ b/setup_functions.py @@ -10,6 +10,8 @@ def get_starlink_macros(): define_macros = [] compiler = ccompiler.new_compiler() + # Force using 8bit integers? + define_macros.append(('NDF_I8', 1)) ...
ndf: ensure 8 bit integers in ndf are used
sfgraves_starlink-pyhds
train
py
308302921eeb57b717ae45cc1c149ef7a4f7755a
diff --git a/app/models/foreman_chef/fact_importer.rb b/app/models/foreman_chef/fact_importer.rb index <HASH>..<HASH> 100644 --- a/app/models/foreman_chef/fact_importer.rb +++ b/app/models/foreman_chef/fact_importer.rb @@ -75,7 +75,7 @@ module ForemanChef end def fact_names - @fact_names ||= fact_name_...
Fixes #<I> - rails 4 compatibility in facts importing
theforeman_foreman_chef
train
rb,rb
65889716da25aa5e82632fc23044cb7153d7c155
diff --git a/app/models/booking.rb b/app/models/booking.rb index <HASH>..<HASH> 100644 --- a/app/models/booking.rb +++ b/app/models/booking.rb @@ -74,24 +74,6 @@ class Booking < ActiveRecord::Base end end - def self.scope_by_value_date(value_date) - scoping = self.default_scoping - [@by_value_scope] - ...
Drop strange, unused Booking.scope_by_value_date and .filter methods.
huerlisi_has_accounts
train
rb
6b0c3f9fd09bc3329f9b3453794386612a96a7e8
diff --git a/src/gatsby-node.js b/src/gatsby-node.js index <HASH>..<HASH> 100644 --- a/src/gatsby-node.js +++ b/src/gatsby-node.js @@ -32,6 +32,7 @@ export function onCreateWebpackConfig( printRejected: false, printAll: false, debug: false, + develop: false, ignore: [], ...userOptions }; ...
feat: Add running on develop using `develop` option
anantoghosh_gatsby-plugin-purgecss
train
js
3fcd3addbd29178c197872716b4664cf7811f615
diff --git a/chef/lib/chef/client.rb b/chef/lib/chef/client.rb index <HASH>..<HASH> 100644 --- a/chef/lib/chef/client.rb +++ b/chef/lib/chef/client.rb @@ -217,7 +217,7 @@ class Chef file_canonical = Hash.new [ "recipes", "attributes", "definitions", "libraries", "resources", "providers" ].each do |segme...
Fixing bug with iterating over lwrp
chef_chef
train
rb
630e6414ac04eea533362558451af3a061fa2769
diff --git a/src/test/java/com/hackoeur/jglm/JglmTesting.java b/src/test/java/com/hackoeur/jglm/JglmTesting.java index <HASH>..<HASH> 100644 --- a/src/test/java/com/hackoeur/jglm/JglmTesting.java +++ b/src/test/java/com/hackoeur/jglm/JglmTesting.java @@ -2,6 +2,8 @@ package com.hackoeur.jglm; import java.util.Random...
Added assertFloatsEqualDefaultTol to testing utils.
jroyalty_jglm
train
java
e73d86b5cc3c150f0c0564f686cacc7ace6d44f8
diff --git a/lib/scheduler/scheduler.js b/lib/scheduler/scheduler.js index <HASH>..<HASH> 100644 --- a/lib/scheduler/scheduler.js +++ b/lib/scheduler/scheduler.js @@ -180,6 +180,10 @@ function connectEndpoint_p(endpoint, timeout, shouldContinue) { }) .then(function(status) { if (deleteLogFileOnEx...
Don't delete /dev/null when it's used as a log file endpoint.
rstudio_shiny-server
train
js