diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -178,19 +178,19 @@ run_scenario() {
run_cleanup "${SCENARIO_DIR}"
- get_containers
+ get_pods
}
-get_containers() {
+get_pods() {
+ # sleep to ensure all pods are initialised
sleep 30
local QUERY_DOCKER="docker ps"
- local TMP_FILE="/home/launch/.kubesim/docker-"
+ local TMP_DIR="/home/launch/.kubesim"
+ local TMP_F... | chore: renamed function get_containers to get_pods | null | kubernetes-simulator/simulator | Apache License 2.0 | Shell |
@@ -61,7 +61,9 @@ Rails.application.configure do
# routes, locales, etc. This feature depends on the listen gem.
config.file_watcher = ActiveSupport::EventedFileUpdateChecker
- config.x.default_host = 'example.org'
+ config.x.default_host = 'localhost:5000'
+
+ config.action_mailer.default_url_options = { host: 'localh... | chore(rails dev config): add default host and url options | null | coursemology/coursemology2 | MIT License | Ruby |
@@ -288,7 +288,7 @@ open class FormTextItemView<ItemType: FormTextItem>: FormValueItemView<String, F
}
/// :nodoc:
- open func resetValidationStatus() {
+ internal func resetValidationStatus() {
removeAccessoryIfNeeded()
hideAlertLabel(true, animated: false)
unhighlightSeparatorView()
| chore: Change access scope to internal | null | adyen/adyen-ios | MIT License | Swift |
@@ -292,7 +292,7 @@ func (r *GatewayReconciler) Reconcile(ctx context.Context, req ctrl.Request) (ct
return ctrl.Result{}, err
}
debug(log, gateway, "ensured object was removed from the data-plane (if ever present)")
- return ctrl.Result{}, r.DataplaneClient.DeleteObject(gateway)
+ return ctrl.Result{}, nil
}
if gwc.Sp... | chore: remove unneded DeleteObject() on gateway | null | kong/kubernetes-ingress-controller | Apache License 2.0 | Go |
@@ -106,6 +106,4 @@ uartPorts = (
(1, UART1_TX, UART1_RX),
(2, UART2_TX, UART2_RX),
)
-spiPorts = (
- (0, SPI0_SCLK, SPI0_MOSI, SPI0_MISO),
-)
+spiPorts = ((0, SPI0_SCLK, SPI0_MOSI, SPI0_MISO),)
| chore: code reformatting | null | adafruit/adafruit_blinka | MIT License | Python |
'use strict';
-const semver = require('semver');
const fs = require('fs');
const path = require('path');
-
-let http2 = null;
-let HTTP2_HEADER_METHOD;
-let HTTP2_HEADER_PATH;
-let HTTP2_HEADER_STATUS;
-let NGHTTP2_CANCEL;
-
-if (semver.gte(process.version, '8.4.0')) {
- http2 = require('http2');
- HTTP2_HEADER_METHOD ... | chore: removed node version check in collector/test/test_util/http2Promise.js | null | instana/nodejs-sensor | MIT License | JavaScript |
@@ -131,24 +131,25 @@ def stream_features(feature_extraction, current_file, duration=1.):
yield Stream.EndOfStream
-class Accumulate(object):
- """
+class Buffer(object):
+ """This module concatenates (adjacent) input sequences and returns the
+ result using a sliding window.
Parameters
----------
duration : float, opt... | chore: rename Accumulate to Buffer | null | pyannote/pyannote-audio | MIT License | Python |
@@ -27,7 +27,7 @@ func registerCmd(ctx *config.RunContext) *cobra.Command {
if _, ok := ctx.Config.Credentials[ctx.Config.PricingAPIEndpoint]; ok {
isRegenerate = true
- fmt.Printf("You already have an Infracost API key saved in %s.\n", config.CredentialsFilePath())
+ fmt.Printf("You already have an Infracost API key s... | chore: remove . so file path can be copy/pasted with double click | null | infracost/infracost | Apache License 2.0 | Go |
@@ -60,7 +60,23 @@ IS_TEST_ONLY=0
IS_FORCE=0
main() {
- handle_arguments "$@"
+# handle_arguments "$@"
+
+ [[ $# = 0 && "${EXPECTED_NUM_ARGUMENTS}" -gt 0 ]] && usage
+
+ parse_arguments "$@"
+ validate_arguments "$@"
+
+ if [[ "${IS_AUTOPOPULATE:-}" == 1 ]]; then
+ if ! command doctl >/dev/null; then
+ error "Please in... | chore: tidy up functions, comment out unused functions for removal later, collapse handle_arguments function into main function | null | kubernetes-simulator/simulator | Apache License 2.0 | Shell |
@@ -64,7 +64,7 @@ class ElementManager implements WidgetsBindingObserver, ElementsBindingObserver
static Map<String, ElementCreator> _elementCreator = Map();
static bool inited = false;
- static void defineNewElement(String type, ElementCreator creator) {
+ static void defineElement(String type, ElementCreator creator)... | chore: defineNewElement -->>> defineElement | null | openkraken/kraken | Apache License 2.0 | Dart |
-import { onUnmounted, watch, Ref } from "@vue/composition-api";
+import { onUnmounted, watch, Ref, onMounted } from "@vue/composition-api";
import { RefTyped, wrap, NO_OP } from "@vue-composable/core";
export type RemoveEventFunction = () => void;
@@ -63,10 +63,13 @@ export function useEvent(
const addEventListener = ... | chore(tests): fix event test, only add start watching events after mounted | null | pikax/vue-composable | MIT License | TypeScript |
@@ -34,6 +34,7 @@ const ANSI_RESET = '\x1b[0m';
let successCount = 0;
let failCount = 0;
let firstErr;
+const results = {};
/**
* Run an arbitrary Gulp task as a test.
@@ -59,6 +60,7 @@ function runTestTask(id, task) {
successCount++;
if (process.env.CI) console.log('::endgroup::');
console.log(`${BOLD_GREEN}SUCCESS:${... | chore: add a pretty summary to CI | null | google/blockly | Apache License 2.0 | JavaScript |
@@ -37,6 +37,11 @@ fi
echo "::endgroup::"
function report() {
+
+ if [[ "$CI" != "true" ]]; then
+ echo "Skipping test report when not running in CI"
+ return
+ fi
echo "::group::Uploading test results"
set +e
KREW=./krew-"${OS}_${ARCH}"
@@ -52,8 +57,6 @@ function report() {
fi
kubectl resource-snapshot
- if [[ "$CI" =... | chore: skip resource-snapshot when not in CI | null | flanksource/karina | Apache License 2.0 | Shell |
@@ -23,6 +23,9 @@ import Foundation
/// :nodoc:
public let apiContext: APIContext
+ /// :nodoc:
+ public var adyenContext: AdyenContext
+
/// :nodoc:
public weak var delegate: ActionComponentDelegate?
@@ -30,8 +33,9 @@ import Foundation
private var currentlyHandledAction: WeChatPaySDKAction?
/// :nodoc:
- public init(a... | chore: Add adyen context initializer to WeChatPaySDKActionComponent | null | adyen/adyen-ios | MIT License | Swift |
@@ -18,6 +18,6 @@ export default ({
<CleanSpacing>{lede}</CleanSpacing>
</p>
<Byline authors={authors} date={date} darkBackground={darkBackground} />
- {featuredImage ? <FeaturedImage image={featuredImage} /> : <hr />}
+ {featuredImage && <FeaturedImage image={featuredImage} />}
</div>
)
| chore(blog-lede): rm hr | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -383,6 +383,10 @@ export class Store {
return await ObjectiveModel.forId(objectiveId, tx);
}
+ /**
+ * Ensure the provided objective is stored in the database.
+ * Returns the objective as a DBObjective
+ */
async ensureObjective(objective: Objective, tx: Transaction): Promise<DBObjective> {
switch (objective.type) ... | chore: clarifying comments | null | statechannels/statechannels | MIT License | TypeScript |
@@ -32,6 +32,7 @@ import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.vaadin.flow.function.DeploymentConfiguration;
+import com.vaadin.flow.internal.DevModeHandler;
import com.vaadin.flow.internal.DevModeHandlerManager;
import com.vaadin.flow.internal.UsageStatistics;
import com.vaadin.flow.server.commu... | chore: warn about missing DevModeHandlerManager | null | vaadin/flow | Apache License 2.0 | Java |
@@ -57,16 +57,13 @@ push() {
#git config --global user.name "Jae Sung Park"
# Remove existing remote
- git remote rm ${DEST_REMOTE}
+ # git remote rm ${DEST_REMOTE}
# Add new remote with access token in the git URL for authentication
#git remote add ${DEST_REMOTE} https://netil:${GH_TOKEN}@github.com/naver/billboard.js... | chore(deploy): update deploy shell | null | naver/billboard.js | MIT License | Shell |
@@ -5,14 +5,6 @@ class BaseJinaExeception:
"""A base class for all exceptions raised by Jina"""
-class NoExplicitMessage(Exception, BaseJinaExeception):
- """Waiting until all partial messages are received."""
-
-
-class MismatchedVersion(SystemError, BaseJinaExeception):
- """When the jina version info of the incoming... | chore: clean up unused exceptions | null | jina-ai/jina | Apache License 2.0 | Python |
@@ -213,7 +213,10 @@ mod tests {
type Aloc = MmapAllocator<true>;
fn clear_errno() {
- unsafe { *libc::__errno_location() = 0 }
+ #[cfg(target_os = "linux")]
+ unsafe {
+ *libc::__errno_location() = 0
+ }
}
#[test]
| chore: fix not found libc on macos | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -43,6 +43,7 @@ if [[ $REPLY =~ ^[Yy]$ ]]
then
conventional-changelog -p angular
else
+ git reset origin master --hard
exit 1
fi
@@ -64,5 +65,6 @@ then
git push --tags
(cd dist && npm publish)
else
+ git reset origin master --hard
exit 1
fi
| chore(release): reset hard when exiting | null | algolia/angular-instantsearch | MIT License | Shell |
@@ -38,9 +38,6 @@ function Blog(props: any) {
useEffect(() => {
// Update the document title using the browser API
- console.log('useeffect')
- console.log(category)
- console.log(props.blogs)
setBlogs(
category === 'all'
? props.blogs
@@ -75,11 +72,9 @@ function Blog(props: any) {
<div className="mx-auto max-w-7xl">
<... | chore: fix keys | null | supabase/supabase | Apache License 2.0 | TypeScript |
-# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
-# MIT License. See license.txt
-import frappe, unittest, os
-import frappe.translate
-
-# class TestTranslations(unittest.TestCase):
-# def test_doctype(self, messages=None):
-# if not messages:
-# messages = frappe.translate.get_messages_from_docty... | chore: Drop commented out test_translation file | null | frappe/frappe | MIT License | Python |
@@ -999,6 +999,7 @@ func (c *immuClient) VerifiedSetReferenceAt(ctx context.Context, key []byte, ref
Key: key,
ReferencedKey: referencedKey,
AtTx: atTx,
+ BoundRef: atTx > 0,
},
ProveSinceTx: state.TxId,
}
| chore(pkg/client): bound reference if atTx is provided in VerifiedSetReferenceAt | null | codenotary/immudb | Apache License 2.0 | Go |
using System.Collections.Generic;
using System.Linq;
using osu.Framework.Allocation;
-using osu.Framework.Extensions.Color4Extensions;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
@@ -48,6 +47,9 @@ public class HitEventTimingDistributionGraph : CompositeDra... | chore(osu.Game): colorize bars by OD on `HitEventTimingDistributionGraph` | null | ppy/osu | MIT License | C# |
@@ -51,20 +51,6 @@ class ApplePayComponentTest: XCTestCase {
UIApplication.shared.keyWindow!.rootViewController = emptyVC
}
- func testApplePayCallDelegateDidFailOnInvalidPayment() {
- sut.delegate = mockDelegate
- let onDidFailExpectation = expectation(description: "Wait for delegate call")
- mockDelegate.onDidFail = ... | chore: remove test case for invalid payment | null | adyen/adyen-ios | MIT License | Swift |
final class CardPublicKeyProviderMock: AnyCardPublicKeyProvider {
- let apiContext: APIContext = APIContext(environment: Environment.test, clientKey: "local_DUMMYKEYFORTESTING")
+ let apiContext: APIContext = Dummy.context
var onFetch: ((_ completion: @escaping CompletionHandler) -> Void)?
| chore: Use Dummy.context in CardPublicKeyProviderMock | null | adyen/adyen-ios | MIT License | Swift |
@@ -386,7 +386,12 @@ bool GLRender::renderActually()
mProgramContext->updateWindowSize(mWindowWidth, mWindowHeight, displayViewChanged);
mProgramContext->updateFlip(mFlip);
mProgramContext->updateBackgroundColor(mBackgroundColor);
- int ret = mProgramContext->updateFrame(frame);
+ int ret = -1;
+ if (mClearScreenOn && ... | chore(GLRender): do not draw last frame when need clear screen | null | alibaba/cicadaplayer | MIT License | C++ |
@@ -392,7 +392,7 @@ export const superBlockOrder: SuperBlockOrder = {
},
[Languages.Japanese]: {
[CurriculumMaps.Landing]: [
- SuperBlocks.RespWebDesign,
+ SuperBlocks.RespWebDesignNew,
SuperBlocks.JsAlgoDataStruct,
SuperBlocks.FrontEndDevLibs,
SuperBlocks.DataVis,
@@ -407,6 +407,7 @@ export const superBlockOrder: Supe... | chore(UI): move new RWD to top in Japanese | null | freecodecamp/freecodecamp | BSD 3-Clause New or Revised License | TypeScript |
@@ -149,7 +149,7 @@ class AlexaClient(MediaPlayerDevice):
await self.refresh(device)
async def async_added_to_hass(self):
- """Store register state change callback."""
+ """Perform tasks after loading."""
# Register event handler on bus
self._listener = self.hass.bus.async_listen(
f'{ALEXA_DOMAIN}_{hide_email(self._log... | chore: correct documentation | null | custom-components/alexa_media_player | Apache License 2.0 | Python |
@@ -125,7 +125,7 @@ export class Electron extends SdkObject {
controller.setLogName('browser');
return controller.run(async progress => {
let app: ElectronApplication | undefined = undefined;
- const electronArguments = ['--inspect=0', '--remote-debugging-port=0', ...args];
+ const electronArguments = [...args, '--insp... | chore(electron): put client-provided arguments in front | null | microsoft/playwright | Apache License 2.0 | TypeScript |
-const { NODE_ENV, BABEL_ENV } = process.env;
-const cjs = NODE_ENV === "test" || BABEL_ENV === "commonjs";
-const loose = true;
+const { NODE_ENV, BABEL_ENV } = process.env
+const cjs = NODE_ENV === 'test' || BABEL_ENV === 'commonjs'
+const loose = true
module.exports = {
+ targets: 'defaults, not ie 11, not ie_mob 11... | chore: update the babel targets to not transpile classes | null | tannerlinsley/react-table | MIT License | JavaScript |
@@ -732,7 +732,7 @@ rbac:
v.SetDefault("cluster::securityScan::anchore::password", "")
v.SetDefault("cluster::securityScan::anchore::insecure", false)
v.SetDefault("cluster::securityScan::webhook::chart", "banzaicloud-stable/anchore-policy-validator")
- v.SetDefault("cluster::securityScan::webhook::version", "0.6.1")
+... | chore: update anchore-image-validator chart | null | banzaicloud/pipeline | Apache License 2.0 | Go |
@@ -20,8 +20,6 @@ class AuditableTest extends TestCase
*/
public function testAuditableToAuditFailInvalidAuditEvent()
{
- Config::set('audit.console', true);
-
$model = new AuditableModelStub();
// Invalid auditable event
| chore(AuditableTest): remove unused configuration value | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -43,7 +43,7 @@ import (
)
// defaultConstraint
-const defaultConstraint = ">= 1.19, <= 1.21"
+const defaultConstraint = ">= 1.19, <= 1.22"
const kubevelaInstallerHelmRepoURL = "https://charts.kubevela.net/core/"
| chore: bump k8s version contraint | null | oam-dev/kubevela | Apache License 2.0 | Go |
@@ -21,6 +21,7 @@ import org.camunda.bpm.engine.authorization.Permissions;
import org.camunda.bpm.engine.authorization.Resources;
import org.camunda.bpm.engine.batch.Batch;
import org.camunda.bpm.engine.history.UserOperationLogEntry;
+import org.camunda.bpm.engine.history.UserOperationLogQuery;
import org.camunda.bpm.e... | chore(logs): add assertions to test | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -58,7 +58,7 @@ push() {
git config --global user.email "alberto.park@gmail.com"
git config --global user.name "netil"
- git remote set-url ${DEST_REMOTE} https://netil:${1}@github.com/naver/billboard.js.git > /dev/null 2>&1
+ git remote set-url ${DEST_REMOTE} https://git:${1}@github.com/naver/billboard.js.git > /dev... | chore(deploy): update deploy.sh | null | naver/billboard.js | MIT License | Shell |
@@ -44,15 +44,19 @@ where
}
}
- /// Replaces the underlying [`Pool`] with `new_pool`.
+ /// Replaces the underlying [`Pool`] with `new_pool`, returning
+ /// the previous pool
///
/// Existing connections obtained by performing operations on the pool
/// before the call to `replace` are still valid.
///
/// This method... | chore: Add test for running a query after swapping out a sqlx pool | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
*/
package org.camunda.bpm.engine.impl.persistence.entity;
-import java.util.ArrayList;
+import java.util.Collections;
import java.util.List;
import org.camunda.bpm.engine.AuthorizationException;
@@ -45,7 +45,7 @@ public class SchemaLogManager extends AbstractManager {
if (isAuthorized()) {
return getDbEntityManager().... | chore(engine): use provided empty list instead of new instance | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -437,7 +437,7 @@ class Entries
*
* @access public
*/
- public function copy(string $id, string $new_id, bool $recursive = false) : bool
+ public function copy(string $id, string $new_id, bool $recursive = false)
{
return Filesystem::copy($this->_dir_location($id), $this->_dir_location($new_id), $recursive);
}
| chore(core): update Entries copy method | null | flextype/flextype | MIT License | PHP |
-#!/bin/sh
-
-cd dist/firefox/production
-
-jq ".version|=\"$1\"" manifest.json > manifest.json.new
-mv manifest.json.new manifest.json
-
-zip -r "../../../ublacklist-firefox.zip" *
| chore: remove `lib/semantic-release/firefox-prepare.sh` | null | iorate/ublacklist | MIT License | Shell |
@@ -108,12 +108,12 @@ func main() {
conv,
conv.Init())
- daily := time.NewTicker(24 * time.Hour)
+ daily := time.NewTicker(10 * time.Minute)
defer daily.Stop()
update := make(chan struct{})
go func() {
for range daily.C {
- timer := time.NewTimer(time.Duration(rand.Intn(120)) * time.Minute)
+ timer := time.NewTimer(tim... | chore: many yum updates for debugging | null | caos/orbos | Apache License 2.0 | Go |
#![doc = include_str!("../README.md")]
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![warn(missing_docs, missing_debug_implementations)]
+#![allow(clippy::drop_non_drop)] // triggered by wasm_bindgen code
pub mod encryption;
pub mod events;
| chore: Silence new clippy lint | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -65,7 +65,8 @@ defmodule Logflare.Application do
# get_goth_child_spec(),
LogflareWeb.Endpoint,
{Task.Supervisor, name: Logflare.TaskSupervisor},
- Logflare.SystemMetricsSup
+ Logflare.SystemMetricsSup,
+ {DynamicSupervisor, strategy: :one_for_one, name: Logflare.Endpoint.Cache}
]
end
| chore: added endpoint cache supervisor to test suite | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -9,12 +9,10 @@ set -e
SUITE_START_TIME=$(date +%s)
function reportTime {
- if [ "$?" == "0" ]; then
SUITE_END_TIME=$(date +%s)
DURATION=$((SUITE_END_TIME - SUITE_START_TIME))
echo "${PACKAGE} start/end/duration/suite_retries/sauce_retries: ${SUITE_START_TIME}/${SUITE_END_TIME}/${DURATION}/${SUITE_ITERATION}/${SC_ITE... | chore(tooling): always report timings | null | webex/webex-js-sdk | MIT License | Shell |
@@ -147,13 +147,13 @@ export class Rundown implements DBRundown {
return pls
} else throw new Meteor.Error(404, `Rundown Playlist "${this.playlistId}" not found!`)
}
- getShowStyleCompound(): ShowStyleCompound {
- if (!this.showStyleVariantId) throw new Meteor.Error(500, 'Rundown has no show style attached!')
- let ss ... | chore: comment out unused function | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
@@ -12,7 +12,7 @@ public struct AnalyticsOptions: OptionSet {
public let rawValue: Int
public static let telemetry = AnalyticsOptions(rawValue: 1 << 0)
- public static let conversion = AnalyticsOptions(rawValue: 1 << 1)
+ public static let checkoutAttemptId = AnalyticsOptions(rawValue: 1 << 1)
public init(rawValue: Int... | chore: Rename conversion to checkoutAttemptId | null | adyen/adyen-ios | MIT License | Swift |
@@ -883,13 +883,13 @@ public final class StagingArea {
applyPropertyUpdates(toRef, propertyUpdatesToApply);
// apply new objects
- applyNewObjects(added, fromRef, toRef, squash);
+ applyNewObjects(added, mergeFromBranchRef, toRef, squash);
// apply changed objects
- applyChangedObjects(changed, fromRef, toRef, squash);... | chore(index): use the diff from ref to calculate changes to carry over. | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -418,7 +418,7 @@ pub fn rewire_block_left(ctx: &mut SsaContext, block_id: BlockId, left: BlockId)
pub fn short_circuit_instructions(
ctx: &mut SsaContext,
target: BlockId,
- instructions: &Vec<NodeId>,
+ instructions: &[NodeId],
) -> Vec<NodeId> {
// short-circuit the return instruction (if it exists)
zero_instructi... | chore: Use &[NodeId] instead of &Vec<NodeId> in noirc_evaluator | null | noir-lang/noir | Apache License 2.0 | Rust |
@@ -39,7 +39,10 @@ const withBreasts =
const withoutBreasts =
'M 6.2021092,6.7988281 C 5.0433189,10.972649 5.2215488,13.211802 5.2215488,16.798828 h 5.8983122 l 0.143133,-1.21128 c 0.331559,-1.834081 0.655671,-2.543616 1.078829,0.07477 l 0.134587,1.136509 h 5.896176 c 0,-3.587026 0.180363,-5.826179 -0.978425,-9.9999999... | chore: Added designs icon | null | freesewing/freesewing | MIT License | JavaScript |
@@ -2,9 +2,11 @@ import { rocketLaunch } from '@rocket/launch';
import { rocketSearch } from '@rocket/search';
import { rocketBlog } from '@rocket/blog';
import { adjustPluginOptions } from 'plugins-manager';
+import { absoluteBaseUrlNetlify } from '@rocket/core/helpers';
export default {
presets: [rocketLaunch(), rock... | chore: set website url in netlify CI | null | ing-bank/lion | MIT License | JavaScript |
@@ -17,6 +17,9 @@ xcodebuild archive -project Adyen.xcodeproj \
-configuration Release \
-archivePath $BUILD_PATH/AdyenUIHost.xcarchive \
-allowProvisioningUpdates \
+-authenticationKeyID $XCODE_AUTHENTICATION_KEY_ID \
+-authenticationKeyIssuerID $XCODE_AUTHENTICATION_KEY_ISSUER_ID \
+-authenticationKeyPath $3
xcodebui... | chore: auth for both archive and exportArchive | null | adyen/adyen-ios | MIT License | Shell |
#include "CURLShareInstance.h"
#include <cassert>
#include <mutex>
-
-extern "C" {
-#include <libavformat/avformat.h>
-};
+#include <utils/UrlUtils.h>
using namespace Cicada;
@@ -55,21 +52,20 @@ curl_slist *CURLShareInstance::getHosts(const string &url, CURLSH **sh)
std::unique_lock<std::mutex> uMutex(globalSettings::g... | chore(urlShare): use UrlUtils to split url | null | alibaba/cicadaplayer | MIT License | C++ |
@@ -89,7 +89,7 @@ export function initLocal(workspace: Workspace) {
})
.then(({ c }) => {
if (c) {
- execSync(cmd);
+ execSync(cmd, { stdio: 'inherit' });
}
})
);
| chore(core): pass stdio: inherit during ng add alias | null | nrwl/nx | MIT License | TypeScript |
@@ -15,11 +15,21 @@ ngc -p tsconfig-aot.json
rollup -c rollup.config.umd.js
rollup -c rollup.config.esm.js
+# copy and rename css from instantsearch.css
+cp node_modules/instantsearch.css/themes/*.css dist/bundles
+
+mv dist/bundles/reset.css dist/bundles/instantsearch.css
+mv dist/bundles/reset-min.css dist/bundles/in... | chore(build): copy and rename css from instantsearch.css | null | algolia/angular-instantsearch | MIT License | Shell |
@@ -5,6 +5,7 @@ import au.com.dius.pact.consumer.DefaultResponseValues;
import au.com.dius.pact.consumer.Pact;
import au.com.dius.pact.consumer.PactProviderRuleMk2;
import au.com.dius.pact.consumer.PactVerification;
+import au.com.dius.pact.consumer.PactVerifications;
import au.com.dius.pact.consumer.dsl.PactDslRequest... | chore: add a test with mutiple providers | null | pact-foundation/pact-jvm | Apache License 2.0 | Java |
@@ -61,10 +61,10 @@ fn set_ids(
let xtx_id: sp_core::H256 =
hex!("2637d56ea21c04df03463decc4aa8d2916c96e59ac45e451d7133eedc621de59").into();
- let side_effect_a_id = valid_side_effect
+ let sfx_id = valid_side_effect
.generate_id::<circuit_runtime_pallets::pallet_circuit::SystemHashing<Runtime>>();
- (xtx_id, side_effe... | chore: Dummy variable rename in Circuit Tests to trigger CI | null | t3rn/t3rn | Apache License 2.0 | Rust |
dependencies {
api("com.graphql-java:graphql-java")
- implementation("com.github.javafaker:javafaker:1.+")
+ implementation("com.github.javafaker:javafaker:1.+") {
+ exclude("org.yaml", "snakeyaml")
+ }
implementation("org.slf4j:slf4j-api")
}
| chore: remove snakeyaml dep from graphql-dgs-mocking | null | netflix/dgs-framework | Apache License 2.0 | Kotlin |
@@ -673,16 +673,20 @@ public class RetryIODispatcherTest {
nonInsertQueries++;
final int maxWaitTimeMillis = 3000;
- final int sleepMillis = 50;
+ final int sleepMillis = 10;
// wait for all insert queries to be initially handled
+ long startedInserts;
for (int i = 0; i < maxWaitTimeMillis / sleepMillis; i++) {
- final... | chore(test): add more assertions to retry insertion test | null | questdb/questdb | Apache License 2.0 | Java |
@@ -18,10 +18,14 @@ package org.camunda.bpm.engine.test.api.authorization;
import ch.qos.logback.classic.Level;
import ch.qos.logback.classic.spi.ILoggingEvent;
+
+import org.camunda.bpm.engine.AuthorizationService;
+import org.camunda.bpm.engine.authorization.Authorization;
import org.camunda.bpm.engine.test.api.autho... | chore(tests): clean up after authorization test | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -39,10 +39,11 @@ int Syllabifier::BuildSyllableGraph(const string &input,
size_t current_pos = vertex.first;
// record a visit to the vertex
- if (graph->vertices.find(current_pos) == graph->vertices.end())
+ if (graph->vertices.find(current_pos) == graph->vertices.end()) {
graph->vertices.insert(vertex); // preferr... | chore(syllabifier): code cleanup | null | rime/librime | BSD 3-Clause New or Revised License | C++ |
@@ -7,4 +7,4 @@ dart pub global activate coverage
dart test --coverage="coverage"
-format_coverage --lcov --in=coverage --out=coverage.lcov --packages=.packages --report-on=lib
\ No newline at end of file
+format_coverage --lcov --in=coverage --out=coverage.lcov --packages=.dart_tool/package_config.json --report-on=lib... | chore: update the packages option for format_coverage | null | rrousselgit/river_pod | MIT License | Shell |
@@ -64,7 +64,7 @@ function _install_packages
MISCELLANEOUS_PACKAGES=(
apt-transport-https bind9-dnsutils binutils bsd-mailx
ca-certificates curl dbconfig-no-thanks
- dumb-init ed gamin gnupg iproute2 iputils-ping
+ dumb-init ed gnupg iproute2 iputils-ping
libdate-manip-perl libldap-common
libmail-spf-perl libnet-dns-pe... | chore: Remove package `gamin` | null | docker-mailserver/docker-mailserver | MIT License | Shell |
@@ -31,6 +31,10 @@ const useThumbnail = (collection: SanitizedCollectionConfig, doc: Record<string,
return `${serverURL}${thumbnailURL}`;
}
+ if (sizes?.[adminThumbnail]?.url) {
+ return sizes[adminThumbnail].url;
+ }
+
if (sizes?.[adminThumbnail]?.filename) {
return `${serverURL}${staticURL}/${sizes[adminThumbnail].fi... | chore: ensures adminThumbnail uses new url field | null | payloadcms/payload | MIT License | TypeScript |
@@ -42,8 +42,6 @@ impl IdentityStateConst {
pub const INITIAL_CHANGE: &'static [u8] = "OCKAM_INITIAL_CHANGE".as_bytes();
/// Label for [`crate::Identity`] update key
pub const ROOT_LABEL: &'static str = "OCKAM_RK";
- /// Current version of change structure
- pub const CURRENT_CHANGE_VERSION: u8 = 1;
/// Change history ... | chore(rust): remove unused `CURRENT_CHANGE_VERSION` const from `ockam_identity` | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -50,9 +50,11 @@ for VERSION in "${VERSIONS[@]}"; do
node ./node_modules/gulp/bin/gulp.js karma --config=config/karma-ci.conf.js --reporters='dots' --browsers=$BROWSERS
LAST_EXIT_CODE=$?
- echo "######################################################################"
- echo "####### Finished: ngM1 + AngularJS (${VERSI... | chore(jenkins): improve echo messaging | null | angular/material | MIT License | Shell |
@@ -214,6 +214,30 @@ public class LineProtoSender extends AbstractCharSink implements Closeable {
throw CairoException.instance(0).put("metric expected");
}
+ public LineProtoSender tagEscaped(CharSequence tag, CharSequence value) {
+ if (hasMetric) {
+ put(',').putUtf8Escaped(tag).put('=').putUtf8Escaped(value);
+ ret... | chore(cutlass): added method to escape tag value on LineProtocolSender | null | questdb/questdb | Apache License 2.0 | Java |
@@ -59,19 +59,6 @@ public class CvdlProducts {
if (packageJson.hasKey(CVDL_PACKAGE_KEY)) {
return new Product(packageJson.getString(CVDL_PACKAGE_KEY),
packageJson.getString("version"));
- } else if (packageJson.hasKey("license")) {
- String packageName = packageJson.getString("name");
- String license = packageJson.get... | chore: Only use cvdlName for license check | null | vaadin/flow | Apache License 2.0 | Java |
@@ -188,8 +188,8 @@ public class EsDocumentSearcher implements Searcher {
if (e instanceof ElasticsearchStatusException && ((ElasticsearchStatusException) e).status() == RestStatus.BAD_REQUEST) {
throw new IllegalArgumentException(e.getMessage(), e);
}
- admin.log().error("Couldn't execute query", e);
- throw new Index... | chore(logs): log the prepared ES search request on error | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -498,9 +498,14 @@ void flushUICommand() {
print('$e\n$stack');
}
}
+
// For pending style properties, we needs to flush to render style.
for (int id in pendingStylePropertiesTargets.keys) {
+ try {
controller.view.flushPendingStyleProperties(id);
+ } catch (e, stack) {
+ print('$e\n$stack');
+ }
}
pendingStyleProper... | chore: try catch flush pending style | null | openkraken/kraken | Apache License 2.0 | Dart |
+/* 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 law or agreed to in writing, software
+ * distribu... | chore: Add missing licnese header block | null | flowable/flowable-engine | Apache License 2.0 | Java |
//
-// Copyright (c) 2021 Adyen N.V.
+// Copyright (c) 2022 Adyen N.V.
//
// This file is open source and available under the MIT license. See the LICENSE file for more info.
//
import Adyen
import Foundation
-#if !(targetEnvironment(simulator) && arch(arm64)) && canImport(AdyenWeChatPayInternal)
+#if !targetEnvironmen... | chore: small fix in WeChatPayActionComponent.swift to exclude all simulators at compile time | null | adyen/adyen-ios | MIT License | Swift |
@@ -27,12 +27,12 @@ impl From<RouteError> for Error {
mod tests {
use super::RouteError;
use crate::{compat::collections::HashMap, Error};
- use core::array::IntoIter;
#[test]
fn code_and_domain() {
- let errors_map =
- IntoIter::new([(000, RouteError::IncompleteRoute)]).collect::<HashMap<_, _>>();
+ let errors_map = [... | chore: fix ockam_core nightly test | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -90,9 +90,6 @@ ConcreteEngine::ConcreteEngine() {
ConcreteEngine::~ConcreteEngine() {
LOG(INFO) << "engine disposed.";
- processors_.clear();
- segmentors_.clear();
- translators_.clear();
}
bool ConcreteEngine::ProcessKey(const KeyEvent& key_event) {
| chore(engine): no need to clear component vectors in dtor | null | rime/librime | BSD 3-Clause New or Revised License | C++ |
@@ -55,8 +55,12 @@ func (c *Client) GetImageSource() (string, error) {
if len(c.registryURL) > 0 && len(c.localPath) <= 0 {
registry := c.registryURL
- url, _ := url.Parse(c.registryURL)
- //remove protocoll from registryURL to get registry
+ url, err := url.Parse(c.registryURL)
+ if err != nil {
+ return "", fmt.Error... | chore(docker): do not swallow error | null | sap/jenkins-library | Apache License 2.0 | Go |
@@ -49,7 +49,6 @@ class SEPADirectDebitComponentTests: XCTestCase {
XCTAssertEqual(sut.ibanItem.title, ADYLocalizedString("adyen.sepa.ibanItem.title", sut.localizationParameters))
XCTAssertEqual(sut.ibanItem.validationFailureMessage, ADYLocalizedString("adyen.sepa.ibanItem.invalid", sut.localizationParameters))
- XCTAs... | chore: small fix to unit tests | null | adyen/adyen-ios | MIT License | Swift |
@@ -193,53 +193,6 @@ fn test_user_stage_fs_v20() -> anyhow::Result<()> {
Ok(())
}
-#[test]
-fn test_user_stage_fs_v17() -> anyhow::Result<()> {
- // Encoded data of version 18 of user_stage_fs:
- // It is generated with common::test_pb_from_to.
- let user_stage_fs_v17 = vec![
- 10, 17, 102, 115, 58, 47, 47, 100, 105, 1... | chore(meta/proto-conv): fix wrong version in proto message | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -5,4 +5,10 @@ set -e
. ".buildkite/scripts/helpers/setup-registry.sh"
yarn install --frozen-lockfile
+
+# Running an explicit command for design-tokens here, because running `yarn lerna run prepublish` takes a long time and isn't worth doing for dev builds.
+# At the time of writing this, no other package apart from... | chore: Run design-tokens prepublish on dev builds | null | cultureamp/kaizen-design-system | MIT License | Shell |
@@ -108,17 +108,17 @@ impl DeleteTime {
// --------------------------------------------------------------------------------------------
-/// All scenarios chunk stages and their life cycle moves for given set of delete predicates
-/// If the delete predicates are empty, all scenarios of different chunk stages will retu... | chore: make the comments and names clearer | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -47,6 +47,15 @@ export function execute(script: string, options: ExecOptions = {}): Promise<stri
export async function publishAllPackagesToNpm(version: any, tag: string) {
const packages = getPackages();
for (const pack of packages) {
+ try {
+ await publishPackage(pack, version, tag);
+ } catch (error) {
+ // One r... | chore: publish should retry at least once | null | ngxs/store | MIT License | TypeScript |
@@ -43,6 +43,64 @@ module.exports = {
type: String,
usage: 'info [options] [output-format]',
description: 'Outputs information about your system and dependencies',
+ flags: [
+ {
+ name: 'output-json',
+ type: Boolean,
+ group: OUTPUT_GROUP,
+ description: 'To get the output as JSON',
+ },
+ {
+ name: 'output-markdown'... | chore: add flags for commands | null | webpack/webpack-cli | MIT License | JavaScript |
@@ -108,6 +108,8 @@ export default {
phrase1: 'Welcome to the New Expensify! Enter your phone number or email to continue.',
phrase2: 'Money talks. And now that chat and payments are in one place, it\'s also easy.',
phrase3: 'Your payments get to you as fast as you can get your point across.',
+ phrase4: 'Welcome back ... | chore(password-form-header): Added phrases for welcomeText in Eng and Esp | null | expensify/expensify.cash | MIT License | JavaScript |
@@ -89,7 +89,6 @@ angular.module('dialogDemo1', ['ngMaterial'])
$scope.showPrerenderedDialog = function(ev) {
$mdDialog.show({
- controller: DialogController,
contentElement: '#myDialog',
parent: angular.element(document.body),
targetEvent: ev,
| chore: update script.js | null | angular/material | MIT License | JavaScript |
@@ -3,7 +3,8 @@ const shell = require('shelljs')
let target = process.argv[2]
const alias = {
api: '@vuetify/api-generator',
- docs: 'vuetifyjs.com'
+ docs: 'vuetifyjs.com',
+ kitchen: '@vuetify/kitchen'
}
target = alias[target] || target
| chore(script): add kitchen alias to build | null | vuetifyjs/vuetify | MIT License | JavaScript |
@@ -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.0");
+ defaults.put("vite", "v2.7.0-beta.1");
defaults.put("mkdirp", "1.0.4"); // for application-theme-plugin
}... | chore: Upgrade Vite to 2.7.0-beta.1 | null | vaadin/flow | Apache License 2.0 | Java |
@@ -583,14 +583,23 @@ func (tx *SQLTx) doUpsert(pkEncVals []byte, valuesByColID map[uint32]TypedValue,
// create primary index entry
mkey := mapKey(tx.sqlPrefix(), PIndexPrefix, EncodeID(table.db.id), EncodeID(table.id), EncodeID(table.primaryIndex.id), pkEncVals)
- var constraint store.KVConstraint
-
if isInsert && !t... | chore(embedded/sql): bound stmt execution to a single sqltx | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -37,8 +37,8 @@ func cmdList(opts map[string]interface{}, conf config.Config) {
// sheets with local sheets), here we simply want to create a slice
// containing all sheets.
flattened := []sheet.Sheet{}
- for _, pathSheets := range cheatsheets {
- for _, s := range pathSheets {
+ for _, pathsheets := range cheatsheet... | chore: spelling | null | cheat/cheat | MIT License | Go |
@@ -11,5 +11,5 @@ export CHROMATIC_APP_CODE
CHROMATIC_APP_CODE=$(get_secret "chromatic-app-code") || exit $?
yarn install --frozen-lockfile
-yarn storybook:build --webpack-stats-json
-yarn chromatic --only-changed --exit-zero-on-changes --storybook-build-dir storybook/public
+yarn storybook:build
+yarn chromatic --exit... | chore: Revert "Enable Chromatic TurboSnap" | null | cultureamp/kaizen-design-system | MIT License | Shell |
+echo -n "Waiting for a few seconds to ensure that docker has started before spinning everything up..." && sleep 1 && echo -n . && sleep 1 && echo -n . && sleep 1 && echo -n .
echo "Starting up dev environment dockers (mongo, redis, localstack)..."
echo
docker-compose -f docker-compose.dev.yml up -d
| chore(gitpod): wait for docker-up | null | sanofi-iadc/whispr | MIT License | Shell |
+/* 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 law or agreed to in writing, software
+ * distribu... | chore(test): add Xml Value test cases | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -146,7 +146,7 @@ See %s`, help.ArgoSever),
}
command.Flags().StringVar(&baseHRef, "basehref", defaultBaseHRef, "Value for base href in index.html. Used if the server is running behind reverse proxy under subpath different from /. Defaults to the environment variable BASE_HREF.")
// "-e" for encrypt, like zip
- comma... | chore(server): Enable TLS by default. Resolves | null | argoproj/argo-workflows | Apache License 2.0 | Go |
@@ -684,12 +684,6 @@ class RenderBoxModel extends RenderBox
// Copy render style
..renderStyle = renderStyle
- // Copy intrinsic info
- // @TODO: Delete after intrinsic info is moved to renderStyle.
- ..intrinsicWidth = intrinsicWidth
- ..intrinsicHeight = intrinsicHeight
- ..intrinsicRatio = intrinsicRatio
-
// Copy b... | chore: delete intrinsic width/height/ratio from renderBoxModel | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -18,11 +18,15 @@ namespace WindowWalker.Components
/// </summary>
public delegate void OpenWindowsUpdateHandler(object sender, SearchController.SearchResultUpdateEventArgs e);
+#pragma warning disable 0067 // suppress false positive
+
/// <summary>
/// Event raised when there is an update to the list of open windows... | chore: fix window walker warning | null | microsoft/powertoys | MIT License | C# |
@@ -26,8 +26,8 @@ case $branch in
npm_tag=latest
;;
*)
- echo "--- branch is $branch which I won't publish"
- exit 0
+ echo --- versioning canary
+ npm_tag=canary
;;
esac
@@ -85,13 +85,13 @@ yarn build
case $branch in
beta)
echo +++ publishing beta
- # yarn lerna publish prerelease beta --yes --force-publish
+ # yarn l... | chore(release): support canaries | null | flood-io/element | Apache License 2.0 | Shell |
/*
* Copyright (C) 2019-present The Kraken authors. All rights reserved.
*/
+import 'dart:async';
import 'dart:math' as math;
import 'dart:ui';
@@ -1438,7 +1439,13 @@ class RenderBoxModel extends RenderBox
}
Future<Image> toImage({double pixelRatio = 1.0}) {
- assert(layer != null);
+ if (layer == null) {
+ Completer<I... | chore: layer task delay | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -14,7 +14,9 @@ func (m *BatchOps) Validate() error {
mops := make(map[[32]byte]struct{}, len(m.GetOperations()))
for _, op := range m.Operations {
- if op != nil {
+ if op == nil {
+ return status.New(codes.InvalidArgument, "batchOp is not set").Err()
+ }
switch x := op.Operation.(type) {
case *BatchOp_KVs:
mk := sh... | chore(pkg/api/schema): increase code readability | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -29,6 +29,7 @@ use futures_util::stream::FuturesUnordered;
use futures_util::AsyncReadExt;
use futures_util::StreamExt;
use opendal::raw::CompressAlgorithm;
+use tracing::info;
use crate::processors::sources::input_formats::beyond_end_reader::BeyondEndReader;
use crate::processors::sources::input_formats::input_cont... | chore(format): log failing to send row_batch | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -286,7 +286,7 @@ func (txr *TxReplicator) fetchNextTx() error {
exportTxStream, err := txr.client.ExportTx(txr.clientContext, &schema.ExportTxRequest{
Tx: nextTx,
FollowerState: state,
- AllowPreCommitted: true,
+ AllowPreCommitted: syncReplicationEnabled,
})
if err != nil {
if strings.Contains(err.Error(), "followe... | chore(pkg/replication): allowPreCommitted only with sync replication enabled | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -586,6 +586,8 @@ func (s *ImmuServer) startReplicationFor(db database.DB, dbOpts *dbOptions) erro
WithMasterPort(dbOpts.MasterPort).
WithFollowerUsername(dbOpts.FollowerUsername).
WithFollowerPassword(dbOpts.FollowerPassword).
+ WithPrefetchTxBufferSize(dbOpts.PrefetchTxBufferSize).
+ WithReplicationCommitConcurrenc... | chore(pkg/server): use replication settings | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -51,7 +51,7 @@ func NewArgoEventsLogger() *zap.SugaredLogger {
config = zap.NewProductionConfig()
}
// Config customization goes here if any
- //
+ config.OutputPaths = []string{"stdout"}
logger, err := config.Build()
if err != nil {
panic(err)
| chore: update log.info output to stdout. Fixes | null | argoproj/argo-events | Apache License 2.0 | Go |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.