diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -13,7 +13,7 @@ export default () => (
<span
className={`${countyChartLegendStyle.swatch} ${countyChartLegendStyle.whiteAlone}`}
/>
- White alone alone
+ White alone
</li>
<li>
<span
| chore: Typo in legend | null | covid19tracking/website | Apache License 2.0 | JavaScript |
+INSTANCE=orbiter@$1
+PROFILE=$2
+OUTPUT=$3
+
+TMPFILENAME=tmp_profile
+
+gcloud compute ssh ${INSTANCE} --command="wget http://localhost:6060/debug/pprof/${PROFILE} -O ${TMPFILENAME}"
+
+gcloud compute scp ${INSTANCE}:/home/orbiter/${TMPFILENAME} ${OUTPUT}
+
+gcloud compute ssh ${INSTANCE} --command="rm -f ${TMPFILENA... | chore(nodeagent): add script to get nodeagent pprof from gce vm | null | caos/orbos | Apache License 2.0 | Shell |
@@ -4,6 +4,7 @@ use cumulus_primitives_core::ParaId;
use hex_literal::hex;
use sc_chain_spec::{ChainSpecExtension, ChainSpecGroup};
use sc_service::ChainType;
+use sc_telemetry::TelemetryEndpoints;
use serde::{Deserialize, Serialize};
use sp_core::{crypto::UncheckedInto, Pair, Public};
use sp_runtime::traits::{Identify... | chore: default telemetry endpoint in chain spec | null | t3rn/t3rn | Apache License 2.0 | Rust |
@@ -134,6 +134,7 @@ class RenderReplaced extends RenderBoxModel
/// override it to layout box model paint.
@override
void paint(PaintingContext context, Offset offset) {
+ // In lazy rendering, only paint intersection observer for triggering intersection change callback.
if (_isInLazyRendering) {
paintIntersectionObser... | chore: add commit for lazy rendering | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -94,7 +94,7 @@ open class Container: UIBaseObject {
}
}
- open func addPlugin(_ plugin: UIContainerPlugin) {
+ private func addPlugin(_ plugin: UIContainerPlugin) {
plugins.append(plugin)
}
| chore: set addPlugin as private to conform with structure | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -150,7 +150,7 @@ export class ListDetailsPanelComponent implements OnChanges, OnInit {
public openNavigationMap(zoneBreakdownRow: ZoneBreakdownRow): void {
const data: { mapId: number, points: NavigationObjective[] } = {
mapId: zoneBreakdownRow.zoneId,
- points: zoneBreakdownRow.items
+ points: this.uniquify(zoneBre... | chore: hotfix for navigation map (uniquify missing on some calls) | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -51,8 +51,8 @@ public class BpmnActivityBehavior {
* the process instance. If multiple sequencer flow are selected, multiple,
* parallel paths of executions are created.
*/
- public void performDefaultOutgoingBehavior(ActivityExecution activityExceution) {
- performOutgoingBehavior(activityExceution, true, null);
+ ... | chore(engine): fix typo in method argument | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -17,6 +17,7 @@ const CasesCard = ({
confirmedCases,
national,
}) => {
+ const definitionFields = ['positive', 'positiveCasesViral', 'probableCases']
const sevenDayIncreasePercent = Math.round(sevenDayIncrease * 100 * 10) / 10
const drillDownValue = Number.isNaN(sevenDayIncreasePercent)
? 'N/A'
@@ -44,7 +45,7 @@ cons... | chore: Set all test fields in all test definitions | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -23,7 +23,7 @@ package types
import (
"encoding/json"
"github.com/flanksource/karina/pkg/api/calico"
- v1 "k8s.io/api/core/v1"
+ "k8s.io/api/core/v1"
)
// DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
| chore: Fix zz generated deepcopy | null | flanksource/karina | Apache License 2.0 | Go |
@@ -11,8 +11,8 @@ fi
echo "Publishing to Verdaccio @ $VERDACCIO"
cd ../packages/admin-ui-plugin && npm publish -reg $VERDACCIO &&\
-cd ../admin-ui && npm publish -reg $VERDACCIO &&\
-cd ../asset-server-plugin && npm publish -reg $VERDACCIO &&\
+cd ../admin-ui/library && npm publish -reg $VERDACCIO &&\
+cd ../../asset-s... | chore: Update local publish script | null | vendure-ecommerce/vendure | MIT License | Shell |
@@ -437,7 +437,7 @@ function test_playwright_electron_should_work {
copy_test_scripts
echo "Running sanity-electron.js"
- xvfb-run --auto-servernum -- bash -c "node sanity-electron.js"
+ node sanity-electron.js
echo "${FUNCNAME[0]} success"
}
@@ -556,13 +556,29 @@ function test_playwright_cli_codegen_should_work {
npm ... | chore: provisional installation test fix | null | microsoft/playwright | Apache License 2.0 | Shell |
@@ -2,6 +2,17 @@ import React, { Component } from "react";
import PropTypes from "prop-types";
import { withStyles } from "@material-ui/core/styles";
+/**
+ * @file Img component does a "Medium/Instagram" like progressive loading effect for images.
+ * To achieve this the component first renders an img element with a t... | chore: typos jsdocs | null | reactioncommerce/example-storefront | Apache License 2.0 | JavaScript |
@@ -89,10 +89,13 @@ func (s *ImmuServer) Logout(ctx context.Context, r *empty.Empty) (*empty.Empty,
func (s *ImmuServer) CreateUser(ctx context.Context, r *schema.CreateUserRequest) (*empty.Empty, error) {
s.Logger.Debugf("CreateUser")
+ if s.Options.GetMaintenance() {
+ return nil, ErrNotAllowedInMaintenanceMode
+ }
+... | chore(pkg/server): disable user mgmt operations in maintenance mode | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -81,7 +81,8 @@ export class FishingReporter implements DataReporter {
map(position => {
const spots = fishingSpots.filter(spot => spot.mapId === position.mapId);
return spots.sort((a, b) => {
- return Math.sqrt(Math.pow(a.coords.x - position.x, 2) + Math.pow(a.coords.y - position.y, 2));
+ return Math.sqrt(Math.pow(... | chore: small fix for spot detection | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -14,7 +14,7 @@ ssh-keyscan -H cdn.ffxivteamcraft.com >> ~/.ssh/known_hosts
rsync -avz ./dist/apps/client/* dalamud@cdn.ffxivteamcraft.com:~/cdn.ffxivteamcraft.com/${PACKAGE_VERSION}
-ssh dalamud@cdn.ffxivteamcraft.com << EOF
+ssh -4 -D 8081 dalamud@cdn.ffxivteamcraft.com << EOF
rm ./cdn.ffxivteamcraft.com/latest
ln ... | chore(ci): trying to fix circleci derping with ssh | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | Shell |
#!/usr/bin/env bash
+function dav1d_decoder_prebuilt() {
+ if [[ -n "${DAV1D_EXTERNAL_DIR}" ]];then
+ if [[ -d "${DAV1D_EXTERNAL_DIR}/$TARGET_PLATFORM/$TARGET_ARCH" ]];then
+ DAV1D_INSTALL_DIR="${DAV1D_EXTERNAL_DIR}/$TARGET_PLATFORM/$TARGET_ARCH"
+ else
+ DAV1D_INSTALL_DIR=
+ fi
+ fi
+
+ echo "DAV1D_INSTALL_DIR is $DAV... | chore(external): disable dav1 prebuilt | null | alibaba/cicadaplayer | MIT License | Shell |
@@ -252,7 +252,7 @@ impl<'a> TimelineEventHandler<'a> {
if self.meta.sender != item.sender() {
info!(
%event_id, original_sender = %item.sender(), edit_sender = %self.meta.sender,
- "Event tries to edit another user's timeline item, discarding"
+ "Edit event applies to another user's timeline item, discarding"
);
retur... | chore(sdk): Reword log messages | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -953,6 +953,7 @@ open class ProviderVerifier @JvmOverloads constructor (
context: Map<String, Any>
): VerificationResult {
val userConfig = context["userConfig"] as Map<String, Any?>? ?: emptyMap()
+ logger.debug { "Verifying interaction => $request" }
return when (val result = DefaultPluginManager.verifyInteraction... | chore: add debug statement to verifyInteractionViaPlugin | null | pact-foundation/pact-jvm | Apache License 2.0 | Kotlin |
@@ -100,8 +100,6 @@ else
echo "-- checking $FRIENDLY_CHECKOUT_PATH is clean - OK"
fi
-git fetch $REMOTE_BROWSER_UPSTREAM $BASE_BRANCH
-
PATCH_NAME=$(ls -1 $EXPORT_PATH/patches)
if [[ -z "$PATCH_NAME" ]]; then
PATCH_NAME="bootstrap.diff"
| chore: do not run git fetch in export.sh | null | microsoft/playwright | Apache License 2.0 | Shell |
@@ -6,10 +6,10 @@ source "$(dirname -- "${BASH_SOURCE[0]}")/../common.sh"
[ -z "$KUMA_DOCKER_REPO" ] && KUMA_DOCKER_REPO="docker.io"
[ -z "$KUMA_DOCKER_REPO_ORG" ] && KUMA_DOCKER_REPO_ORG=${KUMA_DOCKER_REPO}/kumahq
-[ -z "$KUMA_COMPONENTS" ] && KUMA_COMPONENTS=("kuma-cp" "kuma-dp" "kumactl" "kuma-init" "kuma-prometheus... | chore(*): add posibility to customize images on release | null | kumahq/kuma | Apache License 2.0 | Shell |
@@ -591,6 +591,7 @@ impl Binary {
}
/// Uninstall a version, or all versions, of a binary
+ #[allow(dead_code)]
pub async fn uninstall(&mut self, version: Option<String>) -> Result<()> {
let dir = self.dir(version, false)?;
if dir.exists() {
| chore(Binaries): Linting | null | stencila/stencila | Apache License 2.0 | Rust |
#!/usr/bin/env bash
+set -e -o pipefail
+
shopt -s nocasematch
semantic_pattern='^(Merge branch '\''.+'\'' into|(feat|fix|docs|style|refactor|perf|test|build|ci|chore|revert)(\([^)]+\))?: +[^ ])'
@@ -36,12 +38,8 @@ chore:foo
exit $exit_code
fi
-# nb: quotes are often not required around env var names between [[ and ]]
... | chore: improve semantic check | null | influxdata/influxdb_iox | Apache License 2.0 | Shell |
@@ -16,13 +16,17 @@ namespace PeanutButter.Utils
private static readonly ConditionalWeakTable<object, Dictionary<string, object>> _table =
new ConditionalWeakTable<object, Dictionary<string, object>>();
+#if BUILD_PEANUTBUTTER_INTERNAL
+#else
+ // This is only used for testing and is not designed for consumers
internal... | chore: internalize testing method | null | fluffynuts/peanutbutter | BSD 3-Clause New or Revised License | C# |
@@ -904,7 +904,7 @@ test('readonly constructor properties', () => {
expect(cast<Pilot>({name: 'Peter', age: '32'})).toEqual({name: 'Peter', age: 32});
});
-test('naming strategy', () => {
+test('naming strategy prefix', () => {
class MyNamingStrategy extends NamingStrategy {
constructor() {
super('my');
@@ -917,6 +917,... | chore(type): add test for camel case naming strategy | null | deepkit/deepkit-framework | MIT License | TypeScript |
@@ -56,6 +56,7 @@ module.exports = async function({ github, glob, workspace, publishedPackages })
const globber = await glob.create('pfe.min.*');
const files = await globber.glob();
+ // eslint-disable-next-line
console.log('creating tarball for', files);
await tar.c({ gzip: true, file: 'pfe.min.tgz' }, files);
| chore: debug release ci | null | patternfly/patternfly-elements | MIT License | JavaScript |
@@ -303,6 +303,8 @@ func (tx *OngoingTx) commit(waitForIndexing bool) (*TxHeader, error) {
return nil, ErrAlreadyClosed
}
+ tx.closed = true
+
if !tx.IsWriteOnly() {
err := tx.snap.Close()
if err != nil {
@@ -310,8 +312,6 @@ func (tx *OngoingTx) commit(waitForIndexing bool) (*TxHeader, error) {
}
}
- tx.closed = true
-... | chore(embedded/store): set tx as closed even on failed attempts | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -652,7 +652,9 @@ impl PlanParser {
match from.len() {
0 => self.plan_with_dummy_source(),
1 => self.plan_table_with_joins(&from[0]),
- _ => Result::Err(ErrorCode::SyntaxException("Cannot support JOIN clause")),
+ // Such as SELECT * FROM t1, t2;
+ // It's not `JOIN` clause.
+ _ => Result::Err(ErrorCode::SyntaxExcept... | chore: improve plan_tables_with_joins error | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -413,7 +413,11 @@ func (d *db) SQLQueryPrepared(stmt *sql.SelectStmt, namedParams []*schema.NamedP
res := &schema.SQLQueryResult{Columns: cols}
- for l := 0; l < MaxKeyScanLimit; l++ {
+ for l := 0; ; l++ {
+ if l == MaxKeyScanLimit {
+ return res, ErrMaxKeyScanLimitExceeded
+ }
+
row, err := r.Read()
if err == sql.... | chore(pkg/database): limit query len result | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -72,16 +72,16 @@ func (s *ImmuServer) Start() error {
s.Logger.Infof("\n%s\n%s\n\n", immudbTextLogo, s.Options)
}
dataDir := s.Options.Dir
- if err := s.loadDefaultDatabase(dataDir); err != nil {
+ if err = s.loadDefaultDatabase(dataDir); err != nil {
s.Logger.Errorf("Unable load default database %s", err)
return er... | chore(pkg/server): log uuid set and get error | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -47,9 +47,6 @@ export class LogTrackerComponent extends TrackerComponent {
}
public set dohSelectedPage(index: number) {
- if (index === 0) {
- debugger;
- }
this._dohSelectedPage = index;
this.selectedRecipes = [];
}
| chore: debugger cleanup | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -14,7 +14,7 @@ async def test_introspection___schema_resolver():
sch = await __schema_resolver(None, None, None, info)
assert sch == info.schema
- assert info.is_introspection
+ assert info.is_introspection is True
@pytest.mark.asyncio
| chore: Add `is True` to introspection | null | tartiflette/tartiflette | MIT License | Python |
@@ -111,8 +111,6 @@ public abstract class DmnModelTest {
String failMsg = "XML differs:\n" + diff.getDifferences() +
"\n\nActual XML:\n" + Dmn.convertToString(modelInstance);
fail(failMsg);
-
- fail("not similar: " + diff.toString());
}
}
| chore(tests): removal unnecessary fail invocation | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -13,6 +13,9 @@ public final class AlreadyPaidPaymentComponent: PaymentComponent {
/// :nodoc:
public let apiContext: APIContext
+ /// The Adyen context.
+ public let adyenContext: AdyenContext
+
/// :nodoc:
public let paymentMethod: PaymentMethod
@@ -21,8 +24,10 @@ public final class AlreadyPaidPaymentComponent: Pay... | chore: Inject AdyenContext in AlreadyPaidPaymentComponent | null | adyen/adyen-ios | MIT License | Swift |
@@ -7,7 +7,7 @@ package irma
import "github.com/timshannon/bolthold"
// Version of the IRMA command line and libraries
-const Version = "0.3.1"
+const Version = "0.4.0"
// go-atum requires a version of bolthold newer than the latest release v1.1, but go-atum does not
// use dep, so by default dep fetches v1.1 which bre... | chore: bump version number to v0.4.0 | null | privacybydesign/irmago | Apache License 2.0 | Go |
@@ -374,7 +374,6 @@ impl FuseTable {
base_timestamp: Option<DateTime<Utc>>,
snapshot_lites: Vec<TableSnapshotLite>,
) -> Result<RetentionPartition> {
- // let retention_interval = Duration::hours(DEFAULT_RETENTION_PERIOD_HOURS as i64);
let retention_interval = Duration::hours(ctx.get_settings().get_retention_period()? ... | chore: cleanup commented code (gc.rs) | null | datafuselabs/databend | Apache License 2.0 | Rust |
import Foundation
import UIKit
-/// :nodoc:
+/// An abstract class that needs to be subclassed to abstract away any component
+/// whoes form consists of a combination of personal information pieces like first name, last name, phone, email, and billing address.
open class AbstractPersonalInformationComponent: PaymentCo... | chore: Added some documentations to AbstractPersonalInformationComponent | null | adyen/adyen-ios | MIT License | Swift |
//
import Adyen
-import Foundation
+import UIKit
internal protocol BACSConfirmationViewProtocol: FormViewProtocol {
func setUserInteraction(enabled: Bool)
| chore: Import UIKit to fix SPM integration | null | adyen/adyen-ios | MIT License | Swift |
@@ -4,7 +4,7 @@ CUSTOM_COMMAND="${2:-yarn test}"
GATSBY_PATH="${CIRCLE_WORKING_DIRECTORY:-../../}"
# cypress docker does not support sudo and does not need it, but the default node executor does
-command -v sudo && sudo npm install -g gatsby-dev-cli || npm install -g gatsby-dev-cli &&
+command -v gatsby-dev || command ... | chore(e2e): Make e2e-test check for an installed version of gatsby-dev | null | gatsbyjs/gatsby | MIT License | Shell |
@@ -14,7 +14,7 @@ import stripAnsi = require('strip-ansi')
const log = rootLogger.child('e2e-testing')
-export function setupE2EContext(config: {
+export function setupE2EContext(config?: {
testProjectDir?: string
/**
* If enabled then:
@@ -24,7 +24,7 @@ export function setupE2EContext(config: {
*/
linkedPackageMode?: ... | chore: fix test type error | null | prisma-labs/graphql-framework-experiment | MIT License | TypeScript |
@@ -277,7 +277,6 @@ fn check_todo(path: &Path, text: &str) {
"tests/tidy.rs",
// Some of our assists generate `todo!()`.
"handlers/add_turbo_fish.rs",
- "handlers/add_type_ascription.rs",
"handlers/generate_function.rs",
// To support generating `todo!()` in assists, we have `expr_todo()` in
// `ast::make`.
| chore: remove deleted file path | null | rust-lang/rust-analyzer | Apache License 2.0 | Rust |
@@ -560,11 +560,11 @@ async function runCaptchaDeterrent(browser: Browser, store: Store, page: Page) {
export async function tryLookupAndLoop(browser: Browser, store: Store) {
if (!browser.isConnected()) {
- logger.debug(`[${store.name}] Ending this loop as browser is disposed...`);
+ logger.silly(`[${store.name}] Endi... | chore: move lookup loop logging to lower level | null | jef/streetmerchant | MIT License | TypeScript |
@@ -4,7 +4,7 @@ namespace DCL.Configuration
{
public static class ApplicationSettings
{
- public static string version = "0.7.1";
+ public static string version = "0.7.2";
}
public static class Environment
| chore: update build version to 0.7.2 | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -415,13 +415,8 @@ class SaintCoinachRedisCommand extends Command
$definition->name = DataHelper::getSimpleColumnName($definition->name);
$definition->name = DataHelper::getReplacedName($contentName, $definition->name);
- $debug = $contentName == "TerritoryType" && $contentId == 951;
-
// if definition is set, ignore... | chore: remove debug echo | null | xivapi/xivapi.com | MIT License | PHP |
-using System;
-
-namespace Microsoft.Playwright
-{
- /// <summary>
- /// Bounding box data.
- /// </summary>
- public class Rect : IEquatable<Rect>
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="Rect"/> class.
- /// </summary>
- public Rect()
- {
- }
-
- /// <summary>
- /// Initializes a new in... | chore: remove unused Rect class | null | microsoft/playwright-dotnet | MIT License | C# |
@@ -35,8 +35,8 @@ export class Wallet {
/**
Creates channels using the given parameters.
- * @param channelParameters
- * @returns
+ * @param channelParameters The parameters to use for channel creation. A channel will be created for each entry in the array.
+ * @returns A promise that resolves to a collection of Objec... | chore: more doc | null | statechannels/statechannels | MIT License | TypeScript |
@@ -3,8 +3,6 @@ import { make } from 'vuex-pathify'
import { subDays } from 'date-fns'
import bucket from '@/plugins/cosmicjs'
-console.log(subDays(Date.now(), 40).getTime())
-
const state = {
all: [],
}
| chore(notifications): remove dev code | null | vuetifyjs/vuetify | MIT License | JavaScript |
@@ -69,7 +69,7 @@ env | grep NPSC_ | sed -e 's/^[^=]*=//' -e 's/$/;/' > /tmp/pagespeed-suffix.txt
paste -d" " /tmp/pagespeed-prefix.txt /tmp/pagespeed-suffix.txt >> /etc/nginx/pagespeed.conf
-find /etc/nginx -name '*.conf' -print -exec cat '{}' \;
+[ ! -z "$DEBUG" ] && find /etc/nginx -name '*.conf' -print -exec cat '{... | chore: print nginx config files only if DEBUG is set | null | intershop/intershop-pwa | MIT License | Shell |
-#!/usr/bin/env python2.7
-
-# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
-# MIT License. See license.txt
-
-import os
-import frappe
-frappe.connect(site=os.environ.get("site"))
\ No newline at end of file
| chore: Drop dead code (pythonrc file) | null | frappe/frappe | MIT License | Python |
@@ -12,10 +12,6 @@ import logging
import os
import signal
-from grp import getgrgid
-from os import stat
-from pwd import getpwuid
-
from insights.components.virtualization import IsBareMetal
from insights.core.context import HostContext
from insights.core.dr import SkipComponent
@@ -42,14 +38,6 @@ from insights.specs.... | chore: remove the unused get_owner from specs.default | null | redhatinsights/insights-core | Apache License 2.0 | Python |
@@ -35,7 +35,6 @@ public abstract class AbstractEventAtomicOperation<T extends CoreExecution> impl
}
public void execute(T execution) {
- boolean shouldContinueListenerExecution = true;
CoreModelElement scope = getScope(execution);
List<DelegateListener<? extends BaseDelegateExecution>> listeners = getListeners(scope, ... | chore(engine): remove useless variable and alternative | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -170,14 +170,14 @@ function packet_iOS(){
xcrun bitcode_strip ${nobit_path}/alivcffmpeg.framework/alivcffmpeg -r -o ${nobit_path}/alivcffmpeg.framework/alivcffmpeg
#build app without SDK
- mv CicadaPlayerSDK.xcodeproj CicadaPlayerSDKBak.xcodeproj
- cd ${DEMO_SOURCE_DIR_IOS}/CicadaDemo
- sh packetIPA.sh
- cp ./build/... | chore(demo): disable build ipa in packet_iOS | null | alibaba/cicadaplayer | MIT License | Shell |
@@ -11,7 +11,11 @@ export class CustomLink extends DataModel {
return this.redirectTo.split('/')[0];
}
- getUrl(): string {
+ getUrl(): string {// If we're inside Electron, create a direct Teamcraft link.
+ if (navigator.userAgent.toLowerCase().indexOf('electron/') > -1) {
+ return `https://ffxivteamcraft.com/link/${en... | chore(desktop): custom link shared link was broken | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -39,7 +39,8 @@ Object.values(binaries).forEach(async b => {
const runtime = built.slice(0, baseSize);
const payload = built.slice(baseSize);
- fs.writeFileSync(b.out + "_runtime", runtime);
+ // UPX will reject files without the executable bit on linux. Also, default mode is 666
+ fs.writeFileSync(b.out + "_runtime"... | chore(build): Explicit executable permissions for upx | null | hypfer/valetudo | Apache License 2.0 | JavaScript |
import React, { Fragment } from 'react'
import { Link } from 'gatsby'
import { Byline } from './byline'
-import blogTeaserListStyles from './blog-teaser-list.module.scss'
export default ({ items }) => (
<>
{items.map(({ node }) => (
<Fragment key={`blog-${node.slug}`}>
- <h2 className={`hed-primary ${blogTeaserListStyl... | chore: Removed unused style | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -5,7 +5,7 @@ module.exports = {
category: 'Widget',
libraryName: 'instantsearch.js',
supportedVersion: '>= 4.21.0 < 5.0.0',
- templateName: 'instantsearch.js widget',
+ templateName: 'instantsearch.js-widget',
appName: 'instantsearch.js-app',
keywords: ['algolia', 'InstantSearch', 'Vanilla', 'instantsearch.js', 'wid... | chore: update `templateName` for js widget template | null | algolia/instantsearch.js | MIT License | JavaScript |
@@ -142,6 +142,16 @@ def exception_to_code_error(e: Exception) -> CodeError:
return CodeError(type(e).__name__, message=str(e))
+def set_code_error(code: typing.Union[CodeChunk, CodeExpression], e: typing.Union[Exception, CodeError]) -> None:
+ if code.errors is None:
+ code.errors = []
+
+ if isinstance(e, Exception):... | chore: Made code error setting code more DRY | null | stencila/stencila | Apache License 2.0 | Python |
@@ -72,4 +72,28 @@ class BACSDirectDebitItemsFactoryTests: XCTestCase {
let identifier = try XCTUnwrap(bankAccountItem.identifier)
XCTAssertEqual(expectedIdentifier, identifier)
}
+
+ func testCreateSortCodeItemShouldReturnItemWithCorrectProperties() throws {
+ // Given
+ let expectedTitle = "Sort code"
+ let expectedP... | chore: Test createSortCodeItem method | null | adyen/adyen-ios | MIT License | Swift |
+defmodule Logflare.LogEventTest do
+ @moduledoc false
+ use Logflare.DataCase
+ alias Logflare.{LogEvent}
+
+ setup do
+ user = insert(:user)
+ source = insert(:source, user_id: user.id)
+ [source: source, user: user]
+ end
+
+ @valid_params %{"message" => "something", "metadata"=> %{"my"=> "key"}}
+ test "make/2 from... | chore: add log event testing | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -189,7 +189,7 @@ public class DefaultPathwayContext implements PathwayContext {
try {
if (started) {
return "PathwayContext[ Hash "
- + toUnsignedString(hash)
+ + Long.toUnsignedString(hash)
+ ", Start: "
+ pathwayStartNanos
+ ", StartTicks: "
@@ -207,18 +207,6 @@ public class DefaultPathwayContext implements Pathwa... | chore: Use Java 8 Long.toUnsignedString | null | datadog/dd-trace-java | Apache License 2.0 | Java |
import { VERSION } from "../version.ts";
import * as semver from "../semver/mod.ts";
import * as colors from "../fmt/colors.ts";
-import { doc } from "https://deno.land/x/deno_doc@0.46.0/mod.ts";
+import { doc } from "https://deno.land/x/deno_doc@0.48.0/mod.ts";
import { walk } from "../fs/walk.ts";
const EXTENSIONS = ... | chore(_tools): upgrade `deno_doc` to 0.48.0 for deprecation check | null | denoland/deno_std | MIT License | TypeScript |
@@ -325,21 +325,17 @@ class LabelingTask(object):
Number of prefetching background generators. Defaults to 1.
Each generator will prefetch enough batches to cover a whole epoch.
Set `parallel` to 0 to not use background generators.
- exhaustive : bool, optional
- Ensure training files are covered exhaustively (useful i... | chore: remove "exhaustive" attribute from LabelingTask | null | pyannote/pyannote-audio | MIT License | Python |
@@ -2,7 +2,6 @@ package cmd
import (
"fmt"
- "github.com/loft-sh/devspace/pkg/devspace/imageselector"
"io/ioutil"
"net/http"
"os"
@@ -11,6 +10,8 @@ import (
"strconv"
"strings"
+ "github.com/loft-sh/devspace/pkg/devspace/imageselector"
+
"github.com/loft-sh/devspace/pkg/devspace/compose"
"github.com/loft-sh/devspace/pk... | chore: Added comment for `excludePaths` following `.gitignore` format | null | loft-sh/devspace | Apache License 2.0 | Go |
@@ -59,17 +59,19 @@ open class FormTextItem: FormValueItem<String, FormTextItemStyle>, ValidatableFo
// MARK: - Private
private func publishTransformed(value: String) {
- formattedValue = textDidChange(value: value)
+ textDidChange(value: value)
}
/// :nodoc:
+ @discardableResult
internal func textDidChange(value: Stri... | chore: Change implementation to support reset | null | adyen/adyen-ios | MIT License | Swift |
@@ -293,7 +293,7 @@ func (cfg *Config) ParseFlags(args []string) error {
app.Flag("skipper-routegroup-groupversion", "The resource version for skipper routegroup").Default(source.DefaultRoutegroupVersion).StringVar(&cfg.SkipperRouteGroupVersion)
// Flags related to processing sources
- app.Flag("source", "The resource ... | chore: add skipper routegroups to source flag documentation | null | kubernetes-sigs/external-dns | Apache License 2.0 | Go |
@@ -7,7 +7,11 @@ ssh-add .travis/id_ed25519 &&
git clone $DEPLOY_SERVER-deploy
cd gxi.cogitri.dev-deploy
cp -r ../target/doc/* . &&
+if [ -n "$(git status --porcelain)" ]; then
git remote add deploy $DEPLOY_SERVER-deploy &&
git add . &&
git commit -av -m "Automated docs deploy" &&
git push deploy -f
+else
+ exit 0
+fi
| chore(ci): don't fail deploy if there are no changes to docs | null | cogitri/tau | MIT License | Shell |
@@ -5,22 +5,20 @@ if [[ -z "${CREDENTIALS}" ]]; then
CREDENTIALS=${KOKORO_KEYSTORE_DIR}/73713_docuploader_service_account
fi
-# Get into the spring-cloud-gcp repo directory
+## Get into the spring-cloud-gcp repo directory
dir=$(dirname "$0")
pushd $dir/../
# Compute the project version.
-PROJECT_VERSION=$(mvn help:eval... | chore: javadoc job troubleshooting | null | googlecloudplatform/spring-cloud-gcp | Apache License 2.0 | Shell |
@@ -360,8 +360,9 @@ public abstract class ProcessEngineConfiguration {
* If the value of this flag is set to <code>true</code>,
* READ_INSTANCE_VARIABLE,
* READ_HISTORY_VARIABLE, or
- * READ_TASK_VARIABLE
- * will be required to fetch variables in case the autorizations are enabled.
+ * READ_TASK_VARIABLE on Process De... | chore(engine): adjust java doc of enforceSpecificVariablePermission | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -9,6 +9,7 @@ docker_hub_auth() {
[[ $TRAVIS_BRANCH == "staging" ]] || \
[[ $GITHUB_REF == "refs/heads/staging" ]] || \
[[ $GITHUB_EVENT_NAME == "release" ]] || \
+ [[ $GITHUB_REF == "refs/pull/753/merge" ]] || \
[[ ! -z $TRAVIS_TAG ]]; then
docker login -p=$DOCKER_HUB_PASSWD -u=$DOCKER_HUB_USERNM
| chore(CI): docker login on branch Github Actions | null | hikaya-io/activity | Apache License 2.0 | Shell |
@@ -52,12 +52,12 @@ extension CardViewController {
internal lazy var billingAddressItem: FormAddressItem = {
let identifier = ViewIdentifierBuilder.build(scopeInstance: scope, postfix: "billingAddress")
-// let initialCountry = shopperInformation?.billingAddress?.country ?? defaultCountryCode
+ let initialCountry = sho... | chore: set prefilled country | null | adyen/adyen-ios | MIT License | Swift |
@@ -1160,7 +1160,7 @@ def _run_argo_lint(yaml_text: str):
import subprocess
argo_path = shutil.which('argo')
if argo_path:
- result = subprocess.run([argo_path, '--offline=true', 'lint', '/dev/stdin'], input=yaml_text.encode('utf-8'), stdout=subprocess.PIPE, stderr=subprocess.PIPE)
+ result = subprocess.run([argo_path,... | chore(sdk): Argo lint requires '--kinds=workflows' argument for offline linting | null | kubeflow/pipelines | Apache License 2.0 | Python |
@@ -33,7 +33,7 @@ import io.pact.plugins.jvm.core.CatalogueManager
import io.pact.plugins.jvm.core.ContentMatcher
import io.pact.plugins.jvm.core.DefaultPluginManager
import io.pact.plugins.jvm.core.PactPlugin
-import io.pact.plugins.jvm.core.PactPluginEntryFoundException
+import io.pact.plugins.jvm.core.PactPluginEntr... | chore: fix incorrect exception name | null | pact-foundation/pact-jvm | Apache License 2.0 | Kotlin |
@@ -33,7 +33,7 @@ public class TopicSubscriptionManagerLogger extends ExternalTaskClientLogger {
"001", "Exception while fetch and lock task.", e);
}
- protected void exceptionWhileExecutingExternalTaskHandler(String topicName, Throwable e) {
+ public void exceptionWhileExecutingExternalTaskHandler(String topicName, Th... | chore(client): make logger methods more accessible | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -33,7 +33,6 @@ class WebParser {
}
async init() {
- console.log('INIT', this.operations, this.context, this.operators);
if (!type.isObject(this.context.lowdefy)) {
throw new Error('context.lowdefy must be an object.');
}
| chore: Cleanup file | null | lowdefy/lowdefy | Apache License 2.0 | JavaScript |
@@ -15,6 +15,9 @@ public protocol PaymentMethodAware: AnyObject {
/// A component that handles the initial phase of getting payment details to initiate a payment.
public protocol PaymentComponent: PaymentAwareComponent, PaymentMethodAware {
+ /// The Adyen context
+ var adyenContext: AdyenContext { get }
+
/// The dele... | chore: Add adyenContext as requirement to PaymentComponent protocol | null | adyen/adyen-ios | MIT License | Swift |
@@ -197,7 +197,9 @@ impl PipelineExecutor {
fn init(self: &Arc<Self>) -> Result<()> {
unsafe {
// TODO: the on init callback cannot be killed.
- (self.on_init_callback)()?;
+ if let Err(cause) = (self.on_init_callback)() {
+ return Err(cause.add_message_back("(while in query pipeline init)"));
+ }
let mut init_schedule... | chore(ci): add error shuffix for pipeline on init | null | datafuselabs/databend | Apache License 2.0 | Rust |
+// Automatically generated by MockGen. DO NOT EDIT!
+// Source: pkg/catalog/types.go
+
+package catalog
+
+import (
+ v1alpha1 "github.com/coreos-inc/alm/pkg/apis/clusterserviceversion/v1alpha1"
+ gomock "github.com/golang/mock/gomock"
+ v1beta1 "k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1"
+)
+
+// ... | chore(operators/catalog): generate mock catalog | null | operator-framework/operator-lifecycle-manager | Apache License 2.0 | Go |
#!/usr/bin/env bash
-osascript -e 'launch application "Simulator"'
-
# Simulators used in the test suite:
-xcrun simctl boot "iPhone 8"
+xcrun simctl boot "iPhone 8"; true
# If appending to this list, add to uninstall_ios_app.sh as well
| chore(maze): Run simulators in headless mode | null | bugsnag/bugsnag-cocoa | MIT License | Shell |
@@ -131,7 +131,7 @@ func (c *ImmuClient) connectWithRetry() (err error) {
for i := 0; i < c.Options.DialRetries+1; i++ {
if c.clientConn, err = grpc.Dial(c.Options.Bind(), grpc.WithInsecure()); err == nil {
c.serviceClient = schema.NewImmuServiceClient(c.clientConn)
- c.Logger.Debugf("connected %v", c.Options)
+ c.Logg... | chore: client connection wording | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -9,16 +9,6 @@ use PHPUnit_Framework_TestCase as TestCase;
abstract class AbstractTestCase extends TestCase
{
- /**
- * {@inheritdoc}
- */
- public function tearDown()
- {
- Mockery::close();
-
- parent::tearDown();
- }
-
/**
* {@inheritdoc}
*/
@@ -28,9 +18,19 @@ abstract class AbstractTestCase extends TestCase
->and... | chore(AbstractTestCase): change the method order + update setUp() method | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -31,7 +31,7 @@ const DataLongTermCareLinks = () => (
Download the current outbreak dataset
</CtaAnchorLink>
<CtaAnchorLink
- href="https://docs.google.com/spreadsheets/d/e/2PACX-1vRa9HnmEl83YXHfbgSPpt0fJe4SyuYLc0GuBAglF4yMYaoKSPRCyXASaWXMrTu1WEYp1oeJZIYHpj7t/pub?gid=336757465&single=true&output=csv"
+ href="https://... | chore: Change link to download state notes | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -4,7 +4,7 @@ set -eo pipefail
cd `dirname $BASH_SOURCE`/..
-LAMBDA_DOCS_PAGE_PATH=../../../../docs/src/pages/ecosystem/aws-lambda-native-tracing/nodejs/index.md
+LAMBDA_DOCS_PAGE_PATH=../../../../docs/src/pages/ecosystem/aws-lambda/nodejs/index.md
UI_INSTALL_HELP=../../../../ui-client/packages/in-waiting-for-deploym... | chore(lambda): fix path to docs | null | instana/nodejs-sensor | MIT License | Shell |
set -e
-echo "Using $(go version)"
-read -rp "Continue? (y/n) " ok
-if [ "$ok" != "y" ] && [ "$ok" != "Y" ] && [ "$ok" != "yes" ]; then
- echo "Exiting"
- exit 1
-fi
-
# make sure docker daemon is running
docker ps > /dev/null 2>&1
if [ $? -ne 0 ]; then
@@ -32,6 +25,13 @@ if [ "$GIT_BRANCH" != "master" ]; then
exit 1
f... | chore: check go version after automated checks | null | dopplerhq/cli | Apache License 2.0 | Shell |
@@ -559,8 +559,13 @@ public class UserServiceCEImpl extends BaseService<UserRepository, User, String>
public Mono<User> sendWelcomeEmail(User user, String originHeader) {
Map<String, String> params = new HashMap<>();
params.put("primaryLinkUrl", originHeader);
- Mono<User> emailMono = emailSender
- .sendMail(user.getEm... | chore: Fix potential race condition in sending email | null | appsmithorg/appsmith | Apache License 2.0 | Java |
@@ -91,7 +91,7 @@ if [ "$TRAVIS_BRANCH" == "$TRAVIS_LATEST_RELEASE_WEBSITE_BRANCH" ]; then
cp -Rf $TRAVIS_BUILD_DIR/packages/playground/dist/* gh-pages/master
# put the commit id as version
- echo "$(git log -1 HEAD)" > gh-pages/version.txt
+ echo "$(git log -1 HEAD)" > gh-pages/master/version.txt
echo "After update ma... | chore: add commit info for docs of master branch | null | sap/ui5-webcomponents | Apache License 2.0 | Shell |
@@ -111,10 +111,12 @@ class FeatureStore:
"""
A FeatureStore object is used to define, create, and retrieve features.
- Args:
- repo_path (optional): Path to a `feature_store.yaml` used to configure the
- feature store.
- config (optional): Configuration object used to configure the feature store.
+ Attributes:
+ confi... | chore: Update feature store docstrings | null | feast-dev/feast | Apache License 2.0 | Python |
@@ -17,9 +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 $XCODE_AUTH... | chore: add paranthesis for vars on xcodebuild | null | adyen/adyen-ios | MIT License | Shell |
@@ -17,7 +17,7 @@ echo "Doing a release..."
LOG=$(git log --format="%s" -1 | grep -Poe "#\d+")
PR_NUM=${LOG:1}
-yarn run lerna publish --conventional-commits --create-release=github --no-verify-access --yes 2>&1 | tee lerna-output.txt
+yarn run lerna publish --conventional-commits --create-release=github --include-merg... | chore: release script stop assuming all packages changed | null | patternfly/patternfly-react | MIT License | Shell |
@@ -96,7 +96,7 @@ class Bookmark(commands.Cog):
"""Send the author a link to `target_message` via DMs."""
if not target_message:
if not ctx.message.reference:
- raise commands.UserInputError("You must either provide a message to bookmark, or reply to one.")
+ raise commands.UserInputError("You must either provide a val... | chore: add 'valid' wording | null | python-discord/sir-lancebot | MIT License | Python |
@@ -196,7 +196,7 @@ class="w-full relative">
x-on:blur="emitInput"
>
<x-slot name="append">
- <div class="absolute inset-y-0 right-3 z-10 flex items-center justify-center">
+ <div class="absolute inset-y-0 right-3 z-5 flex items-center justify-center">
<div class="flex items-center gap-x-2 my-auto">
<x-icon class="curs... | chore: fix open picker icon z-index | null | wireui/wireui | MIT License | PHP |
@@ -115,14 +115,11 @@ async def api_search_players(
db_conn: databases.core.Connection = Depends(acquire_db_conn),
):
"""Search for users on the server by name."""
-
- # execute the query using the database connection
rows = await db_conn.fetch_all(
"SELECT id, name FROM users WHERE name LIKE :search AND priv & 3 = 3 O... | chore: remove self-explanatory comments | null | osuakatsuki/bancho.py | MIT License | Python |
use std::collections::{HashSet, HashMap};
-
use serde_derive::{Serialize, Deserialize};
#[derive(Debug, Copy, Clone, PartialEq, Eq, Serialize, Deserialize)]
+#[serde(rename_all = "lowercase")]
pub enum RankingOrdering {
Asc,
Dsc
| chore: Use serde derive lowercase on RankingOrdering | null | meilisearch/meilisearch | MIT License | Rust |
@@ -92,6 +92,7 @@ class CreateAdminUserCommand extends Command
{
if (!filter_var($email, FILTER_VALIDATE_EMAIL)) {
$this->io->error('Email address is not valid. Please, enter a valid address');
+
return false;
}
| chore: add blank line and remove space | null | sylius/sylius | MIT License | PHP |
@@ -24,8 +24,8 @@ fi
if [ "$(uname -m)" == "x86_64" ]; then
MACHINE="x86_64"
-elif [ "$(uname)" == "aarch64" ]; then
- MACHINE="aarch64"
+elif [ "$(uname -m)" == "aarch64" ]; then
+ MACHINE="arm64"
elif [ "$(uname -m)" == "armv7l" ]; then
MACHINE="armv7"
else
| chore: Update install.sh | null | newrelic/newrelic-cli | Apache License 2.0 | Shell |
@@ -5,23 +5,20 @@ import (
v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
)
+var specs = []string{"canary-checker.yaml", "canary-checker-monitoring.yaml.raw"}
+
// Deploy deploys the canary-checker into the monitoring namespace
func Deploy(p *platform.Platform) error {
if p.CanaryChecker == nil || p.CanaryChecker.Disabled {... | chore: rename canary-checker-alerts.yaml.raw | null | flanksource/karina | Apache License 2.0 | Go |
@@ -4,8 +4,8 @@ import { allChains, configureChains, createClient, CreateClientConfig } from 'wa
import { CoinbaseWalletConnector } from 'wagmi/connectors/coinbaseWallet'
import { InjectedConnector } from 'wagmi/connectors/injected'
import { WalletConnectConnector } from 'wagmi/connectors/walletConnect'
+import { alche... | chore(packages/wagmi): shimDisconnect, explicit autoconnect false & add alchemy provider | null | sushiswap/sushiswap | MIT License | TypeScript |
@@ -38,8 +38,6 @@ import java.io.Writer;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.util.Date;
-import java.util.List;
-import java.util.stream.Collectors;
import lombok.extern.slf4j.Slf4j;
@@ -49,7 +47,6 @@ import org.hisp.dhis.common.IdSchemes;
import org.hisp.dhis.commons.util.TextUtils;
im... | chore: remove unused code | null | dhis2/dhis2-core | BSD 3-Clause New or Revised License | Java |
@@ -126,10 +126,11 @@ class BoletoComponentTests: XCTestCase {
waitForExpectations(timeout: 10, handler: nil)
}
- func testFullPrefilledInfo() {
+ func testFullPrefilledInfo() throws {
+ // Given
let dummyExpectation = expectation(description: "Dummy Expectation")
-
let prefilledInformation = dummyFullPrefilledInformat... | chore: Update Boleto profiling test | null | adyen/adyen-ios | MIT License | Swift |
@@ -53,8 +53,8 @@ internal final class WrapperViewController: UIViewController {
private func setupChildViewController() {
addChild(child)
- child.didMove(toParent: self)
view.addSubview(child.view)
+ child.didMove(toParent: self)
setupChildLayout()
}
| chore: Add child view as subview before moving to parent controller | null | adyen/adyen-ios | MIT License | Swift |
@@ -958,7 +958,7 @@ export class Renderer implements IRenderer {
operation.dispose();
}
- public [TargetedInstructionType.hydrateTemplateController](renderable: IRenderable, target: any, instruction: Immutable<IHydrateTemplateController>, encapsulationSource?: IEncapsulationSource, parts?: TemplatePartDefinitions): voi... | chore(lifecycle-render): remove leftover encapsulationSource param | null | aurelia/aurelia | MIT License | TypeScript |
@@ -394,7 +394,7 @@ public abstract class NodeUpdater implements FallibleCommand {
final String WORKBOX_VERSION = "6.4.2";
if (featureFlags.isEnabled(FeatureFlags.VITE)) {
- defaults.put("vite", "v2.8.0");
+ defaults.put("vite", "v2.8.2");
defaults.put("rollup-plugin-brotli", "3.1.0");
defaults.put("vite-plugin-checker... | chore: Upgrade to Vite 2.8.2 | null | vaadin/flow | Apache License 2.0 | Java |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.