diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -25,7 +25,6 @@ import org.camunda.bpm.engine.impl.persistence.entity.JobEntity;
import org.camunda.bpm.engine.runtime.Job;
import org.camunda.bpm.engine.test.Deployment;
import org.camunda.bpm.engine.test.ProcessEngineRule;
-import org.camunda.bpm.engine.test.RequiredHistoryLevel;
import org.camunda.bpm.engine.test.... | chore(engine-tests): remove test due to flakiness on oracle db | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -104,7 +104,7 @@ impl RaftService for RaftServiceImpl {
return Ok(tonic::Response::new(raft_reply));
}
- #[tracing::instrument(level = "debug", skip(self))]
+ #[tracing::instrument(level = "debug", skip_all)]
async fn forward(
&self,
request: tonic::Request<RaftRequest>,
| chore(meta): remove unexpected span info | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -197,8 +197,8 @@ class LodestoneCharacterController extends AbstractController
if ($content->MIMO) {
$cachedMIMO = Redis::Cache()->get($rediskey . "_MIMO", true);
if ($cachedMIMO) {
- $response['Minions'] = $cachedMIMO['Minions'];
- $response['Mounts'] = $cachedMIMO['Mounts'];
+ $response->Minions = $cachedMIMO['Min... | chore: fix stdClass access | null | xivapi/xivapi.com | MIT License | PHP |
@@ -133,7 +133,8 @@ func (opts *Options) DefaultStoreOptions() *store.Options {
WithCompactionThld(0).
WithSynced(false).
WithSyncThld(tbtree.DefaultSyncThld).
- WithDelayDuringCompaction(10 * time.Millisecond)
+ WithDelayDuringCompaction(10 * time.Millisecond).
+ WithMaxActiveSnapshots(100)
return store.DefaultOptions... | chore(pkg/server): increase default max number of active snapshots | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -23,7 +23,6 @@ import (
"math"
"strings"
"sync"
- "time"
"github.com/codenotary/immudb/embedded/store"
"github.com/codenotary/immudb/embedded/tbtree"
@@ -104,7 +103,10 @@ func (e *Engine) loadCatalog() error {
e.catalog = nil
lastTxID, _ := e.catalogStore.Alh()
- waitForIndexingUpto(e.catalogStore, lastTxID)
+ err :... | chore(pkg/sql): upgrade to new store commit api | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -131,8 +131,13 @@ func updateSubnetServiceEndpoints(ctx context.Context, az *azure.Cloud, subnetLo
Locations: &endpointLocaions,
}
storageServiceExists := false
- if subnet.SubnetPropertiesFormat != nil {
- if subnet.SubnetPropertiesFormat.ServiceEndpoints != nil {
+ if subnet.SubnetPropertiesFormat == nil {
+ subne... | chore: refine the logic of setting service endpoints | null | kubernetes-sigs/azurefile-csi-driver | Apache License 2.0 | Go |
@@ -380,7 +380,7 @@ public abstract class NodeUpdater implements FallibleCommand {
defaults.put("@polymer/polymer", POLYMER_VERSION);
- defaults.put("lit", "2.0.0");
+ defaults.put("lit", "2.1.4");
// Constructable style sheets is only implemented for chrome,
// polyfill needed for FireFox et.al. at the moment
| chore: Upgrade to latest lit | null | vaadin/flow | Apache License 2.0 | Java |
@@ -139,7 +139,7 @@ public class VaadinConnectController {
context.getBeansWithAnnotation(VaadinService.class).forEach(
(name, serviceBean) -> validateServiceBean(serviceNameChecker,
- context, name, serviceBean));
+ name, serviceBean));
}
private static Logger getLogger() {
@@ -147,7 +147,7 @@ public class VaadinConne... | chore: remove unused method parameter | null | vaadin/flow | Apache License 2.0 | Java |
set -e
export PUBLISH_BRANCH=${PUBLISH_BRANCH:-master}
+export DEVELOPMENT_BRANCH=${DEVELOPMENT_BRANCH:-development}
#setup git
git config --global user.email "noreply@travis.com"
@@ -21,10 +22,21 @@ cd apk
if [ "$TRAVIS_BRANCH" == "$PUBLISH_BRANCH" ]; then
echo "Push to master branch detected, signing the app..."
+ # ... | chore: build apks from development branch | null | fossasia/pslab-android | Apache License 2.0 | Shell |
@@ -51,37 +51,37 @@ func (a *ALMBroker) ValidateBrokerAPIVersion(version string) error {
}
// GetCatalog returns the CSVs in the catalog
-func (a *ALMBroker) GetCatalog(*broker.RequestContext) (*osb.CatalogResponse, error) {
+func (a *ALMBroker) GetCatalog(*broker.RequestContext) (*broker.CatalogResponse, error) {
// T... | chore(servicebroker/apiserver): update broker interface types | null | operator-framework/operator-lifecycle-manager | Apache License 2.0 | Go |
@@ -123,13 +123,15 @@ void main() {
expect(thirdIssue.location.column, 1);
});
- test('should analyze ignored parameters and report no issues',
+ test(
+ 'should analyze ignored parameters and report no issues',
() async {
final report = result.firstWhereOrNull((report) =>
report.path.endsWith('nullable_widget_key_para... | chore: revert formatting change | null | dart-code-checker/dart-code-metrics | MIT License | Dart |
@@ -214,13 +214,13 @@ func (idx *indexer) CompactIndex() (err error) {
idx.compactionMutex.Lock()
defer idx.compactionMutex.Unlock()
- idx.store.notify(Info, true, "Compacting index '%s'...", idx.store.path)
+ idx.store.log.Infof("Compacting index '%s'...", idx.store.path)
defer func() {
if err == nil {
- idx.store.not... | chore(embedded/store): verbose logging during compaction | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -31,7 +31,6 @@ internal final class FormSplitItemView: FormItemView<FormSplitItem> {
private lazy var stackView: UIStackView = {
let stackView = UIStackView(arrangedSubviews: childItemViews)
- stackView.translatesAutoresizingMaskIntoConstraints = false
stackView.preservesSuperviewLayoutMargins = true
stackView.axis ... | chore: Remove mask translation in split item's stack view | null | adyen/adyen-ios | MIT License | Swift |
@@ -317,7 +317,7 @@ class Carto::User < ActiveRecord::Base
end
def map_views_count
- 123 # Mocked value by now.
+ 123 # TODO. Mocked value by now.
end
def subscriptions_public_size_in_bytes
@@ -336,9 +336,11 @@ class Carto::User < ActiveRecord::Base
def subscriptions_size_in_bytes(project)
# Note we cannot filter by `p... | chore: check if the synced table exists for user quota | null | cartodb/cartodb | BSD 3-Clause New or Revised License | Ruby |
@@ -40,11 +40,12 @@ bool CustomSettings::Load() {
config_path = shared_data_path / "build" / (config_id_ + ".yaml");
if (!config_.LoadFromFile(config_path.string())) {
LOG(WARNING) << "cannot find '" << config_id_ << ".yaml'.";
- return false;
}
}
fs::path custom_config_path(user_data_path / custom_config_file(config_i... | chore(custom_settings): tolerate failure loading built config | null | rime/librime | BSD 3-Clause New or Revised License | C++ |
@@ -12,11 +12,10 @@ if [[ $TRAVIS_BRANCH != 'master' ]]; then
fi
if [[ $TRAVIS_BRANCH == 'master' ]]; then
- npm run semantic-release-dry-run
+ npm run semantic-release
echo "[DEBUG] CHANGELOG"
cat packages/*/CHANGELOG.md
- # npm run semantic-release
- # npm run lerna exec --loglevel info -- npm run coverage:publish
+ ... | chore(cd): lerna-semantic-release should now try to push new packages to NPM | null | serenity-js/serenity-js | Apache License 2.0 | Shell |
@@ -35,6 +35,7 @@ type OngoingTx struct {
preconditions []Precondition
+ //MVCC
expectedGets []expectedGet
expectedGetsWithPrefix []expectedGetWithPrefix
expectedReaders []*expectedReader
@@ -437,7 +438,7 @@ func (tx *OngoingTx) checkPreconditions(st *ImmuStore) error {
}
for _, e := range tx.expectedGetsWithPrefix {
-... | chore(embedded/store): validate gets using filters | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -66,11 +66,11 @@ public class FrontendTools {
* the installed version is older than {@link #SUPPORTED_NODE_VERSION}, i.e.
* {@value #SUPPORTED_NODE_MAJOR_VERSION}.{@value #SUPPORTED_NODE_MINOR_VERSION}.
*/
- public static final String DEFAULT_NODE_VERSION = "v16.14.2";
+ public static final String DEFAULT_NODE_VERSI... | chore: Upgrade to Node 16.15.0 | null | vaadin/flow | Apache License 2.0 | Java |
@@ -26,7 +26,6 @@ import org.camunda.bpm.client.rule.ClientRule;
import org.camunda.bpm.client.rule.EngineRule;
import org.camunda.bpm.client.task.ExternalTask;
import org.camunda.bpm.client.util.RecordingExternalTaskHandler;
-import org.camunda.bpm.engine.variable.value.TypedValue;
import org.camunda.spin.json.SpinJso... | chore(test): cleanup imports | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -76,21 +76,44 @@ public final class VoucherComponent: AnyVoucherActionHandler {
}
+/// :nodoc:
extension VoucherComponent: VoucherViewDelegate {
+
+ /// :nodoc:
internal func didComplete(presentingViewController: UIViewController) {
delegate?.didComplete(from: self)
}
+ /// :nodoc:
internal func saveAsImage(voucherV... | chore: Extract share popover presentation logic in a separate function | null | adyen/adyen-ios | MIT License | Swift |
@@ -189,7 +189,7 @@ class TestReport(FrappeTestCase):
def test_report_custom_permissions(self):
frappe.set_user("test@example.com")
frappe.db.delete("Custom Role", {"report": "Test Custom Role Report"})
- frappe.db.commit()
+ frappe.db.commit() # nosemgrep
if not frappe.db.exists("Report", "Test Custom Role Report"):
r... | chore: removed unused variable & added nosemgrep on db commit | null | frappe/frappe | MIT License | Python |
@@ -85,12 +85,9 @@ class LegacyActionLinkerTests: XCTestCase {
expectation.expectedFulfillmentCount = 1
expectation.assertForOverFulfill = true
store.dispatch(BaseAction.Twenty())
- XCTAssertTrue(true)
self.waitForExpectations(timeout: 2.0) { (err: Error?) in
- let newState = store.state
-
- XCTAssertEqual(newState.int... | chore: remove useless assertions | null | bendingspoons/katana-swift | MIT License | Swift |
@@ -415,6 +415,11 @@ internal bool BuildAssetBundles(out AssetBundleManifest manifest)
logBuffer += $"#{i} Generated asset bundle name: {assetBundles[i]}\n";
}
+ FileInfo file = new FileInfo(finalAssetBundlePath);
+ DriveInfo info = new DriveInfo(file.Directory.Root.FullName);
+
+ logBuffer += $"\nFree disk space after... | chore: add free disk space log to ab converter | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -48,7 +48,7 @@ function filter_messages() {
continue
fi
# Likely uninteresting changes.
- if grep -qP "^(ci|chore|test|testing|cleanup)\b" <<<"${message}"; then
+ if grep -qP "^(ci|chore|test|testing|cleanup|refactor)\b" <<<"${message}"; then
continue
fi
echo "${message}"
| chore: teach cleanup.sh to skip refactor PRs | null | googleapis/google-cloud-cpp | Apache License 2.0 | Shell |
@@ -39,10 +39,10 @@ private:
class stream_context : public context
{
public:
- stream_context(grpc::ServerContext* ctx): context(ctx) {}
+ stream_context(grpc::ServerContext* ctx):
+ context(ctx){};
~stream_context() = default;
-private:
enum : char
{
STREAMING = 1,
| chore(userspace/falco): grpc context format | null | falcosecurity/falco | Apache License 2.0 | C |
@@ -29,6 +29,10 @@ function process_args() {
HALYARD_BUCKET_BASE_URL="$1"
shift
;;
+ --download-with-gsutil)
+ echo "download-with-gsutil"
+ DOWNLOAD_WITH_GSUTIL=true
+ ;;
--spinnaker-repository)
echo "spinnaker-repo"
SPINNAKER_REPOSITORY_URL="$1"
@@ -195,6 +199,11 @@ usage: $0 [-y] [--version=<version>] [--user=<user>... | chore(install): allow halyard to be installed using gsutil | null | spinnaker/halyard | Apache License 2.0 | Shell |
@@ -28,15 +28,42 @@ class BACSConfirmationPresenterTests: XCTestCase {
try super.tearDownWithError()
}
- func testStartLoadingShouldShowActivityIndicatorInPaymentButto () throws {
+ func testViewDidLoadShouldCreateItems() throws {
+ // When
+ sut.viewDidLoad()
+
+ // Then
+ XCTAssertEqual(itemsFactory.createHolderNameI... | chore: Test stop loading logic | null | adyen/adyen-ios | MIT License | Swift |
@@ -28,7 +28,8 @@ readonly BUILD_DIR='build'
# Q3 2021 6.20210701.0 731695 (mid-quarter goog.module conversion)
# Q3 2021 6.20210701.0 808807 (late-quarter goog.module conversion)
# Q4 2021 7.20211209.0-beta.0 920002
-readonly BLOCKLY_SIZE_EXPECTED=920002
+# Q4 2021 7.20211209.0 929665
+readonly BLOCKLY_SIZE_EXPECTED=9... | chore: Update metadata for December 2021 | null | google/blockly | Apache License 2.0 | Shell |
@@ -106,7 +106,6 @@ else:
"<Primary>", "<Meta>" if sys.platform == "darwin" else "<Control>"
)
-
def _new_shortcut(shortcut, detailed_name):
return Gtk.Shortcut.new(
trigger=Gtk.ShortcutTrigger.parse_string(shortcut),
| chore: function scoping | null | gaphor/gaphor | Apache License 2.0 | Python |
@@ -183,6 +183,8 @@ type ImmuStore struct {
_txbs []byte // pre-allocated buffer to support tx serialization
_kvs []*tbtree.KV //pre-allocated for indexing
+ _valBs []byte // pre-allocated buffer to support tx exportation
+ _valBsMux sync.Mutex
aht *ahtree.AHtree
blBuffer chan ([sha256.Size]byte)
@@ -534,6 +536,7 @@ fu... | chore(embedded/store): wip reduce allocations in exportTx | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -184,7 +184,7 @@ class _MyHomePageState extends State<MyHomePage> {
level: 5,
character: 'witch doctor',
);
- await widget.analytics.logLogin(loginMethod: 'sign up');
+ await widget.analytics.logLogin(loginMethod: 'login');
await widget.analytics.logPostScore(
score: 1000000,
level: 70,
| chore: update `logLogin` `loginMethod` value in example app | null | firebaseextended/flutterfire | BSD 3-Clause New or Revised License | Dart |
@@ -617,7 +617,7 @@ void OptimizedRegularExpressionImpl<thread_safe>::replaceAllImpl(const char * su
if (!success)
break;
- auto skipped_byte_size = reinterpret_cast<Int64>(matched_str.data() - (subject + prior_offset));
+ auto skipped_byte_size = static_cast<Int64>(matched_str.data() - (subject + prior_offset));
res_d... | chore: fix build on mac m1 | null | pingcap/tiflash | Apache License 2.0 | C |
#!/usr/bin/env bash
-[ -z $HOTFIX ] && HOTFIX='0'
-
set -e # exit when error
if [[ -n $(npm owner add `npm whoami`) ]]; then
@@ -10,8 +8,8 @@ if [[ -n $(npm owner add `npm whoami`) ]]; then
fi
currentBranch=`git rev-parse --abbrev-ref HEAD`
-if [ $currentBranch != 'master' ]; then
- printf "Release: You must be on mast... | chore(release): start release from develop | null | algolia/instantsearch.js | MIT License | Shell |
@@ -197,8 +197,8 @@ class LodestoneCharacterController extends AbstractController
if ($content->MIMO) {
$cachedMIMO = Redis::Cache()->get($rediskey . "_MIMO", true);
if ($cachedMIMO) {
- $response->Minions = $cachedMIMO->Minions;
- $response->Mounts = $cachedMIMO->Mounts;
+ $response['Minions'] = $cachedMIMO['Minions']... | chore: second try for MIMO fix | null | xivapi/xivapi.com | MIT License | PHP |
@@ -292,8 +292,8 @@ open class FormTextItemView<ItemType: FormTextItem>: FormValueItemView<String, F
/// :nodoc:
open func updateValidationStatus(forced: Bool = false) {
- let hasText = textField.text.map(\.isEmpty) == false
- let forceShowValidationStatus = forced || hasText
+ let textFieldNotEmpty = textField.text.ma... | chore: small renaming of a local var in FormTextItemView | null | adyen/adyen-ios | MIT License | Swift |
@@ -80,7 +80,7 @@ class SpeakerChangeDetectionGenerator(LabelingTaskGenerator):
def __init__(self, precomputed, collar=0.100, window='plateau', **kwargs):
super(SpeakerChangeDetectionGenerator, self).__init__(
- precomputed, **kwargs)
+ precomputed, exhaustive=True, **kwargs)
self.collar = collar
self.window = window
@... | chore: make SpeakerChangeDetectionGenerator exhaustive | null | pyannote/pyannote-audio | MIT License | Python |
@@ -14,7 +14,7 @@ public struct ApplePayStyle {
/// Style of the payment button. When nil, it's set to automatic based on Dark or Light Mode.
public var paymentButtonStyle: PKPaymentButtonStyle?
- /// Type of the Apple Pay payment button. Default is `.plain`
+ /// Type of the Apple Pay payment button. Default is `.inSt... | chore: make default ApplePay button "Pay with | null | adyen/adyen-ios | MIT License | Swift |
@@ -23,7 +23,7 @@ export COVERAGE_DIR
# Testing & coverage
# Add missing coverage for ./bin/dredd https://github.com/apiaryio/dredd/issues/958
istanbul cover ./node_modules/.bin/_mocha -- \
- "test/**/*-test.coffee" \
+ "test/**/*-test.js" \
--reporter=test/reporter.js \
--recursive
| chore: Modify ./scripts/coverage.sh to run JS tests | null | apiaryio/dredd | MIT License | Shell |
@@ -55,12 +55,10 @@ module.exports.start = function(win, config, verbose, winpcap) {
'playerSpawn',
'inventoryModifyHandler',
'npcSpawn',
- 'ping',
'playerStats',
'updateClassInfo',
'actorControl',
'initZone',
- 'weatherChange',
'aetherReductionDlg',
'desynthOrReductionResult',
'persistentEffect',
| chore: packets cleanup | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | JavaScript |
@@ -89,7 +89,7 @@ type PlatformConfig struct {
Vault *Vault `yaml:"vault,omitempty" json:"vault,omitempty"`
Velero Velero `yaml:"velero,omitempty" json:"velero,omitempty"`
Version string `yaml:"version" json:"version,omitempty"`
- Versions map[string]string `yaml:"versions", json:"versions,omitempty"`
+ Versions map[st... | chore: fix versions type | null | flanksource/karina | Apache License 2.0 | Go |
#!/bin/sh
cd "$( dirname "${BASH_SOURCE[0]}" )/.."
-cd testapp && npm install
-
-cd ../website
# Check that directory is clean
if [ $(git status --porcelain | wc -l) != "0" ]; then
@@ -10,44 +7,109 @@ if [ $(git status --porcelain | wc -l) != "0" ]; then
echo "We cannot push the generated docs unless the working direct... | chore(doc-gen): fix the doc gen script | null | angular/protractor | MIT License | Shell |
@@ -17,6 +17,7 @@ use pact_verifier::callback_executors::HttpRequestProviderStateExecutor;
use super::args;
+#[deprecated(since = "0.1.0-beta.0", note = "use the handle based interface instead. See pact_ffi/src/verifier/handle.rs")]
fn pact_source(matches: &ArgMatches) -> Vec<PactSource> {
let mut sources = vec![];
@@ ... | chore: deprecate the old verifier functions | null | pact-foundation/pact-reference | MIT License | Rust |
@@ -9,7 +9,7 @@ import Foundation
import UIKit
/// A component that provides a form for BLIK payments.
-public final class BLIKComponent: PaymentComponent, PresentableComponent, LoadingComponent {
+public final class BLIKComponent: PaymentComponent, PresentableComponent, LoadingComponent, ViewControllerDelegate {
/// C... | chore: Send telemetry event on BLIK component | null | adyen/adyen-ios | MIT License | Swift |
@@ -10,6 +10,7 @@ import Foundation
/// Describes an action in which a Multibanco voucher is presented to the shopper.
public final class MultibancoVoucherAction: GenericVoucherAction {
+ /// Multibanco entity.
public let entity: String
/// The reference to uniquely identify a payment.
| chore: added a comment for MultibancoVoucherAction.entity | null | adyen/adyen-ios | MIT License | Swift |
/*
+ * Copyright 2015 Irving Gonzalez
* Copyright 2016 - 2019 Anton Tananaev (anton@traccar.org)
*
* Licensed under the Apache License, Version 2.0 (the "License");
| chore: Re-add copyright notice that was deleted by accident | null | traccar/traccar | Apache License 2.0 | Java |
@@ -47,9 +47,9 @@ class BuildPyCmd(build_py):
_TEST_REQUIRE = [
- "pytest",
- "pytest-cov",
- "pytest-asyncio",
+ "pytest==4.1.1",
+ "pytest-cov==2.6.1",
+ "pytest-asyncio==0.10.0",
"pytest-xdist",
"pylint==2.1.1",
"xenon",
@@ -57,7 +57,7 @@ _TEST_REQUIRE = [
"isort",
]
-_BENCHMARK_REQUIRE = ["pytest-benchmark"]
+_BENC... | chore(setup): fix pytest dependencies | null | tartiflette/tartiflette | MIT License | Python |
@@ -236,7 +236,7 @@ class Resegmentation(LabelingTask):
iterations = self.fit_iter(model, self.precomputed, protocol,
log_dir=log_dir, epochs=self.epochs,
- gpu=gpu)
+ gpu=gpu, quiet=True)
for i, iteration in enumerate(iterations):
| chore: hide progress bar in segmentation | null | pyannote/pyannote-audio | MIT License | Python |
@@ -323,7 +323,7 @@ open class MediaControl: UIBaseObject {
@IBAction open func toggleFullscreen(_ sender: UIButton) {
fullscreen = !fullscreen
let event = fullscreen ? MediaControlEvent.fullscreenEnter : MediaControlEvent.fullscreenExit
- trigger(MediaControlEvent(rawValue: event.rawValue)!)
+ trigger(event.rawValue)
... | chore(swift3): fix the MediaControlEvent cast loop from swift migration | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -125,7 +125,6 @@ defmodule Logflare.LogEvent do
other ->
other
end
- |> put_clustering_keys(source)
%{
"body" => body,
@@ -164,45 +163,6 @@ defmodule Logflare.LogEvent do
end)
end
- # hack for adding top level keys to payload
- defp put_clustering_keys(params, source) do
- top_level_project = Map.get(params, "projec... | chore: remove clustering keys hack | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -56,9 +56,12 @@ import org.xmlunit.util.Predicate;
*/
public class Java9CDataWhitespaceFilter implements Predicate<Node> {
+ /**
+ * @return false to remove the node from the comparison
+ */
@Override
public boolean test(Node toTest) {
- return isWhitespaceSurroundingCData(toTest);
+ return !isWhitespaceSurroundingC... | chore(model-api): simplify boolean expressions | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -39,8 +39,8 @@ const NSIS_URL: &str =
const NSIS_SHA1: &str = "057e83c7d82462ec394af76c87d06733605543d4";
const NSIS_APPLICATIONID_URL: &str = "https://github.com/tauri-apps/binary-releases/releases/download/nsis-plugins-v0/NSIS-ApplicationID.zip";
const NSIS_TAURI_UTILS: &str =
- "https://github.com/tauri-apps/nsis... | chore: update nsis-tauri-utils to 0.1.1 | null | tauri-apps/tauri | Apache License 2.0 | Rust |
@@ -73,7 +73,7 @@ module Ridgepole
def cast_value(value)
Integer(value)
rescue ArgumentError
- value.gsub("'", '').gsub('"', '')
+ value.delete(%q("')) # "
end
def quote_value(value)
| chore: use delete() instead of gsub() | null | winebarrel/ridgepole | MIT License | Ruby |
@@ -59,7 +59,7 @@ repositories {
dependencies {
// https://bintray.com/dv8fromtheworld/maven/JDA/
- implementation("net.dv8tion:JDA:4.2.0_227") {
+ implementation("net.dv8tion:JDA:4.2.0_228") {
exclude("opus-java")
}
@@ -68,11 +68,10 @@ dependencies {
implementation("com.sedmelluq:jda-nas:1.1.0")
// https://bintray.com... | chore(deps): bump lp, jda, ktor and ll-klient | null | toxicmushroom/melijn | MIT License | Kotlin |
@@ -8,6 +8,7 @@ defmodule LogflareWeb.AuthController do
alias Logflare.Google.CloudResourceManager
alias Logflare.Google.BigQuery
alias Logflare.Vercel
+ require Logger
@max_age 86_400
@@ -189,9 +190,10 @@ defmodule LogflareWeb.AuthController do
|> maybe_redirect_team_user()
end
- {:error, _reason} ->
+ {:error, reason... | chore: add logging for sign in errors | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -32,7 +32,8 @@ def pairwise_solver(A,
{'theta': 0.25, 'norm':'min', 'matchings': 2})
Method choice must be 'pairwise'; inner pairwise options including
matchings, theta, and norm can be modified,
- presmoother : {tuple, string, list} : default ('block_gauss_seidel', {'sweep':'symmetric'})
+ presmoother : {tuple, str... | chore: revert docstring | null | pyamg/pyamg | MIT License | Python |
+/*
+ * Copyright Camunda Services GmbH and/or licensed to Camunda Services GmbH
+ * under one or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information regarding copyright
+ * ownership. Camunda licenses this file to you under the Apache License,
+ * Version ... | chore(run): add license header | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -50,27 +50,29 @@ func main() {
fmt.Printf("Committing %d transactions...\r\n", *txCount)
- start := time.Now()
-
wg := &sync.WaitGroup{}
wg.Add(*committers)
for c := 0; c < *committers; c++ {
go func(id int) {
- fmt.Printf("\r\nCommitter %d is running...\r\n", id)
- for t := 0; t < *txCount; t++ {
+
kvs := make([]*s... | chore: time only considering commit time | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -240,8 +240,8 @@ open class Player: UIViewController {
}
fileprivate func unbindPlaybackEvents() {
- for eventID in playbackEventsListenIds {
- baseObject.stopListening(eventID)
+ for eventId in playbackEventsListenIds {
+ baseObject.stopListening(eventId)
}
playbackEventsListenIds.removeAll()
| chore: adjusting constant name | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -232,8 +232,6 @@ pub async fn new(
);
let persist_task = tokio::spawn(persist_actor.run());
- // TODO: persist replayed ops, if any
-
// Build the chain of DmlSink that forms the write path.
let write_path = WalSink::new(Arc::clone(&buffer), wal.write_handle().await);
| chore: remove old comment | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -21,7 +21,6 @@ import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
import java.nio.charset.StandardCharsets;
import java.util.concurrent.TimeUnit;
-import java.util.concurrent.locks.LockSupport;
import static org.assertj.core.api.Assertions.assertThat;
@@ -158,7 +157,11 @@ public class Instrum... | chore: Use `Thread.sleep` instead of `LockSupport.park` in tests | null | dropwizard/metrics | Apache License 2.0 | Java |
@@ -184,6 +184,11 @@ export default class Guide extends React.PureComponent<Props, State> {
return description && <div className="kui--wizard-nav-item-description">{description}</div>
}
+ /** @return a title to use for a wizard step representing the given `graph` */
+ private stepTitle(graph: Graph) {
+ return extractT... | chore(plugins/plugin-client-common): minor code cleanup to Guide.tsx | null | ibm/kui | Apache License 2.0 | TypeScript |
@@ -17,7 +17,7 @@ read_into_variable WARNING_GENERATED_FILE_FRAGMENT <<'_EOF_'
#
# WARNING: This is an automatically generated file. Consider changing the
# sources instead. You can find the source templates and scripts at:
-# https://github.com/googleapis/google-cloud-cpp-common/ci/templates
+# https://github.com/goog... | chore: update docker fragments to use new v0.19 version of common (googleapis/google-cloud-cpp-common#176) | null | googleapis/google-cloud-cpp | Apache License 2.0 | Shell |
@@ -109,6 +109,7 @@ public class SaltHashingTest {
user = identityService.createUserQuery().userId("johndoe").singleResult();
// then
+ // obtain the expected value on the command line like so: echo -n password12345678910 | openssl dgst -binary -sha1 | openssl base64
assertThat(user.getPassword(), is("{SHA}n3fE9/7XOmgD... | chore(engine): add test comment | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -89,7 +89,7 @@ function handleRundownContextError(rundown: Rundown, errorInformMessage: string
type: NoteType.ERROR,
message: {
key: `${errorInformMessage ||
- 'Something went wrong when processing data this rundown.'} Error message: {{error}}`,
+ 'Something went wrong when processing data for this rundown.'} Error ... | chore: fix typo in user facing error message | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
import { AdminUiPlugin } from '@vendure/admin-ui-plugin';
import { AssetServerPlugin } from '@vendure/asset-server-plugin';
import { ADMIN_API_PATH, API_PORT, SHOP_API_PATH } from '@vendure/common/lib/shared-constants';
-import {
- Asset,
- DefaultJobQueuePlugin,
- DefaultLogger,
- defaultPromotionActions,
- DefaultSea... | chore: Tidy up dev config | null | vendure-ecommerce/vendure | MIT License | TypeScript |
@@ -50,7 +50,7 @@ public class U2fConfigurationWS {
final String baseEndpointUri = appConfiguration.getBaseEndpoint();
final U2fConfiguration conf = new U2fConfiguration();
- conf.setVersion("2.0");
+ conf.setVersion("2.1");
conf.setIssuer(appConfiguration.getIssuer());
conf.setRegistrationEndpoint(baseEndpointUri + "/... | chore: increase u2f configuration version | null | gluufederation/oxauth | MIT License | Java |
@@ -128,9 +128,11 @@ impl Filter for Xor8Filter {
impl SupportedType for Xor8Filter {
fn is_supported_type(data_type: &DataType) -> bool {
- // Bloom index only enabled for String and Integral types for now
let inner_type = data_type.remove_nullable();
- matches!(inner_type, DataType::Number(_) | DataType::String)
+ ma... | chore(query): add bloom filter supported data type | null | datafuselabs/databend | Apache License 2.0 | Rust |
# Terminate after the first line that fails (returns nonzero exit code)
set -e
+# 0. Confirm Action
+read -p "Are you sure you wish to create a new release? Type the word 'release' to confirm: "
+if [[ ! $REPLY =~ ^release$ ]]
+then
+ echo "release canceled."
+ exit 1
+fi
+
# 1. Update Matser
git checkout master
git pu... | chore(build): add confirmation step to release script | null | tinacms/tinacms | Apache License 2.0 | Shell |
@@ -2,6 +2,7 @@ import React from 'react'
import ReactDOM from 'react-dom'
import * as d3 from 'd3'
+import * as math from 'mathjs'
import ReactResizeDetector from 'react-resize-detector'
const ASPECT_RATIO = 16 / 9
@@ -33,7 +34,12 @@ class Graph extends React.Component {
this.props.data[i].t = dates[i];
}
- var margin... | chore: removed hardcoded margins in containment graph | null | neherlab/covid19_scenarios | MIT License | TypeScript |
@@ -503,7 +503,7 @@ Cypress.Commands.add('train', () => {
cy.visit('/project/bf/stories');
cy.dataCy('train-button').click();
cy.wait(5000);
- cy.dataCy('train-button').should('not.have.class', 'disabled');
+ cy.get('[data-cy=train-button]', { timeout: 100000 }).should('not.have.class', 'disabled');
});
const MONTHS = ... | chore: training test fix | null | botfront/botfront | Apache License 2.0 | JavaScript |
@@ -38,9 +38,10 @@ def batch_predict(
output_config = automl.types.BatchPredictOutputConfig(
gcs_destination=gcs_destination
)
+ params = {}
response = prediction_client.batch_predict(
- model_full_id, input_config, output_config
+ model_full_id, input_config, output_config, params=params
)
print("Waiting for operation... | chore: fix batch predict test | null | googlecloudplatform/python-docs-samples | Apache License 2.0 | Python |
@@ -39,6 +39,7 @@ func main() {
pyroscope.Start(pyroscope.Config{
ApplicationName: "simple.golang.app",
ServerAddress: serverAddress,
+ Logger: pyroscope.StandardLogger,
})
pyroscope.TagWrapper(context.Background(), pyroscope.Labels("foo", "bar"), func(c context.Context) {
for {
| chore: adds logger to main example | null | pyroscope-io/pyroscope | Apache License 2.0 | Go |
@@ -63,23 +63,23 @@ public static function fromBaseResponse($response)
* @param array $arrayAssoc
* @return array
*/
- public static function mergeAssociateArrayRecursive(array $arrayStdClass, array $arrayAssoc): array
+ public static function normalizingArraysObjects (array $arrayStdClass, array $arrayAssoc): array
{
... | chore(TestResponse): Simplify the code | null | laravel/framework | MIT License | PHP |
const expect = require('chai').expect;
const bunyan = require('bunyan');
-const semver = require('semver');
-let pino;
-if (semver.gte(process.versions.node, '6.0.0')) {
- // pino needs Node.js >= 6
- pino = require('pino');
-}
+const pino = require('pino');
const log = require('../src/logger');
| chore: removed node version check in collector/test/logger_test.js | null | instana/nodejs-sensor | MIT License | JavaScript |
@@ -99,7 +99,7 @@ class EthereumBlockchainClient {
done(err, receipt);
}, (hash) => {
const estimatedCost = contract.gas * contract.gasPrice;
- contract.log(`${__("Deploying")} ${contract.className.bold.cyan} ${__("with").green} ${contract.gas} ${__("gas at the price of").green} ${contract.gasPrice} ${__("Wei. Estimate... | chore(dashboard): change currency unit to Gwei and Ether in deployment output | null | embarklabs/embark | MIT License | JavaScript |
+import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { RouterModule } from '@angular/router';
-import { addActionBarItem, AppComponent, AppComponentModule } from '@vendure/admin-ui/core';
+import { AppComponent, AppComponentModule } from '@vendure/admin-ui/core';
import { ro... | chore(admin-ui): Clean up testing code | null | vendure-ecommerce/vendure | MIT License | TypeScript |
@@ -373,7 +373,7 @@ public abstract class NodeUpdater implements FallibleCommand {
final String WORKBOX_VERSION = "6.2.0";
if (featureFlags.isEnabled(FeatureFlags.VITE)) {
- defaults.put("vite", "v2.7.0-beta.1");
+ defaults.put("vite", "v2.7.0-beta.3");
defaults.put("mkdirp", "1.0.4"); // for application-theme-plugin
}... | chore: upgrade to Vite 2.7.0-beta.3 | null | vaadin/flow | Apache License 2.0 | Java |
set -o xtrace # Write all commands first to stderr
set -o errexit # Exit the script with error if any of the commands fail
-NODE_LTS_NAME=${NODE_LTS_NAME:-erbium}
+NODE_VERSION=14
NODE_BINDINGS_PATH="${PROJECT_DIRECTORY}/bindings/node"
NODE_ARTIFACTS_PATH="${NODE_BINDINGS_PATH}/node-artifacts"
NPM_CACHE_DIR="${NODE_ART... | chore: use node 14 to build prebuild images | null | mongodb/libmongocrypt | Apache License 2.0 | Shell |
@@ -1450,11 +1450,15 @@ bool SuperMediaPlayer::DoCheckBufferPass()
lastPos -= min(mSet->RTMaxDelayTime, 500 * 1000);
int64_t lastVideoKeyTimePos = mBufferController->GetKeyTimePositionBefore(BUFFER_TYPE_VIDEO, lastPos);
- if (lastVideoKeyTimePos != INT64_MIN) {
+ int videoPacketCount = mBufferController->GetPacketSize(... | chore(superMediaPlayer): drop packet when has no video packet | null | alibaba/cicadaplayer | MIT License | C++ |
@@ -102,10 +102,10 @@ public class FrontendTools {
private static final FrontendVersion WHITESPACE_ACCEPTING_NPM_VERSION = new FrontendVersion(
7, 0);
- private static final int SUPPORTED_NODE_MAJOR_VERSION = 10;
- private static final int SUPPORTED_NODE_MINOR_VERSION = 0;
- private static final int SUPPORTED_NPM_MAJOR... | chore: Bump Node.js supported version as it's getting EOL | null | vaadin/flow | Apache License 2.0 | Java |
@@ -53,7 +53,7 @@ import com.vaadin.flow.server.frontend.installer.ProxyConfig;
*/
public class FrontendTools {
- public static final String DEFAULT_NODE_VERSION = "v16.3.0";
+ public static final String DEFAULT_NODE_VERSION = "v16.7.0";
public static final String DEFAULT_PNPM_VERSION = "5";
| chore: Latest Node (16.7.0) | null | vaadin/flow | Apache License 2.0 | Java |
@@ -97,7 +97,7 @@ impl SessionManager {
let config = self.get_conf();
{
let sessions = self.active_sessions.read();
- self.validate_max_active_sessions(sessions.len())?;
+ self.validate_max_active_sessions(sessions.len(), "active sessions")?;
}
let id = uuid::Uuid::new_v4().to_string();
let session_typ = typ.clone();
@... | chore: add annotation in erro message | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -86,11 +86,21 @@ impl namespace_service_server::NamespaceService for NamespaceService {
}
let mut repos = self.catalog.repositories().await;
let req = request.into_inner();
- //let namespace = repos
- // .namespaces()
- // .delete(
+ repos
+ .namespaces()
+ .delete(&req.name)
+ .await
+ .map_err(|e| match e {
+ iox_... | chore: call delete ns from grpc handler | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -313,14 +313,7 @@ describe(json.name, () => {
// When
const {moleculeNotificationAlignItems: actual} = library
- const {
- BASELINE,
- CENTER,
- FLEX_START,
- FLEX_END,
- STRETCH,
- ...others
- } = actual
+ const { BASELINE, CENTER, FLEX_START, FLEX_END, STRETCH, ...others } = actual
// Then
expect(Object.keys(other... | chore(components/molecule/notification): lint | null | sui-components/sui-components | MIT License | JavaScript |
@@ -1341,7 +1341,7 @@ func (d *db) ExportTxByID(req *schema.ExportTxRequest) (txbs []byte, mayCommitUp
}
err = d.WaitForTx(req.Tx, req.AllowPreCommitted, cancellation)
- if err == watchers.ErrCancellationRequested {
+ if errors.Is(err, watchers.ErrCancellationRequested) {
return nil, mayCommitUpToTxID, mayCommitUpToAlh... | chore(pkg/database): improve error comparison | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -90,7 +90,11 @@ namespace WebHook
int? allowedPrivate = 0;
var privateRepo = hook.repository?.@private == true;
- (isOnAddedPlan, allowedPrivate, usedPrivate) = await IsOnAddedPlan(marketplaceTable, hook.repository.owner.login);
+ if (hook?.repository != null && marketplaceTable != null)
+ {
+ (isOnAddedPlan, allowe... | chore: added null check for table result | null | imgbot/imgbot | MIT License | C# |
@@ -12,6 +12,7 @@ import {
showFeedbackRequest,
} from "../utils/feedback"
import { markWebpackStatusAsPending } from "../utils/webpack-status"
+import { store } from "../redux"
import { IProgram, IDebugInfo } from "./types"
import { interpret } from "xstate"
@@ -45,7 +46,11 @@ if (process.send) {
}
onExit(() => {
- te... | chore(gatsby): track number of pages in develop sessions | null | gatsbyjs/gatsby | MIT License | TypeScript |
@@ -3,6 +3,7 @@ defmodule Moon.Components.Tooltip do
use Moon.StatelessComponent
+ prop clicked_text, :string, default: nil
prop text, :string, required: true
prop placement, :string,
@@ -17,14 +18,17 @@ defmodule Moon.Components.Tooltip do
def render(assigns) do
~F"""
- <div class="relative inline-block" x-data="{ too... | chore: added tooltip clicked event and after clicked text | null | coingaming/moon | MIT License | Elixir |
@@ -4,7 +4,6 @@ const rules = {
'prefer-object-spread': 'off',
'prefer-destructuring': 'off',
'import/prefer-default-export': 'off',
- 'no-shadow': 'off',
'guard-for-in': 'off',
'no-restricted-syntax': 'off',
'import/no-extraneous-dependencies': 'off',
| chore: lint config | null | nolimits4web/swiper | MIT License | JavaScript |
@@ -29,7 +29,7 @@ storiesOf('Metadata/Breadcrumb', module)
virtualHierarchicalMenu(),
breadcrumb({
- container: breadcrumb,
+ container: breadcrumbDiv,
attributes: [
'hierarchicalCategories.lvl0',
'hierarchicalCategories.lvl1',
@@ -62,7 +62,7 @@ storiesOf('Metadata/Breadcrumb', module)
virtualHierarchicalMenu(),
breadc... | chore(storybook): fix breadcrumb example | null | algolia/instantsearch.js | MIT License | TypeScript |
-#!/bin/bash -ex
-
-
-if [ "JENKINS_MASTER" ] ; then
- git config user.email "$GIT_USER@users.noreply.github.com"
- git config user.name "Wix"
- echo "machine github.com login $GIT_USER password $GIT_TOKEN" > ~/.netrc
-
- cd website
- npm install
- npm run gatherDocs
- GIT_USER=$GIT_USER CURRENT_BRANCH=master npm run p... | chore(cleanup): remove obsolete publish-website script | null | wix/detox | MIT License | Shell |
@@ -28,7 +28,6 @@ pub use sinks::SyncSenderSink;
pub use sources::AsyncSource;
pub use sources::AsyncSourcer;
pub use sources::BlocksSource;
-pub use sources::Deserializer;
pub use sources::EmptySource;
pub use sources::StreamSource;
pub use sources::SyncSource;
| chore(format): des | null | datafuselabs/databend | Apache License 2.0 | Rust |
-//! This example demonstrates how to create a simple node with
-//! workers, without invoking the ockam::node attribute macro!
-
-use ockam::{Context, Message, Result, Worker};
-use serde::{Deserialize, Serialize};
-
-struct Printer;
-
-/// Create a message our worker should be able to respond to
-#[derive(Serialize, ... | chore(rust): remove outdated create_printer_node_without_macro example | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -16,28 +16,28 @@ References:
"""
-def gcd(x: int, y: int) -> int:
+def greatest_common_divisor(x: int, y: int) -> int:
"""
- Euclidean GCD algorithm (Greatest Common Divisor)
+ Euclidean Greatest Common Divisor algorithm
- >>> gcd(0, 0)
+ >>> greatest_common_divisor(0, 0)
0
- >>> gcd(23, 42)
+ >>> greatest_common_di... | chore: rename gcd to greatest_common_divisor | null | thealgorithms/python | MIT License | Python |
@@ -8,8 +8,6 @@ import * as sass from 'gulp-sass';
import { replaceVersionPlaceholders } from '../util/replace-version-placeholder';
import * as packagr from '@dynatrace/ng-packagr/lib/ng-v5/packagr';
-// commented themes for now, lets add this as soon as we implement theming
-// const themesGlob = join(buildConfig.lib... | chore(build): remove themes comments | null | dynatrace-oss/barista | Apache License 2.0 | TypeScript |
@@ -681,9 +681,9 @@ var ROUTES = (function() {
// course_announcement => /courses/:course_id/announcements/:id(.:format)
// function(course_id, id, options)
course_announcement_path: Utils.route([["course_id",true],["id",true],["format",false]], {}, [2,[7,"/",false],[2,[6,"courses",false],[2,[7,"/",false],[2,[3,"course... | chore: regenerate routes file | null | coursemology/coursemology2 | MIT License | JavaScript |
@@ -70,7 +70,7 @@ class DockerContainerRunner(
private fun waitForContainerLoggedOutput(startTime: Long, times: Int) {
waitFor(timeout) {
val since = System.currentTimeMillis() - startTime
- val sinceString = String.format("%.03f", since.toFloat() / 1000)
+ val sinceString = String.format(Locale.US, "%.03f", since.toFl... | chore: Fix development Postgres startup | null | tolgee/tolgee-platform | Apache License 2.0 | Kotlin |
@@ -74,7 +74,7 @@ extension ModalViewController {
private var leastPresentableHeightScale: CGFloat { 0.25 }
private var greatestPresentableHeightScale: CGFloat {
- UIApplication.shared.statusBarOrientation.isPortrait ? 0.9 : 1
+ UIDevice.current.userInterfaceIdiom == .phone && UIDevice.current.orientation.isPortrait ? ... | chore: fix height for iPads | null | adyen/adyen-ios | MIT License | Swift |
#!/bin/bash
-
-FLATBUFFERS_VERSION=2.0.0
-FLATBUFFERS_CHECKSUM=9ddb9031798f4f8754d00fca2f1a68ecf9d0f83dfac7239af1311e4fd9a565c4
+FLATBUFFERS_VERSION=22.9.29
+FLATBUFFERS_CHECKSUM=372df01795c670f6538055a7932fc7eb3e81b3653be4a216c081e9c3c26b1b6d
curl -LS https://github.com/google/flatbuffers/archive/v${FLATBUFFERS_VERSIO... | chore: update flatc version | null | influxdata/flux | MIT License | Shell |
#!/bin/bash
+require_clean_work_tree () {
+ # Update the index
+ git update-index -q --ignore-submodules --refresh
+ err=0
+
+ # Disallow unstaged changes in the working tree
+ if ! git diff-files --quiet --ignore-submodules --
+ then
+ echo >&2 "cannot $1: you have unstaged changes."
+ git diff-files --name-status -r ... | chore(build): require clean working tree before running release | null | tinacms/tinacms | Apache License 2.0 | Shell |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.