diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -236,7 +236,7 @@ public class InstrumentedScheduledExecutorServiceTest {
TimeUnit.MILLISECONDS.sleep(100); // Give some time for the task to be run
countDownLatch.await(5, TimeUnit.SECONDS); // Don't cancel until it didn't complete once
theFuture.cancel(true);
- TimeUnit.MILLISECONDS.sleep(100); // Wait while the ta... | chore: Increase waiting timeout after cancellation in the executor tests | null | dropwizard/metrics | Apache License 2.0 | Java |
@@ -14,26 +14,30 @@ export type BuildOptions = esbuild.BuildOptions & {
outbase?: never // we don't support this
}
+const DEFAULT_BUILD_OPTIONS = {
+ platform: 'node' as esbuild.Platform,
+ target: 'es2018',
+ keepNames: true,
+ tsconfig: process.env.WATCH
+ ? path.join(__dirname, '..', '..', 'tsconfig.watch.json')
+ :... | chore(build): extract common esbuild config | null | prisma/prisma | Apache License 2.0 | TypeScript |
@@ -88,7 +88,7 @@ public class ConcurrentHistoryCleanupUpdateOfFailingJobTest extends ConcurrencyT
threadOne.waitUntilDone(); // let t1 commit, unblocking t2
- threadTwo.waitUntilDone(); // continue with t2, expected to roll back
+ threadTwo.waitUntilDone(true); // continue with t2, expected to roll back
// then
assert... | chore(test): ensure execution order of threads in concurrency test | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -704,7 +704,7 @@ class Runtime extends Encoder
try {
$r = call_user_func_array($cx['helpers'][$ch], $args);
- } catch (\Exception $E) {
+ } catch (\Throwable $E) {
static::err($cx, "Runtime: call custom helper '$ch' error: " . $E->getMessage());
}
| chore: fix for php8 | null | zordius/lightncandy | MIT License | PHP |
@@ -302,17 +302,19 @@ pub fn mem_info() -> Option<MemInfo> {
}
pub fn os_uptime() -> u64 {
- let mut uptime: u64 = 0;
+ let uptime: u64;
#[cfg(target_os = "linux")]
{
let mut info = std::mem::MaybeUninit::uninit();
// SAFETY: `info` is a valid pointer to a `libc::sysinfo` struct.
let res = unsafe { libc::sysinfo(info.a... | chore: resolve clippy errors in windows build | null | denoland/deno | MIT License | Rust |
@@ -22,6 +22,7 @@ import org.gluu.oxauth.service.common.UserService;
import org.gluu.oxauth.util.ServerUtil;
import org.gluu.oxauth.util.TokenHashUtil;
import org.gluu.service.CacheService;
+import org.gluu.util.StringHelper;
import org.slf4j.Logger;
import javax.enterprise.context.Dependent;
@@ -246,7 +247,11 @@ publi... | chore: don't log dummy message "Getting user information from LDAP: | null | gluufederation/oxauth | MIT License | Java |
@@ -15,6 +15,7 @@ import (
// nolint: maligned
type InstallStatus struct {
+ InstallID string `json:"installId"`
Complete bool `json:"complete"`
DiscoveryManifest types.DiscoveryManifest `json:"discoveryManifest"`
EntityGUIDs []string `json:"entityGuids"`
@@ -115,6 +116,7 @@ type StatusError struct {
func NewInstallSta... | chore(install): adding installId for event status | null | newrelic/newrelic-cli | Apache License 2.0 | Go |
@@ -6,11 +6,13 @@ import (
"path/filepath"
"strings"
+ "github.com/infracost/infracost/internal/apiclient"
"github.com/infracost/infracost/internal/config"
"github.com/infracost/infracost/internal/output"
"github.com/infracost/infracost/internal/ui"
"github.com/mitchellh/go-homedir"
"github.com/pkg/errors"
+ log "githu... | chore: add output event | null | infracost/infracost | Apache License 2.0 | Go |
@@ -3,3 +3,9 @@ set -e
echo "Removing stale node_modules"
npm run lerna exec --loglevel info -- npm prune
+
+echo "Starting XVFB"
+
+export DISPLAY=:99.0
+sh -e /etc/init.d/xvfb start
+sleep 3 # give xvfb some time to start
\ No newline at end of file
| chore(ci): added XVFB as apparently "headless" chrome needs it | null | serenity-js/serenity-js | Apache License 2.0 | Shell |
@@ -4,6 +4,10 @@ defmodule Ash do

+ ## ALPHA NOTICE
+
+ Ash is in alpha. The package version is 1.0.0+, and most of the time that means stable, but in this case it _does not_. The 2.0 release will be the stable release.
+
## Q... | chore: add notice to docs | null | ash-project/ash | MIT License | Elixir |
import React from "react";
-import kofi from "kofi";
+import {classNames} from "@siimple/styled";
const items = [
{
@@ -23,18 +23,18 @@ const items = [
// Navigation link
const NavLink = props => (
<a href={props.href} target={props.target} className="navlink is-flex has-items-center has-bg-gray-100-hover">
- {kofi.whe... | chore: improve website header | null | siimple/siimple | MIT License | JavaScript |
@@ -18,7 +18,7 @@ use iox_catalog::interface::{Catalog, Transaction};
use iox_object_store::ParquetFilePath;
use metric::{Attributes, Metric, U64Counter, U64Gauge, U64Histogram, U64HistogramOptions};
use object_store::DynObjectStore;
-use observability_deps::tracing::warn;
+use observability_deps::tracing::{info, warn}... | chore: add compactor logging | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -11,34 +11,43 @@ export default ({ pageContext, path, data }) => {
const history = []
data.aggregate.nodes.forEach(item => {
- let staffCases = 0
- let staffDeaths = 0
- let residentCases = 0
- let residentDeaths = 0
+ const getValue = field => {
+ let value = null
Object.keys(item).forEach(key => {
- if (key.search... | chore: Update history table to match summary table | null | covid19tracking/website | Apache License 2.0 | JavaScript |
/*
Package pkger implements a means to create and consume reusable
templates for what will eventually come to support all influxdb
-resources. As of writing this we have support for creating buckets,
-dashboards, labels, and variables. All the resources can be cloned
-to create a new pkg from existing resources as well... | chore(pkger): update doc.go | null | influxdata/influxdb | MIT License | Go |
@@ -85,6 +85,8 @@ function buildDemo(filePath: string) {
const relativePathFromComponents = relative(dirname(DEMOS_SRC_ROOT), componentDir);
const distTestRoot = join(process.cwd(), 'dist', 'demos', relativePathFromComponents);
+ const coreCompilerFilePath = join(PROJECT_ROOT, '..', 'ionic-core', 'dist', 'compiler');
+... | chore(gulp): update demos task to call app-scripts correctly | null | ionic-team/ionic-framework | MIT License | TypeScript |
@@ -463,12 +463,12 @@ class InputElement extends Element implements TextInputClient, TickerProvider {
@override
void focus() {
if (ownerDocument.focusedElement != this) {
+ // Blur current focused element.
ownerDocument.focusedElement?.blur();
// Focus kraken widget to get focus from other widgets.
WidgetDelegate? widg... | chore: make it better | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -55,6 +55,7 @@ function generatePage(output, page) {
} catch (error) {
console.error("Template Rendering Error");
console.log("Template content", content);
+ throw error;
}
})
| chore: add error log | null | honkit/honkit | Apache License 2.0 | JavaScript |
@@ -56,9 +56,9 @@ public class DoubleTapPlugin: UICorePlugin {
guard let activePlayback = core?.activePlayback,
let coreViewWidth = core?.view.frame.width else { return }
- let tapIsOnTheLeftSide = xPosition < coreViewWidth / 2
+ let didTapLeftSide = xPosition < coreViewWidth / 2
impactFeedback()
- if (tapIsOnTheLeftSi... | chore: rename tapIsOnTheLeftSide and remove parenthesis | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -6,7 +6,7 @@ export const getExample = (): string => {
return (
new URL(window.location.href).searchParams.get(keys.EXAMPLE) ??
sessionStorage.getItem(keys.EXAMPLE) ??
- examples.articleReadme
+ examples.articleKitchenSink
)
}
| chore(Theme Editor): Make articleKitchenSink the default preview content | null | stencila/stencila | Apache License 2.0 | TypeScript |
+/*
+Copyright 2020 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 applicable law or agreed to in wr... | chore: Add test to internal ingress resolver pkg | null | kubernetes/ingress-nginx | Apache License 2.0 | Go |
@@ -81,6 +81,7 @@ defmodule Ockam.Hub do
bucket: Application.get_env(:telemetry_influxdb, :bucket) || "ockam_hub",
org: Application.get_env(:telemetry_influxdb, :org) || "ockam",
token: Application.get_env(:telemetry_influxdb, :token) || "TOKEN NOT CONFIGURED",
+ tags: %{hostname: System.get_env("HOSTNAME", "none")},
e... | chore(elixir): add hostname tag to influxdb metrics on hub | null | ockam-network/ockam | Apache License 2.0 | Elixir |
@@ -64,15 +64,6 @@ async fn referential_integrity_prisma(api: &TestApi) -> TestResult {
id Int @id @default(autoincrement())
foo Foo?
}
-
- model bar_table {
- id Int @id @default(autoincrement())
- }
-
- model foo_table {
- id Int @id @default(autoincrement())
- bar_id Int @unique
- }
"#]];
let result = api.re_introsp... | chore: update sqlite test snapshots | null | prisma/prisma-engines | Apache License 2.0 | Rust |
@@ -29,8 +29,8 @@ mod capabilities;
mod codec;
mod lifetime;
-pub use self::lifetime::Lifetime;
pub use capabilities::*;
+pub use lifetime::Lifetime;
/// This struct implements the MLS leaf node.
///
| chore: Remove unnecessary `self::` | null | openmls/openmls | MIT License | Rust |
@@ -197,8 +197,8 @@ NEW_VERSION=""
if [[ -n "${VERSION_ARG}" ]]; then
NEW_VERSION="${VERSION_ARG}"
else
- # No new version specified; compute the new version number
- NEW_VERSION="$(perl -pe 's/(\d+).(\d+).(\d+)/"$1.${\($2+1)}.$3"/e' <<<"${CUR_VERSION}")"
+ # Compute the new version by incrementing the minor number.
+ ... | chore: simplify release.sh version increment | null | googleapis/google-cloud-cpp | Apache License 2.0 | Shell |
@@ -73,13 +73,13 @@ const AddressHashCardPanel = styled.div`
const handleHashText = (hash: string) => {
if (isSmallMobile()) {
- return startEndEllipsis(hash, 7, 10)
+ return startEndEllipsis(hash, 8, 10)
}
if (isMediumMobile()) {
- return startEndEllipsis(hash, 8)
+ return startEndEllipsis(hash, 9)
}
if (isLargeMobile... | chore: Update address hash text | null | nervosnetwork/ckb-explorer-frontend | MIT License | TypeScript |
@@ -402,15 +402,9 @@ where
/// get a unique hardware address for device
pub fn get_bd_addr() -> bluetooth_hci::BdAddr {
let sn: [u8; 16] = atsame54_xpro::serial_number();
- let bytes: [u8; 6] = [
- sn[0] ^ sn[3] ^ sn[6] ^ sn[9] ^ sn[12] ^ sn[15],
- sn[1] ^ sn[4] ^ sn[7] ^ sn[10] ^ sn[13],
- sn[2] ^ sn[5] ^ sn[8] ^ sn[1... | chore(rust): use a 24 bit fletcher checksum to generate device bluetooth address | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -222,7 +222,10 @@ describe('the view locator', function () {
});
[
- 'created',
+ 'beforeCompile',
+ 'create',
+ 'afterCompile',
+ 'afterCompileChildren',
'beforeBind',
'afterBind',
'beforeAttach',
| chore(test): fixup lifecycle hook tests for view locator | null | aurelia/aurelia | MIT License | TypeScript |
@@ -19,21 +19,20 @@ limitations under the License.
import { FC } from 'react'
import styled from 'styled-components'
import * as React from 'react'
+import { Field } from '@tinacms/forms'
export interface ToggleProps {
name: string
input: any
- field: ToggleFieldProps
+ field: ToggleFieldDefinition
disabled?: boolean
o... | chore(@tinacms/fields): refactor toggle field interface | null | tinacms/tinacms | Apache License 2.0 | TypeScript |
@@ -215,9 +215,9 @@ function buildTextCandidates(injectedScript: InjectedScript, element: Element, i
if (ariaRole) {
const ariaName = getElementAccessibleName(element, false, accessibleNameCache);
if (ariaName)
- candidate.push({ engine: 'role', selector: `${ariaRole}[name=${escapeForAttributeSelector(ariaName, true)}]... | chore: do not generate role= selector, use internal | null | microsoft/playwright | Apache License 2.0 | TypeScript |
@@ -1353,10 +1353,7 @@ mod get_vaults_with_issuable_tokens_tests {
// update the exchange rate
ext::oracle::backing_to_issuing::<Test>.mock_safe(move |x| MockResult::Return(Ok(x / 2)));
- assert_eq!(
- VaultRegistry::get_vaults_with_issuable_tokens(),
- Ok(vec!())
- );
+ assert_eq!(VaultRegistry::get_vaults_with_issuab... | chore(list-redeemable-vaults): fmt | null | interlay/interbtc | Apache License 2.0 | Rust |
import { storiesOf, html } from '@open-wc/demoing-storybook';
-import { until } from '@lion/core';
import '../lion-icon.js';
@@ -143,20 +142,4 @@ storiesOf('Icon System|Icon', module)
aria-label="Skinny dung beatle"
></lion-icon>
`,
- )
- .add(
- 'dynamic icons using until',
- () => html`
- <style>
- .icon {
- width: 3... | chore(icon): remove misleading story | null | ing-bank/lion | MIT License | JavaScript |
+import fs from 'fs'
+import path from 'path'
+import rimraf from 'rimraf'
+
+export default (options = {}) => {
+ const targets = options.targets ? options.targets : []
+ return {
+ name: 'cleaner',
+ generateBundle() {
+ let normalisedPath
+ if (targets && targets.length) {
+ for (let i = 0; i < targets.length; i += ... | chore(config): add rollup-plugin-cleaner | null | telus/tds-core | MIT License | JavaScript |
@@ -12,7 +12,6 @@ import 'package:flutter/painting.dart';
import 'package:kraken/foundation.dart';
import 'package:kraken/painting.dart';
import 'package:kraken/src/module/navigator.dart';
-import 'package:quiver/collection.dart';
/// This class allows user to customize Kraken's image loading.
| chore: remove quiver | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -61,7 +61,7 @@ def handle_cast({:push, element}, state) do
Every time you do a `GenServer.call/3`, the client will send a message
that must be handled by the `c:handle_call/3` callback in the GenServer.
- A `cast/2` message must be handled by `c:handle_cast/2`. There are 7 possible
+ A `cast/2` message must be handl... | chore: fix callbacks amount in GenServer docs | null | elixir-lang/elixir | Apache License 2.0 | Elixir |
@@ -11,15 +11,14 @@ function echo_usage() {
echo -e "\tDOTNET_STRONG_NAME_SECRET_ID=<The name (i.e. production/my/key) or ARN of the secret containing the .snk file.>"
}
-if [ -z "${DOTNET_STRONG_NAME_ENABLED:-}" ]; then
- echo "Environment variable DOTNET_STRONG_NAME_ENABLED is not set. Skipping strong-name signing."
... | chore: fixup fetch-dotnet-snk.sh | null | aws/aws-cdk | Apache License 2.0 | Shell |
@@ -24,6 +24,13 @@ if [ $TRAVIS_OS_NAME = "osx" ]; then
exit 0
fi
+if [ "$TRAVIS_REPO_SLUG" == "IBM/kui" ] && [ "$TRAVIS_BRANCH" != "master" ]; then
+ echo "skipping typecov for non-master-branch runs on the main fork $TRAVIS_REPO_SLUG $TRAVIS_BRANCH"
+ exit 0
+fi
+
+echo "commencing typecov with slug=$TRAVIS_REPO_SLUG... | chore: don't run typecov for non-master runs on the main fork | null | ibm/kui | Apache License 2.0 | Shell |
@@ -49,7 +49,7 @@ export default {
'component.pluginForm.cors.allow_origins_by_metadata.tooltip':
'Match which origin is allowed to enable CORS by referencing allow_origins set in plugin metadata.',
'component.pluginForm.cors.allow_origins_by_regex.tooltip':
- 'Use regex expressions to match which origin is allowed to ... | chore: optimize "allow_origins_by_regex tooltip" description | null | apache/apisix-dashboard | Apache License 2.0 | TypeScript |
package software.amazon.smithy.aws.typescript.codegen;
+import static software.amazon.smithy.typescript.codegen.integration.RuntimeClientPlugin.Convention;
+
import java.util.List;
-import software.amazon.smithy.codegen.core.Symbol;
-import software.amazon.smithy.codegen.core.SymbolReference;
import software.amazon.smi... | chore: update codegen plugins to new format | null | aws/aws-sdk-js-v3 | Apache License 2.0 | Java |
@@ -54,6 +54,7 @@ internal final class WrapperViewController: UIViewController {
}
private func update(finalFrame: CGRect) {
+ guard let view = child.viewIfLoaded else { return }
leftConstraint?.constant = finalFrame.origin.x
rightConstraint?.constant = -finalFrame.origin.x
topConstraint?.constant = finalFrame.origin.y... | chore: small fix to WrapperViewController.update(finalFrame:) | null | adyen/adyen-ios | MIT License | Swift |
@@ -212,7 +212,7 @@ func (self *CommitLoader) getHydratedRebasingCommits(rebaseMode enums.RebaseMode
// I suspect that will cause some damage
cmdObj := self.cmd.New(
fmt.Sprintf(
- "git show %s --no-patch --oneline %s --abbrev=%d",
+ "git -c log.showSignature=false show %s --no-patch --oneline %s --abbrev=%d",
strings.... | chore(loaders): add `-c log.showSignature=false` flag to the rebasing commit loader | null | jesseduffield/lazygit | MIT License | Go |
+/*
+Copyright 2021 CodeNotary, 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 applicable law or a... | chore(pkg/sql): row reader used to close the snapshot once reading is completed | null | codenotary/immudb | Apache License 2.0 | Go |
<div x-data="{
model: @entangle($attributes->wire('model')),
input: null,
- isLazy: @json($attributes->wire('model')->hasModifier('lazy')),
config: {
+ isLazy: @json($attributes->wire('model')->hasModifier('lazy')),
thousands: '{{ $thousands }}',
decimal: '{{ $decimal }}',
precision: {{ $precision }},
this.input = $wir... | chore: move property to config | null | wireui/wireui | MIT License | PHP |
@@ -10,47 +10,60 @@ module.exports = async ({ github, context, core, got }, baseUrl, routes, number)
return `${baseUrl}${l}`;
});
- let com = `Successfully [generated](https://github.com/${context.repo.owner}/${context.repo.repo}/actions/runs/${context.runId}) as following:\n\n`;
+ let com_l = [];
+ let com = `Successf... | chore(*): PR route test result auto-split | null | diygod/rsshub | MIT License | JavaScript |
@@ -189,10 +189,20 @@ fun PublishedArtifact.toCodeEvent(): CodeEvent? {
}
}
-internal val INTERESTING_CODE_EVENTS = setOf("create_commit", "pr_opened", "pr_merged", "pr_declined", "pr_deleted")
+internal val KNOWN_ROCKET_CODE_EVENTS = setOf(
+ "branch_launched",
+ "create_commit",
+ "create_tag",
+ "pr_declined",
+ "pr... | chore(scm): Add missing rocket code events to known list | null | spinnaker/keel | Apache License 2.0 | Kotlin |
@@ -14,6 +14,11 @@ class Dropbox extends OAuth
*/
protected $user = [];
+ /**
+ * @var array
+ */
+ protected $scopes = [];
+
/**
* @return string
*/
@@ -27,11 +32,12 @@ class Dropbox extends OAuth
*/
public function getLoginURL(): string
{
- return 'https://www.dropbox.com/oauth2/authorize?'.
- 'client_id='.urlencode(... | chore: dropbox adapter changes | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
@@ -92,7 +92,7 @@ class Events {
// no debounce
if (type.isNone(eventDescription.debounce)) {
- return await actionHandle();
+ return actionHandle();
}
// leading edge: bounce
| chore(engine): Remove useless await | null | lowdefy/lowdefy | Apache License 2.0 | JavaScript |
@@ -49,4 +49,27 @@ class BACSDirectDebitItemsFactoryTests: XCTestCase {
let identifier = try XCTUnwrap(holderNameItem.identifier)
XCTAssertEqual(expectedIdentifier, identifier)
}
+
+ func testCreateBankAccountNumberItemShouldReturnItemWithCorrectProperties() throws {
+ // Given
+ let expectedTitle = "Bank account numbe... | chore: Test createBankAccountNumberItem | null | adyen/adyen-ios | MIT License | Swift |
@@ -405,7 +405,7 @@ defmodule Ash.Actions.Read do
Map.get(fetched_data, :calculations_at_runtime) || [],
get_in(context, path ++ [:calculation_results]) || :error,
lazy?,
- tenant
+ query.tenant
)
|> case do
{:ok, values} ->
@@ -770,7 +770,7 @@ defmodule Ash.Actions.Read do
:select
])
|> Ash.Query.select(must_be_resele... | chore: use the tenant from the existing query when reselecting/loading calcs | null | ash-project/ash | MIT License | Elixir |
@@ -8,6 +8,9 @@ import { createConnection } from 'typeorm';
* Clears all tables in the detabase sepcified by the connectionOptions
*/
export async function clearAllTables(config: VendureConfig, logging = true) {
+ if (logging) {
+ console.log('Clearing all tables...');
+ }
config = await preBootstrapConfig(config);
con... | chore(testing): Add log statement for clearing tables | null | vendure-ecommerce/vendure | MIT License | TypeScript |
@@ -1369,7 +1369,7 @@ async fn op_flash_next_async(
0
}
-// Syncrhonous version of op_flash_next_async. Under heavy load,
+// Synchronous version of op_flash_next_async. Under heavy load,
// this can collect buffered requests from rx channel and return tokens in a single batch.
//
// perf: please do not add any argumen... | chore(ext/flash): typo in `lib.rs` | null | denoland/deno | MIT License | Rust |
@@ -47,23 +47,23 @@ export const validate = (subject?: unknown): Results =>
choose<Results, any>(subject)
.case(
s => !isDefined(s),
- s => asResults(s, 'Subject is not defined.'),
+ s => asResults(s, 'Subject is not defined.')
)
.case(
s => isEnum(s),
- (e: Enum) => (e.isValid ? toResults() : asResults(e, 'This is not... | chore(validation): formatting | null | thisisagile/easy | MIT License | TypeScript |
@@ -107,6 +107,7 @@ public class MongoConfig {
MappingMongoConverter converter = new MappingMongoConverter(NoOpDbRefResolver.INSTANCE, context);
converter.setTypeMapper((MongoTypeMapper) typeMapper);
converter.setCustomConversions(mongoCustomConversions());
+ converter.setMapKeyDotReplacement("-APPSMITH-DOT-REPLACEMENT... | chore: Fixed dot replacement policy for mongo | null | appsmithorg/appsmith | Apache License 2.0 | Java |
set -o xtrace # Write all commands first to stderr
set -o errexit # Exit the script with error if any of the commands fail
-NODE_LTS_NAME=${NODE_LTS_NAME:-dubnium}
+NODE_LTS_NAME=${NODE_LTS_NAME:-erbium}
NODE_BINDINGS_PATH="${PROJECT_DIRECTORY}/bindings/node"
NODE_ARTIFACTS_PATH="${NODE_BINDINGS_PATH}/node-artifacts"
N... | chore: update version of node used to build binding to erbium | null | mongodb/libmongocrypt | Apache License 2.0 | Shell |
@@ -121,16 +121,7 @@ func getIngressRulesFromHTTPRoutesCommonTestCases() []testCaseIngressRulesFromHT
kong.String("www.konghq.com"),
},
},
- Ingress: util.K8sObjectInfo{
- Name: "basic-httproute",
- Namespace: corev1.NamespaceDefault,
- Annotations: make(map[string]string),
- GroupVersionKind: schema.GroupVersionKind{
... | chore(tests): add k8s object utility to reduce parser tests lengths | null | kong/kubernetes-ingress-controller | Apache License 2.0 | Go |
@@ -342,7 +342,7 @@ const SetBlacklist: React.VFC = () => {
<SubLabel>{translate('options_blacklistExample', 'title/Example Domain/')}</SubLabel>
</LabelWrapper>
<RulesetEditor
- height="200px"
+ height="300px"
resizable
value={blacklist}
onChange={value => {
| chore(options): widen the ruleset editor | null | iorate/ublacklist | MIT License | TypeScript |
@@ -53,7 +53,7 @@ defmodule Ash.DocIndex.AshDocIndex do
type: "Notifier"
},
%{
- module: Ash.Registry,
+ module: Ash.Registry.Dsl,
name: "Registry",
target: "Ash.Registry",
default_for_target?: true
| chore: set proper module for registry docs | null | ash-project/ash | MIT License | Elixir |
@@ -73,7 +73,8 @@ elif [[ $1 == "--tip-of-tree" ]]; then
echo "Did not find \$CI env - cannot publish tip-of-tree release not from CI"
exit 1
fi
- npm run clean
+ # We don't do `npm run clean` here since travis deploy will remove node
+ # modules, and our `npm run clean` relies on `rimraf` to be installed.
npm publish ... | chore(ci): fix publish_all_packages.sh on travis | null | microsoft/playwright | Apache License 2.0 | Shell |
use std::ffi::CStr;
use std::str::FromStr;
+use ::log::warn;
use env_logger::Builder;
use libc::c_char;
+use pact_models::interaction::Interaction;
+use pact_models::pact::Pact;
+use pact_models::v4::pact::V4Pact;
use models::message::Message;
-use pact_matching::{self as pm};
+use pact_matching as pm;
pub use pact_mat... | chore: fix missing import on Windows | null | pact-foundation/pact-reference | MIT License | Rust |
@@ -50,7 +50,7 @@ internal final class WrapperViewController: UIViewController {
view.addSubview(child.view)
child.didMove(toParent: self)
child.view.translatesAutoresizingMaskIntoConstraints = false
- let topConstraint = child.view.topAnchor.constraint(equalTo: view.topAnchor, constant: 200)
+ let topConstraint = chil... | chore: removed a small dummy number that wasn't needed | null | adyen/adyen-ios | MIT License | Swift |
@@ -28,10 +28,16 @@ export default (state = defaultState, action: Actions): FlagState => {
case SET_FEATURE_FLAGS:
// just setting the loading state
if (!action.payload.flags) {
- return {
+ const newState = {
...state,
status: action.payload.status,
}
+
+ if (!state.hasOwnProperty('original')) {
+ newState.original = ... | chore: if no flags were passed in, keep correct default shape of state | null | influxdata/influxdb | MIT License | TypeScript |
@@ -134,6 +134,10 @@ func NewTest(name string, ast *ast.Package) Test {
}
}
+func (t *Test) FullName() string {
+ return t.ast.Files[0].Name + ": " + t.name
+}
+
// Get the name of the Test.
func (t *Test) Name() string {
return t.name
@@ -627,25 +631,25 @@ func (t *TestReporter) ReportTestRun(test *Test) {
}
} else if... | chore: Report the filename + test name on test failures | null | influxdata/flux | MIT License | Go |
@@ -115,10 +115,10 @@ public interface HistoricDetailQuery extends Query<HistoricDetailQuery, Historic
*/
HistoricDetailQuery userOperationId(String userOperationId);
- /** Only select historic details that were occurred before the given date (inclusive). */
+ /** Only select historic details that have occurred before ... | chore(detail-query): fix typo in java docs for new methods | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -11,11 +11,18 @@ import {
const environment = process.env.ENVIRONMENT || "dev";
+const log = (log: string) => {
+ // eslint-disable-next-line no-console
+ console.log(log);
+};
+
describe("Canary", () => {
describe("HappyPath", () => {
it("connects", async () => {
const clients = await initTwoClients();
+ log('Clien... | chore: logs more verbosely to narrow down issue | null | walletconnect/walletconnect-monorepo | Apache License 2.0 | TypeScript |
@@ -76,7 +76,7 @@ check() {
# go vet check
echo "CHECK: go vet, check code syntax"
packages=$(go list ./... | grep -vE "${exclude}" | sed 's/^_//')
- go vet "${packages}" 2>&1
+ echo "${packages}" | xargs go vet 2>&1
}
dfdaemon() {
@@ -170,7 +170,6 @@ usage() {
main() {
cmd="${COMMANDS}"
- export action=$(echo ${cmd} |... | chore: fix go vet check failure | null | dragonflyoss/dragonfly | Apache License 2.0 | Shell |
@@ -11,45 +11,44 @@ export class PacketCapture {
private static readonly ACCEPTED_PACKETS = [
'actorCast',
- 'itemInfo',
- 'updateInventorySlot',
- 'inventoryTransaction',
+ 'actorControl',
+ 'actorControlSelf',
+ 'addStatusEffect',
+ 'airshipExplorationResult',
+ 'airshipStatus',
'currencyCrystalInfo',
- 'marketBoardI... | chore: proper sorting of packet names | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
use defi::DeFiContract;
+
+// #[near_bindgen] token contract generated for simulation see near-sdk-sim for details
use fungible_token::ContractContract as FtContract;
use near_sdk::json_types::U128;
| chore: comment on contract for simulator usage | null | near/near-sdk-rs | Apache License 2.0 | Rust |
@@ -122,6 +122,7 @@ const presets = [
/** @type {Config["plugins"]} */
const plugins = [
+ // https://docusaurus.io/docs/api/plugins/@docusaurus/plugin-client-redirects
[
'@docusaurus/plugin-client-redirects',
{
@@ -133,6 +134,15 @@ const plugins = [
],
},
],
+ // https://docusaurus.io/docs/api/plugins/@docusaurus/plug... | chore(website): add sitemap plugin | null | feature-sliced/documentation | MIT License | JavaScript |
@@ -246,7 +246,7 @@ describe('border', () => {
expect(clickCount).toBe(1);
});
- fit('marginSide should not handle hitTest', async () => {
+ it('marginSide should not handle hitTest', async () => {
let clickCount = 0;
let container = createElement('div', {
style: {
| chore: remove focus specs | null | openkraken/kraken | Apache License 2.0 | TypeScript |
@@ -407,7 +407,6 @@ public class MigrationExternalTaskTest {
public void testProcessDefinitionWithoutIdField() {
// given
-// ProcessDefinition sourceProcessDefinition =
ProcessDefinition sourceProcessDefinition = testHelper.deploy("org/camunda/bpm/engine/test/api/externaltask/ExternalTaskWithoutIdTest.bpmn").getDeploy... | chore(test): remove comments | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -43,24 +43,6 @@ class BCMCComponentTests: XCTestCase {
sut.cardComponent.storedCardConfiguration.showsSecurityCodeField)
}
- func testShowLargeTiteSetting() {
- let cardPaymentMethod = CardPaymentMethod(type: "bcmc", name: "Test name", fundingSource: .debit, brands: ["any_test_brand_name"])
- let paymentMethod = BCM... | chore: cleanup after rebase | null | adyen/adyen-ios | MIT License | Swift |
{
public static class ApplicationSettings
{
- public static string version = "0.7.11";
+ public static string version = "0.7.12";
}
public static class Environment
| chore: update build version to 0.7.12 | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -792,7 +792,7 @@ class AuditableTest extends AuditingTestCase
],
//
- // Audit data and expectations for created event
+ // Audit data and expectations for created/restored event
//
[
// Old values
@@ -865,29 +865,6 @@ class AuditableTest extends AuditingTestCase
// Expectation when transitioning with new values
[],... | chore(Auditable): remove redundant test data | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -146,9 +146,9 @@ class Element extends Node
// Content children layout, BoxModel content.
if (isIntrinsicBox) {
- renderIntrinsic = createRenderIntrinsic(this, repaintSelf: repaintSelf);
+ renderIntrinsic = _createRenderIntrinsic(this, repaintSelf: repaintSelf);
} else {
- renderLayoutBox = createRenderLayout(this, ... | chore: private method | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -98,6 +98,10 @@ val rat by tasks.getting(org.nosphere.apache.rat.RatTask::class) {
verbose.set(true)
// Note: patterns are in non-standard syntax for RAT, so we use exclude(..) instead of excludeFile
exclude(rootDir.resolve(".ratignore").readLines())
+ // Gradle validation might assume copyLibs and rat operate on th... | chore: suppress Gradle warning on rat and copyLibs tasks operating on the same files | null | apache/jmeter | Apache License 2.0 | Kotlin |
#include <stdio.h>
#include <stdlib.h>
+#include <pthread.h>
#include <assert.h>
#include "discord.h"
#include "cee-utils.h"
-static char JSON[] =
-"{\n"
-" \"content\": \"Mason is looking for new arena partners. What classes do you play?\",\n"
-" \"components\": [\n"
-" {\n"
-" \"type\": 1,\n"
-" \"components\": [\n"
... | chore(test): update test-discord-ws.c to test ratelimiting | null | cee-studio/orca | MIT License | C |
@@ -137,7 +137,14 @@ class V2KeyControllerTest : ProjectAuthControllerTest("/v2/projects/") {
}
}
- @ProjectApiKeyAuthTestMethod(scopes = [ApiScope.KEYS_EDIT, ApiScope.TRANSLATIONS_EDIT])
+ @ProjectApiKeyAuthTestMethod(
+ scopes = [
+ ApiScope.KEYS_EDIT,
+ ApiScope.TRANSLATIONS_EDIT,
+ ApiScope.SCREENSHOTS_UPLOAD,
+ Ap... | chore: Fix backend tests | null | tolgee/tolgee-platform | Apache License 2.0 | Kotlin |
@@ -127,7 +127,6 @@ export class AuthEffects {
filter(action => action.type !== AuthActionTypes.NoLinkedCharacter && action.type !== AuthActionTypes.LinkingCharacter),
withLatestFrom(this.store),
filter(([action, state]) => {
- console.log(action, state);
return !state.auth.loading
&& state.auth.loggedIn
&& (state.auth... | chore: fix for last change | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -33,6 +33,7 @@ public final class AffirmComponent: AbstractPersonalInformationComponent, Observ
/// - Parameters:
/// - paymentMethod: The Affirm payment method.
/// - apiContext: The component's API context.
+ /// - adyenContext: The Adyen context.
/// - configuration: The component's configuration.
public init(pay... | chore: Adyen context in Affirm component | null | adyen/adyen-ios | MIT License | Swift |
@@ -74,7 +74,7 @@ public class OrgaApplication extends MultiDexApplication implements HasActivityI
StrictMode.ThreadPolicy.Builder policyBuilder = new StrictMode.ThreadPolicy.Builder()
.detectAll()
- .penaltyDeath();
+ .penaltyDialog();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
/**
| chore: Change strict mode penalty to dialog | null | fossasia/open-event-organizer-android | Apache License 2.0 | Java |
#[allow(unused)]
pub mod transport {
- use ockam_router::router::{MessageHandler};
- use ockam_message::message::{Message, Address};
+ use ockam_message::message::{Address, Message};
+ use ockam_router::router::MessageHandler;
+ use std::collections::HashMap;
use std::net::UdpSocket;
use std::net::{IpAddr, Ipv4Addr, Ip... | chore(rust): apply formatting | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -385,13 +385,6 @@ class SpeechSegmentGenerator(object):
# get annotation for current file
annotation = current_file['annotation']
- # pre-load features.
- if isinstance(self.feature_extraction, Precomputed) and \
- not self.feature_extraction.use_memmap:
- msg = ('Loading all precomputed features in memory. '
- 'Set... | chore: remove warning about use_memmap | null | pyannote/pyannote-audio | MIT License | Python |
@@ -90,7 +90,7 @@ export async function baseGenerator(
// make sure to update `canUsePrebuiltManager` in dev-server.js and build-manager-config/main.js when this list changes
const addons = ['@storybook/addon-links', '@storybook/addon-essentials'];
// added to package.json
- const addonPackages = [...addons, '@storyboo... | chore: remove addon-actions from packages for install | null | storybookjs/storybook | MIT License | TypeScript |
@@ -62,12 +62,6 @@ check() {
[ ${#result} -gt 0 ] && (echo "${result}" \
&& echo "CHECK: please format Go code with 'gofmt -s -w .'" && false)
- # go vet check
- echo "CHECK: go vet, check code syntax"
- packages=`go list ./... | grep -vE "${exclude}" | sed 's/^_//'`
- go vet ${packages} 2>&1
-
- exit 0
# golint
which ... | chore: use golint to check code style | null | dragonflyoss/dragonfly | Apache License 2.0 | Shell |
@@ -1240,10 +1240,7 @@ impl OlmMachine {
) -> Option<OutgoingVerificationRequest> {
let user_id = UserId::parse(user_id).ok()?;
- self.inner
- .get_verification(&user_id, flow_id)
- .and_then(|s| s.sas_v1())
- .and_then(|s| s.accept().map(|r| r.into()))
+ self.inner.get_verification(&user_id, flow_id)?.sas_v1()?.accept... | chore(bindings): Use ? operator instead of and_then chaining | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -262,8 +262,9 @@ public class DevModeHandlerTest {
public void shouldNot_RunWebpack_When_WebpackRunning() throws Exception {
final String manifestJsonResponse = "{}";
int port = prepareHttpServer(0, HTTP_OK, manifestJsonResponse);
- DevModeHandler handler = DevModeHandler.start(port, createDevModeLookup(),
- npmFold... | chore: fix flaky test | null | vaadin/flow | Apache License 2.0 | Java |
package bee
var (
- version = "0.6.0" // manually set semantic version number
+ version = "0.6.1" // manually set semantic version number
commit string // automatically set git commit hash
Version = func() string {
| chore: increment to v0.6.1 | null | ethersphere/bee | BSD 3-Clause New or Revised License | Go |
@@ -14,7 +14,7 @@ use futures::channel::mpsc::{unbounded, UnboundedReceiver, UnboundedSender};
use hash_hasher::HashedMap;
use libp2p_core::{connection::ConnectionId, ConnectedPoint, Multiaddr, PeerId};
use libp2p_swarm::dial_opts::{DialOpts, PeerCondition};
-use libp2p_swarm::handler::{IntoConnectionHandler, OneShotHa... | chore: clean up type signature | null | rs-ipfs/rust-ipfs | Apache License 2.0 | Rust |
@@ -56,8 +56,6 @@ public final class BACSDirectDebitComponent: PaymentComponent, PresentableCompon
let view = BACSDirectDebitInputFormViewController(title: paymentMethod.name,
styleProvider: style)
-
- // TODO: - Set navigation controller
self.viewController = view as UIViewController
let itemsFactory = BACSDirectDebit... | chore: Not relevant TODO mark | null | adyen/adyen-ios | MIT License | Swift |
+#!/bin/bash
+set -eu -o pipefail
+
+# bail out if it's already running; let the user delete it if that's what they want
+docker container inspect postgres &> /dev/null && \
+ { echo "Postgres container already running. Remove it with \`docker container rm -f postgres\` and run again."; exit 1; }
+
+# start postgres do... | chore: added helper script for a docker catalog | null | influxdata/influxdb_iox | Apache License 2.0 | Shell |
@@ -96,4 +96,27 @@ class BACSDirectDebitItemsFactoryTests: XCTestCase {
XCTAssertEqual(expectedIdentifier, identifier)
}
+ func testCreateEmailItemShouldReturnItemWithCorrectProperties() throws {
+ // Given
+ let expectedTitle = "Email address"
+ let expectedPlaceholder = "Email address"
+ let expectedValidationFailure... | chore: Test createEmailItem method | null | adyen/adyen-ios | MIT License | Swift |
@@ -8,10 +8,10 @@ class AwsSamCli < Formula
sha256 "5ed0b17b293a0469fd793999449d110088bfcdb7bc5d7d3db9a70e6b526af420"
head "https://github.com/awslabs/aws-sam-cli.git", :branch => "develop"
bottle do
- root_url "https://github.com/awslabs/aws-sam-cli/releases/download/v0.17.0/"
+ root_url "https://github.com/awslabs/aw... | chore: v0.18.0 mac and linux bottles | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
const parse = require('../lib/sync')
const assert = require('assert')
-const records = parse(`
-a ,1
-b, 2
- c,3
-`.trim(), {
+const records = parse('a ,1\nb, 2\n c,3', {
trim: true
})
assert.deepStrictEqual(
| chore(csv-parse): docs: rewrite trim sample | null | adaltas/node-csv | MIT License | JavaScript |
@@ -363,9 +363,7 @@ func convertExpr(e sqlparser.Expr, lookup ConverterLookup) (Expr, error) {
if coll == nil {
return nil, vterrors.Errorf(vtrpcpb.Code_INTERNAL, "unknown character set")
}
- lit.Val.collation = collations.TypedCollation{
- Collation: coll.ID(),
- }
+ lit.Val.collation.Collation = coll.ID()
return lit,... | chore: only override the collation, not the coercibility | null | vitessio/vitess | Apache License 2.0 | Go |
@@ -109,6 +109,13 @@ export const main = (
return Promise.resolve({ ...node, output: '' })
}
})
+
+ // Temporary function for testing in the console
+ // @ts-ignore
+ window.stencilaCancel = async (nodeId: string) => {
+ const [client, document] = await startup()
+ await documents.cancel(client, document.id, nodeId)
+ ... | chore(Web client): Add `stencilaCancel` function for testing cancellation | null | stencila/stencila | Apache License 2.0 | TypeScript |
@@ -4,12 +4,12 @@ class EksAnywhere < Formula
version "0.7.2"
if OS.mac?
- url "https://anywhere-assets.eks.amazonaws.com/releases/eks-a/5/artifacts/eks-a/v0.7.2/darwin/amd64/eksctl-anywhere-v0.7.2-darwin-amd64.tar.gz"
+ url "https://anywhere-assets.eks.amazonaws.com/releases/eks-a/7/artifacts/eks-a/v0.7.2/darwin/amd64... | chore: fix EKS Anywhere download link for v0.7.2 | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
@@ -93,6 +93,8 @@ export class SimulatorPageComponent {
}).mergeMap(data => {
const preparedRotation = data.rotation;
if (preparedRotation.$key === undefined || data.userId !== data.rotation.authorId) {
+ // Set new authorId for the newly created rotation
+ data.rotation.authorId = data.userId;
// If the rotation has n... | chore: update authorId upon rotation fork | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -78,6 +78,7 @@ RSpec.describe "supervisors/index", type: :system do
let(:column_to_sort) { "Volunteer Assignments" }
# TODO: uncomment this line when sort by Volunteer Assignments is available
+ # Issue: https://github.com/rubyforgood/casa/issues/2683
# it_behaves_like "functioning sort buttons"
end
@@ -85,6 +86,7 @... | chore: add issue link for future implementation about order | null | rubyforgood/casa | MIT License | Ruby |
@@ -57,7 +57,7 @@ public class ContextLogger extends ProcessEngineLogger {
}
public void bpmnStackTrace(String string) {
- logError(
+ logDebug(
"006",
string);
}
| chore(engine): log bpmn stack trace on level DEBUG | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -171,7 +171,7 @@ public interface HistoricDetailQuery extends Query<HistoricDetailQuery, Historic
* <code>
* historyService.createHistoricDetailQuery()<br>
* .variableInstanceId("myVariableInstId")<br>
- * .orderBySequenceCounter()<br>
+ * .orderPartiallyByOccurrence()<br>
*  ... | chore(engine): fix example in HistoricDetailQuery javadoc | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -596,7 +596,7 @@ gulp.task('serve:demo-hmr', () => {
});
gulp.task('build:demo', () => {
- return execDemoCmd(`build --preserve-symlinks --prod --aot --build-optimizer`, {cwd: `${config.demoDir}`});
+ return execDemoCmd(`build --preserve-symlinks --prod --aot --build-optimizer --output-hashing=all`, {cwd: `${config.... | chore(package): added `--output-hashing=all` to the build command | null | anthonynahas/ngx-auth-firebaseui | MIT License | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.