diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
@@ -1162,6 +1162,7 @@ impl<T: Config> Pallet<T> { T::PalletId::get().into_account_truncating() } + // TODO: return `Amount<T>`s instead of `FixedU128` pub fn get_account_liquidity(account: &T::AccountId) -> Result<(Liquidity, Shortfall), DispatchError> { let total_borrow_value = Self::total_borrowed_value(account)?; le...
chore(loans): Amount<T> todo
null
interlay/interbtc
Apache License 2.0
Rust
@@ -49,7 +49,7 @@ class Api ], 404 => [ 'title' => 'Not Found', - 'message' => 'Not Found', + 'message' => 'The requested resource or endpoint could not be found', 'http_status_code' => 404, ], ];
chore(endpoints): typo update 404 message
null
flextype/flextype
MIT License
PHP
@@ -154,6 +154,7 @@ fn match_result_to_hyper_response(request: &Request, match_result: MatchResult) .map_err(|_| InteractionError::ResponseBodyError) }, _ => { + debug!("Request did not match: {:?}", match_result); Response::builder() .status(500) .header(hyper::header::ACCESS_CONTROL_ALLOW_ORIGIN, "*")
chore: add debug log entry when request does not match
null
pact-foundation/pact-reference
MIT License
Rust
# {:credo, "mix credo --format oneline"}, {:check_formatter, command: "mix ash.formatter --check"}, - {:unused_deps, command: "mix deps.unlock --check-unused"} + # TODO: upgrade to the new version of ex_check that should do this on the right elixir version + # {:unused_deps, command: "mix deps.unlock --check-unused"} #...
chore: stop doing check-unused
null
ash-project/ash
MIT License
Elixir
@@ -18,7 +18,7 @@ import {InjectionScopeError} from "../errors/InjectionScopeError"; import {IInjectableMethod, IProvider, ProviderScope} from "../interfaces"; import {IInjectableProperties, IInjectablePropertyService, IInjectablePropertyValue} from "../interfaces/IInjectableProperties"; import {ProviderType} from "../...
chore(di): Remove static method InjectorService.service
null
typedproject/tsed
MIT License
TypeScript
@@ -28,6 +28,13 @@ if [[ -f /etc/redhat-release ]] || [[ -f /etc/SuSE-release ]]; then disable_chkconfig fi fi + if [[ $1 -ge 1 ]]; then + # Package upgrade, not uninstall + + if [[ "$(readlink /proc/1/exe)" == */systemd ]]; then + systemctl try-restart telegraf.service >/dev/null 2>&1 || : + fi + fi elif [[ -f /etc/os...
chore: restart service if it is already running and upgraded via RPM
null
influxdata/telegraf
MIT License
Shell
@@ -15,6 +15,39 @@ export const trails: TrailType[] = [ display: ArticleDisplay.Standard, }, dataLinkName: 'news | group-0 | card-@1', + + supportingContent: [ + { + url: 'https://www.theguardian.com', + format: { + display: ArticleDisplay.Standard, + design: ArticleDesign.Standard, + theme: ArticlePillar.News, + }, + ...
chore: Added supportingContent to the trail fixture
null
guardian/dotcom-rendering
Apache License 2.0
TypeScript
@@ -94,7 +94,7 @@ impl StageTableSink { let mut max_file_size = table_info.stage_info.copy_options.max_file_size; if max_file_size == 0 { // 5G per file by default - max_file_size = 5 * 1024 * 1024 * 1024; + max_file_size = 64 * 1024 * 1024; } let single = table_info.stage_info.copy_options.single;
chore(unload): update max_file_size from 5G to 64M
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -11,6 +11,7 @@ import androidx.databinding.DataBindingUtil import androidx.lifecycle.Observer import androidx.lifecycle.ViewModelProvider import androidx.lifecycle.ViewModelProviders +import androidx.recyclerview.widget.GridLayoutManager import androidx.recyclerview.widget.LinearLayoutManager import androidx.recycle...
chore: remove full package name being used
null
chesire/nekome
Apache License 2.0
Kotlin
@@ -26,14 +26,19 @@ defmodule Logflare.SqlTest do Sandbox.unboxed_run(Logflare.Repo, fn -> user = insert(:user) source = insert(:source, user: user, name: "my_table") + source_dots = insert(:source, user: user, name: "my.table.name") source_other = insert(:source, user: user, name: "other_table") table = bq_table_name(...
chore: add dot name tests
null
logflare/logflare
Apache License 2.0
Elixir
@@ -1180,10 +1180,81 @@ impl TryFrom<Vec<u8>> for SequencedEntry { } } +pub mod test_helpers { + use super::*; + use influxdb_line_protocol::parse_lines; + + /// Converts the line protocol to a vec of ShardedEntry with a single shard + /// and a single partition + pub fn lp_to_entry(lp: &str) -> Entry { + let lines: Ve...
chore: Update Entry with test helpers
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -82,12 +82,25 @@ int main(int argc, char* argv[]) { SetupLogging("rime.tools"); if (argc == 1) { - std::cout << "options:" << std::endl - << "\t--build [user_data_dir shared_data_dir staging_dir]" << std::endl - << "\t--add-schema schema_id [...]" << std::endl - << "\t--set-active-schema schema_id" << std::endl - <<...
chore(rime_deployer): update usage message
null
rime/librime
BSD 3-Clause New or Revised License
C++
@@ -94,15 +94,15 @@ public static GameObject FindInScene() private void Awake() { - rightHand = transform.FindChild("RightHand"); + rightHand = transform.Find("RightHand"); rightHand.gameObject.SetActive(false); - leftHand = transform.FindChild("LeftHand"); + leftHand = transform.Find("LeftHand"); leftHand.gameObject.S...
chore(Simulator): switch input sim from .FindChild to Transform.Find
null
extendrealityltd/vrtk
MIT License
C#
@@ -18,7 +18,7 @@ package gw import ( "encoding/json" - "strconv" + "fmt" "time" "github.com/codenotary/immudb/pkg/client" @@ -154,12 +154,12 @@ func (o Options) WithLogfile(logfile string) Options { } func (o Options) Bind() string { - return o.Address + ":" + strconv.Itoa(o.Port) + return fmt.Sprintf("%s:%d", o.Addre...
chore: use Sprintf instead of string concat
null
codenotary/immudb
Apache License 2.0
Go
@@ -32,9 +32,7 @@ internal class ShareableVoucherView: UIView, Localizable { } private func addVoucherView() { - voucherCardView.translatesAutoresizingMaskIntoConstraints = false addSubview(voucherCardView) - voucherCardView.adyen.anchor(inside: self) }
chore: Unused voucher view mask translation
null
adyen/adyen-ios
MIT License
Swift
@@ -49,15 +49,10 @@ protected async Task<TResult> RunIsolatedAsync(string configurationFile) var bindingRedirects = GetBindingRedirects(); var assemblies = GetAssemblies(assemblyDirectory); - Console.WriteLine($"LoadDefaultNugetCaches: {LoadDefaultNugetCaches}"); - if (LoadDefaultNugetCaches) { var defaultNugetPackages...
chore: removed console logs
null
ricosuter/nswag
MIT License
C#
@@ -25,7 +25,6 @@ import javax.inject.Singleton @Singleton @Subcomponent(modules = [ConfigModule::class]) interface ConfigComponent { - @SecretKey - fun secretKey(): String + @SecretKey fun secretKey(): String fun databaseConfig(): DatabaseConfig } \ No newline at end of file
chore: Add remaining file
null
patilshreyas/notykt
Apache License 2.0
Kotlin
@@ -1131,7 +1131,7 @@ declare namespace Deno { * seconds (UNIX epoch time) or as `Date` objects. * * ```ts - * const file = Deno.openSync("file.txt", { create: true }); + * const file = Deno.openSync("file.txt", { create: true, write: true }); * Deno.futimeSync(file.rid, 1556495550, new Date()); * ``` */ @@ -1148,7 +11...
chore(cli): fix futime and futimeSync code examples
null
denoland/deno
MIT License
TypeScript
* limitations under the License. */ -/* - * Copyright 2019-2021 CloudNetService team & contributors - * - * 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/licen...
chore(sp): Remove duplicate copyright header
null
cloudnetservice/cloudnet-v3
Apache License 2.0
Kotlin
@@ -400,7 +400,7 @@ public abstract class NodeUpdater implements FallibleCommand { defaults.put("typescript", "4.5.3"); - final String WORKBOX_VERSION = "6.4.2"; + final String WORKBOX_VERSION = "6.5.0"; if (featureFlags.isEnabled(FeatureFlags.VITE)) { defaults.put("vite", "v2.8.2");
chore: upgrade workbox to 6.5
null
vaadin/flow
Apache License 2.0
Java
set -e # exit with nonzero exit code if anything fails +if [[ $GITHUB_ACTOR == "cal-smith" ]]; then + # exit early, since we don't want to try publishing _again_ + exit 0; +fi + # set username and email so git knows who we are git config user.name "cal-smith" git config user.email "callums@ca.ibm.com"
chore: skip running release if the committer is automated
null
carbon-design-system/carbon-addons-iot-react
Apache License 2.0
Shell
@@ -101,7 +101,7 @@ Link.defaultProps = { }; Link.propTypes = { - as: PropTypes.sting, + as: PropTypes.string, children: PropTypes.node.isRequired, className: PropTypes.string, href: PropTypes.string,
chore: fix prop-type error
null
reactioncommerce/example-storefront
Apache License 2.0
JavaScript
@@ -52,7 +52,7 @@ export default ({ location, globalContext, children }) => { // mountNode, // ); .replace( - /ReactDOM.render\(\s?([^]+?)(,([\r\n])(\s)*mountNode,\s?\))/g, + /ReactDOM.render\(\s?([^]+?)(,([\r\n])(\s)*mountNode,(\s)*\))/g, `ReactDOM.render($1, document.getElementById('${containerId}'))`, );
chore: fix regular parsing errors. fix
null
zhongantech/zarm
MIT License
JavaScript
@@ -40,7 +40,7 @@ function getOutput() { # Parse stdin and get the value associated with the given key. function parseJson() { - python3 -c "import sys, json; print(json.load(sys.stdin)['$1'])" + jq ".$1" -r } # Example use: getModuleOutput java-redis redis_network
chore: Use jq to extract field
null
googleapis/google-cloud-java
Apache License 2.0
Shell
@@ -349,7 +349,7 @@ class InProcessExecutor implements Executor { const { argvNoOptions, parsedOptions } = this.parseOptions(argv, evaluator) if (evaluator.options && evaluator.options.requiresLocal && !hasLocalAccess()) { - debug('command does not work in a browser') + debug('command does not work in a browser', origi...
chore: improve debug output for command failures due to inBrowser restrictions
null
ibm/kui
Apache License 2.0
TypeScript
@@ -27,6 +27,10 @@ mixin RenderDecoratedBoxMixin on BackgroundImageMixin { if (element != null) { element.cropBorderWidth = (margin.left ?? 0) + (margin.right ?? 0); } + /// cause flutter Border width is inside the element + /// but w3c border is outside the element + /// so use margin to fix it + renderBorderMargin = ...
chore: add comment for boderMargin
null
openkraken/kraken
Apache License 2.0
Dart
@@ -499,7 +499,8 @@ export class CollectionService implements OnModuleInit { for (const coll of [...descendants.reverse(), collection]) { const affectedVariantIds = await this.getCollectionProductVariantIds(coll); const deletedColl = new Collection(coll); - // To avoid perfomance issues on huge collection, we first del...
chore(core): Fix typo in comment
null
vendure-ecommerce/vendure
MIT License
TypeScript
@@ -45,7 +45,10 @@ public class TopicSubscriptionManager implements Runnable { protected final Object MONITOR = new Object(); protected EngineClient engineClient; + protected List<TopicSubscription> subscriptions; + protected List<TopicRequestDto> taskTopicRequests; + protected Map<String, ExternalTaskHandler> external...
chore(topic): clear array/map instead of creating always a new one
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -42,12 +42,6 @@ internal class AbstractVoucherView: UIView, Localizable { internal weak var presenter: UIViewController? - private lazy var apiClient: APIClient = { - var environment = Environment(baseURL: URL(string: "http://localhost:8080/")) - environment.clientKey = "devl_F73CCZ4Y7NHFRLC3OMVZHDIVQY47VWFL" - retu...
chore: removed unwanted code from AbstractVoucherView.swift
null
adyen/adyen-ios
MIT License
Swift
// iterators2.rs // In this module, you'll learn some of unique advantages that iterators can offer // Step 1. Complete the `capitalize_first` function to pass the first two cases -// Step 2. Apply the `capitalize_first` function to a vector of strings, ensuring that it +// Step 2. Apply the `capitalize_first` function...
chore(iterators2): Add exercise instructions
null
rust-lang/rustlings
MIT License
Rust
@@ -36,7 +36,6 @@ module.exports = merge({ DEBUG: '', NODE_ENV: process.env.NODE_ENV || 'development', CISCOSPARK_ACCESS_TOKEN: process.env.CISCOSPARK_ACCESS_TOKEN, - TO_PERSON: process.env.TO_PERSON, // The follow environment variables are specific to our continuous // integration process and should not be used in gen...
chore(plugin-meetings): remove unnecessary env var
null
webex/webex-js-sdk
MIT License
JavaScript
@@ -32,6 +32,7 @@ import org.springframework.web.server.ServerWebExchange; import reactor.core.publisher.Mono; import reactor.core.scheduler.Schedulers; +import javax.mail.MessagingException; import java.io.File; import java.io.FileInputStream; import java.io.IOException; @@ -333,6 +334,7 @@ public class EnvManagerCEIm...
chore: Send test email error message to client
null
appsmithorg/appsmith
Apache License 2.0
Java
@@ -118,10 +118,8 @@ where while let Some(maybe_batch) = stream.next().await { let batch = maybe_batch?; - if batch.num_rows() != 0 { writer.write(&batch)?; } - } let meta = writer.close().map_err(CodecError::from)?; if meta.num_rows == 0 {
chore: remove unecessary batch check
null
influxdata/influxdb_iox
Apache License 2.0
Rust
@@ -170,6 +170,22 @@ const collection = [ }, ]; +for (let i = collection.length; i < 100; i += 1) { + collection.push({ + id: i, + name: 'Title with icon and actions', + created: '2016-09-22', + modified: '2016-09-22', + description: 'Simple row with icon and actions', + author: 'Jean-Pierre DUPONT', + icon: 'talend-fi...
chore(components/VirtualizedList): increase dataset in the stories
null
talend/ui
Apache License 2.0
JavaScript
@@ -9,6 +9,7 @@ import ( "github.com/dgraph-io/ristretto" ) +// ristrettoCache local cache struct type ristrettoCache struct { Store *ristretto.Cache KeyPrefix string @@ -30,7 +31,7 @@ func NewRistrettoCache(keyPrefix string, encoding Encoding) Driver { } } -// Set add +// Set add cache func (r ristrettoCache) Set(key ...
chore: add func comment
null
go-eagle/eagle
MIT License
Go
@@ -26,9 +26,11 @@ export const PositionsTable: FC = () => { const table = useReactTable<Pair | PairWithBalance>({ data: liquidityPositions ?? [], + // @ts-ignore columns: COLUMNS, getCoreRowModel: getCoreRowModel(), }) + // @ts-ignore return <GenericTable<Pair | PairWithBalance> table={table} columns={COLUMNS} /> }
chore(apps/pool): ignore 4 build
null
sushiswap/sushiswap
MIT License
TypeScript
@@ -221,6 +221,10 @@ export class FishingReporter implements DataReporter { fisherStats$, mooch$ ), + filter(([fish, , , , , , , possibleMooch, , spot, , mooch]) => { + return spot.fishes.indexOf(fish.id) > -1 + && (!mooch || spot.fishes.indexOf(possibleMooch) > -1); + }), map(([fish, mapId, weatherId, previousWeatherI...
chore: avoid reporting data that isn't possible
null
ffxiv-teamcraft/ffxiv-teamcraft
MIT License
TypeScript
@@ -36,14 +36,15 @@ export class JavaScriptLanguageGenerator implements LanguageGenerator { generateAction(actionInContext: ActionInContext): string { const action = actionInContext.action; + if (this._isTest && (action.name === 'openPage' || action.name === 'closePage')) + return ''; + const pageAlias = actionInContex...
chore: don't close page in generated test
null
microsoft/playwright
Apache License 2.0
TypeScript
import unittest.mock -from stencila.schema.interpreter import Interpreter, DocumentCompiler, ParameterParser, execute_compilation, \ - compile_article, DocumentCompilationResult, SKIP_OUTPUT_SEMAPHORE -from stencila.schema.code_parsing import CodeChunkParseResult, CodeChunkExecution, CodeChunkParser +from stencila.sche...
chore(Py): Fix unused imports in tests
null
stencila/stencila
Apache License 2.0
Python
@@ -24,6 +24,7 @@ xcodebuild -exportArchive \ -exportPath $BUILD_PATH \ -allowProvisioningUpdates \ -authenticationKeyID $XCODE_AUTHENTICATION_KEY_ID \ --authenticationKeyIssuerID $XCODE_AUTHENTICATION_KEY_ISSUER_ID +-authenticationKeyIssuerID $XCODE_AUTHENTICATION_KEY_ISSUER_ID \ +-authenticationKeyPath $3 xcrun altoo...
chore: add key path to exportArchive
null
adyen/adyen-ios
MIT License
Shell
@@ -58,7 +58,8 @@ pub(crate) struct Cli { /// Force wallet recovery #[clap(long, alias = "recover")] pub recovery: bool, - /// Supply the optional wallet seed words for recovery on the command line + /// Supply the optional wallet seed words for recovery on the command line. They should be in one string space + /// sep...
chore: better help for seed-words command
null
tari-project/tari
BSD 3-Clause New or Revised License
Rust
@@ -242,11 +242,11 @@ EOF; } /** - * Test Audit user() relation method to PASS. + * Test Audit user() relation method to PASS (custom keys). * * @return void */ - public function testUserPass() + public function testUserPassCustomKeys() { $audit = Mockery::mock(Audit::class) ->makePartial();
chore(Audit): rename test class
null
owen-it/laravel-auditing
MIT License
PHP
@@ -22,7 +22,6 @@ limitations under the License. #include "falco_common.h" #include "gen_filter.h" - namespace falco { namespace outputs @@ -56,16 +55,16 @@ public: // Output an event that has matched some rule. virtual void output_event(gen_event *evt, std::string &rule, std::string &source, - falco_common::priority_t...
chore(userspace/falco): refine falco_output interface
null
falcosecurity/falco
Apache License 2.0
C
@@ -49,7 +49,7 @@ private HttpUtil() { var request = HttpRequest.newBuilder() .GET() .uri(url) - .timeout(Duration.ofSeconds(20)) + .timeout(Duration.ofMinutes(1)) .header("user-agent", USER_AGENT) .build(); return HTTP_CLIENT.send(request, body);
chore: increase http timeout to 1 minute
null
cloudnetservice/cloudnet-v3
Apache License 2.0
Java
@@ -14,7 +14,7 @@ version = config["metadata"]["version"] setuptools.setup( name="dbnd-mlflow", package_dir={"": "src"}, - install_requires=["dbnd==" + version, "mlflow~=1.6", "six"], + install_requires=["dbnd==" + version, "mlflow~=1.6.0", "six"], extras_require=dict(tests=[]), entry_points={ "dbnd": ["dbnd-mlflow = d...
chore: extend gitignore to ignore 'node_modules'-prefixed directories to allow keeping darwin and linux node_modules separately. Pin mlflow~=1.6.0 as it was originally intended
null
databand-ai/dbnd
Apache License 2.0
Python
@@ -1727,12 +1727,12 @@ void SuperMediaPlayer::checkEOS() return; } - int packetSize = mBufferController->GetPacketSize(BUFFER_TYPE_VIDEO); + int packetSize = mBufferController->GetPacketSize(BUFFER_TYPE_AUDIO); int frameSize = static_cast<int>(mAudioFrameQue.size()); if ((APP_BACKGROUND != mAppStatus)) { frameSize += ...
chore(superMediaplayer): use right packet queue when check eos
null
alibaba/cicadaplayer
MIT License
C++
@@ -235,8 +235,8 @@ class DateTimePicker extends DatePicker { * @public */ async openPicker(options) { - await this.setSlidersValue(); await super.openPicker(options); + await this.setSlidersValue(); this.expandHoursSlider(); this.storePreviousValue(); }
chore(ui5-datetime-picker): fix icon blinking on open
null
sap/ui5-webcomponents
Apache License 2.0
JavaScript
@@ -50,7 +50,7 @@ public class ProcessApplicationLogger extends ProcessEngineLogger { public ProcessEngineException exceptionWhileNotifyingPaTaskListener(Exception e) { return new ProcessEngineException(exceptionMessage( "002", - "Exception while notifying process application task listener."), e); + "Exception while no...
chore(engine): improve exception message
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -64,8 +64,8 @@ activate :protect_emails config[:places_lib_version] = ENV['VERSION'] config[:places_cdn_url] = "https://cdn.jsdelivr.net/npm/places.js@#{config[:places_lib_version]}" -config[:places_autocomplete_dataset_cdn_url] = "https://cdn.jsdelivr.net/npm/places.js@#{config[:places_lib_version]}/dist/placesAuto...
chore(jsdelivr): fix location of package
null
algolia/places
MIT License
Ruby
@@ -20,6 +20,7 @@ import dev.shreyaspatil.noty.api.exception.BadRequestException import dev.shreyaspatil.noty.api.exception.FailureMessages import dev.shreyaspatil.noty.api.model.request.AuthRequest import dev.shreyaspatil.noty.api.model.request.NoteRequest +import dev.shreyaspatil.noty.api.model.request.PinRequest imp...
chore: Add test cases to pin and unpin notes
null
patilshreyas/notykt
Apache License 2.0
Kotlin
@@ -50,7 +50,7 @@ mv instana-core-*.tgz ../aws-lambda/instana-core.tgz echo "Building local tar.gz for @instana/aws-lambda." cd ../aws-lambda npm --loglevel=warn pack -mv instana-aws-lambda-1*.tgz instana-aws-lambda.tgz +mv instana-aws-lambda-*.tgz instana-aws-lambda.tgz echo "Building local tar.gz for instana-aws-lamb...
chore: fixed packages/aws-lambda/lambdas/bin/create-zips.sh
null
instana/nodejs-sensor
MIT License
Shell
@@ -10,6 +10,7 @@ import XCTest class AffirmComponentTests: XCTestCase { + private var analyticsProviderMock: AnalyticsProviderMock! private var paymentMethod: PaymentMethod! private var apiContext: APIContext! private var adyenContext: AdyenContext! @@ -18,9 +19,11 @@ class AffirmComponentTests: XCTestCase { override ...
chore: Test Affirm sends telemetry event
null
adyen/adyen-ios
MIT License
Swift
<div class="mt-1 relative rounded-md shadow-sm"> @if ($prefix || $icon) - <div class="absolute inset-y-0 left-0 pl-2 flex items-center pointer-events-none + <div class="absolute inset-y-0 left-0 pl-2.5 flex items-center pointer-events-none {{ $hasError ? 'text-red-500' : 'text-gray-400' }}"> @if ($icon) <x-wireui::icon...
chore: justify prefix; fix append when has error
null
wireui/wireui
MIT License
PHP
@@ -10,8 +10,6 @@ module.exports = merge({ entry: './index.js', output: { filename: 'bundle.js', - library: 'ciscospark', - libraryTarget: 'var', path: __dirname, sourceMapFilename: '[file].map' },
chore(tooling): remove webpack library injection
null
webex/webex-js-sdk
MIT License
JavaScript
@@ -36,6 +36,9 @@ class Actions { // Reset selected step to last one context.commit('selectStep', { index: -1 }); + + // Update the preview + context.dispatch('updateDataset'); } @loading('dataset') @@ -70,6 +73,33 @@ class Actions { } } + // Following actions are the one that have an impact on the preview, and therefo...
chore(front): create actions for mutations that needs a dataset refresh
null
toucantoco/weaverbird
BSD 3-Clause New or Revised License
TypeScript
// Provides a base class for reference-counted classes. -#ifndef KRAKEN_FML_MEMORY_REF_COUNTED_H_ -#define KRAKEN_FML_MEMORY_REF_COUNTED_H_ +#ifndef FLUTTER_FML_MEMORY_REF_COUNTED_H_ +#define FLUTTER_FML_MEMORY_REF_COUNTED_H_ #include "ref_counted_internal.h" #include "ref_ptr.h" @@ -129,4 +129,4 @@ private: } // names...
chore: rename kraken to flutter
null
openkraken/kraken
Apache License 2.0
C
@@ -25,7 +25,8 @@ fi # install jq # (doing an apt-get update to install jq takes forever; often 80-90 seconds) -(cd bin && curl -L -O https://github.com/stedolan/jq/releases/download/jq-1.5/jq-linux64 && mv jq-linux64 jq && chmod +x jq) +JQ_PLATFROM=$(case $TRAVIS_OS_NAME in "linux" ) echo "jq-linux64";; "osx" ) echo "...
chore(tools/travis): update jq to 1.6 in linux and osx travis
null
ibm/kui
Apache License 2.0
Shell
@@ -90,7 +90,8 @@ func main() { SetTxLogMaxOpenedFiles(*openedLogFiles). SetCommitLogMaxOpenedFiles(*openedLogFiles). SetCompressionFormat(compressionFormat). - SetCompresionLevel(compressionLevel) + SetCompresionLevel(compressionLevel). + SetMaxValueLen(1 << 26) // 64Mb immuStore, err := store.Open(*dataDir, opts)
chore: change max value length to 64Mb
null
codenotary/immudb
Apache License 2.0
Go
-use crate::types::{Address, Bytes, H256, U256}; +use crate::types::{Address, Bytes, H256, U256, U64}; use serde::{Deserialize, Serialize}; #[derive(Debug, Default, Clone, PartialEq, Eq, Deserialize, Serialize)] @@ -11,13 +11,13 @@ pub struct StorageProof { #[derive(Debug, Default, Clone, PartialEq, Eq, Deserialize, Se...
chore: make proof response fields pub
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -198,7 +198,7 @@ get_pods() { sed -i 's/^/'${SLAVE_1}' /' "${TMP_FILE}"slave-1 sed -i 's/^/'${SLAVE_2}' /' "${TMP_FILE}"slave-2 - #tail +2 -q "${TMP_DIR}"/docker-slave-* |egrep -v pause\|kube-proxy\|calico | awk '{print$3"="$1}' |sed 's/\//\-/' > "${TMP_DIR}"/scenario-slave-pods.env + tail +2 -q "${TMP_DIR}"/docker-...
chore: uncomment host/pod indentification sed statement
null
kubernetes-simulator/simulator
Apache License 2.0
Shell
@@ -15,17 +15,40 @@ package org.camunda.bpm.engine.test.api.mock; import java.util.HashMap; import org.camunda.bpm.engine.ProcessEngineException; +import org.camunda.bpm.engine.RuntimeService; +import org.camunda.bpm.engine.TaskService; import org.camunda.bpm.engine.delegate.DelegateExecution; -import org.camunda.bpm.e...
chore(engine): convert MocksTest to JUnit 4
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
{ public static class ApplicationSettings { - public static string version = "0.6.3"; + public static string version = "0.6.4"; } public static class Environment
chore: updated build version to 0.6.4
null
decentraland/explorer
Apache License 2.0
C#
@@ -122,9 +122,20 @@ func (h *Handler) handleApplicationPOST( mesheryApplication := parsedBody.ApplicationData + bytApplication := []byte(mesheryApplication.ApplicationFile) // check whether the uploaded file is a docker compose file - if kompose.IsManifestADockerCompose([]byte(mesheryApplication.ApplicationFile)) { - ...
chore: Update the code to make use of validation and formatting offered
null
layer5io/meshery
Apache License 2.0
Go
@@ -24,6 +24,7 @@ import org.junit.Ignore; * @author Svetlana Dorokhova * */ +@Ignore public class CompetingCompleteTaskSetVariableTest extends ConcurrencyTestCase { protected static class ControllableCompleteTaskCommand extends ConcurrencyTestCase.ControllableCommand<Void> {
chore(test): ignore failing test case
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -1210,14 +1210,14 @@ class extends MeteorReactComponent<Translated<IProps & ITrackedProps>, IState> { } onSelectSegmentLineItem = (sli: SegmentLineItemUi, e: React.MouseEvent<HTMLDivElement>) => { - if (sli && sli.content && (sli.content as VTContent).editable && - ((((sli.content as VTContent).editable as VTEditabl...
chore: disable edit in/out
null
nrkno/tv-automation-server-core
MIT License
TypeScript
@@ -1058,8 +1058,8 @@ void BaseWindow::ResetBrowserViews() { &browser_view) && !browser_view.IsEmpty()) { if (browser_view->web_contents()) { - browser_view->web_contents()->SetOwnerWindow(nullptr); window_->RemoveBrowserView(browser_view->view()); + browser_view->web_contents()->SetOwnerWindow(nullptr); } }
chore: remove bv before setting owner window
null
electron/electron
MIT License
C++
@@ -174,6 +174,9 @@ export class GithubClient { this.setWorkingBranch(branch) } + /** + * @deprecated Call GithubClient#checkout instead + */ setWorkingRepoFullName(repoFullName: string) { this.setCookie(GithubClient.WORKING_REPO_COOKIE_KEY, repoFullName) } @@ -188,6 +191,9 @@ export class GithubClient { return this.ba...
chore: deprecate setWorkingX functions on GithubClient
null
tinacms/tinacms
Apache License 2.0
TypeScript
@@ -19,7 +19,7 @@ I18n::$locale = $flextype->registry->get('settings.locale'); // Add Admin Navigation $flextype->registry->set('admin_navigation.content.entries', ['title' => '<i class="fas fa-database"></i>' . __('admin_entries'), 'link' => $flextype->router->pathFor('admin.entries.index'), 'attributes' => ['class' =...
chore(admin-plugin): update fieldsets icon
null
flextype/flextype
MIT License
PHP
@@ -44,10 +44,11 @@ abstract class NdkToolchain { ?.let { it < MIN_BUGSNAG_ANDROID_VERSION } if (legacyUploadRequired == null) { logger.warn( - "Cannot detect Bugsnag SDK version for variant ${variantName.get()}, assuming a modern version is " + - "being used. This can cause problems with NDK symbols if older versions ...
chore: clarified the message for NDK builds where the version of bugsnag-android cannot be determined
null
bugsnag/bugsnag-android-gradle-plugin
MIT License
Kotlin
@@ -73,10 +73,18 @@ const getBase64Image = imageProps => { return fs.promises.readFile(cacheFile, `utf8`) } - return new Promise(resolve => { + return new Promise((resolve, reject) => { base64Img.requestBase64(requestUrl, (a, b, body) => { // TODO: against dogma, confirm whether writeFileSync is indeed slower - fs.prom...
chore(gatsby-source-contentful): trap base64 disk write
null
gatsbyjs/gatsby
MIT License
JavaScript
@@ -111,7 +111,7 @@ export const ChildListItem = ({ child, color }: ChildListItemProps) => { </View> </View> </View> - <DaySummary child={child} date={date} /> + {/*<DaySummary child={child} date={date} />*/} {scheduleAndCalendarThisWeek.slice(0, 3).map((calendarItem, i) => ( <Text category="p1" key={i}> {`${calendarIt...
chore: disable day summary for now
null
kolplattformen/skolplattformen
Apache License 2.0
TypeScript
@@ -14,6 +14,6 @@ prepare_jdks::switch_to_jdk 8 # about codecov: example-java-maven # https://github.com/codecov/example-java-maven/blob/master/.travis.yml -jvb::mvn_cmd -Pgen-code-cov clean cobertura:cobertura +jvb::mvn_cmd -Pgen-code-cov clean test bash <(curl -s https://codecov.io/bash)
chore(ci): use `mvn test` instead of cobertura
null
alibaba/transmittable-thread-local
Apache License 2.0
Shell
#! bash +# This script is run by npm when the deploy script is run +# (it's called by npm version) + set -e # exit immediately on error cd "$(dirname "$0")/.." @@ -15,3 +18,4 @@ DATE_STAMP=$(date +%F) sed -i '' -e 's/\[Unreleased\]/'"$PACKAGE_VERSION"' ('"$DATE_STAMP"')/g' CHANGELOG.md git add CHANGELOG.md +git add dis...
chore: build system tweak
null
arnog/mathlive
MIT License
Shell
@@ -113,10 +113,9 @@ class CSSBackground { if (contextId != null) { KrakenController controller = KrakenController.getControllerOfJSContextId(contextId)!; - url = controller.uriParser!.resolve(Uri.parse(url), Uri.parse(controller.href)).toString(); + url = controller.uriParser!.resolve(Uri.parse(url), Uri.parse(control...
chore: remove toString
null
openkraken/kraken
Apache License 2.0
Dart
@@ -499,7 +499,7 @@ def web_search(text, scope=None, start=0, limit=20): common_query = ''' SELECT `doctype`, `name`, `content`, `title`, `route` FROM `__global_search` WHERE {conditions} - LIMIT %(limit)s OFFSET %(start)s}''' + LIMIT %(limit)s OFFSET %(start)s''' scope_condition = '`route` like "%(scope)s" AND ' if sc...
chore: remove trailing closing bracket
null
frappe/frappe
MIT License
Python
@@ -219,15 +219,18 @@ class WP_REST_PodloveEpisode_Controller extends WP_REST_Controller 'soundbite_start' => [ 'description' => __('Start value of podcast:soundbite tag'), 'type' => 'string', + 'validate_callback' => [$this, 'update_item_validation_check_time'] + ], 'soundbite_duration' => [ 'description' => __('Durat...
chore: Episode api activate validation
null
podlove/podlove-publisher
MIT License
PHP
@@ -25,6 +25,8 @@ namespace ApiChecker [("IJSHandle", "asElement")] = "Implicit from C# type casting", [("Selectors", "register")] = "C# signature: RegisterAsync(string name, string script = null, string path = null, string content = null, bool? contentScript = null)", [("IBrowserType", "launch")] = "The ignoreDefaultA...
chore(api-check): update api checker to v1.5 feature match
null
microsoft/playwright-dotnet
MIT License
C#
@@ -90,7 +90,7 @@ defmodule Ash.DataLayer.Ets do Ash.DataLayer.Ets.table(resource) end - if Ash.DataLayer.Ets.private?(resource) do + if Ash.DataLayer.Ets.Info.private?(resource) do do_wrap_existing(resource, table) else case GenServer.start(__MODULE__, {resource, table}, @@ -124,7 +124,7 @@ defmodule Ash.DataLayer.Ets...
chore: fix ets test
null
ash-project/ash
MIT License
Elixir
@@ -5,7 +5,7 @@ import stringify from 'json-stable-stringify'; import _ from 'lodash'; import React from 'react'; import { unpad } from 'unigraph-dev-common/lib/utils/entityUtils'; - +// export const NavigationContext = React.createContext<(location: string) => any>( (location: string) => ({}), );
chore: test version bump
null
unigraph-dev/unigraph-dev
MIT License
TypeScript
@@ -289,9 +289,16 @@ func (s *InstallStatus) completed() { s.Complete = true s.Timestamp = utils.GetTimestamp() + log.WithFields(log.Fields{ + "timestamp": s.Timestamp, + }).Debug("completed") + // Exiting early will cause unresolved recipes to be marked as failed. for i, ss := range s.Statuses { if ss.Status == Recipe...
chore(execution): include log messages when canceling or completing
null
newrelic/newrelic-cli
Apache License 2.0
Go
@@ -39,7 +39,7 @@ This is the text version of this email subject='Test Subject', content=email_html, text_content=email_text - ).as_string() + ).as_string().replace("\r\n", "\n") def test_prepare_message_returns_already_encoded_string(self):
chore: replace rfc-compatible newlines with \n
null
frappe/frappe
MIT License
Python
@@ -31,7 +31,8 @@ defmodule Realtime.Application do database: Application.fetch_env!(:realtime, :db_name), password: Application.fetch_env!(:realtime, :db_password), port: Application.fetch_env!(:realtime, :db_port), - ssl: Application.fetch_env!(:realtime, :db_ssl) + ssl: Application.fetch_env!(:realtime, :db_ssl), + ...
chore: add application_name to differentiate connections on the DB
null
supabase/realtime
Apache License 2.0
Elixir
@@ -11,6 +11,7 @@ import PassKit internal enum Configuration { // swiftlint:disable explicit_acl + /// Please use your own web server between your app and adyen checkout API. static let demoServerEnvironment = DemoServerEnvironment.test static let componentsEnvironment = Environment.test
chore: added a disclaimer in Configuration.swift to ask merchants to use their own web server between their app and checkout api
null
adyen/adyen-ios
MIT License
Swift
@@ -14,7 +14,7 @@ config :logflare, Logflare.Google, project_id: "logflare-dev-238720", service_account: "logflare-dev@logflare-dev-238720.iam.gserviceaccount.com" -config :logflare, Logflare.Tracker, pool_size: 5, level: :warn +config :logflare, Logflare.Tracker, pool_size: 5, level: :error config :logflare, Logflare....
chore: up the log level for testing to error
null
logflare/logflare
Apache License 2.0
Elixir
@@ -156,7 +156,7 @@ kernels: } func listInitramfsVersions() ([]string, error) { - initramfsdir := "/boot/" + initramfsdir := "/boot" var initramfsKernels []string return initramfsKernels, filepath.WalkDir(initramfsdir, func(path string, d fs.DirEntry, err error) error { if err != nil { @@ -166,8 +166,8 @@ func listInit...
chore: walk without trailing slash
null
caos/orbos
Apache License 2.0
Go
@@ -31,6 +31,7 @@ import org.mockito.ArgumentCaptor; import javax.ws.rs.container.AsyncResponse; import java.util.ArrayList; +import java.util.Arrays; import java.util.Collections; import java.util.Date; import java.util.List; @@ -96,7 +97,6 @@ public class FetchAndLockHandlerTest { ClockUtil.reset(); } - @Ignore("CAM-...
chore(engine-rest-jaxrs2): make mockito test cases thread-safe
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -16,122 +16,128 @@ export default () => { id name: stateName state - anyPosData + aianANHPIDeathNotes + aianANHPIPosNotes + aianDeathCaution + aianDeathDispFlag + aianDeathNotes + aianDeathNotes + aianDeaths + aianPctDeath + aianPctPop + aianPctPos + aianPosCaution + aianPosDispFlag + aianPositives + aianPosNotes + ...
chore: Update fields in GraphQL
null
covid19tracking/website
Apache License 2.0
JavaScript
@@ -27,7 +27,7 @@ export default { browsers: [ playwrightLauncher({ product: 'firefox', concurrency: 1 }), playwrightLauncher({ product: 'chromium' }), - playwrightLauncher({ product: 'webkit' }), +// playwrightLauncher({ product: 'webkit' }), ], groups: packages.map(pkg => { return {
chore: run only chromium and firefox for now
null
ing-bank/lion
MIT License
JavaScript
@@ -11,8 +11,8 @@ echo # Build library with CMake echo ##################################### mkdir build cd build -cmake .. -cmake --build . +cmake -DCMAKE_BUILD_TYPE=Debug .. +cmake --build . -v ls -la ../../target/release
chore: compile debug on CI
null
pact-foundation/pact-reference
MIT License
Shell
package it.unibo.tuprolog.solve -import it.unibo.tuprolog.core.Directive -import it.unibo.tuprolog.core.Fact import it.unibo.tuprolog.core.Integer -import it.unibo.tuprolog.core.Struct import it.unibo.tuprolog.core.operators.Operator import it.unibo.tuprolog.core.operators.OperatorSet import it.unibo.tuprolog.core.oper...
chore(style): format directives tests
null
tuprolog/2p-kt
Apache License 2.0
Kotlin
@@ -134,8 +134,8 @@ func (po *PromOpts) checkLabel(label, pattern string) bool { return !matched } -// PromMiddleware returns a gin.HandlerFunc for exporting some Web metrics -func PromMiddleware(promOpts *PromOpts) gin.HandlerFunc { +// Prom returns a gin.HandlerFunc for exporting some Web metrics +func Prom(promOpts ...
chore: unify prom middleware name
null
go-eagle/eagle
MIT License
Go
@@ -50,7 +50,6 @@ import jadx.core.dex.nodes.FieldNode; import jadx.core.dex.nodes.InsnNode; import jadx.core.dex.nodes.MethodNode; import jadx.core.dex.nodes.RootNode; -import jadx.core.utils.DebugUtils; import jadx.core.utils.RegionUtils; import jadx.core.utils.exceptions.CodegenException; import jadx.core.utils.exce...
chore: remove debug method invoke
null
skylot/jadx
Apache License 2.0
Java
@@ -197,6 +197,7 @@ internal final class VoucherView: UIView, Localizable { button.addTarget(self, action: #selector(self.appleWalletButtonPressed), for: .touchUpInside) button.translatesAutoresizingMaskIntoConstraints = false button.accessibilityIdentifier = ViewIdentifierBuilder.build(scopeInstance: "adyen.voucher", ...
chore: Set height constraint for Add to apple wallet button
null
adyen/adyen-ios
MIT License
Swift
@@ -22,6 +22,4 @@ abstract class HttpClientInterceptor { Future<HttpClientResponse?> afterResponse(HttpClientRequest request, HttpClientResponse response); Future<HttpClientResponse?> shouldInterceptRequest(HttpClientRequest request); - - String customURLParser(String url, String originURL); }
chore: del customURLParser
null
openkraken/kraken
Apache License 2.0
Dart
// import Adyen -#if canImport(AdyenCard) - import AdyenCard -#endif import UIKit internal final class DropInNavigationController: UINavigationController { @@ -63,7 +60,7 @@ internal final class DropInNavigationController: UINavigationController { } if let topViewController = topViewController as? WrapperViewController...
chore: fixed the changing frame animation in DropInNavigationController when switching keyboards with different heights
null
adyen/adyen-ios
MIT License
Swift
@@ -2485,7 +2485,7 @@ function getSequence(arr: number[]): number[] { u = 0 v = result.length - 1 while (u < v) { - c = ((u + v) / 2) | 0 + c = (u + v) >> 1 if (arr[result[c]] < arrI) { u = c + 1 } else {
chore(runtime-core): use bit operations instead
null
vuejs/vue-next
MIT License
TypeScript
@@ -853,6 +853,7 @@ public class HistoricTaskInstanceQueryOrTest { } @Test + @RequiredHistoryLevel(ProcessEngineConfiguration.HISTORY_FULL) public void shouldReturnHistoricTasksWithHadCandidateUserOrHadCandidateGroup() { // given Task task1 = taskService.newTask(); @@ -876,6 +877,7 @@ public class HistoricTaskInstanceQ...
chore(test): specify correct history level for historic task query tests
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -67,6 +67,7 @@ public class WaitProcessor extends SynchronizedJob implements RescheduleContext, @Override public void close() { + processInQueue(); // Process incoming queue to close all contexts for (int i = 0, n = nextRerun.size(); i < n; i++) { Misc.free(nextRerun.poll()); }
chore: fix flapping test leaking fd in http
null
questdb/questdb
Apache License 2.0
Java
@@ -32,7 +32,7 @@ use crate::prelude::*; /// Same common aggregators pub trait ArrayAgg: Debug { /// Aggregate the sum of the ChunkedArray. - /// Returns `DataValue::Null` if the array is empty or only contains null values. + /// Returns `Null` value of current data type if the array is empty or only contains null valu...
chore: fix ArrayAgg docs
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -7,12 +7,12 @@ import com.chesire.malime.core.flags.SupportedService import com.chesire.malime.view.preferences.SortOption import javax.inject.Inject -private const val PREF_PRIMARY_SERVICE: String = "primaryService" -private const val PREF_ALLOW_CRASH_REPORTING: String = "allowCrashReporting" -private const val PRE...
chore(sharedpref): remove the variable type from the constants
null
chesire/nekome
Apache License 2.0
Kotlin