diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
const path = require('path');
-const configSvg = require('../svg.config');
module.exports = {
webpackConfig(config) {
- configSvg(config, true);
config.externals = {
react: 'React',
'react-dom': 'ReactDOM',
| chore: fix npm start error | null | ant-design/ant-design-mobile | MIT License | JavaScript |
@@ -366,6 +366,7 @@ func (t *Thread) handleHead(inboundId string, parents []string, post bool) (mh.M
}
if fastForwardable {
// no need for a merge
+ log.Debugf("fast-forwarded to %s", inboundId)
if err := t.updateHead(inboundId); err != nil {
return nil, err
}
| chore(threads): add some merge logging | null | textileio/go-textile | MIT License | Go |
@@ -269,7 +269,7 @@ export class GradleClient implements vscode.Disposable {
token: vscode.CancellationToken
) => {
progress.report({
- message: `Getting dependencies for ${projectName}`,
+ message: `Getting Dependencies for ${projectName}`,
});
const request = new GetDependenciesRequest();
request.setProjectDir(projec... | chore: Refine status bar message | null | microsoft/vscode-gradle | MIT License | TypeScript |
@@ -559,16 +559,7 @@ fn testnet_genesis(
developer_membership: circuit_parachain_runtime::DeveloperMembershipConfig {
members: vec![
get_account_id_from_adrs("5D333eBb5VugHioFoU5nGMbUaR2uYcoyk5qZj9tXRA5ers7A"),
- get_account_id_from_adrs("5CAYyLZxG4oYQP8CGTYgPPhkoT42NyMvi2J3hKPCLGyKHAC4"),
- get_account_id_from_adrs("5... | chore: update t0rn membership to include sudo ci | null | t3rn/t3rn | Apache License 2.0 | Rust |
@@ -50,6 +50,43 @@ import org.camunda.bpm.engine.variable.type.ValueType;
*/
public class TaskQueryImpl extends AbstractQuery<TaskQuery, Task> implements TaskQuery {
+ /*
+ * When adding a property filter that supports Tasklist filters,
+ * the following classes need to be modified:
+ *
+ * <ol>
+ * <li>
+ * Update the... | chore(engine): add javadoc for task query properties | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -307,7 +307,17 @@ class RuleTester {
config.rules[ruleName] = 1;
}
- linter.defineRule(ruleName, rule);
+ linter.defineRule(ruleName, Object.assign({}, rule, {
+
+ // Create a wrapper rule that freezes the `context` properties.
+ create(context) {
+ freezeDeeply(context.options);
+ freezeDeeply(context.settings);
+ ... | chore: avoid monkeypatching Linter instances in RuleTester | null | eslint/eslint | MIT License | JavaScript |
@@ -96,9 +96,6 @@ mod tests;
mod tokenizer;
mod types;
-/// Export to create module resolvers.
-pub use func::native;
-
/// Error encountered when parsing a script.
type PERR = ParseErrorType;
/// Evaluation result.
@@ -204,6 +201,8 @@ pub use api::{eval::eval, events::VarDefInfo, run::run};
pub use ast::{FnAccess, AST... | chore: gate func::native export under the `internals` flag | null | rhaiscript/rhai | Apache License 2.0 | Rust |
@@ -6,6 +6,8 @@ import DashboardSmallCards from './small-cards'
import StateSeparate from './state-separate'
import StateCombined from './state-combined'
+import { StateRaceSocialCardInner } from '~components/social-media-graphics/race/social-card'
+
import statesStyle from './states.module.scss'
const generateStates =... | chore(crdt-dash): add social cards in dash sections | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -227,8 +227,9 @@ impl PipelineBuilder {
.map(|name| schema.index_of(name.as_str()))
.collect::<Result<Vec<usize>>>()?;
+ // if projection is sequential, no need to add projection
+ if projection != (0..schema.fields().len()).collect::<Vec<usize>>() {
let ops = vec![BlockOperator::Project { projection }];
-
let func_... | chore(query): remove extra projection if not need | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -971,7 +971,7 @@ CLIENT_CXXLDFLAGS := $$(shell pkg-config $$(CLIENT_MODULE) --libs-only-L)
CLIENT_LIBS := $$(shell pkg-config $$(CLIENT_MODULE) --libs-only-l)
$$(BIN)/quickstart: quickstart.cc
- $$(CXXLD) $$(CXXFLAGS) $$(CLIENT_CXXFLAGS) $$(CLIENT_CXXLDFLAGS) -o $$@ $$^ $$(CLIENT_LIBS)
+\t$$(CXXLD) $$(CXXFLAGS) $$(C... | chore(generator): use an escape sequence instead of a literal tab | null | googleapis/google-cloud-cpp | Apache License 2.0 | C++ |
@@ -8,6 +8,9 @@ export DEVELOPMENT_BRANCH=${DEVELOPMENT_BRANCH:-development}
git config --global user.email "noreply@travis.com"
git config --global user.name "Travis CI"
+# Generate Playstore bundle
+./gradlew bundlePlaystoreRelease
+
# #clone the repository
git clone --quiet --branch=apk https://fossasia:$GITHUB_API_... | chore: updated build script to generate bundles | null | fossasia/pslab-android | Apache License 2.0 | Shell |
@@ -53,8 +53,7 @@ defmodule Realtime.Application do
RealtimeWeb.Endpoint,
{
Phoenix.PubSub,
- name: Realtime.PubSub,
- adapter: Phoenix.PubSub.PG2
+ name: Realtime.PubSub, adapter: Phoenix.PubSub.PG2
},
{
Realtime.ConfigurationManager,
| chore: filter Application | null | supabase/realtime | Apache License 2.0 | Elixir |
@@ -33,7 +33,7 @@ export class SelfObserver implements SelfObserver {
}
this.propertyKey = propertyName;
this.currentValue = this.obj[propertyName];
- this.callback = this.obj[cbName] || null;
+ this.callback = this.obj[cbName] === undefined ? null : this.obj[cbName];
if (flags & LifecycleFlags.patchStrategy) {
this.ge... | chore(self-observer): fix linting error | null | aurelia/aurelia | MIT License | TypeScript |
@@ -199,7 +199,10 @@ pub trait CanisterBuilder {
format!("Failed to remove {}.", generated_idl_path.to_string_lossy())
})?;
} else {
- eprintln!(" {}", &generated_idl_path.display());
+ let relative_idl_path = generated_idl_path
+ .strip_prefix(info.get_workspace_root())
+ .unwrap_or(&generated_idl_path);
+ eprintln!("... | chore: dfx generate prints mix between absolute and relative paths | null | dfinity/sdk | Apache License 2.0 | Rust |
@@ -347,7 +347,11 @@ bool HandleEdgeCase(const strings_internal::ParsedFloat& input, bool negative,
} else {
ptrdiff_t nan_size = input.subrange_end - input.subrange_begin;
nan_size = std::min(nan_size, kNanBufferSize - 1);
+#ifdef __GNUC__
+ std::copy_n(input.subrange_begin, nan_size, n_char_sequence);
+#else
std::cop... | chore: limit to Clang | null | abseil/abseil-cpp | Apache License 2.0 | C++ |
@@ -9,11 +9,11 @@ run_cor=false
# options
usage() {
printf "\n invalid usage"
- printf "\n ./rebuild.sh -h -> help"
- printf "\n ./rebuild.sh -i -> build ios"
- printf "\n ./rebuild.sh -a -> build android"
- printf "\n ./rebuild.sh -d -> reset node dependencies"
- printf "\n ./rebuild.sh -c -> reset cordova plugin"
+ p... | chore: renamed testbed script | null | branchmetrics/cordova-ionic-phonegap-branch-deep-linking-attribution | MIT License | Shell |
@@ -58,7 +58,7 @@ module.exports = ['ViewsProvider', function(ViewsProvider) {
var resourceCallback = function(err, res) {
if (err) {
Notifications.addError({
- status: $translate.instant('PLUGIN_TASK_ASSIGNED_ERR_COULD_NOT', {err: getErrorStatus}),
+ status: $translate.instant('PLUGIN_TASK_ASSIGNED_ERR_COULD_NOT', {er... | chore(cockpit): fix broken error notification title | null | camunda/camunda-bpm-platform | Apache License 2.0 | JavaScript |
@@ -82,13 +82,13 @@ dependencies {
implementation("com.zaxxer:HikariCP:3.4.5")
// https://mvnrepository.com/artifact/org.postgresql/postgresql
- implementation("org.postgresql:postgresql:42.2.17")
+ implementation("org.postgresql:postgresql:42.2.18")
// https://mvnrepository.com/artifact/org.jetbrains.kotlinx/kotlinx-c... | chore(deps): updated postgres-driver and kotlin-coroutines | null | toxicmushroom/melijn | MIT License | Kotlin |
@@ -4,7 +4,7 @@ import { fillRef } from '../ref';
function useCombinedRefs<T>(
...refs: Array<React.MutableRefObject<T> | ((instance: T) => void) | null>
) {
- const targetRef = React.useRef();
+ const targetRef = React.useRef<T>();
React.useEffect(() => {
refs.forEach(ref => {
| chore: improve useCombinedRefs | null | ant-design/ant-design | MIT License | TypeScript |
@@ -10,6 +10,7 @@ module.exports = {
rules: {
'vue/singleline-html-element-content-newline': 0,
'vue/multiline-html-element-content-newline': 0,
- 'vue/html-self-closing': 0
+ 'vue/html-self-closing': 0,
+ 'vue/no-v-html': 0
}
}
| chore(eslint): add rule | null | nuxt/content | MIT License | JavaScript |
+import platform
import sys
from pathlib import Path
@@ -6,15 +7,20 @@ from _pytest import pytester
HERE = Path(__file__).absolute().parent
+if platform.system() == "Windows" and (sys.version_info.major >= 3 and sys.version_info.minor >= 8):
+ AIOHTTP_OUTPUT = "DEBUG:asyncio:Using proactor: IocpProactor"
+else:
+ AIOHT... | chore(tests): Update platform-specific messages | null | schemathesis/schemathesis | MIT License | Python |
#!/bin/bash
-# Get the package version
+# Normalize params
[ ! -z "$1" ] && PACKAGE_VERSION="$1" || PACKAGE_VERSION=$NPM_PACKAGE_VERSION;
+[ ! -z "$2" ] && CANARY="--canary=beta" || CANARY="";
if [ -f $PACKAGE_VERSION ]; then
echo "You must specify a version to release"
+ echo "Comand options: semver [--prerelease] (ex... | chore: adding prerelease option | null | salesforce/lwc | MIT License | Shell |
@@ -30,6 +30,7 @@ install_kubectl_doctl() {
auth_kubectl_cluster() {
# Authenticate kubectl to the cluster
if [[ $GITHUB_REF == "refs/heads/develop" ]] || \
+ [[ $GITHUB_REF == "refs/pull/757/merge" ]] || \
[[ $GITHUB_EVENT_NAME == "release" ]];
then
doctl auth init -t $SERVICE_ACCESS_TOKEN
@@ -54,7 +55,7 @@ deploy_app... | chore(CI): debug IF statements in deployment script | null | hikaya-io/activity | Apache License 2.0 | Shell |
@@ -20,6 +20,8 @@ use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
use OwenIt\Auditing\Contracts\AuditDriver;
use OwenIt\Auditing\Contracts\Auditor as AuditorContract;
use OwenIt\Auditing\Drivers\Database;
+use OwenIt\Auditing\Events\Audited;
+use OwenIt\Auditing\Events\Auditing;
use RuntimeException;
clas... | chore(Auditor): import event classes | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -7,7 +7,7 @@ module.exports = {
shortname: 'ctracker',
production:
typeof process.env.BRANCH !== 'undefined' &&
- process.env.BRANCH === 'master',
+ (process.env.BRANCH === 'master' || process.env.BRANCH === 'gatsbyjs'),
buildDate: DateTime.fromObject({ zone: 'America/New_York' }).toFormat(
"M/dd HH:mm 'ET'",
),
| chore: Turn off dev warning for deploy | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -86,7 +86,6 @@ func TestAgent(t *testing.T) {
default:
}
},
- incrementSleep: time.Millisecond * 10,
incrementBy: tc.incrementBy,
block: tc.blocksPerRound}
contract := &mockContract{t: t, baseAddr: addr}
@@ -130,12 +129,11 @@ func createService(
contract,
mockbatchstore.New(mockbatchstore.WithReserveState(&postage.R... | chore: tweak agent test | null | ethersphere/bee | BSD 3-Clause New or Revised License | Go |
@@ -56,6 +56,7 @@ public class SOUnboundedCountDownLatchTest {
doTest(pubSeq, subSeq, latch, dc, count, 0);
+ LOG.info().$("waiting on [count=").$(count).$(']').$();
latch.await(count);
LOG.info().$("section 1 done").$();
@@ -67,6 +68,7 @@ public class SOUnboundedCountDownLatchTest {
doTest(pubSeq, subSeq, latch, dc, c... | chore: added debug messages to sticking test | null | questdb/questdb | Apache License 2.0 | Java |
@@ -279,7 +279,7 @@ impl KVApiTestSuite {
UpsertKVReq::update("k2", b"v2")
.with(MatchSeq::Exact(0))
.with(KVMeta {
- expire_at: Some(now + 2),
+ expire_at: Some(now + 10),
}),
)
.await?;
@@ -291,7 +291,7 @@ impl KVApiTestSuite {
Some(SeqV::with_meta(
3,
Some(KVMeta {
- expire_at: Some(now + 2)
+ expire_at: Some(now + ... | chore(meta): extend timeout to make slow CI happy:( | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -16,6 +16,11 @@ class Facebook extends OAuth
*/
protected $user = [];
+ /**
+ * @var array
+ */
+ protected $scopes = ['email'];
+
/**
* @return string
*/
@@ -29,7 +34,12 @@ class Facebook extends OAuth
*/
public function getLoginURL():string
{
- return 'https://www.facebook.com/'.$this->version.'/dialog/oauth?clien... | chore: changes to facebook Adapter | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
@@ -10,4 +10,5 @@ export PATH=$GEM_HOME/bin:$PATH
gem install --no-document toys
toys release install-python-tools -v
# This is not called from autorelease, so don't run publish-reporter-script
-toys release perform -v --base-dir=generated --all=^google-apis- --enable-docs < /dev/null
+# TODO: Uncomment to re-enable re... | chore: Disable releases for the 2022 freeze | null | googleapis/google-api-ruby-client | Apache License 2.0 | Shell |
@@ -58,6 +58,11 @@ class UpdateSearchCommand extends Command
continue;
}
+ $maxDocuments = ElasticSearch::MAX_BULK_DOCUMENTS;
+ if($contentName == 'Lore' || $contentName == 'Quest'){
+ $maxDocuments = 10;
+ }
+
$index = strtolower($contentName);
$ids = (array)Redis::Cache()->get("ids_{$contentName}");
$idsEs = (array)R... | chore: testing new bulk strategy for Leves and Quests | null | xivapi/xivapi.com | MIT License | PHP |
@@ -14,6 +14,7 @@ module.exports = function(api) {
},
"useBuiltIns": "usage",
// "modules": process.env.BUILD ? false : "cjs",
+ "modules": "cjs",
// "debug": true
}],
"@babel/preset-react"
| chore: use commonjs | null | ksc-fe/kpc | MIT License | JavaScript |
@@ -12,13 +12,13 @@ public protocol APIContextAware: AnyObject {
/// :nodoc:
/// The API context
- var apiContext: AnyAPIContext { get }
+ var apiContext: APIContext { get }
}
/// :nodoc:
/// An API context that defines parameters for retrieving internal resources
-public protocol AnyAPIContext {
+public protocol APICo... | chore: Add clientKey validation to APIContext | null | adyen/adyen-ios | MIT License | Swift |
@@ -7,6 +7,7 @@ use Auth\OAuth;
// Reference Material
// https://developer.amazon.com/docs/login-with-amazon/authorization-code-grant.html
// https://developer.amazon.com/docs/login-with-amazon/register-web.html
+// https://developer.amazon.com/docs/login-with-amazon/obtain-customer-profile.html
class Amazon extends OA... | chore: added Amazon OAuth Docs | null | appwrite/appwrite | BSD 3-Clause New or Revised License | PHP |
@@ -197,9 +197,7 @@ class IsolateInspectorServer {
Future<void> _bindServer(int port) async {
try {
- ServerSocket serverSocket = await ServerSocket.bind(address, port);
- _httpServer = await HttpServer.listenOn(serverSocket);
- // _httpServer = await HttpServer.bind(address, port);
+ _httpServer = await HttpServer.bin... | chore: remove raw socket server connect | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -1183,8 +1183,18 @@ public class NewActionServiceCEImpl extends BaseService<NewActionRepository, New
"statusCode", actionExecutionResult.getStatusCode()
));
}
+ List<Param> paramsList = executeActionDto.getParams();
+ if (paramsList == null) {
+ paramsList = new ArrayList<>();
+ }
+ String executionRequestQuery = ""... | chore: NPE for action execution tests | null | appsmithorg/appsmith | Apache License 2.0 | Java |
@@ -439,7 +439,7 @@ impl<I: Identity, T: TrustPolicy> SecureChannelWorker<I, T> {
let mut onward_route = msg.onward_route();
let mut return_route = msg.return_route();
- let payload = msg.payload().clone();
+ let payload = msg.payload().to_vec();
// Send to the other party using local regular SecureChannel
let _ = onwa... | chore(rust): fix clippy warnings for ockam_entity | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -74,13 +74,13 @@ export class ExampleTuiDialogComponent {
'search-example/search-dialog-example.component.ts': import(
`./examples/7/search-example/search-dialog-example.component.ts?raw`
),
- 'search-example/search-dialog-example.component.html': import(
+ 'search-example/search-dialog-example.template.html': impor... | chore(demo): `Stackblitz` fix `Fullscreen mobile dialog with autofocus`-example | null | tinkoffcreditsystems/taiga-ui | Apache License 2.0 | TypeScript |
@@ -63,13 +63,13 @@ export class UserService extends FirestoreStorage<TeamcraftUser> {
switchMap(user => {
if (user === null) {
user = new TeamcraftUser();
+ user.createdAt = firebase.firestore.Timestamp.now();
user.notFound = true;
user.$key = uid;
return of(user);
} else {
delete user.notFound;
}
- user.createdAt = f... | chore: properly save createdAt for user.. | null | ffxiv-teamcraft/ffxiv-teamcraft | MIT License | TypeScript |
@@ -406,6 +406,11 @@ impl<I: Identity, T: TrustPolicy> SecureChannelWorker<I, T> {
their_profile_id,
}));
+ info!(
+ "Initialized ProfileSecureChannel Responder at local: {}, remote: {}",
+ &self.self_local_address, &self.self_remote_address
+ );
+
Ok(())
} else {
Err(EntityError::InvalidSecureChannelInternalState.into... | chore(rust): add logging to responder side of entity secure channel | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -73,13 +73,14 @@ export default Vue.extend({
innerMask = this.__getMask(),
innerLocale = this.__getLocale(),
viewModel = this.__getViewModel(innerMask, innerLocale),
+ year = viewModel.year,
direction = this.$q.lang.rtl === true ? 'right' : 'left'
return {
view: this.defaultView,
monthDirection: direction,
yearDirec... | chore(QDate): small tweaks | null | quasarframework/quasar | MIT License | JavaScript |
@@ -384,22 +384,19 @@ pub mod pallet {
}
fn get_gateway_security_coordinates(chain_id: &ChainId) -> Result<Bytes, DispatchError> {
- if !<XDNSRegistry<T>>::contains_key(chain_id) {
- return Err(Error::<T>::XdnsRecordNotFound.into())
+ match <XDNSRegistry<T>>::get(chain_id) {
+ Some(rec) => Ok(rec.security_coordinates),... | chore: update xdns getters | null | t3rn/t3rn | Apache License 2.0 | Rust |
@@ -1461,14 +1461,14 @@ mod tests {
"happy_provider", None).await;
match &result {
Ok(_) => (),
- Err(err) => panic!(format!("Expected an Ok result, got a error {}", err))
+ Err(err) => panic!("Expected an Ok result, got a error {}", err)
}
let pacts = &result.unwrap();
expect!(pacts.len()).to(be_equal_to(2));
for pact... | chore: fix some Rust 2021 lint warnings | null | pact-foundation/pact-reference | MIT License | Rust |
@@ -167,7 +167,8 @@ pub(crate) async fn compact_parquet_files(
}
// extract the min & max chunk times for filtering potential split times.
- let chunk_times : Vec<_> = query_chunks.clone()
+ let chunk_times: Vec<_> = query_chunks
+ .clone()
.into_iter()
.map(|c| (c.min_time(), c.max_time()))
.collect();
| chore: rustfmt changes | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -26,6 +26,7 @@ if [ -f ${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-url-release-please ]; th
--api-url=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-url-release-please \
--proxy-key=${KOKORO_KEYSTORE_DIR}/73713_github-magic-proxy-key-release-please \
--release-type=php-yoshi
+ --bump-minor-pre-major=true
# Look... | chore: Use minor version bump before GA | null | googleapis/google-cloud-php | Apache License 2.0 | Shell |
@@ -118,8 +118,8 @@ impl From<Raw<AnySyncTimelineEvent>> for SyncTimelineEvent {
impl From<TimelineEvent> for SyncTimelineEvent {
fn from(o: TimelineEvent) -> Self {
- // This conversion is unproblematic since a SyncTimelineEvent is just a
- // TimelineEvent without the room_id. By converting the raw value in
+ // This... | chore: Add more backticks in comments | null | matrix-org/matrix-rust-sdk | Apache License 2.0 | Rust |
@endif
<input {{ $attributes->class([
'block sm:text-sm rounded-md transition ease-in-out duration-100 focus:outline-none',
+ 'text-primary-600 focus:ring-primary-600',
'w-5 h-5' => $md,
'w-6 h-6' => $lg,
'ring-negative-500 ring-2 ring-offset-2 border-negative-400' => $errors->has($name)
| chore: add custom color to radio and checkbox | null | wireui/wireui | MIT License | PHP |
@@ -117,6 +117,7 @@ function shouldSkipTest(spec) {
function generateTopologyTests(testSuites, testContext) {
testSuites.forEach(testSuite => {
+ // TODO: remove this when SPEC-1255 is completed
let runOn = testSuite.runOn;
if (!testSuite.runOn) {
runOn = [{ minServerVersion: testSuite.minServerVersion }];
| chore: leave note that test section should be removed later | null | mongodb/node-mongodb-native | Apache License 2.0 | JavaScript |
@@ -28,6 +28,18 @@ export const Mediamarkt: Store = {
series: 'test:series',
url: 'https://www.mediamarkt.de/de/product/-2592355.html'
},
+ {
+ brand: 'asus',
+ model: 'dual',
+ series: '3060ti',
+ url: 'https://www.mediamarkt.de/de/product/-2701239.html'
+ },
+ {
+ brand: 'zotac',
+ model: 'twin edge',
+ series: '3060... | chore(mediamarkt): add 3060ti | null | jef/streetmerchant | MIT License | TypeScript |
@@ -161,6 +161,7 @@ func TestORM_DeleteJob_DeletesAssociatedRecords(t *testing.T) {
pipelineORM := pipeline.NewORM(db, logger.TestLogger(t))
cc := evmtest.NewChainSet(t, evmtest.TestChainOpts{DB: db, GeneralConfig: config})
jobORM := job.NewTestORM(t, db, cc, pipelineORM, keyStore)
+ korm := keeper.NewORM(db, logger.Te... | chore: merge with develop | null | smartcontractkit/chainlink | MIT License | Go |
-import classNames from "classnames/dedupe";
import PropTypes from "prop-types";
import React from "react";
import { Trans } from "@lingui/macro";
@@ -17,75 +16,35 @@ class PageHeader extends React.Component {
actions,
addButton,
breadcrumbs,
- pageHeaderClassName,
- pageHeaderInnerClassName,
- pageHeaderSectionPrimary... | chore: remove dead code | null | dcos/dcos-ui | Apache License 2.0 | JavaScript |
@@ -132,7 +132,7 @@ public struct ABIEncoder {
/// Overloading to support `ABI.Element.InOut` as the type of the `types` array.
/// Identical to use of `web3.eth.abi.encodeParameters` in web3.js.
/// - Parameters:
- /// - types: an array of values' ABI types. Must be declared in the same order as entries in `values` or... | chore: it's not ABI type but Solidity type | null | skywinder/web3swift | Apache License 2.0 | Swift |
@@ -264,7 +264,7 @@ pub struct ConfigViaEnv {
pub admin_tls_server_cert: String,
pub admin_tls_server_key: String,
pub metasrv_grpc_api_address: String,
- pub metasrv_grpc_api_advertise_address: Option<String>,
+ pub metasrv_grpc_api_advertise_host: Option<String>,
pub grpc_tls_server_cert: String,
pub grpc_tls_server_... | chore(meta): fix ConfigViaEnf: it should be metasrv_grpc_api_advertise_host | null | datafuselabs/databend | Apache License 2.0 | Rust |
-import { Label, Button } from 'react-bootstrap'
+// TODO: Typescript, which doesn't make sense to do in this file until common types are established
+/* eslint-disable react/prop-types */
+import { Button, Label } from 'react-bootstrap'
+import { VelocityTransitionGroup } from 'velocity-react'
import React, { PureComp... | chore(RouteRow): run autoformatter | null | opentripplanner/otp-react-redux | MIT License | JavaScript |
@@ -256,3 +256,91 @@ impl Worker for RemoteForwarder {
Ok(())
}
}
+
+#[cfg(test)]
+mod test {
+ use super::*;
+ use crate::workers::Echoer;
+ use ockam_transport_tcp::{TcpTransport, TCP};
+ use std::env;
+
+ fn get_cloud_address() -> Option<String> {
+ if let Ok(v) = env::var("CLOUD_ADDRESS") {
+ if !v.is_empty() {
+ r... | chore(rust): add `RemoteForwarder` tests | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -52,7 +52,6 @@ export function MixinNativeETHWallet<TBase extends core.Constructor<NativeHDWall
// eslint-disable-next-line @typescript-eslint/no-shadow
return class MixinNativeETHWallet extends Base {
readonly _supportsETH = true;
- readonly _supportsEthSwitchChain = true;
#ethSigner: ethers.Signer | undefined;
| chore: remove from Native mixin | null | shapeshift/hdwallet | MIT License | TypeScript |
@@ -56,7 +56,8 @@ namespace Cicada {
return new ContentDataSource(uri);
};
- bool is_supported(const std::string &uri) override {
+ bool is_supported(const std::string &uri, int flags) override
+ {
return probe(uri);
};
| chore(contentdatasource): fix android build error | null | alibaba/cicadaplayer | MIT License | C |
@@ -151,7 +151,7 @@ public class ExternalTaskClientLogger extends BaseLogger {
public ExternalTaskClientException maxTasksNotGreaterThanZeroException(Integer maxTasks) {
return new ExternalTaskClientException(exceptionMessage(
- "014", "Maximum amount of fetched tasks must be greater than zero, bus was '{}'", maxTasks)... | chore(log): correct typo in ExternalTaskClientLogger error message | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -33,6 +33,7 @@ python --version || true
python3 --version || true
vault --version || true
jq --version || true
+rsync --version || true
JAVA_HOME="${HUDSON_HOME}/.java/java10"
PATH="${JAVA_HOME}/bin:${PATH}"
| chore: add rsync to the checks | null | elastic/apm-pipeline-library | Apache License 2.0 | Shell |
import com.github.dockerjava.api.exception.NotFoundException;
import com.github.dockerjava.api.exception.NotModifiedException;
import com.github.dockerjava.api.model.Bind;
+import com.github.dockerjava.api.model.Capability;
import com.github.dockerjava.api.model.ExposedPort;
import com.github.dockerjava.api.model.Frame... | chore: improve service docker container configuration | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Java |
/**
* iframe controller
* renders an HTML iframe to another page
+ * note: destination pages must contain <base target="_parent"> to open links properly from the iframe
*/
var DESTINATIONS = {
| chore: add note about links from iframes | null | openwhyd/openwhyd | MIT License | JavaScript |
@@ -8,6 +8,21 @@ defmodule LogflareWeb.AdminController do
require Logger
@page_size 50
+ @accounts_sort_options [
+ :inserted_at,
+ :updated_at
+ ]
+ @sources_sort_options [
+ :fields,
+ :latest,
+ :rejected,
+ :rate,
+ :avg,
+ :max,
+ :buffer,
+ :inserts,
+ :recent
+ ]
defp env_node_shutdown_code, do: Application.get_... | chore: remove usage of String.to_atom in admin_controller | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -23,7 +23,7 @@ yarn build
bash ${WORKSPACE}/scripts/ci/setup-npm.sh
# trigger lerna release and create new storybook
-${WORKSPACE}/node_modules/.bin/lerna publish --conventional-graduate \
+${WORKSPACE}/node_modules/.bin/lerna publish patch --conventional-graduate \
--create-release github
# all packages are now rel... | chore: force patch release | null | sap/ui5-webcomponents-react | Apache License 2.0 | Shell |
@@ -22,7 +22,8 @@ int LinearSearch(int *array, int size, int key)
{
for (int i = 0; i < size; ++i)
{
- if (array[i] == key) {
+ if (array[i] == key)
+ {
return i;
}
}
@@ -35,10 +36,12 @@ int LinearSearch(int *array, int size, int key)
* @brief Self-test implementations
* @returns void
*/
-static void tests() {
+static ... | chore: improve `search/linear_search.cpp` message | null | thealgorithms/c-plus-plus | MIT License | C++ |
@@ -21,7 +21,7 @@ class Application
*
* @var string
*/
- const VERSION = '1.6.0';
+ const VERSION = '1.6.1';
/**
* The IoC container for the Flarum application.
| chore: update app version constant | null | flarum/core | MIT License | PHP |
@@ -17,7 +17,7 @@ class UIImageViewTests: QuickSpec {
stub(condition: isExtension("png") && isHost("test200")) { _ in
let image = UIImage(named: "poster", in: Bundle(for: UIImageViewTests.self), compatibleWith: nil)!
let data = UIImagePNGRepresentation(image)
- return OHHTTPStubsResponse(data: data!, statusCode: 200, h... | chore: adjusting content-type to return png | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -306,9 +306,11 @@ class PreviewEnvironmentCodeEventListener(
if (candidate != null) {
// special case for security group named after the app which is always included by default :-/
if (candidate.kind.kind.contains("security-group") && candidate.named(application)) {
+ log.debug("Skipping dependency rename for defaul... | chore(logs): Add debug logs to preview environment dep renaming | null | spinnaker/keel | Apache License 2.0 | Kotlin |
import marked from 'marked';
-import {escapeSync, filterSync} from '@ciscospark/helper-html';
+import {escapeSync, filterSync} from '@webex/helper-html';
import {resetActivity} from './actions';
| chore(r-m-activity): convert to sdk | null | webex/react-widgets | MIT License | JavaScript |
@@ -15,17 +15,19 @@ import org.apache.http.Header;
import org.apache.http.HttpResponse;
import org.apache.http.client.HttpResponseException;
import org.apache.http.client.fluent.Request;
-import org.assertj.core.api.Assertions;
import org.junit.Assert;
import org.junit.Rule;
import org.junit.Test;
import java.io.IOExce... | chore: fix test failing due to missing dep | null | pact-foundation/pact-jvm | Apache License 2.0 | Java |
@@ -98,7 +98,7 @@ pub enum Error {
}
/// Create an `InvalidSlotType` error
-pub fn invalid_slot_variant<Type>(variant: &str, object: Type) -> Error {
+pub fn invalid_slot_variant<Type>(variant: &str, _object: Type) -> Error {
Error::InvalidSlotVariant {
variant: variant.into(),
type_name: type_name::<Type>().into(),
@@... | chore(Errors): Linting | null | stencila/stencila | Apache License 2.0 | Rust |
@@ -58,6 +58,11 @@ public class LdapGroupQueryTest extends LdapIdentityProviderTest {
.list();
assertEquals(2, groups.size());
+ for (Group group : groups) {
+ if (!group.getId().equals("external") && !group.getId().equals("management")) {
+ fail();
+ }
+ }
}
public void testFilterByGroupName() {
| chore(ldap): extend test case | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -13,13 +13,13 @@ import (
var namespace = "eagle"
var (
- labels = []string{"status", "endpoint", "method", "service"}
+ labels = []string{"status", "handler", "method", "service"}
// QPS
reqCount = metric.NewCounterVec(
&metric.CounterVecOpts{
Namespace: namespace,
- Name: "http_request_count_total",
+ Name: "http_... | chore: rename metric name | null | go-eagle/eagle | MIT License | Go |
@@ -108,12 +108,12 @@ class BasicPersonalInfoFormComponentTests: XCTestCase {
isFirstField: false)
let phoneNumberView: FormPhoneNumberItemView? = sut.viewController.view.findView(with: ViewIdentifier.phone)
- let phoneNumberViewTitleLabel: UILabel? = sut.viewController.view.findView(with: "AdyenComponents.BasicPersona... | chore: Move view identifiers to constants | null | adyen/adyen-ios | MIT License | Swift |
@@ -18,7 +18,7 @@ import (
"github.com/influxdata/influxdb/query/control"
stdlib "github.com/influxdata/influxdb/query/stdlib/influxdata/influxdb"
"github.com/influxdata/influxdb/storage"
- "github.com/influxdata/influxdb/storage/reads"
+ storageflux "github.com/influxdata/influxdb/storage/flux"
"github.com/influxdata/... | chore(storageflux): fix linter issue | null | influxdata/influxdb | MIT License | Go |
@@ -9,9 +9,8 @@ use backoff::{Backoff, BackoffConfig};
use data_types::Namespace;
use iox_query::exec::Executor;
use object_store::DynObjectStore;
-use parking_lot::RwLock;
use service_common::QueryDatabaseProvider;
-use std::{collections::HashMap, sync::Arc};
+use std::sync::Arc;
/// The number of entries to store in ... | chore: Remove dead code from QueryDatabase | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
+use crate::exercise::{Exercise, ExerciseList};
use crate::project::RustAnalyzerProject;
-use crate::run::run;
+use crate::run::{reset, run};
use crate::verify::verify;
-use crate::{
- exercise::{Exercise, ExerciseList},
- run::reset,
-};
use argh::FromArgs;
use console::Emoji;
use notify::DebouncedEvent;
@@ -77,7 +74,... | chore: Add suggested changes | null | rust-lang/rustlings | MIT License | Rust |
import cloud.commandframework.annotations.CommandPermission;
import cloud.commandframework.annotations.Flag;
import eu.cloudnetservice.cloudnet.common.unsafe.CPUUsageResolver;
+import eu.cloudnetservice.cloudnet.driver.service.ProcessSnapshot;
import eu.cloudnetservice.cloudnet.node.CloudNet;
import eu.cloudnetservice.... | chore: don't require a thread stacktrace creation to display thread count | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Java |
@@ -47,6 +47,7 @@ func revokeToken(cmd *cobra.Command, args []string) {
utils.RequireValue("token", localConfig.Token.Value)
if !yes && !utils.ConfirmationPrompt(fmt.Sprintf("Revoke auth token scoped to %s?", localConfig.Token.Scope), false) {
+ utils.Log("Aborting")
return
}
| chore: display message when revocation is aborted | null | dopplerhq/cli | Apache License 2.0 | Go |
@@ -16,7 +16,7 @@ defmodule Ash.Page.Keyset do
require Ash.Query
- def new(results, count, sort, original_query, more?, opts) do
+ def new(results, count, _sort, original_query, more?, opts) do
results =
if opts[:page][:before] do
Enum.reverse(results)
@@ -116,7 +116,7 @@ defmodule Ash.Page.Keyset do
|> non_executable_... | chore: warnings | null | ash-project/ash | MIT License | Elixir |
@@ -23,12 +23,15 @@ mod find_many {
ids,
);
+ let old_query_batch_size = std::env::var("QUERY_BATCH_SIZE");
+ std::env::set_var("QUERY_BATCH_SIZE", n.to_string());
assert_error!(
runner,
query,
2034,
"Assertion violation on the database: `value too large to transmit`"
);
+ std::env::set_var("QUERY_BATCH_SIZE", old_quer... | chore: change QUERY_BATCH_SIZE in query_engine_tests::new::invalid_input_error::find_many test | null | prisma/prisma-engines | Apache License 2.0 | Rust |
@@ -22,7 +22,7 @@ const HotModuleReplacementPlugin = require('webpack/lib/HotModuleReplacementPlug
const ENV = process.env.ENV = process.env.NODE_ENV = 'development';
const HOST = process.env.HOST || 'localhost';
const PORT = process.env.PORT || 3000;
-const PUBLIC = process.env.PUBLIC_DEV || undefined;
+const PUBLIC =... | chore: default public url PR for 1859 fix | null | patrickjs/angular-starter | MIT License | JavaScript |
const { spawn } = require('child_process');
const path = require('path');
const { promisify } = require('util');
-const exec = promisify(require('child_process').exec);
const rimraf = promisify(require('rimraf'));
const { copy } = require('fs-extra');
@@ -10,16 +9,29 @@ const mkdirp = promisify(require('mkdirp'));
cons... | chore(spec): use spawn for HopsCLI.build | null | xing/hops | MIT License | JavaScript |
@@ -435,7 +435,7 @@ class ImageElement extends Element {
// obtain the cached imageStream from imageCache instead of obtaining resources from I/O.
void _precacheImage() async {
final ImageConfiguration config = ImageConfiguration.empty;
- _resolveSource(src);
+ _resolveResource(src);
final Uri? resolvedUri = _resolvedU... | chore: rename method name | null | openkraken/kraken | Apache License 2.0 | Dart |
@@ -123,10 +123,10 @@ impl Network {
pub(crate) fn back_off(&self) -> impl Iterator<Item = Duration> {
let policy = ExponentialBackoff::default()
- .with_factor(self.ratio)
- .with_min_delay(self.min_delay)
- .with_max_delay(self.max_delay)
- .with_max_times(self.chances as usize);
+ .with_factor(self.back_off_ratio)
+... | chore: fix comp err | null | datafuselabs/databend | Apache License 2.0 | Rust |
{
public static class ApplicationSettings
{
- public static string version = "0.5.5";
+ public static string version = "0.5.6";
}
public static class Environment
| chore: update build version to 0.5.6 | null | decentraland/explorer | Apache License 2.0 | C# |
@@ -8,10 +8,10 @@ class AwsSamCli < Formula
sha256 "5d0d37c9102660e75972341b8761109a2d7539b80ca378fcd5cb6aae79a173de"
head "https://github.com/awslabs/aws-sam-cli.git", :branch => "develop"
bottle do
- root_url "https://github.com/awslabs/aws-sam-cli/releases/download/v0.36.0/"
+ root_url "https://github.com/awslabs/aw... | chore: bottles for 0.37.0 aws-sam-cli | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
-from __future__ import print_function, unicode_literals
-'''
-Check for unused CSS Classes
-
-sUpdate source and target apps below and run from CLI
-
- bench --site [sitename] execute frappe.website.purifycss.purify.css
-
-'''
-
-import frappe, re, os
-
-source = frappe.get_app_path('frappe_theme', 'public', 'less', '... | chore: Delete an unnecessary file | null | frappe/frappe | MIT License | Python |
/* eslint-disable import/no-extraneous-dependencies */
-import {
- defaultTheme,
- heartTheme,
- ThemeManager,
- zenTheme,
-} from "@kaizen/design-tokens"
+import { heartTheme, ThemeManager, zenTheme } from "@kaizen/design-tokens"
import { THEME_KEY_STORE_KEY } from "./constants"
export const themeOfKey = (themeKey: st... | chore: Default Storybook to Heart | null | cultureamp/kaizen-design-system | MIT License | TypeScript |
@@ -25,16 +25,23 @@ public final class AdyenSession {
internal let apiContext: APIContext
+ internal let actionComponent: AdyenActionComponent.Configuration
+
/// Initializes a new Configuration object
///
/// - Parameters:
+ /// - sessionIdentifier: The session identifier.
+ /// - initialSessionData: The initial sessi... | chore: adds actionComponent configurtion to AdyenSession.Configuration | null | adyen/adyen-ios | MIT License | Swift |
@@ -118,7 +118,8 @@ inline static bool is_linear_layout(Context* ctx) {
}
ProcessResult Selector::ProcessKeyEvent(const KeyEvent& key_event) {
- if (key_event.release() || key_event.alt())
+ if (key_event.release() ||
+ key_event.alt() || key_event.super())
return kNoop;
Context* ctx = engine_->context();
if (ctx->comp... | chore: skip super key combos; amend merge result | null | rime/librime | BSD 3-Clause New or Revised License | C++ |
@@ -318,8 +318,8 @@ public class UIInternals implements Serializable {
*/
public void incrementServerId() {
serverSyncId++;
- if (getLogger().isDebugEnabled()) {
- getLogger().debug("Increment syncId:\n{}", Arrays
+ if (getLogger().isTraceEnabled()) {
+ getLogger().trace("Increment syncId:\n{}", Arrays
.stream(Thread.c... | chore: log server sync id stack at trace level | null | vaadin/flow | Apache License 2.0 | Java |
@@ -56,7 +56,7 @@ class SaintCoinachRedisCommand extends Command
->addOption('start', null, InputOption::VALUE_OPTIONAL, 'The required starting position for the data', 0)
->addOption('count', null, InputOption::VALUE_OPTIONAL, 'The amount of files to process in 1 go', 1000)
->addOption('fast', null, InputOption::VALUE_... | chore: force full mode for data import | null | xivapi/xivapi.com | MIT License | PHP |
@@ -136,7 +136,8 @@ func newShowCmd(out io.Writer) *cobra.Command {
cmds := []*cobra.Command{all, readmeSubCmd, valuesSubCmd, chartSubCmd}
for _, subCmd := range cmds {
- addShowFlags(showCommand, subCmd, client)
+ addShowFlags(subCmd, client)
+ showCommand.AddCommand(subCmd)
// Register the completion function for eac... | chore(helm): Avoid confusion in command usage | null | helm/helm | Apache License 2.0 | Go |
@@ -565,7 +565,7 @@ public class AnalystWorker implements Runnable {
// Use the lenient object mapper here in case the broker is a newer version so sending unrecognizable fields
return JsonUtilities.lenientObjectMapper.readValue(entity.getContent(), new TypeReference<List<AnalysisTask>>() {});
} catch (Exception e) {
-... | chore(exceptions): use ExceptionUtils | null | conveyal/r5 | MIT License | Java |
@@ -38,6 +38,7 @@ import com.amplifyframework.core.model.Model;
import com.amplifyframework.core.model.ModelSchema;
import com.amplifyframework.core.model.SchemaRegistry;
import com.amplifyframework.core.model.SerializedModel;
+import com.amplifyframework.core.model.query.Where;
import com.amplifyframework.datastore.st... | chore: add sync expression to multi-auth test | null | aws-amplify/amplify-android | Apache License 2.0 | Java |
@@ -100,6 +100,10 @@ var deprecatedCommands map[string]deprecationInfo = map[string]deprecationInfo{
"create etc-host": {
date: "01-02-2020",
},
+ "create codeship": {
+ date: "01-02-2020",
+ info: "No longer needed",
+ },
"upgrade platform": {
replacement: "upgrade boot",
date: "01-02-2020",
| chore: Deprecate create codeship command | null | jenkins-x/jx | Apache License 2.0 | Go |
@@ -104,11 +104,17 @@ impl Runtime {
let join_handler = thread::spawn(move || {
// We ignore channel is closed.
let _ = runtime.block_on(recv_stop);
+
+ match !cfg!(debug_assertions) {
+ true => false,
+ false => {
let instant = Instant::now();
// We wait up to 3 seconds to complete the runtime shutdown.
runtime.shutdo... | chore(base): disable runtime block in release binary | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -10,10 +10,10 @@ pub enum RankingOrdering {
#[derive(Debug, Clone, PartialEq, Eq, Serialize, Deserialize)]
pub struct Config {
- stop_words: Option<HashSet<String>>,
- ranking_order: Option<Vec<String>>,
- distinct_field: Option<String>,
- ranking_rules: Option<HashMap<String, RankingOrdering>>,
+ pub stop_words: Op... | chore: Set config field pub | null | meilisearch/meilisearch | MIT License | Rust |
@@ -163,7 +163,7 @@ public extension ABI {
"\(name)(\(inputs.map { "\($0.type.abiRepresentation) \($0.name)".trim() }.joined(separator: ",")))"
}
- public init(name: String, inputs: [InOut]) {
+ public init(name: String, inputs: [InOut] = []) {
self.name = name.trim()
self.inputs = inputs
}
| chore: EthError has default empty inputs array | null | skywinder/web3swift | Apache License 2.0 | Swift |
@@ -60,7 +60,7 @@ def validate_assertion assertion
a_header = Base64.decode64 assertion.split(".")[0]
key_id = JSON.parse(a_header)["kid"]
cert = OpenSSL::PKey::EC.new settings.certificates[key_id]
- info = JWT.decode assertion, cert, true, algorithm: "ES256", audience: settings.audience
+ info = JWT.decode assertion, ... | chore: Send the correct audience argument to JWT.decode | null | googlecloudplatform/ruby-docs-samples | Apache License 2.0 | Ruby |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.