hash stringlengths 40 40 | diff stringlengths 131 114k | message stringlengths 7 980 | project stringlengths 5 67 | split stringclasses 1
value |
|---|---|---|---|---|
0b710bb0c95c32402477c7df0ad74c2e4f13c4d9 | diff --git a/text_collector_examples/storcli.py b/text_collector_examples/storcli.py
index <HASH>..<HASH> 100755
--- a/text_collector_examples/storcli.py
+++ b/text_collector_examples/storcli.py
@@ -48,7 +48,7 @@ def main(args):
for controller in data:
response = controller['Response Data']
- ... | Handle JBOD setup for storcli exporter (#<I>)
* handle jbod setup | prometheus_node_exporter | train |
1ac62f4e49de3160928c735497de718acf6ea052 | diff --git a/salt/renderers/stateconf.py b/salt/renderers/stateconf.py
index <HASH>..<HASH> 100644
--- a/salt/renderers/stateconf.py
+++ b/salt/renderers/stateconf.py
@@ -146,10 +146,9 @@ def render(input, env='', sls='', argline='', **kws):
# We must extract no matter what so extending a stateconf sls f... | standardize to modern 'except FooError as err:' syntax (Final Part 4) | saltstack_salt | train |
3b89f471fa8fca4349bc3366a0d492f65c032c6c | diff --git a/OpenSSL/crypto.py b/OpenSSL/crypto.py
index <HASH>..<HASH> 100644
--- a/OpenSSL/crypto.py
+++ b/OpenSSL/crypto.py
@@ -1380,6 +1380,86 @@ class CRL(object):
CRLType = CRL
+
+class NetscapeSPKI(object):
+ def __init__(self):
+ self._spki = _api.NETSCAPE_SPKI_new()
+
+
+ def sign(self, pkey,... | All of NetscapeSPKITests passing | pyca_pyopenssl | train |
62e75f4e2e90c1117fe2cfdefdbd268bef610df5 | diff --git a/includes/events/editor.php b/includes/events/editor.php
index <HASH>..<HASH> 100644
--- a/includes/events/editor.php
+++ b/includes/events/editor.php
@@ -18,12 +18,13 @@ defined( 'ABSPATH' ) || exit;
function wp_events_calendar_editor_above() {
global $post_type, $post;
- do_meta_boxes( $post_type, 'a... | Only do before-editor meta boxes if in allowed types. | stuttter_wp-event-calendar | train |
a4193cd33c5d0af3a82df4bb1054f894e6813b7e | diff --git a/niworkflows/viz/plots.py b/niworkflows/viz/plots.py
index <HASH>..<HASH> 100644
--- a/niworkflows/viz/plots.py
+++ b/niworkflows/viz/plots.py
@@ -473,30 +473,35 @@ def confoundplot(tseries, gs_ts, gs_dist=None, name=None,
ax_ts.spines["left"].set_visible(False)
# ax_ts.yaxis.set_ticks_position('l... | [FIX] Summary fMRIPlot chokes when confounds are all-nan
Allow the summary plot to go on if one confound is fully nans | poldracklab_niworkflows | train |
77f7a21c13b0425ec9e48b3e0d87ec2232a25b8e | diff --git a/lib/address.js b/lib/address.js
index <HASH>..<HASH> 100644
--- a/lib/address.js
+++ b/lib/address.js
@@ -32,14 +32,27 @@ exports.fromPipes = function(address){
};
};
-exports.say = function (address) {
+exports.say = function (address, def) {
if (!address) return address;
- address.line1 += ",";... | Address to text mutated address and incorrectly dealt with commas | mediarain_alexa-helpers | train |
83dd28ebb9e6378da94f3bcb28eee3cdf40611be | diff --git a/dial_sync.go b/dial_sync.go
index <HASH>..<HASH> 100644
--- a/dial_sync.go
+++ b/dial_sync.go
@@ -2,11 +2,15 @@ package swarm
import (
"context"
+ "errors"
"sync"
"github.com/libp2p/go-libp2p-core/peer"
)
+// TODO: change this text when we fix the bug
+var errDialCanceled = errors.New("dial w... | feat(swarm): improve dial context
1. Always return the caller's context error if relevant.
2. Don't return "context canceled" when we're just shutting down.
3. Don't claim that the context deadline has been exceeded when the dial timeout
is canceled. | libp2p_go-libp2p-swarm | train |
eb63000fde5030da0c66327c371763ddb4765e11 | diff --git a/lib/validate_website/core.rb b/lib/validate_website/core.rb
index <HASH>..<HASH> 100644
--- a/lib/validate_website/core.rb
+++ b/lib/validate_website/core.rb
@@ -13,7 +13,7 @@ module ValidateWebsite
# Core class for static or website validation
class Core
attr_accessor :site
- attr_reader :op... | Fix not_found_error and print not founds status | spk_validate-website | train |
49937b935d50af689f46757b021e9bb26b8fc9f8 | diff --git a/pandas/io/clipboard/__init__.py b/pandas/io/clipboard/__init__.py
index <HASH>..<HASH> 100644
--- a/pandas/io/clipboard/__init__.py
+++ b/pandas/io/clipboard/__init__.py
@@ -94,7 +94,8 @@ class PyperclipException(RuntimeError):
class PyperclipWindowsException(PyperclipException):
def __init__(self,... | TYP/CI: Fix failing clipboard typing (#<I>) | pandas-dev_pandas | train |
9248e73942d91cef3aab171f006f765a063d03d4 | diff --git a/concrete/blocks/youtube/controller.php b/concrete/blocks/youtube/controller.php
index <HASH>..<HASH> 100644
--- a/concrete/blocks/youtube/controller.php
+++ b/concrete/blocks/youtube/controller.php
@@ -108,7 +108,6 @@ class Controller extends BlockController
'vHeight' => null,
'vW... | Delete showinfo checkbox of Youtube block | concrete5_concrete5 | train |
332c4682894378764f4b59db8938f574c81eb965 | diff --git a/src/Html/Elements/Element.php b/src/Html/Elements/Element.php
index <HASH>..<HASH> 100644
--- a/src/Html/Elements/Element.php
+++ b/src/Html/Elements/Element.php
@@ -94,16 +94,15 @@ class Element
*/
public function addClass( $class )
{
- $this->attributes()->put( 'class', implode( ' ... | Removed the leading space for element class list | arbory_arbory | train |
1a7b03af2b0e6a2fc84a9e19811b73f1043c778b | diff --git a/channels/backends/slack.py b/channels/backends/slack.py
index <HASH>..<HASH> 100644
--- a/channels/backends/slack.py
+++ b/channels/backends/slack.py
@@ -34,13 +34,17 @@ class SlackChannel(BaseChannel):
payload["icon_emoji"] = self.icon_emoji
if self.icon_url is not None:
... | Support attachments in SlackChannel | ymyzk_kawasemi | train |
a7762afe89832aac336a97325ab598d2227e8e70 | diff --git a/src/Listener/AddStatisticsData.php b/src/Listener/AddStatisticsData.php
index <HASH>..<HASH> 100644
--- a/src/Listener/AddStatisticsData.php
+++ b/src/Listener/AddStatisticsData.php
@@ -92,7 +92,7 @@ class AddStatisticsData
->selectRaw('COUNT(id) as count')
->where($column, '>', n... | lists → pluck for Laravel <I> | flarum_statistics | train |
709d57f6b283071db32db6dcdabac12dfa94e204 | diff --git a/hwt/hdl/block.py b/hwt/hdl/block.py
index <HASH>..<HASH> 100755
--- a/hwt/hdl/block.py
+++ b/hwt/hdl/block.py
@@ -25,3 +25,6 @@ class HdlStatementBlock(HdlStatement):
self._inputs = inputs
self._outputs = outputs
self.rank = sum(map(lambda s: s.rank, statements))
+
+ def _iter... | HdlStatementBlock._iter_stms | Nic30_hwt | train |
76f1b6f7bd07ac3fb2bf32458eb80f1d85d49f63 | diff --git a/lib/datasource/attributes/loaded.rb b/lib/datasource/attributes/loaded.rb
index <HASH>..<HASH> 100644
--- a/lib/datasource/attributes/loaded.rb
+++ b/lib/datasource/attributes/loaded.rb
@@ -78,11 +78,16 @@ module Datasource
method_module = Module.new do
define_method name do |*args, &bloc... | properly handle cases when loaded value is used in another loader inside datasource | kundi_datasource | train |
0e679a3d7229f5bb496c141fc271042faae645a8 | diff --git a/pkg/minikube/cluster/mount_test.go b/pkg/minikube/cluster/mount_test.go
index <HASH>..<HASH> 100644
--- a/pkg/minikube/cluster/mount_test.go
+++ b/pkg/minikube/cluster/mount_test.go
@@ -64,7 +64,7 @@ func TestMount(t *testing.T) {
target: "target",
cfg: &MountConfig{Type: "9p", Mode: os.FileMode... | Fix mount test that broke due to merge conflict | kubernetes_minikube | train |
3c5c537df5ca22465d14aa4cfdf30c4e31ff6d30 | diff --git a/Shipping/ShippingManager.php b/Shipping/ShippingManager.php
index <HASH>..<HASH> 100644
--- a/Shipping/ShippingManager.php
+++ b/Shipping/ShippingManager.php
@@ -567,7 +567,8 @@ class ShippingManager
false,
'',
'',
- '160px'
+ '160px',
+ ... | disabled sorting for contact column in sales shipping | sulu_SuluSalesShippingBundle | train |
ac410851ebbde75be9e4bdaed62b4c5c864251c9 | diff --git a/src/Tree/Node/NodeInterface.php b/src/Tree/Node/NodeInterface.php
index <HASH>..<HASH> 100644
--- a/src/Tree/Node/NodeInterface.php
+++ b/src/Tree/Node/NodeInterface.php
@@ -99,6 +99,13 @@ interface NodeInterface
public function getAncestors();
/**
+ * Retrieves all ancestors of node, exclu... | Adds getAncestorsWithoutRoot()
Method for retrieving all ancestors of a node, but
excluding the root node. | nicmart_Tree | train |
531b23d6b1f98023948e50dbcfcfe73d15e4b684 | diff --git a/salt/modules/win_pkg.py b/salt/modules/win_pkg.py
index <HASH>..<HASH> 100644
--- a/salt/modules/win_pkg.py
+++ b/salt/modules/win_pkg.py
@@ -838,7 +838,7 @@ def refresh_db(**kwargs):
The database is stored in a serialized format located by default at the
following location:
- `C:\salt\var\c... | Update win_pkg.py
Fix path and other typos | saltstack_salt | train |
0100bd129e8fc809cc5b0258f6c0c7c64ad084ab | diff --git a/sos/plugins/buildah.py b/sos/plugins/buildah.py
index <HASH>..<HASH> 100644
--- a/sos/plugins/buildah.py
+++ b/sos/plugins/buildah.py
@@ -47,7 +47,7 @@ class Buildah(Plugin, RedHatPlugin):
if containahs['is_wicked_pissah']:
for containah in containahs['auutput'].splitlines():
... | [buildah] parse container list properly even for scratch ones
Scratch containers dont have id, therefore we shall get container name
as the latest string on each line instead of 5th.
Resolves: #<I> | sosreport_sos | train |
e4d321863cf4eaab083c277e4a1c6ee5544810b5 | diff --git a/tensorboardX/writer.py b/tensorboardX/writer.py
index <HASH>..<HASH> 100644
--- a/tensorboardX/writer.py
+++ b/tensorboardX/writer.py
@@ -447,7 +447,7 @@ class SummaryWriter(object):
# clear pbtxt?
# Maybe we should encode the tag so slashes don't trip us up?
# I don't think ... | Reorganized how the embedding directory is made. | lanpa_tensorboardX | train |
0fccd6fdda0b34bd4f4c40018e19d66b2e9c0e63 | diff --git a/generation/gen-dbcs.js b/generation/gen-dbcs.js
index <HASH>..<HASH> 100644
--- a/generation/gen-dbcs.js
+++ b/generation/gen-dbcs.js
@@ -126,18 +126,8 @@ async.parallel({
eucKr[i] = i;
for (var i = 0x8100; i < 0xFF00; i++) {
var lead = i >> 8, byte = i & 0xFF, ptr = null, t;
- ... | Update EUC-KR index file gen algorithm | ashtuchkin_iconv-lite | train |
9fa9f3e450eda90bccacf895492c50902cce3157 | diff --git a/bin/i18n-js2properties.js b/bin/i18n-js2properties.js
index <HASH>..<HASH> 100644
--- a/bin/i18n-js2properties.js
+++ b/bin/i18n-js2properties.js
@@ -78,16 +78,11 @@ if (!sourceObject[defaultLanguage]) {
const language = languages[i];
const objectTranslationTexts = sourceObject[language];
... | Fixing escapting [skip ci] | OpusCapita_i18n | train |
580e43e29781714b02e210902d2317b19c5f3301 | diff --git a/geocoder.go b/geocoder.go
index <HASH>..<HASH> 100644
--- a/geocoder.go
+++ b/geocoder.go
@@ -1,6 +1,11 @@
// Package geo is a generic framework to develop geocode/reverse geocode clients
package geo
+import (
+ "io/ioutil"
+ "log"
+)
+
// Geocoder can look up (lat, long) by address and address by (la... | print payload when an error is received in response method | codingsince1985_geo-golang | train |
5a3d7ce8d2c548d161b8d9dbb4135b589dd2834f | diff --git a/stats/registry.go b/stats/registry.go
index <HASH>..<HASH> 100644
--- a/stats/registry.go
+++ b/stats/registry.go
@@ -22,6 +22,9 @@ func (r *Registry) NewCollector() *Collector {
}
func (r *Registry) Submit() error {
+ r.mutex.Lock()
+ defer r.mutex.Unlock()
+
batches := make([][]Point, 0, len(r.coll... | [fix] Possible fix for a weird race condition | loadimpact_k6 | train |
bf75e4c22dd97fc98d14574ff4acdf06216ebffb | diff --git a/lib/generator/base.rb b/lib/generator/base.rb
index <HASH>..<HASH> 100644
--- a/lib/generator/base.rb
+++ b/lib/generator/base.rb
@@ -9,7 +9,7 @@ module Generator
end
def compile_file(input_file, *args)
- return unless changed? (input_file)
+ return unless Base.changed? (input_file)
... | reload helper only if file changed | dennisvandehoef_easy-html-creator | train |
f5ad6ba32af1a3588d4c4013f18bb2853b9a1a4f | diff --git a/nabu/data/commerce/CNabuCommerce.php b/nabu/data/commerce/CNabuCommerce.php
index <HASH>..<HASH> 100644
--- a/nabu/data/commerce/CNabuCommerce.php
+++ b/nabu/data/commerce/CNabuCommerce.php
@@ -135,6 +135,45 @@ class CNabuCommerce extends CNabuCommerceBase
}
/**
+ * Find a Product using the... | Add findProductBySlug and other little issues | nabu-3_core | train |
c89eff94ba9ee91fd10e45005cc80d01e9c8f72f | diff --git a/index.js b/index.js
index <HASH>..<HASH> 100644
--- a/index.js
+++ b/index.js
@@ -8,18 +8,6 @@ module.exports = function(routes, opts) {
if (opts.debug) console.info('cache options:', routes, opts.debug)
var store = new Store(opts)
- expireOpts.set('test2', 1000)
- store.set('test2', '12413531', ... | switch to a pure Object store instead of Map because of redis values stored as strings | mkozjak_koa-cache-lite | train |
765796b41b3c9174b49c92e5a07551d532c2b380 | diff --git a/packages/react/src/components/Tag/Tag.js b/packages/react/src/components/Tag/Tag.js
index <HASH>..<HASH> 100644
--- a/packages/react/src/components/Tag/Tag.js
+++ b/packages/react/src/components/Tag/Tag.js
@@ -88,7 +88,11 @@ const Tag = ({
const ComponentTag = other.onClick ? 'button' : 'div';
retu... | fix(Tag): pass disabled state to tag button (#<I>) | carbon-design-system_carbon-components | train |
f7833a5c4d2da184bb5e12a9bd4c331c6b9e3d6b | diff --git a/docs/conf.py b/docs/conf.py
index <HASH>..<HASH> 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -30,6 +30,7 @@ sys.path.insert(0, os.path.abspath('../'))
# ones.
extensions = [
'sphinx.ext.autodoc',
+ 'sphinx.ext.intersphinx',
# 'sphinx.ext.githubpages',
]
@@ -289,6 +290,14 @@ texinfo_doc... | docs: link against python, gevent and requests | ValvePython_steam | train |
f03d501be1eabdee72571d97be889eadc336e950 | diff --git a/src/Behat/Gherkin/Loader/ArrayLoader.php b/src/Behat/Gherkin/Loader/ArrayLoader.php
index <HASH>..<HASH> 100644
--- a/src/Behat/Gherkin/Loader/ArrayLoader.php
+++ b/src/Behat/Gherkin/Loader/ArrayLoader.php
@@ -24,7 +24,7 @@ class ArrayLoader implements LoaderInterface
*/
public function supports... | updated ArrayLoader to support single-feature arrays | Behat_Gherkin | train |
43fef21907148eadf206a8ff0ec75ff344d5cfeb | diff --git a/tests/integration/modules/git.py b/tests/integration/modules/git.py
index <HASH>..<HASH> 100644
--- a/tests/integration/modules/git.py
+++ b/tests/integration/modules/git.py
@@ -864,21 +864,24 @@ class GitModuleTest(integration.ModuleCase):
@skipIf(not _worktrees_supported(),
'Git 2.5 o... | Add list_worktrees tests | saltstack_salt | train |
a63654f5bc1c66c9ab7592fa65efe0c5e48c768f | diff --git a/holoviews/plotting/mpl/plot.py b/holoviews/plotting/mpl/plot.py
index <HASH>..<HASH> 100644
--- a/holoviews/plotting/mpl/plot.py
+++ b/holoviews/plotting/mpl/plot.py
@@ -138,7 +138,7 @@ class MPLPlot(DimensionedPlot):
if self.renderer.interactive:
plt.ion()
self._close_fi... | Do not change mpl interactive mode in notebook | pyviz_holoviews | train |
f59647d542774a16df710fac6818963cad385507 | diff --git a/src/Illuminate/Support/Testing/Fakes/QueueFake.php b/src/Illuminate/Support/Testing/Fakes/QueueFake.php
index <HASH>..<HASH> 100644
--- a/src/Illuminate/Support/Testing/Fakes/QueueFake.php
+++ b/src/Illuminate/Support/Testing/Fakes/QueueFake.php
@@ -353,7 +353,7 @@ class QueueFake extends QueueManager impl... | Update QueueFake.php | laravel_framework | train |
b6c4719b5547fd048250eece7b9e33a5a1a69fb5 | diff --git a/test/lib/Elastica/Test/Query/RescoreTest.php b/test/lib/Elastica/Test/Query/RescoreTest.php
index <HASH>..<HASH> 100644
--- a/test/lib/Elastica/Test/Query/RescoreTest.php
+++ b/test/lib/Elastica/Test/Query/RescoreTest.php
@@ -141,6 +141,59 @@ class RescoreTest extends BaseTest
$this->assertEquals(... | #<I> Add unit tests for multi rescore query | ruflin_Elastica | train |
30e92d51368b5ffb36556922f40315218e1e6227 | diff --git a/indra/belief/sklearn/wrapper.py b/indra/belief/sklearn/wrapper.py
index <HASH>..<HASH> 100644
--- a/indra/belief/sklearn/wrapper.py
+++ b/indra/belief/sklearn/wrapper.py
@@ -100,13 +100,13 @@ class CountsModel(SklearnBase):
it should have columns with names matching the sources in source list.
""... | Add num_pmids as a feature | sorgerlab_indra | train |
e3547c7e161386b90345a7fe2da7d85732976d84 | diff --git a/src/BotApi.php b/src/BotApi.php
index <HASH>..<HASH> 100644
--- a/src/BotApi.php
+++ b/src/BotApi.php
@@ -1410,4 +1410,19 @@ class BotApi
'user_id' => $userId
]));
}
+
+ /**
+ * Use this method for your bot to leave a group, supergroup or channel.
+ *
+ * @param st... | Add `leaveChat` method | TelegramBot_Api | train |
9231da1a992cf2f56cdd840caf4447a671521831 | diff --git a/gpuspec.py b/gpuspec.py
index <HASH>..<HASH> 100755
--- a/gpuspec.py
+++ b/gpuspec.py
@@ -53,6 +53,7 @@ def gpuspec(raw, n_win, n_int, f_avg, blank_dc_bin):
d_xx_init = False
d_yy_init = False
+
t00 = time.time()
for ii in range(n_spec):
for jj in range(n_int):
@@ -103,7 +104,7 @@ def gpuspec(... | Removed an uncessary roll being introduced by the fftshift missing axes arg
This speeds things up ever so slightly! | UCBerkeleySETI_blimpy | train |
bc4ed0e7a6989ab284aef0d0f95c88e9b4c220c4 | diff --git a/defaultConfig.json b/defaultConfig.json
index <HASH>..<HASH> 100644
--- a/defaultConfig.json
+++ b/defaultConfig.json
@@ -1,7 +1,7 @@
{
"prefix": "https://%s.api.riotgames.com",
"retries": 3,
- "maxConcurrent": 2000,
+ "maxConcurrent": 500,
"timeout": 10000,
"distFactor": 1,
"defaultBucke... | Replace polling liveRequests with proper semaphore from v3 | MingweiSamuel_TeemoJS | train |
b18788ef3bef9596e09ec65a521d5c9ff3ba857d | diff --git a/molgenis-data-annotators/src/main/java/org/molgenis/data/annotator/tabix/TabixReader.java b/molgenis-data-annotators/src/main/java/org/molgenis/data/annotator/tabix/TabixReader.java
index <HASH>..<HASH> 100644
--- a/molgenis-data-annotators/src/main/java/org/molgenis/data/annotator/tabix/TabixReader.java
+... | fix threadsafity for tabix | molgenis_molgenis | train |
fe77d1dacbd50a54d168ec7dc55e398e23da6ed3 | diff --git a/src/SilverStripe/BehatExtension/Context/FixtureContext.php b/src/SilverStripe/BehatExtension/Context/FixtureContext.php
index <HASH>..<HASH> 100644
--- a/src/SilverStripe/BehatExtension/Context/FixtureContext.php
+++ b/src/SilverStripe/BehatExtension/Context/FixtureContext.php
@@ -183,7 +183,17 @@ class Fi... | In stepCreateRecordWithTable, if a fixture already exists then update that record
rather than create a new, identical fixture. | jeffreyguo_SS-Behat-quicksetup | train |
0e8fd979e220c8da5300b4c24b3eb4717fc0e8c2 | diff --git a/pkg/service/id.go b/pkg/service/id.go
index <HASH>..<HASH> 100644
--- a/pkg/service/id.go
+++ b/pkg/service/id.go
@@ -100,7 +100,7 @@ func RestoreBackendID(l3n4Addr loadbalancer.L3n4Addr, id loadbalancer.BackendID)
// But maybe it makes sense to delete all svc v2 in this case.
if newID != id ... | fix staticchecker warnings for service | cilium_cilium | train |
906cf37052be97557ebd526f6cd1ef2a91b2e5b8 | diff --git a/django_countries/tests/test_drf.py b/django_countries/tests/test_drf.py
index <HASH>..<HASH> 100644
--- a/django_countries/tests/test_drf.py
+++ b/django_countries/tests/test_drf.py
@@ -27,7 +27,10 @@ class PersonSerializer(CountryFieldMixin, serializers.ModelSerializer):
"favourite_country",
... | Add tests for the name_only drf feature | SmileyChris_django-countries | train |
0a43c46b3bda6844d91c9149bde664c6ccc7c08e | diff --git a/admin/utfdbmigrate.php b/admin/utfdbmigrate.php
index <HASH>..<HASH> 100755
--- a/admin/utfdbmigrate.php
+++ b/admin/utfdbmigrate.php
@@ -68,8 +68,8 @@
echo ' <input type="button" value="'.get_string('cancel').'" onclick="javascript:history.go(-1)" />';
echo '</form>';
echo ... | hardcode all encodings, so we don't need to rely on old lang files | moodle_moodle | train |
ecf56d739b81062e7e26347f221746e02a063937 | diff --git a/demo/demo/templates/demo_four.html b/demo/demo/templates/demo_four.html
index <HASH>..<HASH> 100644
--- a/demo/demo/templates/demo_four.html
+++ b/demo/demo/templates/demo_four.html
@@ -63,7 +63,7 @@ only one press per colour per second is processed.
</p>
<div class="card bg-light border-dark">
<div c... | Added site lookup for curl url in demo | GibbsConsulting_django-plotly-dash | train |
5f651b28de8fae8ac08cdf68b5d085edff52b1c5 | diff --git a/src/js/components/SkipLinks/__tests__/SkipLink-test.js b/src/js/components/SkipLinks/__tests__/SkipLink-test.js
index <HASH>..<HASH> 100644
--- a/src/js/components/SkipLinks/__tests__/SkipLink-test.js
+++ b/src/js/components/SkipLinks/__tests__/SkipLink-test.js
@@ -1,6 +1,6 @@
import React from 'react';
... | Update test (#<I>) | grommet_grommet | train |
9828f3b2a560ca610898cae8e76910c9d3ffe0d1 | diff --git a/setup.py b/setup.py
index <HASH>..<HASH> 100755
--- a/setup.py
+++ b/setup.py
@@ -19,8 +19,8 @@ version_file = join(setup_dir, 'lib', base_package, 'version.py')
# Download plink/psftp
ext_dir = join(setup_dir, 'lib', base_package, 'robotpy', 'win32')
ext_files = {
- 'plink.exe': 'http://the.earth.li... | Fix PuTTY url to use https | robotpy_pyfrc | train |
c27e51950c049dcd2d002c1a2a40379aa3c1f9be | diff --git a/alignak/shinken_import_hook.py b/alignak/shinken_import_hook.py
index <HASH>..<HASH> 100644
--- a/alignak/shinken_import_hook.py
+++ b/alignak/shinken_import_hook.py
@@ -48,6 +48,6 @@ class Finder(object):
sys.modules[name] = mod
return mod
-
+# pylint: disable=C0103
finder = Finde... | Enh: Pylint - C<I> for constants names in shinken_import_hook.py | Alignak-monitoring_alignak | train |
7c9c723343be60d5639b5f8112346ad298ebe70a | diff --git a/pysat/instruments/icon_ivm.py b/pysat/instruments/icon_ivm.py
index <HASH>..<HASH> 100644
--- a/pysat/instruments/icon_ivm.py
+++ b/pysat/instruments/icon_ivm.py
@@ -60,8 +60,8 @@ _test_dates = {'a': {'': dt.datetime(2020, 1, 1)},
# available as of Jun 26 2020, as this mode has not yet been engaged.
# In... | TST: use password_req to bypass tests for IVM-B | rstoneback_pysat | train |
41f574bf2a7fed23de35115ae0e7e75733cbb3e3 | diff --git a/registry/registry.go b/registry/registry.go
index <HASH>..<HASH> 100644
--- a/registry/registry.go
+++ b/registry/registry.go
@@ -171,6 +171,10 @@ func (r *RouteRegistry) LookupWithInstance(uri route.Uri, appID string, appIndex
uri = uri.RouteKey()
p := r.Lookup(uri)
+ if p == nil {
+ return nil
+ }... | Handle negative case in Route Registry
[#<I>] | cloudfoundry_gorouter | train |
e3afad78d11f4919f7dd4936df7eded3c5b7f7df | diff --git a/src/infi/projector/plugins/builtins/js_requirements/__init__.py b/src/infi/projector/plugins/builtins/js_requirements/__init__.py
index <HASH>..<HASH> 100644
--- a/src/infi/projector/plugins/builtins/js_requirements/__init__.py
+++ b/src/infi/projector/plugins/builtins/js_requirements/__init__.py
@@ -86,6 ... | HOSTDEV-<I>
"projector js-requirements freeze" fails if there is no js-requirements section | Infinidat_infi.projector | train |
12b2d74b9fe3e432ff1b193b5c22ac0833fb8a33 | diff --git a/hey.go b/hey.go
index <HASH>..<HASH> 100644
--- a/hey.go
+++ b/hey.go
@@ -69,6 +69,7 @@ var (
disableCompression = flag.Bool("disable-compression", false, "")
disableKeepAlives = flag.Bool("disable-keepalive", false, "")
+ disableRedirects = flag.Bool("disable-redirects", false, "")
proxyAddr ... | Add -disableRedirects flag to disable following of redirects (#<I>) | rakyll_hey | train |
06aab11d19c1ebc18276204021dcfd285064af83 | diff --git a/just/__init__.py b/just/__init__.py
index <HASH>..<HASH> 100644
--- a/just/__init__.py
+++ b/just/__init__.py
@@ -20,10 +20,11 @@ from just.requests import post
from just.dir import mkdir
__project__ = "just"
-__version__ = "0.2.23"
+__version__ = "0.2.24"
EXT_TO_MODULE = {
"html": txt,
+ "p... | .py as txt | kootenpv_just | train |
db3c4d491b00def4561337b7ee2d85ae8bcba7b5 | diff --git a/oa-oauth/lib/omniauth/strategies/oauth/google.rb b/oa-oauth/lib/omniauth/strategies/oauth/google.rb
index <HASH>..<HASH> 100644
--- a/oa-oauth/lib/omniauth/strategies/oauth/google.rb
+++ b/oa-oauth/lib/omniauth/strategies/oauth/google.rb
@@ -17,8 +17,8 @@ module OmniAuth
:site => 'https://www.go... | by default should use https protocol for loading data to fill in user_hash. HTTP and HTTPS are considered to be different scopes by Google API | omniauth_omniauth | train |
4fb966e3eb8660a132be57c36220bf7489c73a04 | diff --git a/tools/otci/otci/connectors.py b/tools/otci/otci/connectors.py
index <HASH>..<HASH> 100644
--- a/tools/otci/otci/connectors.py
+++ b/tools/otci/otci/connectors.py
@@ -159,7 +159,7 @@ class OtCliSerial(OtCliHandler):
line = self.__linebuffer + line
self.__linebuffer = b''
... | [otci] address small reliability issues (#<I>)
This commit addresses several small reliability issues revealed during
testing. | openthread_openthread | train |
a661780fb4c1753494bc76c5c7ad1f143db0b135 | diff --git a/devices.js b/devices.js
index <HASH>..<HASH> 100644
--- a/devices.js
+++ b/devices.js
@@ -1805,7 +1805,7 @@ const devices = [
fromZigbee: [fz.state, fz.ignore_onoff_change, fz.brightness_report, fz.ignore_light_brightness_change],
},
{
- zigbeeModel: ['FB56+ZSW1HKJ1.7'],
+ ... | Update devices.js to support FB<I>+ZSW1HKJ<I> 2 gang Nue smart switch (#<I>)
* Update devices.js to support FB<I>+ZSW1HKJ<I> 2 gang Nue smart switch
This has the same model number HGZB-<I> as FB<I>+ZSW1HKJ<I>
* Update devices.js | Koenkk_zigbee-shepherd-converters | train |
53510ea30b58dd4510b20b241202a896db1cd261 | diff --git a/tests/Database/DatabaseEloquentModelTest.php b/tests/Database/DatabaseEloquentModelTest.php
index <HASH>..<HASH> 100755
--- a/tests/Database/DatabaseEloquentModelTest.php
+++ b/tests/Database/DatabaseEloquentModelTest.php
@@ -1716,6 +1716,23 @@ class DatabaseEloquentModelTest extends TestCase
$thi... | Add unit testing for the withoutTouchingOn method | laravel_framework | train |
bcd2610823007e7fffdb54672872de6eae2bc254 | diff --git a/lavalink/websocket.py b/lavalink/websocket.py
index <HASH>..<HASH> 100644
--- a/lavalink/websocket.py
+++ b/lavalink/websocket.py
@@ -24,7 +24,7 @@ class WebSocket:
self._shards = self._node._lavalink._shard_count
self._user_id = self._node._lavalink._user_id
- self._loop = self.... | naniware doesn't exist smfh | Devoxin_Lavalink.py | train |
5bdd2c093ecfa5a965f640681ef6dbc572dc6b6b | diff --git a/lib/rda/nginx.rb b/lib/rda/nginx.rb
index <HASH>..<HASH> 100644
--- a/lib/rda/nginx.rb
+++ b/lib/rda/nginx.rb
@@ -1,40 +1,14 @@
module Rda
class Nginx < Thor
include Thor::Actions
-
- def self.source_root
- File.dirname(__FILE__)
- end
+ include Helper
desc "setup", "Set up yo... | Removed methods of discarding settings of nginx | towerhe_rda | train |
f340f44aa2d635fcad392e7df7148e1fb1bbcf78 | diff --git a/mambuloan.py b/mambuloan.py
index <HASH>..<HASH> 100644
--- a/mambuloan.py
+++ b/mambuloan.py
@@ -381,18 +381,18 @@ class MambuLoan(MambuStruct):
loanclients = {}
- loannombres = self.getClientDetails(holder=holder, *args, **kwargs) # Esto seguro se puede sustituir por w... | MambuPy allow accessing of MambuStruct properties on an object-like
fashion (dot notation)
Changes on parts of MambuLoan.setHolder were made using this new
available notation were made too. | jstitch_MambuPy | train |
7cc958c43041b6947bdc734e73fc5e4a21c1bf7d | diff --git a/pyvizio/version.py b/pyvizio/version.py
index <HASH>..<HASH> 100644
--- a/pyvizio/version.py
+++ b/pyvizio/version.py
@@ -1 +1 @@
-__version__ = "0.0.18"
+__version__ = "0.0.19"
diff --git a/pyvizio/vizio.py b/pyvizio/vizio.py
index <HASH>..<HASH> 100644
--- a/pyvizio/vizio.py
+++ b/pyvizio/vizio.py
@@ -15... | add new static method to aid in HA config flow | vkorn_pyvizio | train |
d98671d021c2490b38fef325ceee8d177b48a0d7 | diff --git a/lib/gir_ffi/in_pointer.rb b/lib/gir_ffi/in_pointer.rb
index <HASH>..<HASH> 100644
--- a/lib/gir_ffi/in_pointer.rb
+++ b/lib/gir_ffi/in_pointer.rb
@@ -15,6 +15,10 @@ module GirFFI
self.new block
end
+ def self.from type, val
+ ArgHelper.utf8_to_inptr val
+ end
+
def self.from_u... | Start implementing InPointer.from, to handle :utf8 and :object. | mvz_gir_ffi | train |
294d745701a91349cf26bfbf35e11f50361af4ca | diff --git a/config/admin/jsonadm/resource.php b/config/admin/jsonadm/resource.php
index <HASH>..<HASH> 100644
--- a/config/admin/jsonadm/resource.php
+++ b/config/admin/jsonadm/resource.php
@@ -1,6 +1,7 @@
<?php
return [
+ 'groups' => ['admin', 'editor', 'super'],
'attribute' => [
/** admin/jsonadm/resource/a... | Fixed missing permissions for admins and editors | aimeos_ai-admin-jsonadm | train |
870ee02bff1f94d9acba661e90b60be25e7d7fe9 | diff --git a/CHANGELOG.md b/CHANGELOG.md
index <HASH>..<HASH> 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## 8.0.1 (2019-12-06)
+
+* Fixed problem that setting `stubbles.locale` to something like `de_DE` didn't fall back to using messages with `de_*`
+
## 8.0.0 (2019-11-07)
### BC b... | fix problem that setting stubbles.locale to something like de_DE didn't fall back to using messages with de_* | stubbles_stubbles-input | train |
209e8ed1780af1def65abf31a1f206005b7ed544 | diff --git a/pysc2/lib/actions.py b/pysc2/lib/actions.py
index <HASH>..<HASH> 100644
--- a/pysc2/lib/actions.py
+++ b/pysc2/lib/actions.py
@@ -410,8 +410,9 @@ class Functions(object):
def __init__(self, functions):
functions = sorted(functions, key=lambda f: f.id)
# Convert each int id to the equivalent In... | Add support for functions outside the set of actions (e.g. raw actions), and give full unit tags as observations.
PiperOrigin-RevId: <I> | deepmind_pysc2 | train |
6e9e491c794cdf1389d3519afd2ed596afba1c05 | diff --git a/logger/syslog_windows_test.go b/logger/syslog_windows_test.go
index <HASH>..<HASH> 100755
--- a/logger/syslog_windows_test.go
+++ b/logger/syslog_windows_test.go
@@ -96,7 +96,7 @@ func TestSysLoggerWithDebugAndTrace(t *testing.T) {
// TestSysLoggerWithDebugAndTrace tests remote event logging
func TestRem... | Updates for running in a windows container environment.
* Fixes unit tests running in windows containers with the default configuration. | nats-io_gnatsd | train |
c16101699439a137abd25ae8b5049b537d071c52 | diff --git a/js/bitfinex.js b/js/bitfinex.js
index <HASH>..<HASH> 100644
--- a/js/bitfinex.js
+++ b/js/bitfinex.js
@@ -115,6 +115,10 @@ module.exports = class bitfinex extends Exchange {
return 'DASH';
if (currency == 'QTM')
return 'QTUM';
+ if (currency == 'BCC')
+ ... | bitfinex BCC → CST_BCC, BCU → CST_BCU fix #<I> | ccxt_ccxt | train |
09350c56b239232110323a8cfae5caa5ef443716 | diff --git a/inginious/common/task_factory.py b/inginious/common/task_factory.py
index <HASH>..<HASH> 100644
--- a/inginious/common/task_factory.py
+++ b/inginious/common/task_factory.py
@@ -289,12 +289,9 @@ class TaskFactory(object):
task_fs = self.get_task_fs(courseid, taskid)
- if not task_fs.exi... | Stop raising exception when task is deleted but it is not saved yet | UCL-INGI_INGInious | train |
d7b73968429af22841c98acb4612f3f22269b716 | diff --git a/durastore/src/main/java/org/duracloud/durastore/rest/ContentResource.java b/durastore/src/main/java/org/duracloud/durastore/rest/ContentResource.java
index <HASH>..<HASH> 100644
--- a/durastore/src/main/java/org/duracloud/durastore/rest/ContentResource.java
+++ b/durastore/src/main/java/org/duracloud/duras... | When updating content metadata the mimetype must now be updated explicitly. If no mimetype value is provided on the update the existing value is retained. This is in contrast to all other (user-editable) content metadata which is removed if not included in the list during an update.
git-svn-id: <URL> | duracloud_management-console | train |
633ec93ab5f21d5b43c6e5d4f466e0b5bf695a0c | diff --git a/recorder.go b/recorder.go
index <HASH>..<HASH> 100644
--- a/recorder.go
+++ b/recorder.go
@@ -2,6 +2,7 @@ package lunk
import (
"encoding/csv"
+ "sort"
"strconv"
"time"
)
@@ -91,7 +92,14 @@ func (r nCSVRecorder) Record(e Entry) error {
return err
}
- for k, v := range e.Properties {
+ keys... | Ensure a consistent order for CSV lines. | codahale_lunk | train |
1cf26e463e21a3e67ab8246b87eb59241c5e1b59 | diff --git a/test/sensu_test.rb b/test/sensu_test.rb
index <HASH>..<HASH> 100644
--- a/test/sensu_test.rb
+++ b/test/sensu_test.rb
@@ -78,7 +78,7 @@ class TestSensu < TestCase
:action => 'create'
)
server.handle_event(event)
- EM::Timer.new(1) do
+ EM::Timer.new(2) do
assert_equal(event.to... | [reconnect] a few more small test adjustments | sensu_sensu | train |
019dc16bbb424a554517e60ba95f8cc3db3ad2da | diff --git a/lib/pt/ui.rb b/lib/pt/ui.rb
index <HASH>..<HASH> 100644
--- a/lib/pt/ui.rb
+++ b/lib/pt/ui.rb
@@ -545,6 +545,9 @@ class PT::UI
if member.name.downcase.index query
return member
end
+ if member.initials.downcase.index query
+ return member
+ end
end
nil
e... | fix for searching users by initials instead of names | raul_pt | train |
07c3337b453f94186df00c68cc477577f01653d0 | diff --git a/src/components/mousewheel/mousewheel.js b/src/components/mousewheel/mousewheel.js
index <HASH>..<HASH> 100644
--- a/src/components/mousewheel/mousewheel.js
+++ b/src/components/mousewheel/mousewheel.js
@@ -171,7 +171,7 @@ const Mousewheel = {
// Else (this is the first time the wheel is moved):
... | Mousewheel: release on <I>ms delay
Fixes #<I> | nolimits4web_swiper | train |
1fcdf285b75647c8a62600287f46ea75b573767a | diff --git a/go/vt/callerid/testsuite/callerid_test.go b/go/vt/callerid/testsuite/callerid_test.go
index <HASH>..<HASH> 100644
--- a/go/vt/callerid/testsuite/callerid_test.go
+++ b/go/vt/callerid/testsuite/callerid_test.go
@@ -3,6 +3,7 @@ package testsuite
import (
"testing"
+ "github.com/youtube/vitess/go/vt/call... | callerid: Inject newContext() so it can be wrapped or replaced. (#<I>) | vitessio_vitess | train |
c57e05bec16f31344868fb9158f22c1d1a9d1144 | diff --git a/examples/vectors_fast_text.py b/examples/vectors_fast_text.py
index <HASH>..<HASH> 100644
--- a/examples/vectors_fast_text.py
+++ b/examples/vectors_fast_text.py
@@ -30,7 +30,7 @@ def main(vectors_loc, lang=None):
nlp.vocab.reset_vectors(width=int(nr_dim))
for line in file_:
... | Make sure nr_dim is an int
In some languages (e.g. Dutch), the nr_dim is extracted as a byte string, causing an error down the line. | explosion_spaCy | train |
3283bccf78617510010f7b8da598c5e356f71fe5 | diff --git a/test/unit/map-each.js b/test/unit/map-each.js
index <HASH>..<HASH> 100644
--- a/test/unit/map-each.js
+++ b/test/unit/map-each.js
@@ -141,6 +141,10 @@ describe('map-each - unit tests', function() {
MapEach._mapEachCallback(allDoneStub, inputArray, iteratee, 3, ['yay', 'res', 'u'], null, 'l... | ISSUE-5 - added unit test after hook. | GannettDigital_palinode | train |
cc445b8fd1d73cada75df81e66dc9e97979d0f47 | diff --git a/core/src/main/java/org/bitcoinj/utils/BtcFormat.java b/core/src/main/java/org/bitcoinj/utils/BtcFormat.java
index <HASH>..<HASH> 100644
--- a/core/src/main/java/org/bitcoinj/utils/BtcFormat.java
+++ b/core/src/main/java/org/bitcoinj/utils/BtcFormat.java
@@ -65,7 +65,7 @@ import java.util.regex.Pattern;
*... | BtcFormat: Fix "heading used out of sequence" JavaDoc error on JDK <I>. | bitcoinj_bitcoinj | train |
d4d480bd3bf30f408165fa62cadec4fa2a22b30a | diff --git a/src/pixi/core/Matrix.js b/src/pixi/core/Matrix.js
index <HASH>..<HASH> 100644
--- a/src/pixi/core/Matrix.js
+++ b/src/pixi/core/Matrix.js
@@ -78,13 +78,29 @@ PIXI.Matrix.prototype.toArray = function(transpose)
return array;
};
-PIXI.Matrix.prototype.toGlobal = function(pos)
+/**
+ * Get a new posit... | The function name shouldn't be "toGlobal" of course.
- Added comments. | pixijs_pixi.js | train |
a304745b4481bed31e14e6003843e8751acf0d89 | diff --git a/gcsproxy/mutable_content.go b/gcsproxy/mutable_content.go
index <HASH>..<HASH> 100644
--- a/gcsproxy/mutable_content.go
+++ b/gcsproxy/mutable_content.go
@@ -37,9 +37,12 @@ type MutableContent interface {
// state. The object must not be used again.
Destroy()
- // Return a read/write lease for the cu... | Guarantee that Release can't fail.
This is needed for the "strong error-safety guarantee" made in <I>f<I>. | jacobsa_ratelimit | train |
646710048a5dfe236e5982cf68d6dc528e959933 | diff --git a/lib/Rx/Operator/ZipOperator.php b/lib/Rx/Operator/ZipOperator.php
index <HASH>..<HASH> 100644
--- a/lib/Rx/Operator/ZipOperator.php
+++ b/lib/Rx/Operator/ZipOperator.php
@@ -25,6 +25,9 @@ class ZipOperator implements OperatorInterface
/** @var int */
private $numberOfSources;
+ /** @var bool... | Fix zip to work with ImmediateScheduler with test | ReactiveX_RxPHP | train |
f5d99fb0e998fb881bbc769aa5ba596d0f27bf05 | diff --git a/docs/config/01-configuration-file.md b/docs/config/01-configuration-file.md
index <HASH>..<HASH> 100644
--- a/docs/config/01-configuration-file.md
+++ b/docs/config/01-configuration-file.md
@@ -702,6 +702,43 @@ is handed off to [socket.io](http://socket.io/) (which manages the communication
between browse... | feat(proxy): add proxy events to config | karma-runner_karma | train |
32fdd6f3965766a9728d6b8f8533e2bcfac47a77 | diff --git a/py2pack/__init__.py b/py2pack/__init__.py
index <HASH>..<HASH> 100644
--- a/py2pack/__init__.py
+++ b/py2pack/__init__.py
@@ -140,6 +140,15 @@ def _canonicalize_setup_data(data):
data["install_requires"] = [" ".join(_sanitize_requirements(req))
for req in data[... | Fix tests_require handling
The tests_require must be processed similar to
install_requires. Otherwise we don't get a list of tests_require which
can be used in the template later.
Also add tests for that and improve the tests when the requires are
given as a string. | openSUSE_py2pack | train |
9666b5dfd64fcc8f876d79b941ec6ed1d6384349 | diff --git a/DependencyInjection/RegisterWebserviceListenersPass.php b/DependencyInjection/RegisterWebserviceListenersPass.php
index <HASH>..<HASH> 100644
--- a/DependencyInjection/RegisterWebserviceListenersPass.php
+++ b/DependencyInjection/RegisterWebserviceListenersPass.php
@@ -17,7 +17,7 @@ class RegisterWebservic... | fixed bug looking for aliased service definition in compiler pass | AmericanCouncils_WebServicesBundle | train |
73542199290ce7f2d592e8e67251caa6bf3852be | diff --git a/lib/protocol/constants.js b/lib/protocol/constants.js
index <HASH>..<HASH> 100644
--- a/lib/protocol/constants.js
+++ b/lib/protocol/constants.js
@@ -7,7 +7,7 @@ try {
cpuInfo = require('cpu-features')();
} catch {}
-const { bindingAvailable } = require('./crypto.js');
+const { bindingAvailable, CIPH... | protocol: add simple cipher and mac algorithm checks | mscdex_ssh2 | train |
5e3d57966b95a0f5e4fa12028cc4b86b4b2a38e9 | diff --git a/pywb/static/wombat.js b/pywb/static/wombat.js
index <HASH>..<HASH> 100644
--- a/pywb/static/wombat.js
+++ b/pywb/static/wombat.js
@@ -1039,7 +1039,10 @@ var wombat_internal = function($wbwindow) {
return n1 + rewrite_url(n2) + n3;
}
- return value.replace(STYLE_REGEX, style_r... | rewrite: ensure WB_wombat_ removed from and style strings | webrecorder_pywb | train |
fd0bce07584b73fb755574c4d462e0b175d1c6b6 | diff --git a/test/unit/ajax.js b/test/unit/ajax.js
index <HASH>..<HASH> 100644
--- a/test/unit/ajax.js
+++ b/test/unit/ajax.js
@@ -1532,10 +1532,17 @@ module( "ajax", {
}
} );
- testIframeWithCallback( "#14379 - jQuery.ajax() on unload", "ajax/onunload.html", function( status ) {
- expect( 1 );
- strictEqual( ... | Ajax: don’t test jQuery.ajax() on beforeunload in Chrome <I>
Chrome <I> doesn't fire Ajax requests in beforeunload event handler.
There is no way for us to workaround it and it's been fixed in Chrome <I>
so let's just blacklist Chrome <I> as long as it's in TestSwarm.
See <URL> | jquery_jquery | train |
9a2bf78a8e4450c0f2675b2dc94374f0ef81fcaa | diff --git a/src/models/room.js b/src/models/room.js
index <HASH>..<HASH> 100644
--- a/src/models/room.js
+++ b/src/models/room.js
@@ -558,7 +558,7 @@ Room.prototype._cleanupAfterLeaving = function() {
this.clearLoadedMembersIfNeeded().catch((err) => {
logger.error(`error after clearing loaded members fro... | logger.dir changed to a log | matrix-org_matrix-js-sdk | train |
8e2ea33231cf0d38937287361dfd01a6e7d1be31 | diff --git a/java/client/test/org/openqa/selenium/interactions/BasicMouseInterfaceTest.java b/java/client/test/org/openqa/selenium/interactions/BasicMouseInterfaceTest.java
index <HASH>..<HASH> 100644
--- a/java/client/test/org/openqa/selenium/interactions/BasicMouseInterfaceTest.java
+++ b/java/client/test/org/openqa/... | [java] Reverting back a bit of code to fit Java 8 source compatibility level | SeleniumHQ_selenium | train |
24f017358b3a505a3e47ac0df011686ddd689fbe | diff --git a/bin/pysaunter.py b/bin/pysaunter.py
index <HASH>..<HASH> 100644
--- a/bin/pysaunter.py
+++ b/bin/pysaunter.py
@@ -24,6 +24,7 @@ import shutil
import sys
import time
import tempfile
+import types
import saunter
saunter_installed_at = os.path.dirname(saunter.__file__)
cwd = os.getcwd()
@@ -88,16 +89,32... | fixing argument parsing so shallow really is the default | Element-34_py.saunter | train |
18126aebf8eef613334ee3cacd0370ea3a42ff52 | diff --git a/java/src/com/google/template/soy/soytree/MsgNode.java b/java/src/com/google/template/soy/soytree/MsgNode.java
index <HASH>..<HASH> 100644
--- a/java/src/com/google/template/soy/soytree/MsgNode.java
+++ b/java/src/com/google/template/soy/soytree/MsgNode.java
@@ -670,7 +670,7 @@ public final class MsgNode ex... | Only loop over distinct keys when detecting placeholder collisions.
GITHUB_BREAKING_CHANGES=None
-------------
Created by MOE: <URL> | google_closure-templates | train |
ab318cf89f63da69ee305d6c53121b4cd5691203 | diff --git a/staging/src/k8s.io/component-base/logs/json/json.go b/staging/src/k8s.io/component-base/logs/json/json.go
index <HASH>..<HASH> 100644
--- a/staging/src/k8s.io/component-base/logs/json/json.go
+++ b/staging/src/k8s.io/component-base/logs/json/json.go
@@ -43,6 +43,7 @@ func NewJSONLogger(infoStream, errorStr... | json: enable WithName logging
The name added to a logger via WithName only gets printed when a key is
chosen. "logger" is used as in the zap examples.
This becomes relevant once we support contextual logging. When logging through
klog the name is always empty. | kubernetes_kubernetes | train |
f1cedc4a28390c69e14dfe347b4b275358cbe5b3 | diff --git a/ui/src/dashboards/utils/cellGetters.js b/ui/src/dashboards/utils/cellGetters.js
index <HASH>..<HASH> 100644
--- a/ui/src/dashboards/utils/cellGetters.js
+++ b/ui/src/dashboards/utils/cellGetters.js
@@ -20,35 +20,63 @@ const getMostCommonValue = values => {
return results.mostCommonValue
}
+const numC... | Improve box packing for new and cloned cells | influxdata_influxdb | train |
8e1892b213724898e3676d7399cc72cf71725078 | diff --git a/example/zalando/main.go b/example/zalando/main.go
index <HASH>..<HASH> 100644
--- a/example/zalando/main.go
+++ b/example/zalando/main.go
@@ -50,7 +50,8 @@ func main() {
private.Use(ginoauth2.AuthChain(zalando.OAuth2Endpoint, zalando.UidCheck(USERS), zalando.GroupCheck(TEAMS), zalando.UidCheck(SERVICES))... | implement AND and OR checks for scopes provided by the given token | zalando_gin-oauth2 | train |
269ca250a2a0e2a87157763940fcdec06fcf356e | diff --git a/src/Stagehand/FSM/FSMBuilder.php b/src/Stagehand/FSM/FSMBuilder.php
index <HASH>..<HASH> 100644
--- a/src/Stagehand/FSM/FSMBuilder.php
+++ b/src/Stagehand/FSM/FSMBuilder.php
@@ -89,7 +89,7 @@ class FSMBuilder
*/
public function setActivity($stateID, $activity)
{
- $this->addTransitio... | Fixed an invalid reference to the Event class. | phpmentors-jp_stagehand-fsm | train |
b756e983686e30ab6b9202693e171f6a409042e5 | diff --git a/src/main/java/com/semanticcms/openfile/servlet/OpenFile.java b/src/main/java/com/semanticcms/openfile/servlet/OpenFile.java
index <HASH>..<HASH> 100644
--- a/src/main/java/com/semanticcms/openfile/servlet/OpenFile.java
+++ b/src/main/java/com/semanticcms/openfile/servlet/OpenFile.java
@@ -45,7 +45,10 @@ im... | Reviewed all empty blocks of code per SonarCloud code analysis
1) Removed unnecessary public constructors
2) Deprecated public constructors that must remain for implementation but are
not intended for direct use
3) Classes with private constructors set either final (if has instances) or
abstract (for no instan... | aoindustries_semanticcms-openfile-servlet | train |
6d579a1c7314f6cb70966f321469f2f7b7cc3a65 | diff --git a/src/test/java/org/graphwalker/cli/GraphWalkerWebSocketServerTest.java b/src/test/java/org/graphwalker/cli/GraphWalkerWebSocketServerTest.java
index <HASH>..<HASH> 100644
--- a/src/test/java/org/graphwalker/cli/GraphWalkerWebSocketServerTest.java
+++ b/src/test/java/org/graphwalker/cli/GraphWalkerWebSocketS... | WIP for the websocket test | GraphWalker_graphwalker-project | train |
10c2ccd356559fd9d6d2512d847a7d99f0dfd61b | diff --git a/test/test_errors.rb b/test/test_errors.rb
index <HASH>..<HASH> 100644
--- a/test/test_errors.rb
+++ b/test/test_errors.rb
@@ -51,7 +51,7 @@ class ErrorsTest < Test::Unit::TestCase
assert_equal Proj4::UnknownError, exception.class
assert_equal "unknown error", exception.message
... | Changed test to work when not run from rake but directly | cfis_proj4rb | train |
4fcccf1e3d724ca5a1800d30c58eec69ea783525 | diff --git a/umbra/components/addons/traceUi/traceUi.py b/umbra/components/addons/traceUi/traceUi.py
index <HASH>..<HASH> 100644
--- a/umbra/components/addons/traceUi/traceUi.py
+++ b/umbra/components/addons/traceUi/traceUi.py
@@ -589,7 +589,7 @@ class TraceUi(QWidgetComponentFactory(uiFile=COMPONENT_UI_FILE)):
root... | Fix unicode related exception in "traceUi" component. | KelSolaar_Umbra | train |
65ab6ea40e4285f54d1c5f10260c020337dac0df | diff --git a/lib/puppet/file_system/uniquefile.rb b/lib/puppet/file_system/uniquefile.rb
index <HASH>..<HASH> 100644
--- a/lib/puppet/file_system/uniquefile.rb
+++ b/lib/puppet/file_system/uniquefile.rb
@@ -124,11 +124,7 @@ class Puppet::FileSystem::Uniquefile < DelegateClass(File)
opts = []
end
tmpdir... | (PUP-<I>) Ruby <I> warning: $SAFE
`warning: $SAFE will become a normal global variable in Ruby <I>`
`$SAFE` and `taint` are deprecated concepts. See:
<URL> | puppetlabs_puppet | train |
acc3b33861568f81ede6ae0e7aed378247024231 | diff --git a/public/jwui/component.js b/public/jwui/component.js
index <HASH>..<HASH> 100644
--- a/public/jwui/component.js
+++ b/public/jwui/component.js
@@ -499,19 +499,20 @@ JW.extend(JW.UI.Component, JW.Class, {
}
this.destroyed = true;
if (this.el) {
- this.el.remove();
+ this.el.detach();
JW.Set.... | #<I>: Prevent children automatic destruction. | enepomnyaschih_jwidget | train |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.