diff
stringlengths
12
9.3k
message
stringlengths
8
199
reasoning_trace
null
repo
stringlengths
6
68
license
stringclasses
3 values
language
stringclasses
16 values
@@ -38,8 +38,8 @@ export default { // '@nuxtjs/eslint-module' ['@nuxt/typescript-build', { typeCheck: { - memoryLimit: 4096, - workers: 2 + memoryLimit: 512, + workers: 1 }, ignoreNotFoundWarnings: false }],
chore: test less memory usage
null
vuestorefront/shopware-pwa
MIT License
JavaScript
@@ -62,7 +62,7 @@ export function transpileSync(code: string, opts?: TransformOptions): TransformR /** * load and initiate compiler wasm. */ -export const initSWC = async (denoCacheDir: string) => { +export const initWasm = async (denoCacheDir: string) => { const t = performance.now() const cachePath = path.join(denoCa...
chore(compiler): update initSWC to initWasm
null
alephjs/aleph.js
MIT License
TypeScript
@@ -3,7 +3,7 @@ export const getDefaultInstance = ({ _id }) => { if (!Meteor.isServer) throw Meteor.Error(401, 'Not Authorized'); return { name: 'Default Instance', - host: 'http://nlu:5000', + host: 'http://rasa:5005', projectId: _id, }; };
chore(default instance): Added right host upon creation of instance
null
botfront/botfront
Apache License 2.0
JavaScript
@@ -258,7 +258,10 @@ class Communication(Document): # Timeline Links def set_timeline_links(self): + if self.email_account and frappe.db.get_value("Email Account", self.email_account, "create_contact"): contacts = get_contacts([self.sender, self.recipients, self.cc, self.bcc]) + else: + contacts = [] for contact_name i...
chore: get_contacts only if email account is set
null
frappe/frappe
MIT License
Python
@@ -572,9 +572,7 @@ func (s *ImmuStore) Commit(entries []*KV) (id uint64, ts int64, alh [sha256.Size tx.htree.width++ } - eh := merkletree.Root(tx.htree) - - err = s.commit(entries, eh, tx) + err = s.commit(tx, entries) if err != nil { return } @@ -582,7 +580,7 @@ func (s *ImmuStore) Commit(entries []*KV) (id uint64, t...
chore: minor internal change on commit tx method
null
codenotary/immudb
Apache License 2.0
Go
if [ $TRAVIS_PULL_REQUEST == "false" ] then # Print connect log to let us know what is going on + echo Sauce Labs Log + tail $CONNECT_LOG echo Sauce Labs Error Log - cat $CONNECT_STDERR + tail $CONNECT_STDERR echo Sauce Labs Connect Log - cat $CONNECT_STDOUT + tail $CONNECT_STDOUT # Wait for Connect to be ready before ...
chore(logs): Change cat to tail
null
angular-ui/ui-grid
MIT License
Shell
@@ -4,9 +4,12 @@ import android.text.TextUtils; import com.midtrans.sdk.corekit.core.PaymentType; import com.midtrans.sdk.corekit.models.TransactionResponse; +import com.midtrans.sdk.corekit.models.VaNumber; import com.midtrans.sdk.uikit.abstracts.BasePaymentPresenter; import com.midtrans.sdk.uikit.utilities.UiKitConst...
chore: move the logic to get Other Va Processor and Other Va Expiration to private method
null
veritrans/veritrans-android
MIT License
Java
@@ -174,6 +174,7 @@ internal final class ComponentManager { private func createMBWayComponent(_ paymentMethod: MBWayPaymentMethod) -> MBWayComponent? { MBWayComponent(paymentMethod: paymentMethod, apiContext: apiContext, + shopperInformation: configuration.shopper, style: style.formComponent) } @@ -266,6 +267,7 @@ exte...
chore: Restore shopper configuration on component manager
null
adyen/adyen-ios
MIT License
Swift
+if [ ! -d "./server" ]; then + echo "This command needs to invoked on the root level" + exit +fi + +# run the build +echo "Running build" +(cd ./server; gulp build --staging) + +# With our current setup transferring the ./dist isn't enough +# We have to zip the entire directory (takes ages otherwise) +# Send it over, ...
chore: adds deploy script for staging server
null
machinelabs/machinelabs
MIT License
Shell
@@ -14,6 +14,7 @@ import { ResolverStrategy } from '../src/di'; import { + Constructable, DI, IContainer, IDefaultableInterfaceSymbol, @@ -1128,25 +1129,25 @@ describe(`The classInvokers object`, () => { class Dep6 {} it(`invoke() handles 0 deps`, () => { - const actual = classInvokers[0].invoke(container, Foo, []); + ...
chore(kernel): fix DI tests
null
aurelia/aurelia
MIT License
TypeScript
@@ -265,7 +265,7 @@ func (c *command) setAllFlags(cmd *cobra.Command) { cmd.Flags().String(optionNameBlockHash, "", "block hash of the block whose parent is the block that contains the transaction hash") cmd.Flags().Uint64(optionNameBlockTime, 15, "chain block time") cmd.Flags().String(optionNameSwapDeploymentGasPrice,...
chore: reduce warmup time
null
ethersphere/bee
BSD 3-Clause New or Revised License
Go
@@ -31,7 +31,7 @@ pub extern "C" fn pactffi_log_to_stdout(level_filter: LevelFilter) -> c_int { } }; - let status = pactffi_logger_attach_sink(spec.as_ptr(), level_filter); + let status = unsafe { pactffi_logger_attach_sink(spec.as_ptr(), level_filter) }; if status != 0 { return status; } @@ -57,7 +57,7 @@ pub extern "...
chore: mark pactffi_logger_attach_sink as unsafe
null
pact-foundation/pact-reference
MIT License
Rust
@@ -84,14 +84,10 @@ export const is = { string: <T>(d: T | string): d is T => typeof d !== 'string', }, JSON: { - object(d: unknown): d is JSONObject { - return (typeof d === 'object' && d && !Array.isArray(d)) || false - }, - array(d: unknown): d is JSONArray { - return Array.isArray(d) - }, - plain(d: unknown): d is ...
chore: shorten is
null
enixcoda/gitako
MIT License
TypeScript
@@ -246,7 +246,6 @@ func (c *Client) TxOperationsAndSignersAccountIdentifiers(signed bool, txBytes [ } // GetTx returns a transaction given its hash. For Rosetta we make a synthetic transaction for BeginBlock -// // and EndBlock to adhere to balance tracking rules. func (c *Client) GetTx(ctx context.Context, hash strin...
chore: remove awkward new line in comment
null
line/lbm-sdk
Apache License 2.0
Go
import Foundation /// Describes an action in which an OXXO voucher is presented to the shopper. -public class OXXOVoucherAction: GenericVoucherAction, DownloadableVoucher, +public class OXXOVoucherAction: GenericVoucherAction, + DownloadableVoucher, InstructionAwareVoucherAction { /// This reference is a short version ...
chore: minor formatting
null
adyen/adyen-ios
MIT License
Swift
@@ -24,6 +24,7 @@ import java.nio.file.Paths; import java.time.format.DateTimeFormatter; import java.util.ArrayList; import java.util.Collection; +import java.util.Collections; import java.util.HashMap; import java.util.List; import java.util.Map; @@ -167,6 +168,7 @@ public class TemplateParser { * @param sourceDirecto...
chore(rest-openapi): order the HTTP methods in the endpoint
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -26,6 +26,11 @@ The search command performs a search for New Relic entities. client.WithClient(func(nrClient *newrelic.NewRelic) { params := entities.SearchEntitiesParams{} + if entityName == "" && entityType == "" && entityAlertSeverity == "" && entityDomain == "" { + utils.LogIfError(cmd.Help()) + log.Fatal("one o...
chore(entities): require one of the filtering flags
null
newrelic/newrelic-cli
Apache License 2.0
Go
@@ -94,8 +94,8 @@ import dev.hilla.exception.EndpointValidationException.ValidationErrorData; @RestController @Import({ EndpointControllerConfiguration.class, EndpointProperties.class }) @ConditionalOnBean(annotation = Endpoint.class) -@NpmPackage(value = "@hilla/frontend", version = "0.0.18") -@NpmPackage(value = "@hi...
chore: update hilla npm packages to newer version
null
vaadin/flow
Apache License 2.0
Java
@@ -344,8 +344,6 @@ fn rename_app(bin_path: &Path, product_name: Option<&str>) -> crate::Result<Path .join(&product_name) .with_extension(bin_path.extension().unwrap_or_default()); - std::fs::create_dir_all(product_path.parent().unwrap())?; - rename(&bin_path, &product_path).with_context(|| { format!( "failed to rename...
chore(cli): remove unneeded create_dir_all call
null
tauri-apps/tauri
Apache License 2.0
Rust
@@ -292,7 +292,7 @@ class ProgressBar(TimeContext): speed = self._completed_progress / self.duration self.update(0, all_completed=True) sys.stdout.write( - f'\033[K{self._completed_progress:.0f} steps done in {self.readable_duration} ({speed:3.1f} step/s)\n' + f'\033[K{self._completed_progress:.0f} steps done in {self....
chore(helper): remove redundant progress info
null
jina-ai/jina
Apache License 2.0
Python
@@ -76,6 +76,7 @@ open class Player: BaseObject { Event.playing.rawValue, Event.didComplete.rawValue, Event.didPause.rawValue, Event.stalled.rawValue, Event.didStop.rawValue, Event.bufferUpdate.rawValue, + Event.requestFullscreen.rawValue, Event.exitFullscreen.rawValue, Event.positionUpdate.rawValue, Event.willPlay.raw...
chore: translate internal events to events and remove render on setCore
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -67,6 +67,7 @@ const SelectButton = ({ type="button" onClick={onClick} className={cx({ button: true, isSelected })} + title={name} > <div> <Icon isFolder={isFolder} isSelected={isSelected} />
chore(frontend): add title on hover for select app button
null
pyroscope-io/pyroscope
Apache License 2.0
TypeScript
@@ -116,7 +116,9 @@ func (txr *TxReplicator) handleError(err error) (terminate bool) { case <-timer.C: } - if txr.consecutiveFailures >= 3 { + retryableError := !strings.Contains(err.Error(), "no session found") + + if txr.consecutiveFailures >= 3 || !retryableError { txr.disconnect() }
chore(pkg/replication): speed up follower reconnection
null
codenotary/immudb
Apache License 2.0
Go
@@ -25,6 +25,7 @@ import org.camunda.bpm.engine.impl.cfg.ProcessEngineConfigurationImpl; import org.camunda.bpm.engine.impl.jobexecutor.JobExecutor; import org.camunda.bpm.engine.runtime.Job; import org.camunda.bpm.integrationtest.util.AbstractFoxPlatformIntegrationTest; +import org.camunda.bpm.integrationtest.util.Tes...
chore(engine): adjust engine it test for was
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -62,7 +62,7 @@ class DataStoreHubEventTests: HubEventsIntegrationTestBase { XCTFail("Failed to cast payload data as SyncQueriesStartedEvent") return } - XCTAssertEqual(syncQueriesStartedEvent.models.count, 21) + XCTAssertEqual(syncQueriesStartedEvent.models.count, 22) syncQueriesStartedReceived.fulfill() }
chore(datastore): fix outdated hub integration tests
null
aws-amplify/amplify-ios
Apache License 2.0
Swift
@@ -175,8 +175,8 @@ public class VaadinConfigurationProperties { * <p> * If the servlet is not loaded on startup then the first request to the * server might be incorrectly handled by - * {@link com.vaadin.flow.spring.security.VaadinWebSecurityConfigurerAdapter} - * and access to a public view will be denied instead of...
chore: fix javadoc so snapshot compiles
null
vaadin/flow
Apache License 2.0
Java
@@ -2,7 +2,7 @@ __maintainer__ = 'Philipp Hinrichsen' __contact__ = 'frontend@mesosphere.io' -def test_ui_servivce_reset(dcos_api_session): +def test_ui_service_reset(dcos_api_session): """ Test the reset endpoint of the UI Update Service. """ r = dcos_api_session.delete('/dcos-ui-update-service/api/v1/reset/')
chore(dcosuiupdateservice): fix typo in integration test
null
dcos/dcos
Apache License 2.0
Python
@@ -66,7 +66,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 = "v16.17.0"; + public static final String DEFAULT_NODE_VERSION...
chore: Upgrade to Node 16.17.1 with security fixes
null
vaadin/flow
Apache License 2.0
Java
@@ -56,6 +56,13 @@ private CommandLineHelper() { System.setProperty("cloudnet." + key, value); return value; } + // try to get the value from the environment + value = System.getenv("cloudnet." + key); + if (value != null) { + // set the value as a system property to allow later reads of it + System.setProperty("cloudn...
chore: allow defining cloudnet cmd properties as env variables
null
cloudnetservice/cloudnet-v3
Apache License 2.0
Java
@@ -60,6 +60,7 @@ func GitDir(path string) (bool, error) { 2. A cheatpath is a repository 3. A cheatpath is a repository, and contains a `.git*` file 4. A cheatpath is a submodule + 5. A cheatpath is a hidden directory Care must be taken to support the above on both Unix and Windows systems, which have different direct...
chore: add a comment
null
cheat/cheat
MIT License
Go
@@ -309,67 +309,6 @@ struct RemoveRequest { recursive: Option<bool>, } -/*impl<'a> TryFrom<&'a str> for RemoveRequest { - type Error = ParseError<'a>; - - fn try_from(q: &'a str) -> Result<Self, Self::Error> { - use ParseError::*; - - // TODO: similar arg with duplicates question as always - - let parse = url::form_url...
chore: cleanup commented multiarg rm opts
null
rs-ipfs/rust-ipfs
Apache License 2.0
Rust
@@ -16,7 +16,7 @@ if [[ $1 != 'patch' && $1 != 'minor' && $1 != 'major' ]] then nextVersion=$1 else - nextVersion=semver $currentVersion -i $1 + nextVersion=$(semver $currentVersion -i $1) fi semver $nextVersion -r ">$currentVersion" || @@ -40,7 +40,7 @@ mversion $nextVersion && yarn build && conventional-changelog --i...
chore(release): add CHANGELOG, fix nextVersion compute
null
algolia/autocomplete
MIT License
Shell
@@ -9,8 +9,8 @@ use frame_support::{ traits::{fungibles::Inspect, Get}, }; use sp_runtime::{ - traits::{CheckedDiv, CheckedMul, Zero}, - DispatchError, + traits::{CheckedAdd, CheckedDiv, CheckedMul, Zero}, + ArithmeticError, DispatchError, }; use sp_std::{prelude::*, vec}; @@ -103,7 +103,13 @@ impl<T: Config> ) -> Disp...
chore: better and safer var names
null
t3rn/t3rn
Apache License 2.0
Rust
@@ -89,7 +89,7 @@ class TripletLoss(EmbeddingApproach): sampling='all', per_label=3, per_fold=None, per_epoch=7, parallel=1, label_min_duration=0.): - super(TripletLoss, self).__init__() + super().__init__() self.metric = metric self.margin = margin
chore: use Python 3 syntax super().__init__()
null
pyannote/pyannote-audio
MIT License
Python
@@ -76,6 +76,11 @@ class Identity: "Either provide a single address or a dictionary of addresses, and not both." ) + if (public_key is None) == (public_keys is None): + raise ValueError( + "Either provide a single public key or a dictionary of public keys, and not both." + ) + if address is None: addresses = cast(Dict[...
chore: hashes and mypy
null
fetchai/agents-aea
Apache License 2.0
Python
@@ -14,6 +14,7 @@ import com.vaadin.testbench.TestBenchElement; import org.apache.commons.io.IOUtils; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; public class AppViewIT extends AbstractIT { @@ -227,6 +228,7 @@ public class AppViewIT extends AbstractIT { } @Test + @Ignore public void upload...
chore: failing upload test
null
vaadin/flow
Apache License 2.0
Java
@@ -553,7 +553,15 @@ public class ServerMain { } setPublicVersion(publicDir, thisVersion); copyConfResource(dir, false, buffer, "conf/date.formats", log); + try { copyConfResource(dir, true, buffer, "conf/mime.types", log); + } catch (IOException exception) { + // conf can be read-only, this is not critical + if (excep...
chore: do not fail on read-only mime.types when public does not exist
null
questdb/questdb
Apache License 2.0
Java
@@ -385,9 +385,7 @@ impl VirtualDom { }; // Remove the "on" prefix if it exists, TODO, we should remove this and settle on one - if name.starts_with("on") { - name = &name[2..]; - } + name = name.trim_start_matches("on"); // Loop through each dynamic attribute in this template before moving up to the template's parent....
chore: use trim
null
dioxuslabs/dioxus
Apache License 2.0
Rust
@@ -73,6 +73,9 @@ describe('@customElement', () => { project(nodes) { projectCalled = true; projectNodes = nodes; + }, + provideEncapsulationSource(parentEncapsulationSource) { + return parentEncapsulationSource; } };
chore(tests): fix attach unit tests
null
aurelia/aurelia
MIT License
TypeScript
@@ -11,7 +11,7 @@ use RuntimeException; class AuditableTest extends AbstractTestCase { /** - * Test the Auditable toAudit() method to FAIL (Invalid audit event). + * Test the toAudit() method to FAIL (Invalid audit event). * * @expectedException RuntimeException * @expectedExceptionMessage A valid audit event must be s...
chore(Auditable): updated PHPdocs
null
owen-it/laravel-auditing
MIT License
PHP
@@ -134,11 +134,12 @@ func AdaptFunc(features ...string) zitadel.AdaptFunc { "database": databaseCurrent, "networking": networkingCurrent, } + monitor.WithField("queriers", len(queriers)).Info("Querying") return zitadel.QueriersToEnsureFunc(queriers, k8sClient, queried) }, func(k8sClient *kubernetes.Client) error { - m...
chore: printing queriers and destroyers count
null
caos/orbos
Apache License 2.0
Go
@@ -282,6 +282,7 @@ func AddCommands(rootCmd *cobra.Command, defaultNodeHome string, appCreator type ostcmd.ResetAllCmd, ostcmd.ResetStateCmd, ) + startCmd := StartCmd(appCreator, defaultNodeHome) addStartFlags(startCmd)
chore: update TM dep
null
line/lbm-sdk
Apache License 2.0
Go
@@ -45,14 +45,14 @@ void handleUpload(AsyncWebServerRequest *request, const String& filename, size_t request->_tempFile = WLED_FS.open(finalname, "w"); DEBUG_PRINT("Uploading "); DEBUG_PRINTLN(finalname); - if (finalname == "/presets.json") presetsModifiedTime = toki.second(); + if (finalname.indexOf("presets.json") >=...
chore: condense the if statement
null
aircoookie/wled
MIT License
C++
@@ -14,6 +14,7 @@ module.exports = { exec('yarn doctoc'); }, pullRequestTeamReviewer: ['instantsearch-for-websites'], + testCommandBeforeRelease: () => 'echo "No need to test again."', afterPublish: ({ exec, version, releaseTag }) => { if (releaseTag === 'latest' && version.startsWith('4.')) { exec('./scripts/release/b...
chore: do not run test again before publish
null
algolia/instantsearch.js
MIT License
JavaScript
@@ -272,6 +272,10 @@ export const AddressTransactionsPagition = styled(CommonPagition)` margin: 80px 0 150px 0; width: 100%; overflow-x: auto; + + @media (max-width: 700px) { + margin: 20px 0 30px 0; + } ` export const AddressCommonRowPanel = styled.div` @@ -284,6 +288,12 @@ export const AddressCommonRowPanel = styled....
chore(ui): adjust pagination component margin for mobile
null
nervosnetwork/ckb-explorer-frontend
MIT License
TypeScript
@@ -72,7 +72,7 @@ public class ServerInfo implements Serializable { return vaadinVersions.get("platform").asText(); } else { if (!versionErrorLogged) { - versionErrorLogged = true; + versionErrorLogged = true; // NOSONAR LoggerFactory.getLogger(getClass()).info( "Unable to determine version information. No vaadin_versi...
chore: Make sonar happier
null
vaadin/flow
Apache License 2.0
Java
@@ -12,7 +12,7 @@ cd output BUILD_NUMBER=$(head -1 ../BUILD_NUMBER) # Support BUILD_NUMBER in the form of <CRREV>.<GENERATION> # This will allow us to bump generation to produce new builds. -CRREV="${BUILD_NUMBER%.*} +CRREV="${BUILD_NUMBER%.*}" CHROMIUM_URL="" CHROMIUM_FOLDER_NAME=""
chore: fix typo in build script
null
microsoft/playwright
Apache License 2.0
Shell
@@ -2,13 +2,11 @@ import { Directive, Inject, Input, - NgZone, OnChanges, OnDestroy, TemplateRef, ViewContainerRef, } from '@angular/core'; -import {tuiZonefree} from '@taiga-ui/cdk/observables'; import {from, of, Subject} from 'rxjs'; import {concatMap, delay, takeUntil} from 'rxjs/operators'; @@ -25,7 +23,6 @@ export...
chore(cdk): update template view inside angular zone
null
tinkoffcreditsystems/taiga-ui
Apache License 2.0
TypeScript
@@ -979,6 +979,12 @@ class Element extends Node selfRenderBoxModel.renderStyle.lineHeight = parsedLineHeight; } + // FIXME: only compatible with kraken plugins + @deprecated + void setStyle(String property, dynamic value) { + setRenderStyle(property, value); + } + /// Set internal style value to the element. void setRe...
chore: compatible with existing plugins
null
openkraken/kraken
Apache License 2.0
Dart
@@ -24,10 +24,10 @@ class NetflixSession: urls = { 'login': '/login', - 'browse': '/browse', + 'browse': '/profiles/manage', 'video_list_ids': '/preflight', 'shakti': '/pathEvaluator', - 'profiles': '/browse', + 'profiles': '/profiles/manage', 'switch_profiles': '/profiles/switch', 'adult_pin': '/pin/service', 'metadat...
chore(perf): Switch from the browse enpoint to the profiles/manage endpoint when grepping inline JS, as this is twice as fast
null
castagnait/plugin.video.netflix
MIT License
Python
@@ -828,10 +828,7 @@ func (e *Engine) unmapIndexEntry(index *Index, mkey []byte) (encPKVals []byte, e return nil, ErrCorruptedData } - if index.IsPrimary() { - return enc[off:], nil - } - + if !index.IsPrimary() { //read index values for _, col := range index.cols { maxLen := col.MaxLen() @@ -844,6 +841,12 @@ func (e *...
chore(embedded/sql): validate non-null pk when decoding index entry
null
codenotary/immudb
Apache License 2.0
Go
@@ -38,8 +38,8 @@ public abstract class IsolatedCommandBase<TResult> : IConsoleCommand [Argument(Name = "ReferencePaths", IsRequired = false, Description = "The paths to search for referenced assembly files (comma separated).")] public string[] ReferencePaths { get; set; } = new string[0]; - [Argument(Name = "LoadDefau...
chore: LoadDefaultNugetCaches -> UseNuGetCache
null
ricosuter/nswag
MIT License
C#
@@ -16,9 +16,29 @@ export default { }, }; +const loadingKnobsLabel = () => ({ + heading: boolean('If content is heading', false, 'Loading (label)'), + paragraph: boolean('If content is paragraph', true, 'Loading (label)'), + lineCount: text('Line count', 1, 'Loading (label)'), + width: text('Width of the loader', '100%...
chore(readonlyvalue): update storybook knobs
null
carbon-design-system/carbon-addons-iot-react
Apache License 2.0
JavaScript
@@ -11,16 +11,19 @@ import Foundation enum PX_ENVIRONMENTS : CaseIterable { case alpha case beta + case gamma case prod } internal class PXServicesURLConfigs { static let MP_ALPHA_ENV = "/alpha" static let MP_BETA_ENV = "/beta" + static let MP_GAMMA_ENV = "/gamma" static let MP_PROD_ENV = "/v1" static let NEW_API_ALPHA...
chore: Added gamma as environment on PXServicesURLConfigs
null
mercadopago/px-ios
MIT License
Swift
@@ -51,7 +51,6 @@ class Predictor(state.HasState): 1 6.1 3 4.6 1.4 1 1.56469 2 6.6 2.9 4.6 1.3 1 1.44276 ''' - snake_name = 'sklearn_predictor' model = traitlets.Any(default_value=None, allow_none=True, help='A scikit-learn estimator.').tag(**serialize_pickle) features = traitlets.List(traitlets.Unicode(), help='List o...
chore: improve docstrings (leftovers from previous versions)
null
vaexio/vaex
MIT License
Python
/* - * Copyright 2020-2021 B2i Healthcare Pte Ltd, http://b2i.sg + * Copyright 2020-2022 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. @@ -67,9 +67,9 @@ public final class SnomedDescendantsExpa...
chore(api): minor change in SnomedDescendantsExpander..
null
b2ihealthcare/snow-owl
Apache License 2.0
Java
-// option1.rs -// This example panics because the second time it calls `pop`, the `vec` -// is empty, so `pop` returns `None`, and `unwrap` panics if it's called -// on `None`. Handle this in a more graceful way than calling `unwrap`! -// Execute `rustlings hint option1` for hints :) - -// I AM NOT DONE - -pub fn pop_...
chore: delete orphaned `error_handling/option1.rs`
null
rust-lang/rustlings
MIT License
Rust
@@ -34,10 +34,7 @@ export const ControllerConfigSchemaV1 = yup .required("must specify metric retention in number of days"), dnsName: yup.string().required(), terminate: yup.bool().default(false), - // https://stackoverflow.com/a/63944333/145400 `data_api_authn_pubkey_pem` - // is optional, is a legacy controller confi...
chore: ctrlcfg: remove bad comment
null
opstrace/opstrace
Apache License 2.0
TypeScript
@@ -40,7 +40,7 @@ public class PlatformServicesJndiBindingTest extends AbstractFoxPlatformIntegrat try { InitialContext.doLookup(TestConstants.PROCESS_APPLICATION_SERVICE_JNDI_NAME); } catch (NamingException e) { - Assert.fail("Failed to lookup ProcessApplicationService"); + Assert.fail("Failed to lookup ProcessApplica...
chore(integration-tests-engine): improve exception logging
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -137,8 +137,6 @@ open class Player: UIViewController, BaseObject { } fileprivate func bindCoreEvents() { - self.core?.stopListening() - self.core?.on(Event.willChangeActivePlayback.rawValue) { [weak self] _ in self?.unbindPlaybackEvents() } self.core?.on(Event.didChangeActivePlayback.rawValue) { [weak self] _ in sel...
chore: removing stopListening on tvOS Player
null
clappr/clappr-ios
BSD 3-Clause New or Revised License
Swift
@@ -10,33 +10,17 @@ const template = [ { label: 'Edit', submenu: [ - { - role: 'undo', - }, - { - role: 'redo', - }, - { - type: 'separator', // A dividing line between menu items - }, - { - role: 'cut', - }, - { - role: 'copy', - }, - { - role: 'paste', - }, - { - role: 'pasteandmatchstyle', - }, - { - role: 'delete',...
chore: Clean up whitespace around mainMenu file
null
open-source-labs/swell
MIT License
JavaScript
@@ -7,8 +7,7 @@ module.exports = CommonWebpack({ mode: 'development', devtool: 'source-map', devServer: { - contentBase: path.join(process.cwd(), 'menu/public'), - watchContentBase: true, + static: path.join(process.cwd(), 'menu/public'), host: 'localhost', }, plugins: [
chore(webpack): fix menu browser webpack dev config
null
tabarra/txadmin
MIT License
JavaScript
@@ -77,7 +77,7 @@ public class AppMetadata implements MetadataAware { /** * sdk and RSocket protocol version */ - private String sdk = "Alibaba-RSocket-1.1.3/1.0.0"; + private String sdk = "Alibaba-RSocket-1.1.4/1.0.0"; /** * developers, format as email list: xxx <xxx@foobar.com>, yyy <yyy@foobar.com>
chore: update to version 1.1.4
null
alibaba/alibaba-rsocket-broker
Apache License 2.0
Java
-#!/bin/bash - -cp -r ~/nfra/@krakenjs/sync-browser-mocks/src/* node_modules/@krakenjs/sync-browser-mocks/src/ \ - && cp -r ~/nfra/@krakenjs/post-robot/src/* node_modules/@krakenjs/post-robot/src/ \ - && cp -r ~/nfra/@krakenjs/zoid/src/* node_modules/@krakenjs/zoid/src/ \ - && cp -r ~/nfra/beaver-logger/src/* node_modu...
chore: remove unused quickbuild script
null
paypal/paypal-checkout-components
Apache License 2.0
Shell
{ public static class ApplicationSettings { - public static string version = "0.6.8"; + public static string version = "0.6.9"; } public static class Environment
chore: update build version to 0.6.9
null
decentraland/explorer
Apache License 2.0
C#
import net.kyori.adventure.text.TextComponent; import net.kyori.adventure.title.Title; import net.kyori.adventure.title.Title.Times; -import org.jetbrains.annotations.Nullable; public final class TitleObjectSerializer implements ObjectSerializer<Title> { @@ -51,13 +50,13 @@ public void write( } @Override - public @Null...
chore(bridge): replace (now) deprecated api usage
null
cloudnetservice/cloudnet-v3
Apache License 2.0
Java
@@ -8,27 +8,32 @@ cd "$(dirname $0)" git fetch --tags git@github.com:microsoft/playwright.git >/dev/null 2>/dev/null LAST_RELEASE=$(git describe --tags $(git rev-list --tags --max-count=1)) -echo "## Browser Versions" -echo -node ./print_versions.js -echo echo "## Highlights" echo echo "TODO: \`git diff ${LAST_RELEASE}...
chore: update release notes draft gen
null
microsoft/playwright
Apache License 2.0
Shell
@@ -326,7 +326,7 @@ open class FormTextItemView<ItemType: FormTextItem>: FormValueItemView<String, F private func resetValidationStatus() { accessory = .none hideAlertLabel(true) - highlightSeparatorView(color: tintColor) + unhighlightSeparatorView() } private func hideAlertLabel(_ hidden: Bool) {
chore: unhighlight separator line
null
adyen/adyen-ios
MIT License
Swift
@@ -81,19 +81,21 @@ AWS.config.update({ retryCount ); } else { - // Note(JP): it seems like 404-style "cannot be found" errors trigger - // this code path, but the request is then (rightfully) not retried. - // Looks like a bug in aws-sdk-js - log.debug( - "aws-sdk-js request failed (attempt %s): %s", + // An example `...
chore: aws sdk: info-log transient errors
null
opstrace/opstrace
Apache License 2.0
TypeScript
@@ -213,6 +213,10 @@ public void deleteFiles() { @Override public void updateLifecycle(@NonNull ServiceLifeCycle lifeCycle) { + this.updateLifecycle(lifeCycle, this.serviceConfiguration().autoDeleteOnStop()); + } + + protected void updateLifecycle(@NonNull ServiceLifeCycle lifeCycle, boolean switchToDeletedOnStop) { tr...
chore: fix deletion of services during restart
null
cloudnetservice/cloudnet-v3
Apache License 2.0
Java
@@ -15,7 +15,7 @@ pub struct VirtualContestInfo { pub id: String, pub title: String, pub memo: String, - pub owner_user_id: String, // field name is `internal_user_id` + pub owner_user_id: String, // column name is `internal_user_id` pub start_epoch_second: i64, pub duration_second: i64, pub mode: Option<String>, @@ -1...
chore(sql-client): tiny fix
null
kenkoooo/atcoderproblems
MIT License
Rust
@@ -4,6 +4,12 @@ set -e echo "Removing stale node_modules" npm run lerna exec --loglevel info -- npm prune +echo "[DEBUG] list node_modules" +ls -lah node_modules/ + +echo "[DEBUG] list node_modules" +ls -lah packages/serenity-js/node_modules/ + echo "Starting XVFB" export DISPLAY=:99.0
chore(ci): debugging why the phantomjs-prebuilt module is not getting installed
null
serenity-js/serenity-js
Apache License 2.0
Shell
@@ -191,14 +191,29 @@ public class SeedMongoData { .cache(); Flux<User> userFlux = Flux.just(userData) - .map(array -> { + .flatMap(array -> { log.debug("Going to create bare users"); User user = new User(); user.setName((String) array[0]); user.setEmail((String) array[1]); user.setState((UserState) array[2]); user.set...
chore: Fixing flaky behaviour in SeedMongoData
null
appsmithorg/appsmith
Apache License 2.0
Java
@@ -109,7 +109,7 @@ def test_groundtruth_labeling_job( response = sagemaker_utils.describe_labeling_job( sagemaker_client, ground_truth_train_job_name ) - assert response["LabelingJobStatus"] in ["Stopping", "Stopped"] + assert response["LabelingJobStatus"] in ["Completed", "Stopping", "Stopped"] finally: print( f"Clea...
chore(components): SageMaker fix flaky groundtruth test
null
kubeflow/pipelines
Apache License 2.0
Python
@@ -13,19 +13,19 @@ export class LabResolver implements Resolve<Lab> { } resolve(route: ActivatedRouteSnapshot) { - if (route.params['labid']) { + if (route.paramMap.get('labid')) { // If we have a lab id, try to fetch it and fall back to // a new empty lab if no lab with the given id exists. return this.labStorageServ...
chore(LabResolver): use new paramMap.get() APIs to access router params
null
machinelabs/machinelabs
MIT License
TypeScript
@@ -361,6 +361,9 @@ class UpdateSearchCommand extends Command if ($contentName === 'InstanceContent') { unset($content['BNpcBaseBoss']); + unset($content['ContentFinderCondition']['Transient']); + unset($content['ContentFinderCondition']['TerritoryType']); + unset($content['ContentFinderCondition']['Content']); } retur...
chore: better cleanup for CFC
null
xivapi/xivapi.com
MIT License
PHP
@@ -57,9 +57,9 @@ func (l *Lock) Unlock() error { return nil } -// SetExpireTime set expire time -func (l *Lock) SetExpireTime(ttl int64) error { - _, err := l.redisClient.Expire(l.key, time.Duration(time.Now().Unix()+ttl)).Result() +// SetExpireTime set timeout time +func (l *Lock) SetExpireTime(expiration time.Durati...
chore: modify SetExpireTime param
null
go-eagle/eagle
MIT License
Go
@@ -99,7 +99,7 @@ mv $PROJECT_NAME/build/Release-iphonesimulator/Adyen/$FRAMEWORK_NAME.doccarchive $(xcrun --find docc) process-archive \ transform-for-static-hosting $FINAL_DOC_PATH/$FRAMEWORK_NAME.doccarchive \ ---output-path docs \ +--output-path docc-Docs \ --hosting-base-path adyen.github.io/adyen-ios/ # Clean up....
chore: change docc html docs folder
null
adyen/adyen-ios
MIT License
Shell
@@ -167,7 +167,10 @@ func (bot *Bot) HandleCommand(guild *GuildState, s *discordgo.Session, g *discor } else { phase := getPhaseFromString(args[1]) if phase == game.UNINITIALIZED { - s.ChannelMessageSend(m.ChannelID, "Sorry, I didn't understand the game phase you tried to force") + s.ChannelMessageSend(m.ChannelID, loc...
chore(locale): revert changes
null
automuteus/automuteus
MIT License
Go
@@ -68,7 +68,7 @@ export async function register(context: vscode.ExtensionContext, client: BaseLan const problems = await getProblems(editor.document.uri); if (problems.length && vscode.window.activeTextEditor?.document === editor.document) { item.show(); - item.text = problems.length + (problems.length === 1 ? ' probl...
chore: "x problems found" -> "x known issue"
null
johnsoncodehk/volar
MIT License
TypeScript
@@ -912,6 +912,10 @@ TEST(DatabaseAdminConnectionTest, CreateBackupSuccess) { /// @test Verify that using an encryption key works. TEST(DatabaseAdminClientTest, CreateBackupWithEncryption) { auto mock = std::make_shared<MockDatabaseAdminStub>(); + // Suppress a false leak. + // TODO(#4038): After we fix the issue #4038...
chore(spanner): quash warning about a leaked mocked object
null
googleapis/google-cloud-cpp
Apache License 2.0
C++
@@ -65,8 +65,8 @@ import dev.hilla.exception.EndpointException; */ @RestController @Import({ EndpointControllerConfiguration.class, EndpointProperties.class }) -@NpmPackage(value = "@hilla/frontend", version = "1.1.0-alpha2") -@NpmPackage(value = "@hilla/form", version = "1.0.1") +@NpmPackage(value = "@hilla/frontend",...
chore: Upgrade Hilla to 1.1.0-alpha3
null
vaadin/flow
Apache License 2.0
Java
@@ -1679,6 +1679,22 @@ class _SettingsPageState extends State<SettingsPage> } List<Widget> _bookmarkGroup() { + const autoBackupBookmarkEnabled = false; + + Future<void> toggleAutoBackupBookmark() async { + await Settings.setAutoBackupBookmark(!Settings.autobackupBookmark); + setState(() { + _shouldReload = true; + });...
chore: fix Dart Analysis issues - dead code
null
project-violet/violet
Apache License 2.0
Dart
@@ -321,7 +321,7 @@ export class Connector implements IConnector { try { const { body, base64Encoded } = await this._client.Network.getResponseBody({ requestId: cdpResponse.requestId }); - const encoding = base64Encoded ? 'base64' : 'utf8'; + const encoding = base64Encoded ? 'base64' : 'utf-8'; content = base64Encoded ...
chore: Change `utf8` to `utf-8`
null
webhintio/hint
Apache License 2.0
TypeScript
@@ -267,7 +267,7 @@ fn new_transferred_collateral_is_not_auto_deposited_if_not_collateral() { } #[test] -fn small_loans_have_interest_truncated_to_zero() { +fn small_loans_have_interest_rounded_up() { new_test_ext().execute_with(|| { assert_ok!(Loans::mint(RuntimeOrigin::signed(ALICE), Token(IBTC), unit(100))); assert_...
chore(loans): rename small loans test
null
interlay/interbtc
Apache License 2.0
Rust
@@ -5,7 +5,7 @@ set -e # deploy to now the versioned docs site FORCE_EXTRACT_REACT_TYPES=true yarn documentation:build -now --scope=uber-ui-platform --token=$ZEIT_NOW_TOKEN --public --no-clipboard deploy ./public > deployment.txt +yarn now --scope=uber-ui-platform --token=$ZEIT_NOW_TOKEN --public --no-clipboard deploy ...
chore(deploy-script): add yarn due to now command not found
null
uber/baseweb
MIT License
Shell
@@ -30,7 +30,7 @@ done cp dist/* docs # Build dev-novel -NODE_ENV=development webpack --config dev/webpack.config.js +NODE_ENV=production webpack --config dev/webpack.config.js # Move dev-novel to website-root mv dev/dist docs/dev-novel
chore(dev-novel): Use production when build doc
null
algolia/instantsearch.js
MIT License
Shell
@@ -59,6 +59,14 @@ impl HttpClient { pub async fn query(&mut self, sql: &str) -> Result<DBOutput> { if self.debug { println!("Running sql with http client: [{sql}]"); + match &self.session { + None => { + println!("Current http session: [None]") + } + Some(session) => { + println!("Current http session: [{session:?}]")...
chore(sqllogictest): add log for http session
null
datafuselabs/databend
Apache License 2.0
Rust
@@ -6,6 +6,7 @@ using System.Net.Http; using System.Net.Http.Headers; using System.Threading.Tasks; using Common; +using Common.TableModels; using Install; using Microsoft.Azure.WebJobs; using Microsoft.Extensions.Logging; @@ -23,8 +24,7 @@ namespace MarketplaceSyncFunction [Singleton] [FunctionName("MarketplaceSync")]...
chore: finished marketplace sync update
null
imgbot/imgbot
MIT License
C#
@@ -38,7 +38,7 @@ class ConclaveChallenges extends Command { platformParam = param1; } const platform = platformParam || await this.settings.getChannelSetting(message.channel, 'platform'); - const ws = await this.bot.worldStates[platform].getData(); + const ws = await this.bot.worldStates[platform.toLowerCase()].getDat...
chore: consistent worldstate data grab
null
wfcd/genesis
Apache License 2.0
JavaScript
@@ -36,6 +36,19 @@ export const Walmart: Store = { series: 'xboxss', url: 'https://www.walmart.com/ip/Xbox-Series-S/606518560' }, + { + brand: 'corsair', + model: '750 platinum', + series: 'sf', + url: 'https://www.walmart.com/ip/SF750-Power-Supply/197046151' + }, + { + brand: 'corsair', + model: '600 platinum', + seri...
chore(walmart): add Corsair SF PSUs
null
jef/streetmerchant
MIT License
TypeScript
@@ -90,7 +90,7 @@ const ( } ]` AxelarGatewayCommandMintToken = "mintToken" - mintTokenMaxGasCost = 150000 + mintTokenMaxGasCost = 100000 AxelarGatewayCommandDeployToken = "deployToken" deployTokenMaxGasCost = 1400000 AxelarGatewayCommandBurnToken = "burnToken"
chore(evm): bring mintToken gas estimate from 150k down to 100k
null
axelarnetwork/axelar-core
Apache License 2.0
Go
@@ -23,6 +23,7 @@ import java.io.InputStream; import org.camunda.bpm.model.xml.ModelInstance; import org.camunda.bpm.model.xml.ModelParseException; import org.camunda.bpm.model.xml.testmodel.TestModelParser; +import org.junit.Assume; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException...
chore(tests): ignore test on IBM JDK 6 and 7
null
camunda/camunda-bpm-platform
Apache License 2.0
Java
@@ -31,7 +31,7 @@ export default function() { const data = getShippingMethodsQuery.post().data; const result = completeOrderMutation.post({ id: data.eligibleShippingMethods[0].id }).data; check(result, { - 'Order completed': r => r.addPaymentToOrder.state === 'PaymentSettled', + 'Order completed': r => r.addPaymentToOr...
chore(dev-server): Fix check condition in load test
null
vendure-ecommerce/vendure
MIT License
JavaScript
@@ -3,6 +3,7 @@ import { Helmet } from "react-helmet"; import styled from "styled-components"; import Highlight from "react-highlight"; import { + Alert, Box, Title, SectionTitle, @@ -89,6 +90,29 @@ const CustomComponent = styled.div({ </Highlight> </DocSection> + <DocSection> + <SectionTitle>Custom themes</SectionTitl...
chore: adds documentation on theming to nulogy.design
null
nulogy/design-system
MIT License
JavaScript
@@ -6,7 +6,8 @@ package services import ( "context" - "github.com/banzaicloud/pipeline/pkg/helm" + "github.com/banzaicloud/pipeline/internal/helm" + helm1 "github.com/banzaicloud/pipeline/pkg/helm" "github.com/stretchr/testify/mock" ) @@ -29,6 +30,20 @@ func (_m *MockHelmService) ApplyDeployment(ctx context.Context, cl...
chore(integratedservices): regenerated mock file, added ApplyDeploymentV3
null
banzaicloud/pipeline
Apache License 2.0
Go
@@ -16,5 +16,25 @@ fi if [[ $TRAVIS_BRANCH == 'master' ]]; then echo "Building from master" + + # https://github.com/atlassian/lerna-semantic-release/blob/06e18185c6477085b7046248e7dd7eb59c06e0c9/.travis/before_install.sh + + git config credential.helper store + echo "https://${RELEASE_GH_USERNAME}:${RELEASE_GH_TOKEN}@...
chore(cd): configured git and npm to work with lerna-semantic-release
null
serenity-js/serenity-js
Apache License 2.0
Shell
@@ -9,6 +9,8 @@ macro_rules! if_wasm { )*} } +// only used with WS +#[cfg(feature = "ws")] macro_rules! if_not_wasm { ($($item:item)*) => {$( #[cfg(not(target_arch = "wasm32"))]
chore: silence unused ws macro
null
gakonst/ethers-rs
Apache License 2.0
Rust
@@ -281,13 +281,26 @@ func printFilteredInputs(inputFilters []string, commented bool, outputBuffer io. func printFilteredOutputs(outputFilters []string, commented bool, outputBuffer io.Writer) { // Filter outputs var onames []string + var influxdbV2 string + for oname := range outputs.Outputs { if sliceContains(oname, ...
chore: Move influxdb_v2 to be first in sample config
null
influxdata/telegraf
MIT License
Go
@@ -77,7 +77,10 @@ setup() { fi echo "Using cluster template: ${CLUSTER_TEMPLATE}" - export CLUSTER_NAME="${CLUSTER_NAME:-capz-$(head /dev/urandom | LC_ALL=C tr -dc a-z0-9 | head -c 6 ; echo '')}" + export CLUSTER_NAME="${CLUSTER_NAME:-capz-$( + head /dev/urandom | LC_ALL=C tr -dc a-z0-9 | head -c 6 + echo '' + )}" exp...
chore: increase the ccm log verbosity in e2e test
null
kubernetes-sigs/cluster-api-provider-azure
Apache License 2.0
Shell