diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
@@ -31,10 +31,9 @@ int parseAndRunCliArgs(QCoreApplication *app, Profile *profile, bool defaultToGu parser.addHelpOption(); parser.addVersionOption(); - QCommandLineOption *cliOption = nullptr; + const QCommandLineOption cliOption(QStringList() << "c" << "cli", "Disable the GUI."); if (defaultToGui) { - cliOption = new...
chore: fix leak in CLI parameters creation
null
bionus/imgbrd-grabber
Apache License 2.0
C++
@@ -227,7 +227,7 @@ run_test() { # logictest pattern argument change after v0.7.140 # old logic test does not support pattern filter - mv suites/gen/05_ddl . + mv suites/base/05_ddl . rm -fr suites/* mv 05_ddl suites/ # FIXME:(everpcpc) sometimes old logic test fails but we can't time travel back to fix it.
chore(meta): fix compat test
null
datafuselabs/databend
Apache License 2.0
Shell
@@ -678,6 +678,8 @@ export class AuroraPostgresEngineVersion { public static readonly VER_14_4 = AuroraPostgresEngineVersion.of('14.4', '14', { s3Import: true, s3Export: true }); /** Version "14.5". */ public static readonly VER_14_5 = AuroraPostgresEngineVersion.of('14.5', '14', { s3Import: true, s3Export: true }); + ...
chore: update cluster-engine to support latest postgres aurora version
null
aws/aws-cdk
Apache License 2.0
TypeScript
@@ -97,10 +97,10 @@ module.exports = { functions: 63, }, './src/components/TimePicker/ListSpinner.jsx': { - statements: 62, - branches: 52, - lines: 64, - functions: 53, + statements: 47, + branches: 42, + lines: 49, + functions: 38, }, }, globals: {
chore(listspinner): adjust jest exception for removal of code
null
carbon-design-system/carbon-addons-iot-react
Apache License 2.0
JavaScript
@@ -10,7 +10,6 @@ import com.chesire.malime.injection.modules.ServerModule import com.chesire.malime.injection.modules.UiModule import dagger.BindsInstance import dagger.Component -import dagger.android.AndroidInjectionModule import dagger.android.AndroidInjector import dagger.android.support.AndroidSupportInjectionMod...
chore: fix ktlint issue
null
chesire/nekome
Apache License 2.0
Kotlin
// .rc config file allowing users to customize folder locations, etc that are wired up to be configurable in the build process (via cosmic config) -- this example lives in the root of UIKit however can live in a higher-level parent as part of your project's config! module.exports = { - // buildDir: '../../../www/patter...
chore: update .patternlabrc config example with more realistic path resolution approach (for real life usage)
null
pattern-lab/patternlab-node
MIT License
JavaScript
@@ -18,7 +18,7 @@ set -eo pipefail function install_csi_sanity_bin { mkdir -p $GOPATH/src/github.com/kubernetes-csi/csi-test - git clone https://github.com/kubernetes-csi/csi-test.git -b v1.1.0 $GOPATH/src/github.com/kubernetes-csi/csi-test + git clone https://github.com/kubernetes-csi/csi-test.git -b v2.2.0 $GOPATH/sr...
chore: update sanity tests to v2.2.0
null
kubernetes-sigs/blob-csi-driver
Apache License 2.0
Shell
@@ -354,9 +354,10 @@ fun <M : Mismatch> matchDateTime( } catch (e: DateTimeParseException) { try { logger.warn { - """Unable to parse ${valueOf(actual)} with $pattern using java.time.format.DateTimeFormatter. - Attempting to parse using org.apache.commons.lang3.time.DateUtils - to guarantee backwards compatibility with...
chore: improve logging when falling back to DateUtils.parseDate
null
pact-foundation/pact-jvm
Apache License 2.0
Kotlin
@@ -127,7 +127,7 @@ void AtomDownloadManagerDelegate::OnDownloadPathGenerated( callback.Run(path, download::DownloadItem::TARGET_DISPOSITION_PROMPT, download::DOWNLOAD_DANGER_TYPE_NOT_DANGEROUS, path, download::DOWNLOAD_INTERRUPT_REASON_NONE); - }; + } } #if defined(MAS_BUILD) @@ -174,7 +174,8 @@ void AtomDownloadManag...
chore: Fix typo in AtomDownloadManagerDelegate::OnDownloadSaveDialogDone
null
electron/electron
MIT License
C++
@@ -111,7 +111,7 @@ public JsonDocument get(String key) { } @Override - public @NotNull List<JsonDocument> get(JsonDocument filters) { + public @NotNull List<JsonDocument> get(@NotNull JsonDocument filters) { Collection<Bson> bsonFilters = new ArrayList<>(); for (String filter : filters) { Object value = filters.get(fi...
chore(mongodb): Add missing
null
cloudnetservice/cloudnet-v3
Apache License 2.0
Java
@@ -99,13 +99,13 @@ class LocalSubscriptionTests: XCTestCase { /// - Then: /// - I receive notifications for updates to that model func testObserve() async throws { - let receivedMutationEvent = expectation(description: "Received mutation event") + let receivedMutationEvent = asyncExpectation(description: "Received mut...
chore(datastore): fix LocalSubscriptionTests for running all the tests in AWSDataStorePluginTests successfully
null
aws-amplify/amplify-ios
Apache License 2.0
Swift
import Foundation -public let agentTag = "Swift-SDK \(Constants.sdkVersion)" +/** agentTag may be modified to identify the application using the Swift SDK */ +public var agentTag = "Swift-SDK \(Constants.sdkVersion)" /** * ResponseMode for an HTTP request - either binary or "string"
chore: make Swift SDK agentTag customizable
null
looker-open-source/sdk-codegen
MIT License
Swift
@@ -35,9 +35,9 @@ describe("Sign Client Validation", async () => { topic = client.session.keys[0]; // // }); - // afterAll(async () => { - // await deleteClients(clients); - // }); + afterAll(async () => { + await deleteClients(clients); + }); describe("connect", () => { it("throws when no params are passed", async () ...
chore: enable disconnect in validation
null
walletconnect/walletconnect-monorepo
Apache License 2.0
TypeScript
// Copyright 2018-2022 the Deno authors. All rights reserved. MIT license. use super::Result; +use std::sync::atomic::{AtomicU16, Ordering}; use std::{collections::HashMap, path::Path, process::Command, time::Duration}; pub use test_util::{parse_wrk_output, WrkOutput as HttpBenchmarkResult}; - // Some of the benchmarks...
chore(cli): remove unnecessary unsafe in bench
null
denoland/deno
MIT License
Rust
@@ -16,7 +16,7 @@ function replaceParent { relativePath=$(echo "$parent_pom" | sed 's/\//\\\//g') # Search for <parent> tag in module pom and replace the next three lines -- groupId, artifcatId, and version - perl_command="s/\s*<parent>.*?<\/parent>/\n\n <parent>\n <groupId>${parent_group_id}<\/groupId>\n <artifactId>$...
chore: Set parent pom to be google-cloud-java
null
googleapis/google-cloud-java
Apache License 2.0
Shell
@@ -62,16 +62,36 @@ AWS.config.update({ // Secondary reason: use a really simple retry strategy for starters. // Assume that HTTP requests are fired off in the context of micro tasks // which retry "forever" anyway. + if (!err) { + // Code path allows this, but this happens rarely or never, check old + // logs. log.deb...
chore: aws: info-log tcp connect() timeout errs
null
opstrace/opstrace
Apache License 2.0
TypeScript
@@ -241,10 +241,16 @@ impl PipelineExecutor { let try_result = catch_unwind(move || -> Result<()> { match this_clone.execute_single_thread(thread_num) { Ok(_) => Ok(()), - Err(cause) => Err(cause.add_message_back(format!( + Err(cause) => { + if tracing::enabled!(tracing::Level::TRACE) { + Err(cause.add_message_back(for...
chore(pipeline): append message "while in processor thread" only in TRACE level
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -17,7 +17,7 @@ const DEFAULT_LOG_EVERY_N: usize = 100000; #[derive(Debug, Clone, Parser, Serialize, Deserialize)] #[serde(rename_all = "snake_case", deny_unknown_fields)] pub struct IndexerOpts { - /// The amount of documents to skip before printing + /// Sets the amount of documents to skip before printing /// a lo...
chore: add docs of flattened structs
null
meilisearch/meilisearch
MIT License
Rust
@@ -878,6 +878,7 @@ namespace Unity.Netcode.RuntimeTests } [UnityTest] + [Ignore("This test is unstable on standalones")] public IEnumerator WhenMultipleMessagesForTheSameObjectAreDeferredForMoreThanTheConfiguredTime_TheyAreAllRemoved([Values(1, 2, 3)] int timeout) { RegisterClientPrefabs();
chore: Ignore instability DeferredMessagingTest.WhenMultipleMessagesForTheSameObjectAreDeferredForMoreThanTheConfiguredTime_TheyAreAllRemoved
null
unity-technologies/com.unity.multiplayer.mlapi
MIT License
C#
@@ -223,14 +223,14 @@ public class NpmTemplateParser implements TemplateParser { resetCache(content); } } - } finally { - lock.unlock(); - } if (!cache.containsKey(url) && jsonStats != null) { - cache.put(url, BundleParser.getSourceFromStatistics(url, jsonStats, - service)); + cache.put(url, BundleParser.getSourceFromS...
chore: make thread-safe access to NpmTemplateParser internal state
null
vaadin/flow
Apache License 2.0
Java
@@ -74,6 +74,9 @@ public interface HasEnabled extends HasElement { * XXX WARNING Do not override this method. Propagating the enabled * state to the element in this way is critical to fulfill generic * assumptions with regards to application security. + * + * Override Component::onEnabledStateChanged if you need to adj...
chore: Clarify warning comment for setEnabled
null
vaadin/flow
Apache License 2.0
Java
@@ -166,7 +166,7 @@ mod tests { // The tokio runtime is now out of tasks drop(manager); - let ten_millis = time::Duration::from_millis(10); + let ten_millis = time::Duration::from_millis(200); thread::sleep(ten_millis); // Server should be down
chore: increase timeout for test on Appveyor
null
pact-foundation/pact-reference
MIT License
Rust
#!/bin/sh +# Sort the package.json to keep it neat +npx sort-package-json +git commit -m "chore(package.json): organize" + # Get the name of the current working branch BRANCH=`git rev-parse --symbolic-full-name --abbrev-ref HEAD`
chore(package.json): added auto-organize
null
millsp/ts-toolbelt
Apache License 2.0
Shell
@@ -50,6 +50,10 @@ public extension AdyenScope where Base: UIView { /// - Parameters: /// - radius: The radius of each corner oval. func round(using rounding: CornerRounding) { + if #available(iOS 13.0, *) { + base.layer.cornerCurve = .continuous + } + switch rounding { case let .fixed(value): base.layer.cornerRadius =...
chore: Use continuous curve by default when rounding corners
null
adyen/adyen-ios
MIT License
Swift
@@ -12,7 +12,7 @@ if [ "$BRANCH" = "master" ]; then npx sort-package-json && # Bump the version & changelogs - npx standard-version && + # npx standard-version && git push origin $BRANCH #--follow-tags else
chore: disable for ci tests
null
millsp/ts-toolbelt
Apache License 2.0
Shell
@@ -325,11 +325,13 @@ fn parse_knobs( let brace_token = input.block.brace_token; input.block = syn::parse2(quote_spanned! {last_stmt_end_span=> { + let body = async #body; + #[allow(clippy::expect_used)] #rt .enable_all() .build() .expect("Failed building the Runtime") - .block_on(async #body) + .block_on(body) } }) .e...
chore: explicitly relaxed clippy lint for runtime entry macro
null
tokio-rs/tokio
MIT License
Rust
@@ -369,10 +369,16 @@ fn determine_sync_mode( sync_peers: sync_peers.into_iter().cloned().map(Into::into).collect(), } } else { - info!( + debug!( target: LOG_TARGET, - "Our blockchain is up-to-date. We're at block {} with an accumulated difficulty of {} and the network \ - chain tip is at {} with an accumulated diffic...
chore: fix "our blockchain is up-to-date" log
null
tari-project/tari
BSD 3-Clause New or Revised License
Rust
@@ -258,31 +258,18 @@ export class CanvasUtils { context.save(); - const full = (Math.PI * 2) / 4; + const sides = 24; + const full = (Math.PI * 2) / sides; const angle = -particle.angle + Math.PI / 4; const factor = 1; //Math.sqrt(2); + const dots = []; - const p1 = { - x: pos.x + radius * Math.sin(angle) * factor, - ...
chore(main): prepared shadow to support sides number
null
matteobruni/tsparticles
MIT License
TypeScript
@@ -84,6 +84,7 @@ pub type BridgedHeader<T, I> = HeaderOf<<T as Config<I>>::BridgedChain>; const LOG_TARGET: &str = "multi-finality-verifier"; use frame_system::pallet_prelude::*; +use crate::types::Parachain; #[frame_support::pallet] pub mod pallet { @@ -291,10 +292,10 @@ pub mod pallet { pub(super) type RelayChainId<...
chore: update storage to only store relay-chain authority set
null
t3rn/t3rn
Apache License 2.0
Rust
-package org.fossasia.susi.ai.rest.responses.susi - -import com.google.gson.annotations.SerializedName - -/** - * - * Created by cc15 on 16/8/17. - */ -data class Skills( - @SerializedName("aboutsusi") - val skillData: SkillData? = null -) \ No newline at end of file
chore: Remove unused susi response file
null
fossasia/susi_android
Apache License 2.0
Kotlin
@@ -211,7 +211,7 @@ class SmartBackground: def __init__(self, generator: Callable[[], Iterator], n_jobs: int = 4, prefetch: int = 10, - verbose: bool = True): + verbose: bool = False): self.generator = generator self.n_jobs = n_jobs
chore: change verbose default value to False
null
pyannote/pyannote-audio
MIT License
Python
@@ -35,14 +35,14 @@ pub trait ArrayAgg: Debug { /// Returns `DataValue::Null` if the array is empty or only contains null values. fn sum(&self) -> Result<DataValue> { Err(ErrorCode::BadDataValueType(format!( - "Unsupported aggregate operation: sum for {:?}", + "Sum operation not supported for {:?}", self, ))) } fn min(...
chore: fix ArrayAgg error message
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -32,7 +32,10 @@ if [[ -n "$coverage" ]]; then fi echo "Running unit tests for schematics" -cd projects/schematics && yarn && yarn test && cd ../.. +cd projects/schematics +yarn +yarn test +cd ../.. if [[ $1 == '-h' ]]; then echo "Usage: $0 [sonar (to run sonar scan)]"
chore: Schematics tests failure should fail CI
null
sap/spartacus
Apache License 2.0
Shell
@@ -47,9 +47,6 @@ class ClopiNet(nn.Module): ---------- n_features : int Input feature dimension. - normalize_input : boolean, optional - Apply mean and variance normalization on each input sequence. - Defaults to False (no normalization). rnn : {'LSTM', 'GRU'}, optional Defaults to 'LSTM'. recurrent : list, optional @...
chore: remove 'normalize_input' option from ClopiNet
null
pyannote/pyannote-audio
MIT License
Python
@@ -72,7 +72,7 @@ class VideoIntelligenceServiceClientTest extends TestCase */ public function testAnnotateVideo(VideoIntelligenceServiceClient $client) { - $inputUri = "gs://cloudmleap/video/next/animals.mp4"; + $inputUri = "gs://cloud-samples-data/video/cat.mp4"; $features = [ Feature::LABEL_DETECTION, Feature::SHOT_...
chore(VideoIntellegence): fixing test resource link
null
googleapis/google-cloud-php
Apache License 2.0
PHP
@@ -149,31 +149,6 @@ mod add { ); } - // unknown exception - { - let mut api = MockKV::new(); - api.expect_upsert_kv() - .with(predicate::eq(UpsertKVReq::new( - &test_key, - test_seq, - value.clone(), - None, - ))) - .times(1) - .returning(|_u| Ok(UpsertKVReply::new(None, None))); - - let kv = Arc::new(api); - - let us...
chore(meta): remove testing of impossible state
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -214,7 +214,7 @@ impl Anvil { } else { Command::new("anvil") }; - cmd.stdout(std::process::Stdio::piped()); + cmd.stdout(std::process::Stdio::piped()).stderr(std::process::Stdio::inherit()); let port = if let Some(port) = self.port { port } else { unused_port() }; cmd.arg("-p").arg(port.to_string());
chore: inherit stderr
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -49,7 +49,7 @@ public class Platform implements Serializable { versionErrorLogged = true; LoggerFactory.getLogger(Platform.class) .info("Unable to determine version information. " - + "No vaadin_versions.json found"); + + "No vaadin-core-versions.json found"); } } } catch (Exception e) {
chore: update log message after versions.json separation
null
vaadin/flow
Apache License 2.0
Java
@@ -42,7 +42,7 @@ class MaterializationJobStatus(enum.Enum): class MaterializationJob(ABC): """ - MaterializationJob represents an ongoing or executed process that materializes data as per the + A MaterializationJob represents an ongoing or executed process that materializes data as per the definition of a materializat...
chore: Update docstrings for batch materialization engine
null
feast-dev/feast
Apache License 2.0
Python
@@ -54,6 +54,7 @@ import com.amplifyframework.testutils.sync.SynchronousDataStore; import org.junit.AfterClass; import org.junit.Assert; import org.junit.BeforeClass; +import org.junit.Ignore; import org.junit.Test; import java.util.ArrayList; @@ -337,6 +338,7 @@ public final class BasicCloudSyncInstrumentationTest { *...
chore: ignore unstable test case
null
aws-amplify/amplify-android
Apache License 2.0
Java
-class FullscreenButton: MediaControlPlugin { +open class FullscreenButton: MediaControlPlugin { private var icon = UIImage.fromName("fullscreen", for: FullscreenButton.self) var button: UIButton! { @@ -18,28 +18,28 @@ class FullscreenButton: MediaControlPlugin { private var isOnFullscreen = false - override var plugin...
chore: opening FullscreenButton entity
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -850,7 +850,7 @@ export async function loadConfigFromFile( } } - if (!userConfig && !isTS && !isMjs) { + if (!isTS && !isMjs) { // 1. try to directly require the module (assuming commonjs) try { // clear cache in case of server restart
chore: delete useless condition
null
vitejs/vite
MIT License
TypeScript
+/** + * Copyright (c) Microsoft Corporation. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable ...
chore(docs): add ability to generate xmldocs
null
microsoft/playwright
Apache License 2.0
JavaScript
@@ -19,7 +19,7 @@ _LOGGER = logging.getLogger(__name__) async def add_devices(account: Text, devices: List[EntityComponent], - add_devices_callback: callable, + add_devices_callback: Callable, include_filter: List[Text] = [], exclude_filter: List[Text] = []) -> bool: """Add devices using add_devices_callback."""
chore: fix mypy error
null
custom-components/alexa_media_player
Apache License 2.0
Python
@@ -46,7 +46,7 @@ export class MessageProcessorService { title: t.formatMessage(title, formatArgs), body: t.formatMessage(body, formatArgs), category: 'NEW_DOCUMENT', - appURI: `${this.appProtocol}://document/${message.documentId}`, + appURI: `${this.appProtocol}://inbox/${message.documentId}`, } } }
chore(user-notification): update document appuri path
null
island-is/island.is
MIT License
TypeScript
@@ -186,7 +186,7 @@ export const Liveness = ({ } } }, - [onFirstPage, topOfBlogVisible, numHiddenBlocks], + [onFirstPage, topOfBlogVisible, numHiddenBlocks, switches], ); /** @@ -282,7 +282,7 @@ export const Liveness = ({ } else { window.location.href = `${webURL}#${placeToScrollTo}`; } - }, [onFirstPage]); + }, [hasPi...
chore: Add these deps to keep the linter happy
null
guardian/dotcom-rendering
Apache License 2.0
TypeScript
@@ -4,6 +4,7 @@ import 'package:flutter/widgets.dart'; import 'package:flutter/services.dart'; import 'package:flutter_test/flutter_test.dart'; import 'package:kraken/foundation.dart'; +import 'package:kraken/kraken.dart'; import 'local_http_server.dart'; @@ -34,6 +35,9 @@ void main() { var httpServer = LocalHttpServer...
chore: Inject a custom user agent, to avoid reading from bridge
null
openkraken/kraken
Apache License 2.0
Dart
@@ -324,7 +324,7 @@ async fn schema_cli() { test_helpers::maybe_start_logging(); let database_url = maybe_skip_integration!(); - let mut cluster = MiniCluster::create_shared(database_url).await; + let mut cluster = MiniCluster::create_shared2(database_url).await; StepTest::new( &mut cluster, @@ -381,7 +381,7 @@ async f...
chore: port cli end to end tests to kafkaless write path
null
influxdata/influxdb_iox
Apache License 2.0
Rust
-#! /bin/bash - -# Usage: curl -sL https://raw.githubusercontent.com/IBM/kui/master/tools/install.sh | sh -# TODO: Eventually -> curl -sL https://install.kui-shell.org | sh - -echo "" -echo "|----- Kui, the hybrid command-line/GUI Kubernetes tool -----|" - -echo "" -echo "Some commands need \"sudo\", so your pass could...
chore: remove unused installation file
null
ibm/kui
Apache License 2.0
Shell
@@ -76,19 +76,26 @@ export const render: ArgsStoryFn<VueRenderer> = (args, context) => { } let eventsBinding = ''; - const eventProps = Object.values(argTypes).filter( - (argType) => argType?.table?.category === 'events' - ); + const eventProps = Object.values(argTypes) + .filter((argType) => argType?.table?.category =...
chore: filter out event props from v-bind
null
storybookjs/storybook
MIT License
TypeScript
+#!/usr/bin/env bash +# Copyright 2021 The Kubernetes Authors. +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by ap...
chore: add a script to run the e2e tests for static webhook
null
kubernetes-sigs/security-profiles-operator
Apache License 2.0
Shell
@@ -254,7 +254,6 @@ size_t ScriptSyllabifier::BuildSyllableGraph(Prism& prism) { bool ScriptSyllabifier::IsCandidateCorrection(const rime::Phrase &cand) const { std::stack<bool> results; - bool result = false; // Perform DFS on syllable graph to find whether this candidate is a correction SyllabifyTask task { cand.code...
chore(script_translator): delete unused code
null
rime/librime
BSD 3-Clause New or Revised License
C++
# (c) Copyright IBM Corp. 2022 ####################################### -set -eo pipefail +set -xeo pipefail + +LAST_TAG=$(node_modules/.bin/git-semver-tags | head -n1) +echo "Last tag: $LAST_TAG" + +echo "Commits since last tag:" +node_modules/.bin/git-raw-commits --from "$LAST_TAG" --format '%B%n-hash-%n%H' + +# We do...
chore(ci): add more info to major release check script
null
instana/nodejs-sensor
MIT License
Shell
@@ -34,7 +34,7 @@ class ExternalBody extends AbstractGenerator implements GeneratorInterface try { $pageContent = Util\File::fileGetContents($page->getVariable('external')); if ($pageContent === false) { - throw new RuntimeException(\sprintf('Cannot get contents from "%s".', $page->getVariable('external'))); + throw ne...
chore: clean Exception message
null
cecilapp/cecil
MIT License
PHP
@@ -12,8 +12,6 @@ public class AmplifyAWSServiceConfiguration: AWSServiceConfiguration { static let version = "1.23.2" override public class func baseUserAgent() -> String! { - //TODO: Retrieve this version from a centralized location: - //https://github.com/aws-amplify/amplify-ios/issues/276 let platformInfo = Amplify...
chore: Removed outdated TODO
null
aws-amplify/amplify-ios
Apache License 2.0
Swift
# The MIT License (MIT) -# Copyright (c) 2014-2017 CNRS +# Copyright (c) 2014-2018 CNRS # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to deal @@ -31,16 +31,13 @@ Feature extraction using Yaafe ----------------------...
chore: improve import ordering
null
pyannote/pyannote-audio
MIT License
Python
@@ -247,6 +247,7 @@ mod withdraw_collateral_test { }); } + #[test] fn integration_test_vault_registry_withdraw_collateral_respects_custom_thresholds() { test_with(|vault_id| { let currency_id = vault_id.collateral_currency();
chore: re-add accidentally deleted test
null
interlay/interbtc
Apache License 2.0
Rust
@@ -150,7 +150,7 @@ func (n *innerNode) writeTo(w io.Writer, writeOpts *WriteOpts, m map[node]int64) commitLog: writeOpts.commitLog, } - o, w, err := c.writeTo(w, wopts, m) + o, w, err := c.writeTo(w, wopts, make(map[node]int64)) if err != nil { return 0, w, err }
chore(embedded/tbtree): offset map per branch
null
codenotary/immudb
Apache License 2.0
Go
@@ -2,9 +2,9 @@ from googleapiclient.errors import HttpError from ..utils.gcp_environment import GcpEnvironment from . import create_service_account, get_policy, set_policy, modify_policy_remove_member, modify_policy_add_binding +from tryagain import retries import logging -import time LOG = logging.getLogger(__name__)...
chore: Using retry library in GCP IAM Api calls
null
foremast/foremast
Apache License 2.0
Python
package middleware import ( - "github.com/1024casts/snake/pkg/net/tracing" - "github.com/1024casts/snake/pkg/snake" "github.com/gin-gonic/gin" "github.com/opentracing/opentracing-go" "github.com/opentracing/opentracing-go/ext" -) -var ParentSpan opentracing.Span + "github.com/1024casts/snake/pkg/net/tracing" +) func Tr...
chore: optimize var name and adjust import order
null
go-eagle/eagle
MIT License
Go
@@ -74,7 +74,7 @@ function getCommitData(from, to) { exec(cmd, (err, stdout, stderr) => { if (err) return reject(err); if (stderr) return reject(stderr); - const commits = JSON.parse(`[${stdout.slice(0, -1)}]`); + const commits = JSON.parse("["+stdout.slice(0, -1).replace(/\\/g, "\\\\")+"]"); const last = _.last(commit...
chore(changelog support script): escape the escape characters when generating the changelog
null
esri/arcgis-rest-js
Apache License 2.0
JavaScript
@@ -23,4 +23,5 @@ cd ../elasticsearch-plugin && npm publish -reg $VERDACCIO &&\ cd ../email-plugin && npm publish -reg $VERDACCIO &&\ cd ../testing && npm publish -reg $VERDACCIO &&\ cd ../ui-devkit && npm publish -reg $VERDACCIO &&\ +cd ../job-queue-plugin && npm publish -reg $VERDACCIO &&\ cd ../admin-ui/package && n...
chore: Add job-queue-plugin to local publish script
null
vendure-ecommerce/vendure
MIT License
Shell
@@ -46,7 +46,7 @@ func DefaultOptions() Options { Port: 3322, MetricsPort: 9497, DbName: "immudata", - Config: "configs/immucfg.ini", + Config: "configs/immudb.ini", Pidfile: "", Logfile: "", MTLs: false,
chore: change config path in server default options
null
codenotary/immudb
Apache License 2.0
Go
@@ -11,6 +11,11 @@ class Slack extends OAuth */ protected $user = []; + /** + * @var array + */ + protected $scopes = ['identity.avatar', 'identity.basic', 'identity.email','identity.team']; + /** * @return string */ @@ -25,11 +30,12 @@ class Slack extends OAuth public function getLoginURL():string { // https://api.sla...
chore: fixed slack adapter
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -68,8 +68,8 @@ source secrets/opstrace_dockerhub_creds.sh # https://github.com/opstrace/opstrace/pull/128#issuecomment-742519078 and # https://stackoverflow.com/q/5189913/145400. #OPSTRACE_GCP_PROJECT_ID=$(shuf -n1 -e ci-shard-aaa ci-shard-bbb ci-shard-ccc) -# remove eee and fff for now, see issue #293 -OPSTRACE_GCP...
chore: remove shard-eee based (see
null
opstrace/opstrace
Apache License 2.0
Shell
@@ -53,10 +53,17 @@ extension CardComponent { delegate?.didFail(with: error, from: self) } } + + private func sendTelemetryEvent() { + adyenContext.analyticsProvider.trackTelemetryEvent(flavor: telemetryFlavor) + } } /// :nodoc: -extension CardComponent: TrackableComponent { +extension CardComponent: TrackableComponent...
chore: Telemetry event on card component
null
adyen/adyen-ios
MIT License
Swift
@@ -184,7 +184,7 @@ if [ -x "$(command -v curl)" ] || [ -x "$(command -v wget)" ]; then tempdir="$(mktemp -d ~/.tmp.XXXXXXXX)" log_debug "Using temp directory $tempdir" - echo "Downloading latest release" + echo "Downloading Doppler CLI" file="doppler-download" filename="$tempdir/$file" sig_filename="$filename.sig"
chore: Download message now mentions Doppler CLI
null
dopplerhq/cli
Apache License 2.0
Shell
@@ -329,8 +329,8 @@ func TestEngineGracefulShutdown(t *testing.T) { client := func(t *testing.T, e *Engine) error { var ( - msgID int64 - seqNo int32 + currMsgID int64 + currSeqNo int32 ) for i := 0; i < requestsCount; i++ { @@ -342,10 +342,10 @@ func TestEngineGracefulShutdown(t *testing.T) { Input: &mt.PingRequest{Pi...
chore(rpc): fix linter issues
null
gotd/td
MIT License
Go
@@ -42,7 +42,6 @@ internal final class ListFooterView: UIView { stackView.distribution = .fill stackView.spacing = 0 stackView.isUserInteractionEnabled = false - stackView.translatesAutoresizingMaskIntoConstraints = false stackView.preservesSuperviewLayoutMargins = true return stackView
chore: Remove mask translation in footer view's stack
null
adyen/adyen-ios
MIT License
Swift
@@ -148,7 +148,8 @@ public final class AdyenSession { // MARK: - Action Handling for Components internal lazy var actionComponent: ActionHandlingComponent = { - let handler = AdyenActionComponent(apiContext: configuration.apiContext) + let handler = AdyenActionComponent(apiContext: configuration.apiContext, + configura...
chore: add missing config parameter
null
adyen/adyen-ios
MIT License
Swift
@@ -78,6 +78,17 @@ class AnimeFragment : Fragment(), SharedPreferences.OnSharedPreferenceChangeList super.onSaveInstanceState(outState) } + override fun onDestroy() { + sharedPref.unregisterOnChangeListener(this) + super.onDestroy() + } + + override fun onSharedPreferenceChanged(sharedPreferences: SharedPreferences?, i...
chore(animefragment): restyle code layout
null
chesire/nekome
Apache License 2.0
Kotlin
@@ -27,7 +27,7 @@ elif [ "$UNAME" = "Linux" ] ; then fi fi -if [ "$VERSION" == "latest" ] ; then +if [ "$VERSION" = "latest" ] ; then URL="https://github.com/stoplightio/spectral/releases/latest/download/${FILENAME}" else URL="https://github.com/stoplightio/spectral/releases/download/v${VERSION}/${FILENAME}"
chore(repo): install.sh should work in POSIX envs
null
stoplightio/spectral
Apache License 2.0
Shell
@@ -557,7 +557,9 @@ impl FromToProto for mt::storage::StorageParams { mt::storage::StorageParams::Oss(v) => Ok(pb::user_stage_info::StageStorage { storage: Some(pb::user_stage_info::stage_storage::Storage::Oss(v.to_pb()?)), }), - _ => todo!("other stage storage are not supported"), + others => Err(Incompatible { + reas...
chore(proto-conv): fix panic unsupported type in to_pb
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -113,7 +113,7 @@ class QuickSeekMediaControlPluginTests: QuickSpec { } } - context("and there are overlay plugins") { + context("and there are not visible overlay plugins") { it("ignores them and seeks") { overlayPlugin = OverlayPluginStub(context: core) core.addPlugin(overlayPlugin)
chore: fix assetative on quickseek plugin test
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -30,7 +30,6 @@ using Newtonsoft.Json; using Newtonsoft.Json.Linq; using System; using UnityEngine.Networking; -using System.IO; namespace IBM.Watson.TextToSpeech.V1 { @@ -1640,7 +1639,7 @@ namespace IBM.Watson.TextToSpeech.V1 if (metadata != null) { byte[] byteArray = Encoding.ASCII.GetBytes(JsonConvert.SerializeObj...
chore(text-to-speech-v1): match the output of the generator
null
watson-developer-cloud/unity-sdk
Apache License 2.0
C#
@@ -92,6 +92,8 @@ DOCKER_ENV_KEYS+="DEVICE_REGISTRATION_URL " DOCKER_ENV_KEYS+="ENABLE_NETWORK_LOGGING " DOCKER_ENV_KEYS+="ENABLE_VERBOSE_NETWORK_LOGGING " DOCKER_ENV_KEYS+="HYDRA_SERVICE_URL " +DOCKER_ENV_KEYS+="MESSAGE_DEMO_CLIENT_ID " +DOCKER_ENV_KEYS+="MESSAGE_DEMO_CLIENT_SECRET " DOCKER_ENV_KEYS+="PIPELINE " DOCKE...
chore(widget-message-meet): update docker env var keys
null
webex/webex-js-sdk
MIT License
Shell
@@ -1444,11 +1444,29 @@ fn get_subcommand( } } -fn setup_exit_process_panic_hook() { - // tokio does not exit the process when a task panics, so we - // define a custom panic hook to implement this behaviour +fn setup_panic_hook() { + // This function does two things inside of the panic hook: + // - Tokio does not exit...
chore: add custom panic message
null
denoland/deno
MIT License
Rust
@@ -30,6 +30,6 @@ fi diff ${actual} ${expected} || { echo "Expected test stack template does not match synthesized output" - echo "To update expectations: 'npm test update'" + echo "To update expectations: 'yarn integ:update'" exit 1 }
chore(integ tests): update message with integ test update command
null
cdklabs/aws-delivlib
Apache License 2.0
Shell
@@ -147,6 +147,7 @@ impl BaseClient { } /// Get a reference to the store. + #[allow(unknown_lints, clippy::explicit_auto_deref)] pub fn store(&self) -> &dyn StateStore { &*self.store }
chore: Silence buggy clippy lint
null
matrix-org/matrix-rust-sdk
Apache License 2.0
Rust
@@ -209,7 +209,7 @@ export class Platform { } /** - * Returns `true` if the app is in portait mode. + * Returns `true` if the app is in portrait mode. */ isPortrait(): boolean { return this.win.matchMedia && this.win.matchMedia('(orientation: portrait)').matches;
chore(angular): fix typo in platform provider
null
ionic-team/ionic-framework
MIT License
TypeScript
@@ -2,6 +2,7 @@ from typing import Any, Callable, Dict, List, Optional, TypeVar, cast import attr +from ..models import Response from ..runner import events from ..runner.serialization import SerializedCase, deduplicate_checks from ..utils import merge @@ -38,6 +39,16 @@ def _serialize_case(case: SerializedCase) -> Dic...
chore: Update SaaS serialization
null
schemathesis/schemathesis
MIT License
Python
@@ -257,7 +257,6 @@ public class RedisMetadataDAO extends BaseDynoDAO implements MetadataDAO { if (versions.size() > 0) { dynoClient.hdel(nsKey(WORKFLOW_DEF_NAMES, name)); } - } catch (Exception ex) { logger.error("Error while deleting lastest: {} version {}", name, version, ex); }
chore(workflow): remove extra space
null
netflix/conductor
Apache License 2.0
Java
@@ -89,8 +89,7 @@ impl RoomMember { /// Get the power level of this member. pub fn power_level(&self) -> i64 { - self.power_levels - .as_ref() + (*self.power_levels) .as_ref() .map(|e| { e.content
chore(base): Get rid of confusing double-as_ref
null
matrix-org/matrix-rust-sdk
Apache License 2.0
Rust
@@ -16,28 +16,37 @@ class KrakenWidget extends StatelessWidget { // the width of krakenWidget final double viewportWidth; + // the height of krakenWidget final double viewportHeight; + // the kraken controller. final KrakenController controller; KrakenWidget(String name, double viewportWidth, double viewportHeight, - {...
chore: reformat code and rename API options
null
openkraken/kraken
Apache License 2.0
Dart
-/** - * Copyright 2017 Google Inc. All rights reserved. - * - * Licensed under the Apache License, Version 2.0 (the "License"); - * you may not use this file except in compliance with the License. - * You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by ...
chore: delete `src/MultiMap`
null
puppeteer/puppeteer
Apache License 2.0
JavaScript
@@ -742,7 +742,7 @@ mod tests { // update this test whenever there's a new sol // version. that's ok! good reminder to check the // patch notes. - (">=0.5.0", "0.8.12"), + (">=0.5.0", "0.8.13"), // range (">=0.4.0 <0.5.0", "0.4.26"), ]
chore(solc): new 0.8.13 release
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -90,7 +90,8 @@ defmodule RealtimeWeb.RealtimeChannel do Logger.debug("Start channel, #{inspect([id: id], pretty: true)}") - send(self(), :after_join) + # TODO: figure out a better way to send Presence list to new API clients + # send(self(), :after_join) {:ok, assign(socket, %{
chore: comment out Realtime channel after_join message
null
supabase/realtime
Apache License 2.0
Elixir
@@ -381,6 +381,15 @@ public class Options implements Serializable { return this; } + /** + * Get application properties file for Spring project. + * + * @return application properties file + **/ + public File getApplicationProperties() { + return applicationProperties; + } + /** * Set output location for the generated ...
chore: Add method needed by Hilla
null
vaadin/flow
Apache License 2.0
Java
@@ -32,13 +32,9 @@ class Bitbucket extends OAuth */ public function getLoginURL(): string { - // add each required scope to the user scopes and pass $this->scopes to the query builder - // var_dump($this->getScopes()); foreach ($this->requiredScope as $item) { $this->addScope($item); } - // var_dump($this->getScopes())...
chore: removed debug comments
null
appwrite/appwrite
BSD 3-Clause New or Revised License
PHP
@@ -57,12 +57,14 @@ module.exports = async function (moduleOptions) { options.apiPrefixWithBase = baseRouter + options.apiPrefix } + // Nuxt hooks this.nuxt.hook('components:dirs', (dirs) => { dirs.push({ path: '~/components/global', global: true }) }) + this.nuxt.hook('generate:cache:ignore', ignore => ignore.push('co...
chore(lib): ignore content folder on generate for nuxt 2.14
null
nuxt/content
MIT License
JavaScript
@@ -556,7 +556,7 @@ namespace PepperDash.Essentials.Devices.Common.VideoCodec { if (!args.DeviceOnLine) return; - // TODO [ ] #868 + // TODO [ ] Issue #868 trilist.SetString(joinMap.CurrentParticipants.JoinNumber, "\xFC"); UpdateParticipantsXSig(codec, trilist, joinMap); }; @@ -796,7 +796,7 @@ ScreenIndexIsPinnedTo: {8...
chore: updated todo comments
null
pepperdash/essentials
MIT License
C#
@@ -12,10 +12,7 @@ pub enum BinaryEntrySpecifier { endianness: Endianness, unit: i64, }, - Bytes { - unit: i64, - }, - Bits { + Binary { unit: i64, }, Utf8, @@ -27,6 +24,12 @@ pub enum BinaryEntrySpecifier { }, } impl BinaryEntrySpecifier { + pub const DEFAULT: Self = Self::Integer { + signed: false, + endianness: Endi...
chore: collapse bytes/bits binary specifiers
null
lumen/lumen
Apache License 2.0
Rust
@@ -162,8 +162,6 @@ export class BucketDeployment extends cdk.Construct { } const sourceHash = calcSourceHash(handlerSourceDirectory); - // tslint:disable-next-line: no-console - console.error({sourceHash}); const handler = new lambda.SingletonFunction(this, 'CustomResourceHandler', { uuid: this.renderSingletonUuid(pro...
chore(s3-deployment): remove console output of source hash
null
aws/aws-cdk
Apache License 2.0
TypeScript
@@ -72,9 +72,6 @@ fn bundle_update(settings: &Settings, bundles: &[Bundle]) -> crate::Result<Vec<P let osx_archived = format!("{}.tar.gz", source_path.display()); let osx_archived_path = PathBuf::from(&osx_archived); - // safe unwrap - //let tar_source = &source_path.parent().unwrap().to_path_buf(); - // Create our gzi...
chore: cleanup todo
null
tauri-apps/tauri
Apache License 2.0
Rust
import { URL } from "frontity"; import { HeadTags, State } from "../../types"; +type GetUrlPathname = (url: URL, apiUrl: URL, isWpCom: boolean) => string; + type UseFrontityLinks = (args: { state: State; headTags: HeadTags; @@ -12,7 +14,7 @@ const possibleLink = ["href", "content"]; // Test if a path is not from a blog...
chore(head-tags): move a type definition
null
frontity/frontity
Apache License 2.0
TypeScript
@@ -19,7 +19,7 @@ class PrivateDestroyFieldWalker extends NgWalker { const containsPrivateKeyword = !!prop .getChildAt(0) .getChildren() - .filter(node => (node.kind = ts.SyntaxKind.PrivateKeyword)).length; + .filter(node => node.kind === ts.SyntaxKind.PrivateKeyword).length; if (name && name.length && !containsPrivate...
chore(tslint-rules): fix filter expression
null
intershop/intershop-pwa
MIT License
TypeScript
@@ -2,8 +2,10 @@ package storage_test import ( "testing" + "time" . "github.com/onsi/ginkgo/v2" + "github.com/onsi/ginkgo/v2/types" . "github.com/onsi/gomega" testutils "github.com/pyroscope-io/pyroscope/pkg/testing" ) @@ -12,5 +14,7 @@ func TestStorage(t *testing.T) { testutils.SetupLogging() RegisterFailHandler(Fail)...
chore: fix "slow" go test
null
pyroscope-io/pyroscope
Apache License 2.0
Go
@@ -45,48 +45,76 @@ var ErrIsReplica = errors.New("database is read-only because it's a replica") var ErrNotReplica = errors.New("database is NOT a replica") type DB interface { + GetName() string + + // Setttings + GetOptions() *Options + + AsReplica(asReplica bool) + IsReplica() bool + + UseTimeFunc(timeFunc store.Ti...
chore(pkg/database): improve readability of Database interface
null
codenotary/immudb
Apache License 2.0
Go
@@ -109,20 +109,19 @@ const getBasicImageProps = (image, args) => { const createUrl = (imgUrl, options = {}) => { // Convert to Contentful names and filter out undefined/null values. - const args = _.pickBy( - { - w: options.width, - h: options.height, - fl: options.jpegProgressive ? `progressive` : null, - q: options....
chore(gatsby-source-contentful): simplify url arg generation
null
gatsbyjs/gatsby
MIT License
JavaScript
@@ -31,7 +31,7 @@ const ( DefaultPodCIDR = "10.200.0.0/16" DefaultNetwork = "cilium" SupportedPKEVersionMin = "1.19" - SupportedPKEVersionMax = "1.21" + SupportedPKEVersionMax = "1.23.12" ) func ValidatePKEKubernetesVersion(version string) error {
chore: increased max supported PKE K8s version
null
banzaicloud/pipeline
Apache License 2.0
Go