diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -13,10 +13,16 @@ public final class StoredPaymentMethodComponent: PaymentComponent, PresentableCo
/// The context object for this component.
public let context: AdyenContext
+ /// The stored payment method.
public var paymentMethod: PaymentMethod { storedPaymentMethod }
public weak var delegate: PaymentComponentDele... | chore: small fix to documentation in StoredPaymentMethodComponent.swift | null | adyen/adyen-ios | MIT License | Swift |
// Website default configuration
return [
- 'title' => '',
- 'baseline' => '',
+ 'title' => 'Site title',
+ 'baseline' => 'Site baseline',
'baseurl' => 'http://localhost:8000/',
'canonicalurl' => false, // if true 'url()' function preprends URL wirh 'baseurl'
- 'description' => '',
+ 'description' => 'Site description'... | chore: update default config | null | cecilapp/cecil | MIT License | PHP |
@@ -55,7 +55,7 @@ from its original incoming value to the address of the upstream. (Otherwise, by
default, all incoming headers are passed through unmodified.)
`,
Flags: func() *flag.FlagSet {
- fs := flag.NewFlagSet("file-server", flag.ExitOnError)
+ fs := flag.NewFlagSet("reverse-proxy", flag.ExitOnError)
fs.String("... | chore: Fix typo in reverse-proxy subcommand help message | null | caddyserver/caddy | Apache License 2.0 | Go |
@@ -32,7 +32,6 @@ module.exports = {
reportUnusedDisableDirectives: true,
rules: {
// Opinionated overrides of the default recommended rules:
- '@typescript-eslint/ban-ts-ignore': 'warn',
'@typescript-eslint/indent': 'off', // Disabled until typescript-eslint properly fixes indentation (see https://github.com/typescrip... | chore(eslint): remove deprecated rules | null | aurelia/aurelia | MIT License | JavaScript |
@@ -2008,7 +2008,7 @@ public class ExternalTaskServiceTest extends PluggableProcessEngineTestCase {
assertNotNull(lockedTasks);
assertEquals(1, lockedTasks.size());
- ClockUtil.setCurrentTime(new DateTime(ClockUtil.getCurrentTime()).plus(2).toDate());
+ ClockUtil.setCurrentTime(nowPlus(2));
// when
try {
externalTaskSe... | chore(test): use utility to set current time in test | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -322,10 +322,6 @@ class PlayerTests: QuickSpec {
super.init()
}
- required init?(coder argument: NSCoder) {
- super.init(coder: argument)
- }
-
private func bindEvents() {
stopListening()
bindPlaybackEvents()
| chore: removing unnecessary init | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -388,7 +388,7 @@ public abstract class NodeUpdater implements FallibleCommand {
final String WORKBOX_VERSION = "6.5.0";
if (featureFlags.isEnabled(FeatureFlags.VITE)) {
- defaults.put("vite", "v2.9.0");
+ defaults.put("vite", "v2.9.1");
defaults.put("@rollup/plugin-replace", "3.1.0");
defaults.put("rollup-plugin-bro... | chore: Upgrade to Vite 2.9.1 | null | vaadin/flow | Apache License 2.0 | Java |
@@ -19,10 +19,9 @@ pub fn collect_from_item<'a>(item: &'a Item, macros: &mut Vec<CollectedMacro<'a>
// Ignore macros if they're not rsx or render
Item::Macro(macro_) => {
- let to_str = macro_.mac.path.segments[0].ident.to_string();
- // let Some(ident) = ¯o_.ident else { return };
- // let to_str = ident.to_string... | chore: fewer clones in autoformat infrastructure | null | dioxuslabs/dioxus | Apache License 2.0 | Rust |
/*
- * 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.
@@ -87,8 +87,12 @@ public final class TermFilter implement... | chore(api): add builder static method to TermFilter | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -100,7 +100,7 @@ extension PreApplePayComponent: PaymentComponentDelegate {
browserInfo: data.browserInfo,
checkoutAttemptId: checkoutAttemptId,
installments: data.installments)
- delegate?.didSubmit(updatedData, from: self)
+ submit(data: updatedData, component: self)
}
internal func didFail(with error: Error, from... | chore: Use submit function in PaymentComponent extension | null | adyen/adyen-ios | MIT License | Swift |
@@ -2,7 +2,7 @@ import { inject } from '@aurelia/kernel';
import { bindable, RenderPlan, DOM, createElement } from "@aurelia/runtime";
import { customElement } from '@aurelia/runtime';
import * as template from './viewport.html';
-import { Router } from '../lib/router';
+import { Router } from '../../../../src/index';
... | chore(router): fix reference | null | aurelia/aurelia | MIT License | TypeScript |
@@ -22,15 +22,29 @@ def _import_modules(modules):
class Engine:
def __init__(
self,
- sdl: Union[str, List[str], "GraphQLSchema"],
+ sdl: Union[str, List[str]],
schema_name: str = "default",
error_coercer: Callable[[Exception], dict] = default_error_coercer,
custom_default_resolver: Optional[Callable] = None,
exclude_b... | chore(doc): Add a docstring to Engine constructor | null | tartiflette/tartiflette | MIT License | Python |
@@ -494,8 +494,7 @@ func getModulePathFromSourceUrl(sourceUrl string) (string, error) {
return matches[1], nil
}
-// decrypts and returns sops encrypted data, if it's utf8 it will return a string
-// else it will return base64 encoded binary data
+// decrypts and returns sops encrypted utf-8 yaml or json data as a stri... | chore: amend erronaeous comment | null | gruntwork-io/terragrunt | MIT License | Go |
-/*
- * (C) Copyright IBM Corp. 2019, 2020.
- *
- * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with
- * the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or... | chore(examples): remove personality insights and fix indentation | null | watson-developer-cloud/java-sdk | Apache License 2.0 | Java |
@@ -20,7 +20,7 @@ elif [[ $TRAVIS_BUILD_STAGE_NAME =~ "Release" ]]; then
CURRENT_BRANCH=refs/heads/main
# delete temp branch
- git push "https://$GHACTIONS@github.com/$TRAVIS_REPO_SLUG.git" ":$TRAVIS_BRANCH" > /dev/null;
+ git push "https://$GHACTIONS@github.com/$TRAVIS_REPO_SLUG.git" ":$TRAVIS_BRANCH" -v
std_ver=$(npm... | chore(ci): verbose push | null | sap/fundamental-ngx | Apache License 2.0 | Shell |
@@ -270,9 +270,10 @@ public class VaadinServletContextInitializer
@SuppressWarnings("unchecked")
@Override
public void failFastContextInitialized(ServletContextEvent event) {
+ final VaadinServletContext vaadinServletContext = new VaadinServletContext(
+ event.getServletContext());
ApplicationRouteRegistry registry = A... | chore: Add missing VaadinContext argument | null | vaadin/flow | Apache License 2.0 | Java |
@@ -23,15 +23,15 @@ class ViewController: UIViewController {
private let publicKey : String = "TEST-e28d5a35-dece-45c9-9618-e8cc5dec6c42"
// Preference ID
- private let preferenceId : String = "656525290-40cfbd89-5eb8-4b2f-8b22-5ae90227255b" //"656525290-2184df26-5283-41da-9a1c-9346735e73d2" //"656525290-7bda964b-26d9-... | chore: reverted ViewController changes | null | mercadopago/px-ios | MIT License | Swift |
@@ -8,10 +8,10 @@ class AwsSamCli < Formula
sha256 "731c98dc88029bbe9f6734afbeedb2c105b86bf4177de1518c82847ec619002b"
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.31.0/"
+ root_url "https://github.com/awslabs/aw... | chore: Updating bottles for SAM CLI v0.31.1 | null | aws/homebrew-tap | Apache License 2.0 | Ruby |
@@ -39,7 +39,7 @@ public final class User implements Serializable {
private final List<Permission> permissions;
public User(String userId, List<Permission> permissions) {
- checkArgument(!Strings.isNullOrEmpty(userId), "Username may not be null or empty");
+ checkArgument(!Strings.isNullOrEmpty(userId), "userId may not... | chore(auth): fix error message when `userId` is not specified | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -24,7 +24,7 @@ function run-proxy-agent {
# Connect proxy agent to Kubeflow Pipelines UI
/opt/bin/proxy-forwarding-agent \
--debug=${DEBUG} \
- --proxy=${PROXY_URL} \
+ --proxy=${PROXY_URL}/ \
--proxy-timeout=${PROXY_TIMEOUT} \
--backend=${BACKEND_ID} \
--host=${ML_PIPELINE_UI_SERVICE_HOST}:${ML_PIPELINE_UI_SERVICE_... | chore(proxy): PROXY_URL should end with / | null | kubeflow/pipelines | Apache License 2.0 | Shell |
@@ -222,14 +222,19 @@ public abstract class AbstractDevServerRunner implements DevModeHandler {
long ms = (System.nanoTime() - start) / 1000000;
getLogger().info("Started {}. Time: {}ms", getServerName(), ms);
Stats npmStats = TaskRunNpmInstall.getLastInstallStats();
+ if (npmStats.getInstallTimeMs() != 0) {
DevModeUsa... | chore: Do not record npm install time when npm install did not happen | null | vaadin/flow | Apache License 2.0 | Java |
@@ -7,7 +7,7 @@ export DEVELOPMENT_BRANCH=${DEVELOPMENT_BRANCH:-development}
# #setup git
git config --global user.email "noreply@travis.com"
git config --global user.name "Travis CI"
-apt install tree
+sudo apt install tree
echo "Before building; inside app folder"
ls app
| chore: update upload script | null | fossasia/pslab-android | Apache License 2.0 | Shell |
@@ -17,6 +17,7 @@ limitations under the License.
package sanity
import (
+ "os"
"testing"
sanity "github.com/kubernetes-csi/csi-test/pkg/sanity"
@@ -36,7 +37,8 @@ const (
func TestSanity(t *testing.T) {
klog.InitFlags(nil)
- ddriver := azuredisk.NewDriver("someNodeID")
+ nodeId := os.Getenv("nodeid")
+ ddriver := azure... | chore: get node id from env | null | kubernetes-sigs/azuredisk-csi-driver | Apache License 2.0 | Go |
@@ -24,7 +24,7 @@ return [
| Do not change this value!
|
*/
- 'version' => '2.0.0',
+ 'version' => '2.1.0',
/*
|--------------------------------------------------------------------------
| chore(update): 2.1.0 | null | corowne/lorekeeper | MIT License | PHP |
@@ -373,7 +373,7 @@ class SOEFDockerImage(DockerImage):
"# (Author Toby Simpson)",
"#",
"# Port we're listening on",
- "port 12002",
+ f"port {self._port}",
"#",
"# Our declared location",
"latitude 52.205278",
@@ -396,7 +396,7 @@ class SOEFDockerImage(DockerImage):
def _make_ports(self) -> Dict:
"""Make ports dictiona... | chore: checkout remote file | null | fetchai/agents-aea | Apache License 2.0 | Python |
@@ -11,16 +11,16 @@ defmodule Logflare.AuthTest do
[user: user, team: Factory.insert(:team, user: user) ]
end
- describe "api keys" do
+ describe "api access tokens" do
test "can create api key", %{user: user, team: team} do
{:ok, %ApiKey{}} = Auth.create_access_token(user)
{:ok, %ApiKey{}} = Auth.create_access_token(t... | chore: update auth test names | null | logflare/logflare | Apache License 2.0 | Elixir |
@@ -106,8 +106,6 @@ elif (
or detector.board.qt2040_trinkey_u2if
):
from adafruit_blinka.microcontroller.rp2040_u2if.pin import Pin
-else:
- print("Oops!")
from adafruit_blinka import Enum, ContextManaged
| chore: remove unnecessary print | null | adafruit/adafruit_blinka | MIT License | Python |
@@ -66,8 +66,8 @@ targets:
" > project.yml
mkdir Tests
-cp "../Demo/Common" Common
-cp "../Demo/UIKit" ./
+cp -a "../Demo/Common" Common
+cp -a "../Demo/UIKit" ./
cp "../Demo/Configuration.swift" Configuration.swift
cp "../Tests/AdyenTests/Adyen Tests/UI/DropIn/DropInTests.swift" Tests/DropInTests.swift
| chore: small fix in test-carthage-integration.sh | null | adyen/adyen-ios | MIT License | Shell |
@@ -77,7 +77,11 @@ const team = {
username: user.login,
name: profile.name,
website: profile.blog,
- avatar_url: profile.avatar_url
+ avatar_url: profile.avatar_url,
+ bio: profile.bio,
+ twitter_username: profile.twitter_username,
+ github_username: user.login,
+ location: profile.location
});
}
| chore: Update fetch for team data to include more info | null | eslint/website | MIT License | JavaScript |
@@ -29,7 +29,6 @@ import (
"github.com/1024casts/snake/config"
"github.com/1024casts/snake/handler"
"github.com/1024casts/snake/internal/model"
- "github.com/1024casts/snake/pkg/cache"
"github.com/1024casts/snake/pkg/email"
"github.com/1024casts/snake/pkg/log"
"github.com/1024casts/snake/pkg/redis"
@@ -78,8 +77,6 @@ fu... | chore: remove cache init | null | go-eagle/eagle | MIT License | Go |
@@ -240,6 +240,26 @@ class ComponentManagerTests: XCTestCase {
XCTAssertNotNil(boletoComponent.shopperInformation)
}
+ func testShopperInformationInjectionShouldSetShopperInformationOnCardComponent() throws {
+ // Given
+ let paymentMethods = try Coder.decode(dictionary) as PaymentMethods
+ let configuration = DropInCo... | chore: Test shopper information injection on card configuration | null | adyen/adyen-ios | MIT License | Swift |
@@ -387,7 +387,6 @@ impl Compactor {
compact_and_upgrade.sequencer_id = Some(parquet_files[0].sequencer_id);
// Group overlapped files
- // Each group will be limited by thier size and number of files
let overlapped_file_groups = Self::overlapped_groups(parquet_files);
// Group time-contiguous non-overlapped groups if ... | chore: remove irrelaevant comments | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -45,7 +45,7 @@ namespace MagicOnion.OpenTelemetry
{
try
{
- span.SetAttribute("grpc.method", "Unary");
+ span.SetAttribute("grpc.method", context.MethodType.ToString());
span.SetAttribute("rpc.service", telemetryOption.ServiceName);
span.SetAttribute("rpc.method", context.CallContext.Method);
span.SetAttribute("net.... | chore: add grpc.method | null | cysharp/magiconion | MIT License | C# |
@@ -63,16 +63,6 @@ class VideoGridFragment : Fragment() {
return binding.root
}
- override fun onResume() {
- super.onResume()
- // binding.viewPagerVideoGrid.adapter = adapter
- }
-
- override fun onPause() {
- super.onPause()
- // binding.viewPagerVideoGrid.adapter = adapter
- }
-
private fun initVideoGrid() {
adapte... | chore(VideoGridFragment): remove redundant code | null | 100mslive/100ms-android | MIT License | Kotlin |
@@ -149,7 +149,7 @@ public class ModificationExecutionAsyncTest {
@After
public void removeInstanceIds() {
- helper.currentProcessInstances = new ArrayList<String>();
+ helper.currentProcessInstances = new ArrayList<>();
}
@After
@@ -772,7 +772,7 @@ public class ModificationExecutionAsyncTest {
Batch batch = helper.sta... | chore(engine): do not use job executor in test | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -408,7 +408,7 @@ func (sl *scrapeLoop) scrape(startTime, endTime time.Time) error {
return nil
default:
sl.poolMetrics.scrapesFailed.Inc()
- sl.logger.WithError(err).WithField("target", sl.scraper.Target.String()).Debug("scrapping failed")
+ sl.logger.WithError(err).WithField("target", sl.scraper.Target.String()).De... | chore: fix typo in logging message | null | pyroscope-io/pyroscope | Apache License 2.0 | Go |
@@ -6,7 +6,7 @@ use Illuminate\Database\Eloquent\Model;
use OwenIt\Auditing\Auditable;
use OwenIt\Auditing\Contracts\Auditable as AuditableContract;
-class AuditableTestModel extends Model implements AuditableContract
+class AuditableModelStub extends Model implements AuditableContract
{
use Auditable;
}
| chore(*): rename stub class | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -67,26 +67,30 @@ function generate_modified_modules_list() {
modified_files=$(git diff --name-only "${KOKORO_GITHUB_PULL_REQUEST_TARGET_BRANCH}...${KOKORO_GITHUB_PULL_REQUEST_COMMIT}")
printf "Modified files:\n%s\n" "${modified_files}"
+ # Generate the list of valid maven modules
+ maven_modules_list=$(mvn help:eval... | chore: Check for valid modules when running ITs | null | googleapis/google-cloud-java | Apache License 2.0 | Shell |
@@ -173,9 +173,17 @@ export default function makeServiceMutations() {
const isIdOk = idToBeRemoved !== null && idToBeRemoved !== undefined
const index = state.ids.findIndex(i => i === idToBeRemoved)
+ const Model = _get(models, `[${state.serverAlias}][${state.modelName}]`)
+ const copiesById = state.keepCopiesInStore
+... | chore: change mutations for copy-handling | null | feathersjs-ecosystem/feathers-vuex | MIT License | TypeScript |
@@ -12,9 +12,9 @@ internal enum Configuration {
// swiftlint:disable explicit_acl
/// Please use your own web server between your app and adyen checkout API.
- static let demoServerEnvironment = DemoServerEnvironment.local
+ static let demoServerEnvironment = DemoServerEnvironment.test
- static let componentsEnvironmen... | chore: reverted unnecessary configuration in Configuration.swift and Environment.swift | null | adyen/adyen-ios | MIT License | Swift |
@@ -453,7 +453,7 @@ describe(`[repeat.contextual-prop.spec.ts]`, function () {
function defaultExpectation(items: any[] | Map<any, any> | Set<any>): string {
if (Array.isArray(items)) {
- return items.map((item, idx) => `[\${item.name}] -- ${idx} -- ${idx % 2 === 0}`).join(``);
+ return items.map((item, idx) => `[${ite... | chore(repeat): fix slip-up in test | null | aurelia/aurelia | MIT License | TypeScript |
package install
import (
+ "fmt"
"errors"
log "github.com/sirupsen/logrus"
@@ -34,7 +35,10 @@ var Command = &cobra.Command{
}
client.WithClientAndProfile(func(nrClient *newrelic.NewRelic, profile *credentials.Profile) {
- assertProfileIsValid(profile)
+ err := assertProfileIsValid(profile)
+ if err != nil {
+ log.Fatal... | chore(install): assert returns error | null | newrelic/newrelic-cli | Apache License 2.0 | Go |
import {fixture, TestFixture} from '@material/web/compat/testing/helpers'; // TODO(b/235474830): remove the use of fixtures
import {MdFocusRing} from '@material/web/focus/focus-ring';
import {html} from 'lit';
+import {customElement} from 'lit/decorators';
-import {MdCheckbox} from './checkbox';
-import {CheckboxHarnes... | chore(checkbox): move test code closer to the code it's testing | null | material-components/material-components-web-components | Apache License 2.0 | TypeScript |
@@ -36,7 +36,7 @@ PRs=$(git log --pretty=oneline "$BASE_TAG"..."$LATEST_TAG" | grep 'Merge pull re
EXIT_CODE=0
ISSUES=()
for pr in $PRs; do
- id=$($GHCLI_BIN pr view "$pr" --json body | grep -oE 'Related issues | (.*)?[0-9]+(.*)?\|' | sed 's/[^[:digit:]]//g' | sed -z 's/\n//g' || true)
+ id=$($GHCLI_BIN pr view "$pr" -... | chore: fix issue parsing in issue tagging script | null | cloudskiff/driftctl | Apache License 2.0 | Shell |
@@ -16,6 +16,7 @@ defmodule RealtimeWeb.RealtimeChannelTest do
table: "users",
type: "INSERT"
}
+
RealtimeWeb.RealtimeChannel.handle_realtime_transaction("realtime:*", change)
assert_push("*", change)
assert_push("INSERT", change)
@@ -27,6 +28,7 @@ defmodule RealtimeWeb.RealtimeChannelTest do
table: "users",
type: "UPD... | chore: format RealtimeChannelTest | null | supabase/realtime | Apache License 2.0 | Elixir |
@@ -401,6 +401,9 @@ func sqlModeChangedValue(qr *sqltypes.Result) (bool, sqltypes.Value) {
changed = true
}
+ // When sending SET_VAR(sql_mode = "") to MySQL, MySQL ignores the optimizer hints and produces a
+ // "syntax error" warning. For this reason, when we want to set sql_mode to "" we set it so " "
+ // so MySQL ... | chore: addition of comment describing mysql behavior in set sql_mode | null | vitessio/vitess | Apache License 2.0 | Go |
@@ -32,7 +32,7 @@ cd ovn
# kube-ovn related patches
curl https://github.com/alauda/ovn/commit/2a01da436826de0afe0cda94628dcef7849b380a.patch | git apply
-sed -i 's/20.06.1/20.06.0/g' configure.ac
+sed -i 's/20.06.2/20.06.1/g' configure.ac
./boot.sh
if [ "$ARCH" = "amd64" ]; then
./configure LIBS=-ljemalloc --with-ovs-s... | chore: update build.sh | null | kubeovn/kube-ovn | Apache License 2.0 | Shell |
@@ -57,10 +57,8 @@ defmodule Realtime.SubscriptionManager do
}
},
_from,
- %{replication_mode: "RLS"} = state
+ %{replication_mode: "RLS", subscription_params: sub_params} = state
) do
- Process.monitor(channel_pid)
-
try do
Subscriptions.create_topic_subscriber(%{topic: topic, user_id: user_id, email: email})
catch
@@... | chore: subscription manager monitors channel process once | null | supabase/realtime | Apache License 2.0 | Elixir |
@@ -70,4 +70,5 @@ apk add --no-cache diffutils
apk add --no-cache rsync
# flake8 and jinja2 are used for lint checks, cookiecutter is used for terraform-google-module-template tests
-pip install flake8 "Jinja2~=3.1" cookiecutter
+# requests~=2.28 for https://github.com/psf/requests/pull/6179
+pip install flake8 "Jinja2... | chore(deps): add requests~=2.28 | null | googlecloudplatform/cloud-foundation-toolkit | Apache License 2.0 | Shell |
@@ -13,6 +13,10 @@ namespace Unity.Netcode.Editor
public class HiddenScriptEditor : UnityEditor.Editor
{
private static readonly string[] k_HiddenFields = { "m_Script" };
+
+ /// <summary>
+ /// Draws inspector properties without the script field.
+ /// </summary>
public override void OnInspectorGUI()
{
EditorGUI.Begin... | chore: Added XMLDoc for HiddenScriptEditor.OnInspectorGUI() | null | unity-technologies/com.unity.multiplayer.mlapi | MIT License | C# |
@@ -51,6 +51,7 @@ import org.camunda.bpm.engine.history.HistoricProcessInstance;
import org.camunda.bpm.engine.history.HistoricTaskInstance;
import org.camunda.bpm.engine.history.HistoricVariableInstance;
import org.camunda.bpm.engine.history.UserOperationLogEntry;
+import org.camunda.bpm.engine.impl.db.sql.DbSqlSessio... | chore(engine): exclude flaky test on MariaDB, MySQL and CRDB | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -6,7 +6,7 @@ import downloadDataStyles from '~components/pages/state/download-data.module.scs
const DownloadLinks = ({ links }) => (
<Container centered>
<h4 className={downloadLinksStyles.header}>
- Download this posts' data
+ Download this post's data
</h4>
<p>
{links.map(link => (
| chore: Fix apostrophe | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -1871,7 +1871,7 @@ public class BpmnParse extends Parse {
// Validation
if (behavior.getLoopCardinalityExpression() == null && behavior.getCollectionExpression() == null && behavior.getCollectionVariable() == null) {
- addError("Either loopCardinality or loopDataInputRef/activiti:collection must been set", miLoopCha... | chore(engine): correct typo in BpmnParse error message | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -29,7 +29,6 @@ public final class FormSpacerItemView: FormItemView<FormSpacerItem> {
private lazy var stackView: UIView = {
let stackView = UIStackView(arrangedSubviews: arrangedSubviews)
- // TODO: FIXME
stackView.axis = .vertical
stackView.alignment = .center
stackView.distribution = .fillEqually
| chore: Remove already solved FIXME | null | adyen/adyen-ios | MIT License | Swift |
+package io.holunda.camunda.taskpool.view.mongo.service
+
+import com.nhaarman.mockito_kotlin.*
+import io.holunda.camunda.taskpool.api.task.ProcessReference
+import io.holunda.camunda.taskpool.api.task.TaskAssignedEngineEvent
+import io.holunda.camunda.taskpool.view.mongo.ChangeTrackingMode
+import io.holunda.camunda.... | chore: add test for retrying loading task by id from mongo if there is no result on first try | null | holunda-io/camunda-bpm-taskpool | Apache License 2.0 | Kotlin |
/*
- * Copyright 2011-2022 B2i Healthcare Pte Ltd, http://b2i.sg
+ * Copyright 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.
| chore(commons): Fix copyright date on new file LongOrderedSetImpl | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -5,6 +5,6 @@ namespace App\Common\Constants;
class RateLimitConstants
{
const KEY_FIELD = 'private_key';
- const MAX_RATE_LIMIT_KEY = 20;
- const MAX_RATE_LIMIT_GLOBAL = 8;
+ const MAX_RATE_LIMIT_KEY = 30;
+ const MAX_RATE_LIMIT_GLOBAL = 20;
}
| chore: increase in rate limits | null | xivapi/xivapi.com | MIT License | PHP |
-package profile
-
-import (
- "log"
- "os"
- "runtime"
- "runtime/pprof"
-
- "github.com/influxdata/influxdb/v2/pkg/fs"
-)
-
-type Config struct {
- // CPU, if set, specifies the file name of the CPU profile to capture
- CPU string
-
- // Memory, if set, specifies the file name of the CPU profile to capture
- Memory s... | chore: delete dead pprof related code | null | influxdata/influxdb | MIT License | Go |
set -eo pipefail
function get_run() {
- gh run list --branch="$1" --jq='.[]' --limit=1 --workflow=Build \
+ local branch="$1"
+
+ gh run list --branch="$branch" --jq='.[]' --limit=1 --workflow=Build \
--json=conclusion,databaseId,event,headSha,status
}
function check_run() {
+ local branch="$1"
+ local trigger="$2"
+ l... | chore: Use Automator renderer in .github/bench.sh | null | penrose/penrose | MIT License | Shell |
+/**
+MIT License
+
+Copyright (c) 2020 Julien Waechter
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merg... | chore(tools): update PrintDeps license header | null | microsoft/playwright | Apache License 2.0 | C++ |
@@ -30,6 +30,7 @@ export const list = [
'sven',
'tamiko',
'theo',
+ 'titan',
'trayvon',
'wahid',
'waralee'
@@ -55,6 +56,7 @@ export const withoutBreasts = [
'sven',
'tamiko',
'theo',
+ 'titan',
'trayvon',
'wahid',
'waralee'
| chore(pattern-info): Added titan to pattern list | null | freesewing/freesewing | MIT License | JavaScript |
@@ -5,9 +5,22 @@ import (
"github.com/devspace-cloud/devspace/pkg/devspace/config/versions/latest"
"github.com/devspace-cloud/devspace/pkg/devspace/deploy/deployer/kubectl/walk"
"github.com/devspace-cloud/devspace/pkg/devspace/pullsecrets"
- "strings"
+ "regexp"
)
+var (
+ imageRegEx = regexp.MustCompile(`^image\("?'?(... | chore: tag: -> tag(), image: -> image() | null | loft-sh/devspace | Apache License 2.0 | Go |
@@ -37,6 +37,9 @@ import java.lang.annotation.Target;
* the classpath (which comes from the vaadin-lumo-theme project), then it is
* used as the default theme.
* </ul>
+ * <p>
+ * {@link NoTheme} annotation should be added to the AppShellConfigurator
+ * implementation.
*
* @since 1.0
*/
| chore: update Javadoc | null | vaadin/flow | Apache License 2.0 | Java |
@@ -451,6 +451,8 @@ if [ "$format" = "deb" ]; then
if [ "$INSTALL" -eq 1 ]; then
log "Installing..."
dpkg -i "$filename"
+ # dpkg doesn't provide us the actual path, so take a best guess
+ BINARY_INSTALLED_PATH="$(dirname "$(command -v doppler)")"
echo "Installed Doppler CLI $("$BINARY_INSTALLED_PATH/"doppler -v)"
else... | chore: fix install.sh version detection when using dpkg/rpm | null | dopplerhq/cli | Apache License 2.0 | Shell |
@@ -57,14 +57,6 @@ class BaseSchedulerCallback(Callback):
f'train/lr', self.learning_rate,
global_step=trainer.epoch_)
- def on_epoch_end(self, trainer):
- # TODO. save state to dict
- pass
-
- def load_epoch(self, trainer, epoch):
- # TODO. load state from dict
- pass
-
def learning_rate():
doc = "Learning rate."
def ... | chore: remove inherited methods | null | pyannote/pyannote-audio | MIT License | Python |
# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and contributors
# For license information, please see license.txt
-import frappe
+import email.utils
+import functools
import imaplib
-import re
-import json
import socket
import time
-import functools
-
-import email.utils
+from datetime import datetime, timedelta
+... | chore: Remove dead and sort imports | null | frappe/frappe | MIT License | Python |
@@ -156,7 +156,7 @@ void cmdline_options::define()
("c", "Configuration file. If not specified tries " FALCO_SOURCE_CONF_FILE ", " FALCO_INSTALL_CONF_FILE ".", cxxopts::value(conf_filename), "<path>")
#endif
("A", "Monitor all events, including those with EF_DROP_SIMPLE_CONS flag.", cxxopts::value(all_events)->default_... | chore(userspace/falco): fixes truncated -b option description | null | falcosecurity/falco | Apache License 2.0 | C++ |
@@ -28,8 +28,8 @@ import com.vaadin.flow.testutil.ChromeBrowserTest;
public class ClientSideExceptionHandlingIT extends ChromeBrowserTest {
private static final By ERROR_LOCATOR = By.className("v-system-error");
- public static final String UNIX_PATTERN = ".*TypeError.* property 'foo' of.*null.*";
- public static final... | chore: Update exception pattern | null | vaadin/flow | Apache License 2.0 | Java |
@@ -640,10 +640,6 @@ shaka.ads.AdManager = class extends shaka.util.FakeEventTarget {
onHlsTimedMetadata(metadata, timestamp) {
if (this.ssAdManager_) {
this.ssAdManager_.onTimedMetadata('ID3', metadata['data'], timestamp);
- } else {
- shaka.log.warning('ID3 metadata processing was called without ' +
- 'initializing s... | chore: remove useless log about ID3 | null | google/shaka-player | Apache License 2.0 | JavaScript |
@@ -28,8 +28,8 @@ const isTokenError = (e: firebaseAdmin.FirebaseError): boolean => {
// ideal since technically it might change at any time without notice.
return (
(e.code === 'messaging/invalid-argument' &&
- Boolean(e.message.match(/invalid.+token/gi))) ||
- e.code === 'messaging/unregistered'
+ e.message.includes(... | chore(user-notification): Fix error detection from firebase-admin | null | island-is/island.is | MIT License | TypeScript |
<?php
-return [];
+return [
+ /*
+ |--------------------------------------------------------------------------
+ | Icons
+ |--------------------------------------------------------------------------
+ |
+ | The icons config will be used in icon component as default
+ | https://heroicons.com
+ |
+ */
+ 'icons' => [
+ 's... | chore: add wireui config | null | wireui/wireui | MIT License | PHP |
@@ -119,9 +119,9 @@ public void startAnimation(@NonNull AbstractConsoleAnimation animation) {
animation.run();
// remove the animation - then post the result for other animations in the finish handlers to run
this.runningAnimations.remove(uniqueId);
- animation.handleDone();
// animation done - reset the console
animat... | chore: move animation post result handling after console re-enable | null | cloudnetservice/cloudnet-v3 | Apache License 2.0 | Java |
@@ -269,12 +269,12 @@ bool API::setHyperionInstance(const quint8 &inst)
if (_currInstanceIndex == inst)
return true;
bool isRunning;
- QMetaObject::invokeMethod(_instanceManager, "IsInstanceRunning", Qt::BlockingQueuedConnection, Q_RETURN_ARG(bool, isRunning), Q_ARG(quint8, inst));
+ QMetaObject::invokeMethod(_instance... | chore: fix JsonAPI | null | hyperion-project/hyperion.ng | MIT License | C++ |
@@ -56,7 +56,7 @@ final class FileIdentityProvider implements IdentityProvider, IdentityWriter {
private Map<String, FileUser> users;
private Map<String, String> verifiedTokens;
- public FileIdentityProvider(FileIdentityProviderConfig configuration) throws IOException {
+ public FileIdentityProvider(FileIdentityProvide... | chore(auth): remove obsolete IOException from FileIdentityProvider ctor | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
+package ip
| chore: add ip pkg and move some func about ip to it | null | go-eagle/eagle | MIT License | Go |
@@ -151,7 +151,7 @@ func isRaidGroupPresentOnCSP(group *apis.RaidGroup, csp *apis.NewTestCStorPool)
}
// getAddedBlockDevicesInGroup returns the added block device list
-func getAddedBlockDevicesInGroup(groupOnCSPC *apis.RaidGroup, groupOnCSP *apis.RaidGroup) ([]string, error) {
+func getAddedBlockDevicesInGroup(groupO... | chore(gosimple): fix lint issue | null | openebs/maya | Apache License 2.0 | Go |
@@ -35,6 +35,14 @@ echo "import old meta node data to new cluster"
./target/debug/databend-metactl --import --raft-dir ./.databend/new_meta2 --id=5 --db meta.db --initial-cluster 4=localhost:29103,0.0.0.0:19191 5=localhost:29203,0.0.0.0:29191 6=localhost:29303,0.0.0.0:39191
./target/debug/databend-metactl --import --ra... | chore(meta): test imported meta data by checking a key in the state machine | null | datafuselabs/databend | Apache License 2.0 | Shell |
@@ -16,7 +16,7 @@ class PolicyExample extends cdk.Stack {
// here's how to create an IAM Role with an assume policy for the Lambda
// service principal.
const role = new iam.Role(this, 'Role', {
- assumedBy: new iam.ServicePrincipal('lambda.amazon.aws.com')
+ assumedBy: new iam.ServicePrincipal('lambda.amazonaws.com')
... | chore: updated lambda principal in example | null | aws/aws-cdk | Apache License 2.0 | TypeScript |
-<?php
-
-namespace OwenIt\Auditing\Tests;
-
-use Illuminate\Support\Facades\App;
-use Illuminate\Support\Facades\Config;
-use Mockery;
-use PHPUnit_Framework_TestCase as TestCase;
-
-abstract class AbstractTestCase extends TestCase
-{
- /**
- * {@inheritdoc}
- */
- public function setUp()
- {
- App::shouldReceive('run... | chore(Tests): remove AbstractTestCase class | null | owen-it/laravel-auditing | MIT License | PHP |
@@ -432,9 +432,11 @@ class TypesetterWithLigaturesTest: XCTestCase {
)
expect(runs).to(haveCount(4))
+ // newest xcode(13.1) will crash at the follwing code, by use var run, and call expect(run.positions[0]). avoid crash
+ do {
// The positions of the combining characters are copied from print outputs
// and they are v... | chore: avoid crash in xcode 13.1 | null | qvacua/vimr | MIT License | Swift |
@@ -16,9 +16,8 @@ limitations under the License.
package cmd
import (
- "fmt"
-
"github.com/DopplerHQ/cli/pkg/configuration"
+ "github.com/DopplerHQ/cli/pkg/controllers"
"github.com/DopplerHQ/cli/pkg/utils"
"github.com/skratchdot/open-golang/open"
"github.com/spf13/cobra"
@@ -30,9 +29,9 @@ var openCmd = &cobra.Command{... | chore: move open command logic into controller | null | dopplerhq/cli | Apache License 2.0 | Go |
@@ -35,7 +35,7 @@ const TableauCharts = ({
return (
<>
- <div className={tableauStyle.warning}>
+ {/* <div className={tableauStyle.warning}>
A{' '}
<a
href="https://trust.tableau.com/incidents/pyxx725nky8s"
@@ -45,7 +45,7 @@ const TableauCharts = ({
major outage at Tableau
</a>{' '}
may cause this chart to not load.
- ... | chore: Comment out message | null | covid19tracking/website | Apache License 2.0 | JavaScript |
@@ -386,7 +386,7 @@ describe(spec, function() {
}
},
{
- t: '01',
+ t: '02',
execute(component: { items: any[]; display: boolean }, lifecycle: ILifecycle, host: Element, count: number, ifText: string, elseText: string): void {
component.display = true;
lifecycle.processFlushQueue(LifecycleFlags.none);
@@ -397,7 +397,7 ... | chore(runtime): number the repeater tests | null | aurelia/aurelia | MIT License | TypeScript |
import {
ITemplateCompilerRegistration,
- ITargetAccessorLocatorRegistration,
- ITargetObserverLocatorRegistration,
+ INodeObserverLocatorRegistration,
RepeatRegistration,
OneTimeBindingBehaviorRegistration,
@@ -28,8 +27,7 @@ import { App } from './app';
global['Aurelia'] = new Aurelia()
.register(
ITemplateCompilerReg... | chore: fix bench npm build | null | aurelia/aurelia | MIT License | TypeScript |
@@ -148,7 +148,8 @@ defmodule Ash.MixProject do
Ash.DataLayer.Simple,
Ash.Filter.Simple,
Ash.Filter.Simple.Not,
- Ash.OptionsHelpers
+ Ash.OptionsHelpers,
+ Ash.Resource.Builder
],
Testing: [
Ash.Generator,
| chore: add resource builder to hex docs | null | ash-project/ash | MIT License | Elixir |
@@ -76,18 +76,18 @@ func (c *Consumer) Run() error {
return err
}
- // bind queue
- if _, err = c.channel.QueueDeclare(c.queueName, true, c.autoDelete, false, false, nil); err != nil {
- _ = c.channel.Close()
- _ = c.conn.Close()
- return err
- }
-
- if err = c.channel.QueueBind(c.queueName, c.routingKey, c.exchange, f... | chore: close binding queue | null | go-eagle/eagle | MIT License | Go |
@@ -566,7 +566,7 @@ func (stmt *UpsertIntoStmt) compileUsing(e *Engine, implicitDB *Database, params
return nil, err
}
- if len(encVal) > EncLenLen+maxKeyLen {
+ if len(encVal) > maxKeyLen {
return nil, ErrMaxKeyLengthExceeded
}
@@ -589,20 +589,20 @@ func (stmt *UpsertIntoStmt) compileUsing(e *Engine, implicitDB *Datab... | chore(embedded/sql): fix max key length validation | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -1013,6 +1013,23 @@ public class FrontendUtils {
super("Process execution failed with exit code " + processExitCode);
}
+ /**
+ * Constructs an exception telling what code the command execution
+ * process was exited with and the output that it produced.
+ *
+ * @param processExitCode
+ * process exit code
+ * @para... | chore: Show command output when it fails | null | vaadin/flow | Apache License 2.0 | Java |
@@ -399,9 +399,9 @@ def filter_users_by_username(*username):
q = qlist[0]
for q2 in qlist[1:]:
q = q | q2
- ret = get_user_model().objects.filter(q)
+ ret = get_user_model()._default_manager.filter(q)
else:
- ret = get_user_model().objects.filter(
+ ret = get_user_model()._default_manager.filter(
**{
app_settings.USER_... | chore(account/utils): Don't assume User default manager is objects | null | pennersr/django-allauth | MIT License | Python |
@@ -86,44 +86,6 @@ func (ks *KongState) FillConsumersAndCredentials(log logrus.FieldLogger, s store
consumerIndex[kConsumer.Namespace+"/"+kConsumer.Name] = c
}
- // legacy attach credentials
- credentials := s.ListKongCredentials()
- if len(credentials) > 0 {
- log.Warnf("deprecated KongCredential resource in use; " +
... | chore(parser): delete KongCredential support | null | kong/kubernetes-ingress-controller | Apache License 2.0 | Go |
@@ -35,8 +35,7 @@ module.exports = {
'message': 'chore(release): :bookmark: ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}'
}],
['@eclass/semantic-release-docker', {
- 'baseImageName': process.env.DOCKER_REGISTRY_IMAGE,
- 'baseImageTag': process.env.DOCKER_TAG,
+ 'baseImageName': process.env.DOCKER_LOCAL_IMAG... | chore(repo-template): Fix docker tagging :/ | null | sebbo2002/ical-generator | MIT License | JavaScript |
@@ -110,7 +110,7 @@ export class Context<
*/
public [kSerializeData](): object {
// eslint-disable-next-line @typescript-eslint/no-unused-vars
- const { vk, ...payload } = this;
+ const { api, upload, ...payload } = this;
return payload;
}
| chore(contexts): update default kSerializeData handler | null | negezor/vk-io | MIT License | TypeScript |
@@ -20,6 +20,7 @@ import (
)
func Test_PollAndForwardEvents1(t *testing.T) {
+
server := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, request *http.Request) {
w.Header().Add("Content-Type", "application/json")
eventType := strings.TrimPrefix(request.URL.Path, "/controlPlane/v1/event/triggered/")
@@ -... | chore(distributor): hardening of unit test stability | null | keptn/keptn | Apache License 2.0 | Go |
@@ -71,7 +71,7 @@ export class $PropertyDescriptor {
}
// http://www.ecma-international.org/ecma-262/#sec-isaccessordescriptor
-export function IsAccessorDescriptor(Desc: $PropertyDescriptor | $Undefined): Desc is $PropertyDescriptor {
+export function $IsAccessorDescriptor(Desc: $PropertyDescriptor | $Undefined): Desc... | chore(property-descriptor): prefix spec ops with dollar | null | aurelia/aurelia | MIT License | TypeScript |
@@ -136,6 +136,9 @@ func (s *ImmuServer) Stop() error {
}
func (s *ImmuServer) Login(ctx context.Context, r *schema.LoginRequest) (*schema.LoginResponse, error) {
+ if !s.Options.Auth {
+ return nil, status.Errorf(codes.Unavailable, "authentication is disabled on server")
+ }
user := string(r.User)
if user != auth.Admi... | chore(pkg/server): return descriptive error if login gets called when auth is disabled | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -637,9 +637,10 @@ INSTANTIATE_TEST_SUITE_P(
"::google::protobuf::Foo const& widget"),
MethodVarsTestValues("google.protobuf.Service.Method5",
"method_signature2", "bool toggle"),
- MethodVarsTestValues(
- "google.protobuf.Service.Method5", "method_signature3",
- "std::string const& name, std::string const& title"),
... | chore(generator): formatting | null | googleapis/google-cloud-cpp | Apache License 2.0 | C++ |
@@ -88,6 +88,11 @@ const EXEC_TIME_BENCHMARKS: &[(&str, &[&str], Option<i32>)] = &[
],
None,
),
+ (
+ "bundle",
+ &["bundle", "std/examples/chat/server_test.ts"],
+ None,
+ ),
];
const RESULT_KEYS: &[&str] =
| chore: add a bundle benchmark | null | denoland/deno | MIT License | Rust |
@@ -104,10 +104,6 @@ public abstract class LivingEntityMixin extends EntityMixin {
var chestEnergyStorage = context.find(EnergyStorage.ITEM);
- if (context.getItemVariant().isBlank() && chestEnergyStorage != null) {
- System.out.println("Blank storage for " + this + "!");
- }
-
breathing = breathing && chestEnergyStora... | chore: remove debug lines | null | mixinors/astromine | MIT License | Java |
@@ -23,7 +23,7 @@ logging.basicConfig(level=logging.DEBUG)
gapic = gcp.GAPICBazel()
common = gcp.CommonTemplates()
-for ver in ['V1', 'V1beta1']:
+for ver in ['V1']:
lower_version = ver.lower()
library = gapic.php_library(
| chore: disable updating v1beta1 client | null | googleapis/google-cloud-php | Apache License 2.0 | Python |
@@ -4,7 +4,6 @@ const ChangeStream = require('./change_stream');
const Db = require('./db');
const EventEmitter = require('events').EventEmitter;
const executeOperation = require('./utils').executeOperation;
-const handleCallback = require('./utils').handleCallback;
const inherits = require('util').inherits;
const Mong... | chore(mongo-client): remove unused import | null | mongodb/node-mongodb-native | Apache License 2.0 | JavaScript |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.