diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -59,11 +59,11 @@ func (f *File) refreshFilePaths() error {
for _, file := range f.Files {
g, err := globpath.Compile(file)
if err != nil {
- return fmt.Errorf("could not compile glob %v: %v", file, err)
+ return fmt.Errorf("could not compile glob %q: %w", file, err)
}
files := g.Match()
if len(files) <= 0 {
- return... | chore(inputs/file): More clear error messages | null | influxdata/telegraf | MIT License | Go |
@@ -18,7 +18,6 @@ const environmentsDir = join(projectRoot, 'src', 'barista-examples', 'environmen
const args = process.argv.splice(ARGS_TO_OMIT);
const getDeployUrl = () => {
- console.log(args);
const deployUrlArg = args.find((arg) => arg.startsWith(`--${DEPLOY_URL_ARG}=`));
if (!deployUrlArg) {
@@ -189,7 +188,6 @@ t... | chore(tools): remove logs | null | dynatrace-oss/barista | Apache License 2.0 | TypeScript |
@@ -27,7 +27,7 @@ export default () => {
{data.file.childImageSharp && (
<Img
fluid={data.file.childImageSharp.fluid}
- alt="Chart from the Johns Hopkins COVID-19 Testing Insights Initiative depicting daily total tests and daily positive tests using COVID Tracking Project data."
+ alt="Chart from the Johns Hopkins COVI... | chore(homepage): add static chart notices to Hopkins image | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -41,6 +41,14 @@ export function useAutocomplete(children: SelectChildWithStringType[]): {
validChildren.map((child) => [child.props.value, child])
)
+ function getHasError(inputValue: string | undefined): boolean {
+ if (!inputValue) {
+ return false
+ }
+
+ return findIndexOfInputValue(filteredItems, inputValue) ==... | chore(ReactComponentLibrary): Fix use before defined warning | null | royal-navy/design-system | Apache License 2.0 | TypeScript |
+if [ ! -d "./server" ]; then
+ echo "This command needs to invoked on the root level"
+ exit
+fi
+
+echo "Starting deployment for staging system"
+./scripts/deploy_staging_server.sh
+./scripts/deploy_staging_firebase.sh
\ No newline at end of file
| chore: adds one-tap staging deploy script | null | machinelabs/machinelabs | MIT License | Shell |
@@ -117,7 +117,6 @@ interface ServiceRootGroupModalProps {
const METHODS_TO_BIND: string[] = [
"getAdvancedSettings",
"getModalContent",
- "handleAdvancedSectionClick",
"handleClose",
"handleFormChange",
"handleSave",
@@ -304,12 +303,6 @@ class ServiceRootGroupModal extends React.Component<
}
}
- handleAdvancedSectionC... | chore: refactor expandAdvancedSettings | null | dcos/dcos-ui | Apache License 2.0 | TypeScript |
set -ex
if [ "$1" == "v1" ]; then
- node --expose-gc --max_old_space_size=4096 ./node_modules/.bin/jest --logHeapUsage --maxWorkers 2 --config jest.config.v1.js
+ node --expose-gc --max_old_space_size=4096 ./node_modules/.bin/jest --logHeapUsage --maxWorkers 3 --config jest.config.v1.js
elif [ "$1" == "v2" ]; then
- no... | chore: Jest Three Workers | null | artsy/force | MIT License | Shell |
@@ -4,7 +4,7 @@ namespace DCL.Configuration
{
public static class ApplicationSettings
{
- public static string version = "0.7.4";
+ public static string version = "0.7.5";
}
public static class Environment
| chore: update build version to 0.7.5 | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -226,12 +226,7 @@ where
predicate,
} = read_filter_request;
- info!(
- "read_filter for database {}, range: {:?}, predicate: {}",
- db_name,
- range,
- predicate.loggable()
- );
+ info!(%db_name, ?range, predicate=%predicate.loggable(),"read filter");
read_filter_impl(
tx.clone(),
@@ -268,11 +263,7 @@ where
hints,
}... | chore: Improve use of logging macros in storage service | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -181,7 +181,7 @@ class SpeakerEmbeddingPytorch(Application):
self.approach_ = Approach(
**self.config_['approach'].get('params', {}))
- def train(self, protocol_name, subset='train', gpu=False):
+ def train(self, protocol_name, subset='train'):
train_dir = self.TRAIN_DIR.format(
experiment_dir=self.experiment_dir,
@... | chore: keep track of --gpu as Application.gpu attribute | null | pyannote/pyannote-audio | MIT License | Python |
@@ -4,7 +4,6 @@ const pathManager = require('./path-manager');
function updateBackendConfigAfterResourceAdd(category, resourceName, options) {
const backendConfigFilePath = pathManager.getBackendConfigFilePath();
const backendConfig = JSON.parse(fs.readFileSync(backendConfigFilePath));
- if (options.output) delete opti... | chore: remove unneeded delete in backend config update | null | aws-amplify/amplify-cli | Apache License 2.0 | JavaScript |
@@ -26,8 +26,13 @@ if [[ -z "$BRANCH" || -z "$TAG" ]]; then
fi
# Checking out the repo's release branch
-clone_dir=$(mktemp -d)
-git clone "git@github.com:${REPO}.git" "$clone_dir"
+clone_dir="$(mktemp -d)"
+# Use GitHub CLI if found, otherwise use git clone.
+if which gh; then
+ gh repo clone github.com/${REPO} "${clo... | chore(release): support using gh CLI | null | kubeflow/pipelines | Apache License 2.0 | Shell |
@@ -73,6 +73,11 @@ declare namespace algoliasearchHelper {
*/
search(): this;
+ /**
+ * Private method to only search on derived helpers
+ */
+ searchOnlyWithDerivedHelpers(): this;
+
/**
* Gets the search query parameters that would be sent to the Algolia Client
* for the hits
| chore(ts): add searchOnlyWithDerivedHelpers | null | algolia/algoliasearch-helper-js | MIT License | TypeScript |
@@ -364,6 +364,18 @@ fn to_queryable_parquet_chunk(
"built parquet chunk from metadata"
);
+ // If there is no sort key on this parquet chunk, the query
+ // engine will end up resorting it, requiring substantial
+ // memory. Thus warn if this has happened as it signals a bug in
+ // the code somewhere.
+ if sort_key.i... | chore: Warn if a parquet file has no sort key | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
package com.vaadin.flow.server;
-import java.io.File;
-import java.nio.file.Paths;
import java.util.ArrayList;
import java.util.List;
import java.util.Properties;
@@ -33,12 +31,6 @@ import com.vaadin.flow.function.DeploymentConfiguration;
import com.vaadin.flow.server.startup.ApplicationConfiguration;
import com.vaadin... | chore: No longer log that standard bootstrap is used | null | vaadin/flow | Apache License 2.0 | Java |
@@ -65,7 +65,7 @@ public final class APIClient: APIClientProtocol {
requestCounter += 1
urlSession.adyen.dataTask(with: urlRequest) { [weak self] result in
- self?.handle(result, request: request, completionHandler: completionHandler)
+ self?.handle(result, request, completionHandler: completionHandler)
}.resume()
}
@@... | chore: fixed some merge conflicts | null | adyen/adyen-ios | MIT License | Swift |
@@ -31,6 +31,10 @@ func NewGoTaskRecipeExecutor() *GoTaskRecipeExecutor {
}
func (re *GoTaskRecipeExecutor) Prepare(ctx context.Context, m types.DiscoveryManifest, r types.Recipe, assumeYes bool) (types.RecipeVars, error) {
+ log.WithFields(log.Fields{
+ "name": r.Name,
+ }).Debug("preparing recipe")
+
vars := types.Re... | chore(install): log a prepare step on the go task executor | null | newrelic/newrelic-cli | Apache License 2.0 | Go |
@@ -146,8 +146,9 @@ pub async fn main(config: Config) -> Result<()> {
if config.grpc_bind_address == config.http_bind_address {
error!(
- "grpc and http bind addresses must differ; both are {:?}",
- config.grpc_bind_address
+ %config.grpc_bind_address,
+ %config.http_bind_address,
+ "grpc and http bind addresses must d... | chore: better structured logging of port conflict err | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -575,6 +575,7 @@ bool CleanupTrash::Run(Deployer* deployer) {
continue;
auto filename = entry.filename().string();
if (filename == "rime.log" ||
+ boost::ends_with(filename, ".bin") ||
boost::ends_with(filename, ".reverse.kct") ||
boost::ends_with(filename, ".userdb.kct.old") ||
boost::ends_with(filename, ".userdb.k... | chore(deployment_tasks): trash $user_data_dir/*.bin | null | rime/librime | BSD 3-Clause New or Revised License | C++ |
}
function downloadLog() {
+ logs.push('[ml4klog] site host ');
+ logs.push($window.location.href);
+ logs.push('\n[ml4klog] url parameters ');
+ logs.push(JSON.stringify(urlParms));
+
var blob = new Blob(logs, { type: 'text/plain' });
if ($window.navigator.msSaveOrOpenBlob) {
$window.navigator.msSaveBlob(blob, 'mlfork... | chore: Include site host in log downloads | null | ibm/taxinomitis | Apache License 2.0 | JavaScript |
@@ -67,7 +67,7 @@ public class FrontendTools {
* the installed version is older than {@link #SUPPORTED_NODE_VERSION}, i.e.
* {@value #SUPPORTED_NODE_MAJOR_VERSION}.{@value #SUPPORTED_NODE_MINOR_VERSION}.
*/
- public static final String DEFAULT_NODE_VERSION = "v18.12.0";
+ public static final String DEFAULT_NODE_VERSION... | chore: Upgrade default installed Node to 18.12.1 with security fixes | null | vaadin/flow | Apache License 2.0 | Java |
@@ -15,8 +15,8 @@ internal final class FormCardSecurityCodeItemView: FormTextItemView<FormCardSecu
accessory = .customView(cardHintView)
observe(item.$selectedCard) { [weak self] cardsType in
let number = cardsType == CardType.americanExpress ? "4" : "3"
- let localization = localizedString(.cardCvcItemPlaceholderDigit... | chore: Use different way of formatting FormCardSecurityCodeItemView text field | null | adyen/adyen-ios | MIT License | Swift |
#define GOOGLE_CLOUD_CPP_SPANNER_GOOGLE_CLOUD_SPANNER_VERSION_INFO_H_
#define SPANNER_CLIENT_VERSION_MAJOR 0
-#define SPANNER_CLIENT_VERSION_MINOR 3
+#define SPANNER_CLIENT_VERSION_MINOR 4
#define SPANNER_CLIENT_VERSION_PATCH 0
#endif // GOOGLE_CLOUD_CPP_SPANNER_GOOGLE_CLOUD_SPANNER_VERSION_INFO_H_
| chore: bump version numbers (googleapis/google-cloud-cpp-spanner#1027) | null | googleapis/google-cloud-cpp | Apache License 2.0 | C |
@@ -17,6 +17,7 @@ package com.amplifyframework.datastore.syncengine;
import androidx.annotation.NonNull;
import androidx.annotation.Nullable;
+import androidx.core.util.ObjectsCompat;
import com.amplifyframework.api.graphql.GraphQLResponse;
import com.amplifyframework.api.graphql.MutationType;
@@ -51,31 +52,6 @@ public... | chore: use objects compat hash function | null | aws-amplify/amplify-android | Apache License 2.0 | Java |
// See the License for the specific language governing permissions and
// limitations under the License.
+use common_base::mem_allocator::GlobalAllocator;
+
mod pool;
mod pool_retry;
mod progress;
@@ -21,3 +23,7 @@ mod runtime_tracker;
mod stoppable;
mod string_func;
mod thread_pool;
+
+// runtime tests depends on the ... | chore(mem-allocator): fix test according to allocator change | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -156,13 +156,14 @@ class Pipeline(Application):
break
loss = status['latest']['loss']
- writer.add_scalar('pipeline/train/loss/latest', loss, global_step=s + 1)
-
+ writer.add_scalar(f'train/{protocol_name}.{subset}/loss/latest',
+ loss, global_step=s + 1)
if 'new_best' in status:
_ = self.dump(status['new_best'], p... | chore: rename tensorboard variables | null | pyannote/pyannote-audio | MIT License | Python |
@@ -80,6 +80,7 @@ public abstract class BaseTerminologyResourceUpdateRequest extends BaseResourceU
if (!oid.isBlank()) {
final boolean oidExist = ResourceRequests.prepareSearch()
+ .setLimit(0)
.filterByOid(oid)
.build()
.execute(context)
| chore(api): fetch only the hitcount when checking existing resources.. | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -17,6 +17,11 @@ import { IUpdatesOptions } from '../updates';
const debug = createDebug('vk-io:updates');
+const defaultNextHandler = (req: IncomingMessage, res: ServerResponse): void => {
+ res.writeHead(403);
+ res.end();
+};
+
export class WebhookTransport {
public started = false;
@@ -44,10 +49,7 @@ export class... | chore(updates): move next handler to top | null | negezor/vk-io | MIT License | TypeScript |
@@ -17,15 +17,6 @@ process_args () {
percentage_threshold=${6:-$percentage_threshold}
post_condition=${7:-$post_condition}
- # Handle deprecated var names
- path=${path:-$tfjson}
- path=${path:-$terraform_json_file}
- path=${path:-$tfplan}
- path=${path:-$terraform_plan_file}
- path=${path:-$tfdir}
- path=${path:-$terr... | chore: remove deprecations from diff script | null | infracost/infracost | Apache License 2.0 | Shell |
@@ -430,30 +430,30 @@ class CSSBorderSide {
return value.isEmpty ? defaultBorderColor : CSSColor.parseColor(value);
}
-// static EdgeInsets getBorderEdgeInsets(CSSStyleDeclaration style) {
-// double left = 0.0;
-// double top = 0.0;
-// double bottom = 0.0;
-// double right = 0.0;
-//
-// if (style[BORDER_LEFT_STYLE].... | chore: reactive commented code | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -95,6 +95,10 @@ public final class SEPADirectDebitComponent: PaymentComponent, PresentableCompon
submit(data: PaymentComponentData(paymentMethodDetails: details, amount: amountToPay, order: order))
}
+ private func sendTelemetryEvent() {
+ adyenContext.analyticsProvider.trackTelemetryEvent(flavor: telemetryFlavor)
+... | chore: Telemetry event on SEPA component | null | adyen/adyen-ios | MIT License | Swift |
@@ -14,7 +14,6 @@ export class DoNotUseBrandWithoutName extends RotationTip {
matches(simulationResult: SimulationResult): boolean {
const nameIndex = simulationResult.steps.findIndex(step => step.action.is(NameOfTheElements));
- console.log(nameIndex);
return nameIndex < 0 || simulationResult.steps.some((step, index) ... | chore: remove that log | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -209,7 +209,7 @@ class GqlQuery implements QueryInterface
//@codingStandardsIgnoreEnd
/**
- * Define the json respresentation of the object.
+ * Define the json representation of the object.
*
* @access private
* @return array
| chore(docs): [Datastore] fix typo in jsonSerialize method doc | null | googleapis/google-cloud-php | Apache License 2.0 | PHP |
// SPDX-License-Identifier: Apache-2.0
//
-// TODO: Refactor this: shouldn't be depending on HLC constructs like
-// AWSCognitoIdentityUserPoolConfiguration nor AWSServiceInfo, nor even really on
-// SRP dependencies
struct BasicSRPAuthEnvironment: SRPAuthEnvironment {
typealias SRPClientFactory = (String, String) thro... | chore(auth): Remove TODO around SRP configuration | null | aws-amplify/amplify-ios | Apache License 2.0 | Swift |
@@ -1701,6 +1701,7 @@ return [
'CURLFile::getPostFilename' => ['string'],
'CURLFile::setMimeType' => ['void', 'mime'=>'string'],
'CURLFile::setPostFilename' => ['void', 'name'=>'string'],
+'CURLStringFile::__construct' => ['void', 'data'=>'string', 'postname'=>'string', 'mime='=>'string'],
'current' => ['mixed|false', ... | chore: make changes in CallMap.php file | null | vimeo/psalm | MIT License | PHP |
@@ -11,17 +11,8 @@ echo "Update submodule"
git submodule update --init
echo "Cleanup old build and test artefacts"
-rm -rf dist/*
rm -rf consoleLog.txt
rm -rf test-app/dist/android_unit_test_results.xml
-rm -rf binding-generator/build/test-results/*.xml
-rm -rf android-static-binding-generator/project/staticbindinggene... | chore: updated build script | null | nativescript/android-runtime | Apache License 2.0 | Shell |
-// Code generated by MockGen. DO NOT EDIT.
-// Source: github.com/hyperledger/aries-framework-go/pkg/didcomm/common/service (interfaces: DIDComm)
-
-// Package mocks is a generated GoMock package.
-package mocks
-
-import (
- gomock "github.com/golang/mock/gomock"
- service "github.com/hyperledger/aries-framework-go/p... | chore: Deleted mocks file that snuck into repo | null | hyperledger/aries-framework-go | Apache License 2.0 | Go |
@@ -43,14 +43,14 @@ public extension DropInComponent {
/// Determines whether to enable skipping payment list step
/// when there is only one non-instant payment method.
/// Default value: `false`.
- public let allowsSkippingPaymentList: Bool
+ public var allowsSkippingPaymentList: Bool
/// Determines whether to enable... | chore: make style var on DropIn config | null | adyen/adyen-ios | MIT License | Swift |
@@ -18,7 +18,7 @@ use Carbon\Carbon;
use Mockery;
use Orchestra\Testbench\TestCase;
use OwenIt\Auditing\Models\Audit;
-use OwenIt\Auditing\Tests\Stubs\AuditableModelStub;
+use OwenIt\Auditing\Tests\Stubs\AuditableStub;
class AuditModelTest extends TestCase
{
@@ -89,7 +89,7 @@ class AuditModelTest extends TestCase
$this... | chore(Auditable): rename stub class | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -1105,7 +1105,7 @@ class Element extends Node
if (!eventHandlers.containsKey(eventName)) return; // Only listen once.
super.removeEventListener(eventName, _eventResponder);
- // Remove pointer listener render if not event needs
+ // Remove pointer listener render if no event needs
removeRenderPointerListener();
// R... | chore: bind to aone, | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -12,6 +12,7 @@ import (
"github.com/go-eagle/eagle/api"
"github.com/go-eagle/eagle/internal/handler/v1/user"
mw "github.com/go-eagle/eagle/internal/middleware"
+ "github.com/go-eagle/eagle/pkg/conf"
"github.com/go-eagle/eagle/pkg/middleware"
)
@@ -25,7 +26,7 @@ func NewRouter() *gin.Engine {
g.Use(middleware.Logging... | chore: using config | null | go-eagle/eagle | MIT License | Go |
@@ -127,7 +127,7 @@ type AHTOptions struct {
func DefaultOptions() *Options {
return &Options{
ReadOnly: false,
- WriteBufferSize: 1 << 21, //2Mb
+ WriteBufferSize: 1 << 22, //4Mb
Synced: true,
SyncFrequency: DefaultSyncFrequency,
FileMode: DefaultFileMode,
@@ -187,7 +187,7 @@ func DefaultIndexOptions() *IndexOptions {... | chore(embedded/store): set new default write buffer values | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -215,6 +215,11 @@ export const features = defineFeatures({
description: "Enable search with image",
showInAdminMenu: true,
},
+ AREnableCollectorProfile: {
+ readyForRelease: false,
+ description: "Enable collector profile",
+ showInAdminMenu: true,
+ },
})
export interface DevToggleDescriptor {
| chore: add collector profile feature flag | null | artsy/eigen | MIT License | TypeScript |
@@ -237,6 +237,8 @@ impl NetworkBehaviour for Bitswap {
fn inject_event(&mut self, source: PeerId, _connection: ConnectionId, message: MessageWrapper) {
let mut message = match message {
// we just sent an outgoing bitswap message, nothing to do here
+ // FIXME: we could commit any pending stats accounting for this pee... | chore: expand a bitswap comment | null | rs-ipfs/rust-ipfs | Apache License 2.0 | Rust |
@@ -67,11 +67,11 @@ func (tx *transaction) GetMode() schema.TxMode {
func (tx *transaction) Rollback() error {
tx.mutex.Lock()
defer tx.mutex.Unlock()
- defer func() { tx.sqlTx = nil }()
// here could happen that a committed transaction is rolled back by the sessions guard. This check prevent a panic
if tx.sqlTx == nil... | chore(pkg/server/sessions/internal/transactions): defer only when needed | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -2,6 +2,7 @@ const path = require('path')
const fse = require('fs-extra')
const aaron = require('@freesewing/aaron').config
const albert = require('@freesewing/albert').config
+const bella = require('@freesewing/bella').config
const benjamin = require('@freesewing/benjamin').config
const bent = require('@freesewing/... | chore: Added bella | null | freesewing/freesewing | MIT License | JavaScript |
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
+
package software.amazon.smithy.aws.typescript.codegen;
import static software.amazon.smithy.typescript.codegen.integration.RuntimeClientPlugin.Convention.HAS_CONFIG;
import static software.ama... | chore(codegen): fix checkstyle violations in AddS3ControlDependency.java | null | aws/aws-sdk-js-v3 | Apache License 2.0 | Java |
@@ -77,8 +77,9 @@ public class RuntimeServiceAsyncOperationsTest extends AbstractAsyncOperationsTe
@After
public void cleanBatch() {
- Batch batch = managementService.createBatchQuery().singleResult();
- if (batch != null) {
+ List<Batch> batches = managementService.createBatchQuery().list();
+ if (batches.size() > 0) ... | chore(engine): add test case workaround for ms sql server lists | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -89,10 +89,7 @@ impl BaseRoomInfo {
self.create = Some(c.content.clone());
}
AnySyncStateEvent::RoomHistoryVisibility(h) => {
- self.history_visibility = match h {
- SyncStateEvent::Original(h) => h.content.history_visibility.clone(),
- SyncStateEvent::Redacted(h) => h.content.history_visibility.clone(),
- };
+ self... | chore: Use new Ruma helper methods for some events | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -13,7 +13,6 @@ declare var Element: IElement;
declare var HTMLElement: IHTMLElement;
declare var SVGElement: ISVGElement;
-// tslint:disable:no-any
export const DOM = {
createDocumentFragment(markupOrNode?: unknown): IDocumentFragment {
if (markupOrNode === undefined || markupOrNode === null) {
@@ -81,7 +80,7 @@ exp... | chore(dom): remove no-any suppression | null | aurelia/aurelia | MIT License | TypeScript |
-/*
- * Copyright 2011-2015 B2i Healthcare Pte Ltd, http://b2i.sg
- *
- * 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 req... | chore(cleanup): remove obsolete ContentSubType enum | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -96,9 +96,9 @@ export default {
waistbandFactor: 0.1,
// Fit (from Titan)
- waistEase: { pct: 3, min: 0, max: 10 },
- seatEase: { pct: 3, min: 0, max: 10 },
- kneeEase: { pct: 15, min: 1, max: 25 },
+ waistEase: { pct: 1, min: 0, max: 5 },
+ seatEase: { pct: 5, min: 0, max: 10 },
+ kneeEase: { pct: 15, min: 10, max:... | chore(charlie): Tweak to defaults for ease | null | freesewing/freesewing | MIT License | JavaScript |
@@ -11,7 +11,7 @@ import (
//func TestExample_basic(t *testing.T) {
func Example_basic() {
- // Initialize the client configuration. An Insights insert key is required
+ // Initialize the client configuration. A New Relic License Key is required
// to communicate with the backend API.
cfg := config.New()
cfg.LicenseKey... | chore(logs): fix comment | null | newrelic/newrelic-client-go | Apache License 2.0 | Go |
@@ -47,7 +47,7 @@ export default class Application {
await this.spectron.stop()
}
- test(name: string, func: () => void) {
+ test(name: string, func: () => void, timeout: number = 1000 * 60 * 1) {
it(name, async () => {
if (this.errorOccurred) {
console.log(`skip - [${name}] ${new Date().toTimeString()}`);
@@ -87,7 +87... | chore(e2e): Add timeout parameter for app.test | null | nervosnetwork/neuron | MIT License | TypeScript |
select(value) {
if (this.disabled || this.readonly) return
+ this.search = ''
+
if (this.multiselect) {
this.model = Object.assign([], this.model)
const index = this.model.findIndex(selected => selected == value)
| chore: clear search when select/unselect | null | wireui/wireui | MIT License | PHP |
@@ -28,18 +28,25 @@ if [ ! -d "$THEME" ]; then
exit 1
fi
+# remove and relink any client css symlinks
+find packages/app/web/css -maxdepth 1 -type l -exec rm {} \;
+for i in "$THEME"/css/*.css; do
+ echo "linking in client css file `basename $i`"
+ (cd "$STAGING"/css && ln -s $i)
+done
+
if [ -d "$THEME"/css/themes ]; ... | chore: update monorepo builder to link in all client css files | null | ibm/kui | Apache License 2.0 | Shell |
@@ -169,7 +169,8 @@ class Wprelease
Dir.chdir "#{@svn_dir}"
- system "rsync #{@svn_dir}/trunk/ #{@svn_dir}/tags/#{@version} --recursive"
+ # system "rsync #{@svn_dir}/trunk/ #{@svn_dir}/tags/#{@version} --recursive"
+ system "svn cp trunk tags/#{@version}"
system "svn add tags/#{@version}"
system "svn commit -m 'releas... | chore: use svn copy instead of rsync | null | podlove/podlove-publisher | MIT License | Ruby |
@@ -918,6 +918,89 @@ func FindTelegrafConfigs(
},
},
},
+ {
+ name: "filter by organization only",
+ fields: TelegrafConfigFields{
+ UserResourceMappings: []*platform.UserResourceMapping{
+ {
+ ResourceID: MustIDBase16(oneID),
+ Resource: platform.TelegrafsResource,
+ UserID: MustIDBase16(threeID),
+ UserType: platform... | chore(testing): test that filtering telegraf configs only by orgID is possible | null | influxdata/influxdb | MIT License | Go |
@@ -48,15 +48,16 @@ cd dist
git config user.name "$COMMIT_AUTHOR_NAME"
git config user.email "$COMMIT_AUTHOR_EMAIL"
+git add -A .
+
# If there are no changes to the compiled dist (e.g. this is a README update) then just bail.
-if git diff --quiet; then
+if git diff --cached --quiet; then
echo "No changes to the output ... | chore: improve deploy-docs script | null | callstack/react-native-paper | MIT License | Shell |
@@ -212,6 +212,19 @@ Options TestSuccessOptions() {
std::make_shared<IAMIntegrationTestIdempotencyPolicy>());
}
+template <typename Functor>
+google::cloud::internal::invoke_result_t<Functor> StatusRetryLoop(
+ Functor&& operation) {
+ using ReturnType = google::cloud::internal::invoke_result_t<Functor>;
+ ReturnType s... | chore(iam): add retry to flaky integration test | null | googleapis/google-cloud-cpp | Apache License 2.0 | C++ |
@@ -19,9 +19,7 @@ class PinterestOAuth2Adapter(OAuth2Adapter):
settings = app_settings.PROVIDERS.get(provider_id, {})
provider_base_url = settings.get("PINTEREST_URL", provider_default_url)
- provider_api_version = settings.get(
- "API_VERSION", provider_default_api_version
- )
+ provider_api_version = settings.get("AP... | chore(pinterest): black | null | pennersr/django-allauth | MIT License | Python |
@@ -61,7 +61,12 @@ html_theme_options = {
"color-brand-primary": "#FBCB67",
"color-brand-content": "#FBCB67",
},
+
+ # PLEASE DO NOT DELETE the empty line between `start-announce` and `end-announce`
+ # PLEASE DO NOT DELETE `start-announce`/ `end-announce` it is used for our dev bot to inject announcement from GH
+
# s... | chore(docs): fix docs conf.py | null | jina-ai/jina | Apache License 2.0 | Python |
@@ -373,7 +373,7 @@ class SOEFDockerImage(DockerImage):
"# (Author Toby Simpson)",
"#",
"# Port we're listening on",
- "port 9002",
+ f"port {self._port}",
"#",
"# Our declared location",
"latitude 52.205278",
| chore: fix port forwarding in local soef | null | fetchai/agents-aea | Apache License 2.0 | Python |
@@ -1084,7 +1084,7 @@ func (c *immuClient) SafeReference(ctx context.Context, reference []byte, key []
return nil, err
}
- // to pass the following guard we need to add the index reference that is added also by the server
+ // The index reference addition grants that key is the same to the one handled in the server
key... | chore(pkg/client): fix comment | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -15,21 +15,21 @@ else
branch=$(git rev-parse --abbrev-ref HEAD)
fi
-npm_tag=
-case $branch in
- beta|feature/open-source-everything)
- echo --- versioning beta
- npm_tag=beta
- ;;
- master)
- echo --- versioning master
- npm_tag=latest
- ;;
- *)
- echo --- versioning canary
- npm_tag=canary
- ;;
-esac
+# npm_tag=
+#... | chore(release): build all packages using lerna | null | flood-io/element | Apache License 2.0 | Shell |
@@ -38,7 +38,7 @@ def start_instance(project_id: str, zone: str, instance_name: str):
Args:
project_id: project ID or project number of the Cloud project your instance belongs to.
zone: name of the zone your instance belongs to.
- instance_name: name of the instance your want to start.
+ instance_name: name of the inst... | chore(samples): Typo fix | null | googlecloudplatform/python-docs-samples | Apache License 2.0 | Python |
@@ -144,7 +144,7 @@ impl ResultTableSink {
#[async_trait]
impl Processor for ResultTableSink {
fn name(&self) -> &'static str {
- "FuseSink"
+ "ResultTableSink"
}
fn as_any(&mut self) -> &mut dyn Any {
| chore(http_handler): fix name of ResultTableSink | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -84,8 +84,8 @@ export class MacroTranslatorComponent {
});
}
} catch (ignoredAgain) {
- console.log(ignored);
- console.log(ignoredAgain);
+ // console.log(ignored);
+ // console.log(ignoredAgain);
this.invalidInputs = true;
break;
}
| chore: oops, console.logs | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -50,9 +50,7 @@ packages.forEach(package => {
prependFile(path.join(process.cwd(), `/docs/pages/content/${package}`, file),
`---
-layout: default
title: ${currentPageName.replace(/([A-Z])/g, " $1").trim()}
-parent: Pages
permalink: /playground/${package}/pages/${currentPageName}/
nav_exclude: true
---
| chore: display test pages standalone | null | sap/ui5-webcomponents | Apache License 2.0 | JavaScript |
@@ -36,7 +36,7 @@ use ruma::{
serde::Raw,
uint, EventId, MilliSecondsSinceUnixEpoch, OwnedEventId, OwnedTransactionId, OwnedUserId,
};
-use tracing::{debug, error, info, warn};
+use tracing::{debug, error, info, trace, warn};
use super::{
event_item::{BundledReactions, Sticker, TimelineDetails},
@@ -470,7 +470,10 @@ im... | chore(sdk): Lower log level of event ID duplication event | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@@ -113,6 +113,11 @@ extension CardViewController {
holderNameItem.identifier = ViewIdentifierBuilder.build(scopeInstance: scope, postfix: "holderNameItem")
holderNameItem.contentType = .name
+ // FIXME: - Change implementation
+ let shopperName = shopperInformation?.shopperName
+ let holderName = "\(shopperName?.first... | chore: Prefilled social security number value | null | adyen/adyen-ios | MIT License | Swift |
@@ -25,6 +25,17 @@ class BACSDirectDebitInputFormViewControllerTests: XCTestCase {
try super.tearDownWithError()
}
+ func testTitleIsSetOnCreation() throws {
+ // When
+ let title = try XCTUnwrap(sut.title)
+ XCTAssertFalse(title.isEmpty)
+ }
+
+ func testDelegateIsSetOnCreation() throws {
+ // When
+ XCTAssertNotNil(s... | chore: Test navigation bar set up on input view | null | adyen/adyen-ios | MIT License | Swift |
@@ -333,7 +333,7 @@ export class PreviewWeb<TFramework extends AnyFramework> {
// - a story selected in "docs" viewMode,
// in which case we render the docsPage for that story
async renderSelection({ persistedArgs }: { persistedArgs?: Args } = {}) {
- const { selection, selectionSpecifier } = this.urlStore;
+ const { s... | chore: remove not used var | null | storybookjs/storybook | MIT License | TypeScript |
@@ -11,7 +11,6 @@ use datafusion::{
};
use internal_types::selection::Selection;
use object_store::{
- cache::Cache,
path::{parsed::DirsAndFileName, ObjectStorePath, Path},
ObjectStore, ObjectStoreApi,
};
@@ -281,8 +280,6 @@ impl Storage {
// todo(paul): Here is where I'd get the cache from object store. If it has
// o... | chore: remove extraneous example code from parquet storage | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -15,7 +15,7 @@ private const val AUTH_ALIAS = "mal_private_auth"
private const val PREFERENCE_AUTH = "pref_auth"
private const val PREFERENCE_USER = "pref_user"
-// TODO: this should perform some caching on the credentials
+// This should perform some caching on the credentials
@Singleton
class MalAuthorizer @Inject... | chore: remove todo on authorizer | null | chesire/nekome | Apache License 2.0 | Kotlin |
# limitations under the License.
{
- # set the service account key as a GOOGLE_APPLICATION_CREDENTIALS
- export GOOGLE_APPLICATION_CREDENTIALS=~/key.json
-
- # activate the python virtual env
- source ~/cloudshell_open/myenv/bin/activate
-
# Create a GCS bucket and upload the product data to the bucket
output=$(python ... | chore(samples): remove unnecessary commands | null | googlecloudplatform/python-docs-samples | Apache License 2.0 | Shell |
@@ -232,3 +232,38 @@ test('When given overrides should remap projects to override environments', asyn
expect(projects).toContain('enabled');
expect(projects).not.toContain('default');
});
+
+test('Override works correctly when enabling default and disabling prod and dev', async () => {
+ const defaultEnvironment = 'def... | chore: extend tests for enabled environments | null | unleash/unleash | Apache License 2.0 | TypeScript |
@@ -61,9 +61,9 @@ internal final class StoredCardAlertManager: NSObject, UITextFieldDelegate, APIC
})
let cancelActionTitle = localizedString(.cancelButton, localizationParameters)
- let cancelAction = UIAlertAction(title: cancelActionTitle, style: .cancel) { _ in
- self.completionHandler?(.failure(ComponentError.cance... | chore: fix retain cycle | null | adyen/adyen-ios | MIT License | Swift |
@@ -60,7 +60,7 @@ var (
provisioningStateSucceeded = "Succeeded"
testVMName = fakeNodeID
- testVMURI = fmt.Sprint(virtualMachineURIFormat, testSubscription, testResourceGroup, testVMName)
+ testVMURI = fmt.Sprintf(virtualMachineURIFormat, testSubscription, testResourceGroup, testVMName)
testVMSize = compute.VirtualMach... | chore: Fix misuse of fmt.Sprint in nodeserver_test.go | null | kubernetes-sigs/azuredisk-csi-driver | Apache License 2.0 | Go |
@@ -25,10 +25,10 @@ key_filename=""
cleanup() {
exit_code=$?
if [ "$exit_code" -ne 0 ] && [ "$CLEAN_EXIT" -ne 1 ]; then
- echo "ERROR: script failed during execution"
+ log "ERROR: script failed during execution"
if [ "$DEBUG" -eq 0 ]; then
- echo "For more verbose output, re-run this script with the debug flag (./inst... | chore: log install.sh messages to stderr | null | dopplerhq/cli | Apache License 2.0 | Shell |
@@ -65,7 +65,6 @@ class PgWriteTest extends SpannerPgTestCase
arraytimestampfield timestamptz[],
arraydatefield date[],
arraypgnumericfield numeric[],
- arraypgjsonbfield jsonb[],
PRIMARY KEY (id)
)',
'CREATE TABLE ' . self::COMMIT_TIMESTAMP_TABLE_NAME . ' (
@@ -253,9 +252,6 @@ class PgWriteTest extends SpannerPgTestCa... | chore(Spanner): Removed JSONB array system tests | null | googleapis/google-cloud-php | Apache License 2.0 | PHP |
@@ -67,11 +67,13 @@ class Amazon extends OAuth
'POST',
'https://api.amazon.com/auth/o2/token',
$headers,
- 'code=' . urlencode($code) .
- '&client_id=' . urlencode($this->appID) .
- '&client_secret=' . urlencode($this->appSecret).
- '&redirect_uri='.urlencode($this->callback).
- '&grant_type=authorization_code'
+ http_... | chore: updated Amazon Adapter Methods | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
@@ -50,6 +50,11 @@ public class LimitRecordCursorFactory extends AbstractRecordCursorFactory {
return base.recordCursorSupportsRandomAccess();
}
+ @Override
+ public void close() {
+ base.close();
+ }
+
private static class LimitRecordCursor implements RecordCursor {
private final Function loFunction;
private final Fun... | chore(cairo): fix memory leak in LimitRecordCursorFactory | null | questdb/questdb | Apache License 2.0 | Java |
@@ -28,7 +28,7 @@ for _file in files_to_scan:
has_f_string = f_string_pattern.search(line)
if has_f_string:
errors_encounter += 1
- print(f'\nF-strings are not supported for translations at line number {line_number + 1}\n{line.strip()[:100]}')
+ print(f'\nF-strings are not supported for translations at line number {lin... | chore: Show correct line number | null | frappe/frappe | MIT License | Python |
+defmodule Realtime.RLS.Repo.Migrations.GrantRealtimeUsageToAuthenticatedRole do
+ use Ecto.Migration
+
+ def change do
+ execute "grant usage on schema realtime to authenticated;"
+ end
+end
| chore: grant realtime schema usage to authenticated role | null | supabase/realtime | Apache License 2.0 | Elixir |
@@ -3,6 +3,8 @@ const sgf = require('staged-git-files');
const path = require('path');
const sortByHeading = require('./sortByHeading');
const chineseFormat = require('./chineseFormat');
+const util = require('util');
+const exec = util.promisify(require('child_process').exec);
/**
* Processors are objects contains two... | chore: git add formatted files | null | diygod/rsshub | MIT License | JavaScript |
@@ -5,9 +5,14 @@ import {configureTestSuite} from 'ng-bullet';
import {fromEvent} from 'rxjs';
describe('TuiLazyLoading directive', () => {
+ // converted https://picsum.photos/1/1 to base64
+ // for exclude network troubles when testing
+ const picsumPhotos =
+ 'data:image/jpeg;base64,/9j/4AAQSkZJRgABAQAAAQABAAD/4QDeR... | chore: exclude network troubles when testing | null | tinkoffcreditsystems/taiga-ui | Apache License 2.0 | TypeScript |
@@ -14,7 +14,7 @@ cd build
cmake -DCMAKE_BUILD_TYPE=Debug ..
cmake --build . -v
-ls -la ../../target/release
+ls -la ../../target/debug
echo #####################################
echo # Make library available for examples
| chore: fix ci build script | null | pact-foundation/pact-reference | MIT License | Shell |
@@ -173,7 +173,7 @@ private void OnEnable()
break;
}
- if (contentSource != ContentSource.LOCAL && forceLocalComms)
+ if (forceLocalComms)
{
debugString += "LOCAL_COMMS&";
}
| chore: remove condition for using LOCAL_COMMS url param | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -41,7 +41,7 @@ function uploadPkgCli {
if [[ "$CIRCLE_BRANCH" == "release" ]] || [[ "$CIRCLE_BRANCH" == "beta" ]] || [[ "$CIRCLE_BRANCH" =~ ^tagged-release ]]; then
tar -czvf amplify-pkg-linux-arm64.tgz amplify-pkg-linux-arm64
tar -czvf amplify-pkg-linux-x64.tgz amplify-pkg-linux-x64
- tar -czvf amplify-pkg-macos-x6... | chore: fix upload pkg script | null | aws-amplify/amplify-cli | Apache License 2.0 | Shell |
#!/bin/bash
set -e
+shopt -s extglob
+
+DEPRECATED_PACKAGES="@ciscospark/storage-adapter-session-storage \
+ @ciscospark/sparkd"
PACKAGES=$(echo packages/node_modules/{*,@ciscospark/*,@webex/*} | xargs -n 1 | sed 's/packages\/node_modules\///' | xargs -n 1 | grep -v '^@ciscospark$' | grep -v '^samples$' | grep -v '^@we... | chore(lint-packages): exclude deprecated packages | null | webex/webex-js-sdk | MIT License | Shell |
@@ -109,16 +109,17 @@ return [
'enabled' => true,
'mock' => false,
],
+ 'twitter' => [
+ 'developers' => 'https://developer.twitter.com/',
+ 'icon' => 'icon-twitter',
+ 'enabled' => false,
+ 'mock' => false
+ ],
// Keep Last
'mock' => [
'developers' => 'https://appwrite.io',
'icon' => 'icon-appwrite',
'enabled' => true... | chore: updated providers list | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
@@ -34,6 +34,12 @@ import com.ibm.watson.developer_cloud.util.Validator;
import okhttp3.MultipartBody;
import okhttp3.RequestBody;
+import java.io.ByteArrayInputStream;
+import java.io.File;
+import java.io.FileNotFoundException;
+import java.util.HashMap;
+import java.util.Map;
+
/**
* IBM Watson™ Natural Langua... | chore(Natural Language Classifier): Apply manual changes | null | watson-developer-cloud/java-sdk | Apache License 2.0 | Java |
@@ -20,7 +20,7 @@ import type {
import type TranslationConfig from './TranslationConfig';
import type {ConstraintKey} from './VariationConstraintUtils';
-const {hasKeys} = require('../FbtUtil');
+const {hasKeys, varDump} = require('../FbtUtil');
const {replaceClearTokensWithTokenAliases} = require('../FbtUtil');
const ... | chore(babel-plugin-fbt): improve error messages from TranslationBuilder | null | facebook/fbt | MIT License | JavaScript |
@@ -42,7 +42,7 @@ module.exports = ({ context, config, assets }) => {
}
try {
- if (SUPPORTED_IMAGE_TYPES.includes(ext)) {
+ if (SUPPORTED_IMAGE_TYPES.includes(ext.toLowerCase())) {
const imageOptions = assets.images.createImageOptions(options)
const filename = assets.images.createFileName(filePath, imageOptions, asset... | chore(develop): allow uppercase asset extensions | null | gridsome/gridsome | MIT License | JavaScript |
@@ -6,9 +6,10 @@ fi
REMOTE=$1
USERNAME=$2
JSDIR=$3
+DEST_PATH="_latest_backup"
-mkdir _latest_backup
-cd _latest_backup
+mkdir $DEST_PATH
+cd $DEST_PATH
echo "download configuration locally..."
# ssh root@$REMOTE "sudo tar zcvf /tmp/letsencrypt_backup.tar.gz /etc/letsencrypt &>/dev/null"
| chore(maintenance): store backup destination path in variable | null | openwhyd/openwhyd | MIT License | Shell |
@@ -392,7 +392,7 @@ func TestRevocationAll(t *testing.T) {
// check that the events of the update message match our issuance records
require.Len(t, update[revocationPkCounter].Events, 4)
- require.Equal(t, 0, update[revocationPkCounter].Events[0].E.Cmp(big.NewInt(0)))
+ require.Equal(t, 0, update[revocationPkCounter].E... | chore: change integer of initial revocation event to 1 | null | privacybydesign/irmago | Apache License 2.0 | Go |
@@ -7,11 +7,12 @@ import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.security.authentication.AuthenticationManager;
+import org.springframework.security.authentication.... | chore(backend): replace usage of deprecate WebSecurityConfigurerAdapter | null | papermc/hangar | MIT License | Java |
@@ -19,6 +19,7 @@ cp -r dist-server/$RELEASE_VERSION_DIR /tmp/repo-server/public
cd /tmp/repo-server
git config user.email $GIT_USER_EMAIL
git config user.name $GIT_USER_NAME
+git checkout -b $RELEASE_VERSION
git add public
git commit -m "chore(release): $RELEASE_VERSION"
-git push --follow-tags origin master
+git push... | chore(common): Push branch to static server repo instead | null | bigcommerce/checkout-sdk-js | MIT License | Shell |
@@ -92,15 +92,14 @@ async fn new_sql_system_tables() {
#[tokio::test]
#[ignore]
async fn periods() {
- unimplemented!("See <https://github.com/influxdata/influxdb_iox/issues/6515>");
- // test_helpers::maybe_start_logging();
- //
- // TestCase {
- // input: "cases/in/periods.sql",
- // chunk_stage: ChunkStage::Ingester... | chore: uncomment now working tests in query_tests2 | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.