diff stringlengths 12 9.3k | message stringlengths 8 199 | reasoning_trace null | repo stringlengths 6 68 | license stringclasses 3
values | language stringclasses 16
values |
|---|---|---|---|---|---|
@@ -149,6 +149,50 @@ public void reset()
request.setGID(conferenceState.getGID());
}
+ /**
+ * Adds a request for allocation of "octo" channel to the query currently
+ * being built.
+ *
+ * @param contents the contents to which to add a request for allocation
+ * of "octo" channels.
+ * @param relayIds the list of rel... | feat: Adds ColibriBuilder#addAllocateOctoChannelsReq | null | jitsi/jitsi | Apache License 2.0 | Java |
@@ -93,12 +93,10 @@ export class GraphbackCoreMetadata {
const relationships = [];
// TODO: Move to helper
- // TODO: What if relation type is not a model?
Object.values(modelType.getFields()).filter((f: GraphQLField<any, any>) => {
const dbAnnotations: any = parseDbAnnotations(f);
- // TODO: validate case of multiple ... | feat: auto-generate many-to-one resolvers | null | aerogear/graphback | Apache License 2.0 | TypeScript |
@@ -7,6 +7,7 @@ import (
"github.com/v2fly/v2ray-core/v5/common"
"github.com/v2fly/v2ray-core/v5/common/buf"
"github.com/v2fly/v2ray-core/v5/common/cmdarg"
+ "github.com/v2fly/v2ray-core/v5/infra/conf/json"
)
const jsonV5 = "jsonv5"
@@ -14,7 +15,7 @@ const jsonV5 = "jsonv5"
func init() {
common.Must(core.RegisterConfig... | feat: add JSONC support to v5 configuration | null | v2fly/v2ray-core | MIT License | Go |
@@ -64,7 +64,7 @@ fn_install_server_files(){
elif [ "${shortname}" == "sol" ]; then
remote_fileurl="https://static.soldat.pl/downloads/soldatserver2.8.1_1.7.1.zip"; local_filedir="${tmpdir}"; local_filename="soldatserver2.8.1_1.7.1.zip"; chmodx="nochmodx" run="norun"; force="noforce"; md5="994409c28520425965dec5c71ccb5... | feat(zmrserver): update server files | null | gameservermanagers/linuxgsm | MIT License | Shell |
+package errors
+
+import (
+ "errors"
+ "strings"
+)
+
+// List represents a list of errors.
+type List struct {
+ errs []error
+ err error // cached error
+}
+
+// Append adds err to the errors list.
+func (l *List) Append(err error) {
+ l.errs = append(l.errs, err)
+ l.err = nil
+}
+
+// AppendString adds a new erro... | feat(influxd): Add errors.List to simplify capturing a list of errors | null | influxdata/influxdb | MIT License | Go |
@@ -35,6 +35,10 @@ open class ExoPlayerPlayback(source: String, mimeType: String? = null, options:
val tag: String = "ExoPlayerPlayback"
override fun supportsSource(source: String, mimeType: String?): Boolean {
+ mimeType?.let {
+ if (it.startsWith("application/video-id")) return false
+ }
+
val uri = Uri.parse(source)... | feat(player_load): Make ExoplayerPlayback check supported source on load | null | clappr/clappr-android | BSD 3-Clause New or Revised License | Kotlin |
@@ -23,6 +23,8 @@ const Tooltip = (props: TooltipProps): JSX.Element => {
arrowPointAtCenter = false,
destroyTooltipOnHide,
autoAdjustOverflow = true,
+ getContainer,
+ getTooltipContainer,
...rest
} = props;
@@ -83,6 +85,7 @@ const Tooltip = (props: TooltipProps): JSX.Element => {
}
}}
destroyTooltipOnHide={isNoConten... | feat: replace getTooltipContainer with getContainer | null | growingio/gio-design | Apache License 2.0 | TypeScript |
@@ -21,9 +21,12 @@ import com.ibm.watson.developer_cloud.util.Validator;
public class CreateEnvironmentOptions extends GenericModel {
/**
- * Size of the environment.
+ * Size of the environment. In the Lite plan the default and only accepted value is `LT`, in all other plans the
+ * default is `S`.
*/
public interface... | feat(Discovery): Add LT size enum to CreateEnvironmentOptions | null | watson-developer-cloud/java-sdk | Apache License 2.0 | Java |
@@ -71,3 +71,4 @@ export * from './OnboardingTasks'
export * from './TagDigest'
export * from './CircleInvitation'
+export * from './FreePeriod'
| feat(invitation): add free period compontnet for Circle invitation | null | thematters/matters-web | Apache License 2.0 | TypeScript |
@@ -64,11 +64,12 @@ export const useImageSearch = () => {
if (isEmpty(response.result)) {
setErrorMessage("Unfortunatelly we didn't find anything for this image. Please try another one.")
}
- if (response.result[0]?.metadata?.artworkHref) {
+ const artworkHref = response.result[0]?.metadata?.artworkHref ?? response.res... | feat: use both artworkHref/href | null | artsy/eigen | MIT License | TypeScript |
@@ -40,5 +40,9 @@ enum class ClapprOption(val value: String) {
/**
* The sequence in which the plugins will be displayed in the media control. Names are separated by commas and are case sensitive.
*/
- MEDIA_CONTROL_PLUGINS("mediaControlPlugins")
+ MEDIA_CONTROL_PLUGINS("mediaControlPlugins"),
+ /**
+ * If you want the... | feat(video_loop): Add loop option | null | clappr/clappr-android | BSD 3-Clause New or Revised License | Kotlin |
+import { Trans } from "@lingui/macro";
import PropTypes from "prop-types";
import React, { Component } from "react";
import { Tooltip } from "reactjs-components";
@@ -12,10 +13,10 @@ export default class PlacementSection extends Component {
render() {
const { data, onAddItem, onRemoveItem, errors } = this.props;
const... | feat(PlacementSection): localize using Trans macro | null | dcos/dcos-ui | Apache License 2.0 | JavaScript |
@@ -239,12 +239,36 @@ public partial class BitDropDown
DropDownOverlayId = $"{DropDownId}-overlay";
DropDownCalloutId = $"{DropDownId}-list";
+ InitValueOrValues();
+
NormalDropDownItems = Items.FindAll(i => i.ItemType == BitDropDownItemType.Normal).ToList();
InitText();
await base.OnParametersSetAsync();
}
+ private v... | feat(components): reset Value\Values when Items parameter gets changed in the BitDropDown component | null | bitfoundation/bitframework | MIT License | C# |
@@ -45,4 +45,12 @@ export class GroupsApiService {
targetUserId: targetUserId
});
}
+
+ public UpdateGroupInfo(groupName: string, avatarKey: number = null, newJoinPassword: string = null) {
+ return this.apiService.Post(GroupsApiService.serverPath + '/UpdateGroupInfo', {
+ GroupName: groupName,
+ AvatarKey: avatarKey,
... | feat: add UpdateGroupInfo api | null | aiursoftweb/kahla.app | MIT License | TypeScript |
+import Url from 'url';
+
+import {SERVICE_CATALOGS} from './constants';
+
+/**
+ * The parameter transfer object for {@link ServiceHost#constructor}.
+ *
+ * @typedef {Object} ServiceHostConstructorPTO
+ * @property {string} ServiceHostConstructorPTO.catalog - The host's catalog.
+ * @property {string} ServiceHostCons... | feat(webex-core): generate service host class | null | webex/webex-js-sdk | MIT License | JavaScript |
@@ -233,6 +233,11 @@ fun String.withVariable(toReplace: String, obj: Any): String {
return this.replace("%$toReplace%", obj.toString())
}
+fun String.escapeCodeblockMarkdown(): String {
+ return this
+ .replace("`", "'")
+}
+
fun String.escapeMarkdown(): String {
return this.replace("*", "\\*")
.replace("||", "\\|\\|")... | feat: codeblock specific escapes | null | toxicmushroom/melijn | MIT License | Kotlin |
@@ -136,6 +136,22 @@ module PDF
end
end
+ # returns the "boxes" that define the page object.
+ # values are defaulted according to section 7.7.3.3 of the PDF Spec 1.7
+ #
+ def boxes
+ mediabox = attributes[:MediaBox]
+ cropbox = attributes[:Cropbox] || mediabox
+
+ {
+ MediaBox: objects.deref!(mediabox),
+ CropBox: ob... | feat: Added method for PDF::Reader::Page | null | yob/pdf-reader | MIT License | Ruby |
@@ -41,7 +41,7 @@ public abstract class ResourceTable<T>
{
public static final int FIRST_YEAR_SUPPORTED = 1975;
- public static final int LATEST_YEAR_SUPPORTED = now().plusYears( 2 ).getYear();
+ public static final int LATEST_YEAR_SUPPORTED = now().plusYears( 25 ).getYear();
protected static final String TEMP_TABLE_SU... | feat: Increase number of years supported by analytics exp | null | dhis2/dhis2-core | BSD 3-Clause New or Revised License | Java |
@@ -355,9 +355,10 @@ def main():
application.n_jobs = n_jobs
application.precision = precision
- application.validate(protocol_name, subset=subset,
- start=start, end=end, every=every,
- in_order=in_order)
+ task = f'precision={100*precision:.0f}%'
+ application.validate(
+ protocol_name, subset=subset, task=task,
+ st... | feat: add precision suffix to validation directory | null | pyannote/pyannote-audio | MIT License | Python |
@@ -417,10 +417,10 @@ class extends React.Component<Translated<IProps>, IStateHeader> {
{(
outputLayer.sourceLayers !== undefined &&
outputLayer.sourceLayers.filter(i => !i.isHidden).sort((a, b) => a._rank - b._rank)
- .map((sourceLayer) => {
+ .map((sourceLayer, index, array) => {
return (
<div key={sourceLayer._id} c... | feat: hide source layer name if only one in output group | null | nrkno/tv-automation-server-core | MIT License | TypeScript |
+package ai.verta.modeldb.common.exceptions;
+
+import ai.verta.modeldb.common.CommonUtils;
+import io.grpc.StatusRuntimeException;
+import java.io.IOException;
+import javax.servlet.*;
+import javax.servlet.http.HttpServletResponse;
+import org.springframework.stereotype.Component;
+
+@Component
+public class Exceptio... | feat: Add ExceptionFilter to catch exceptions and log them automatically | null | vertaai/modeldb | Apache License 2.0 | Java |
@@ -5,6 +5,7 @@ from heapq import heappop, heappushpop, heappush
from math import log, exp
import kenlm
+import sys
from tqdm import tqdm
from deeppavlov.core.common.registry import register
@@ -214,7 +215,7 @@ class ErrorModel(Inferable, Trainable):
self.costs[(w, s)] = log(p)
def save(self):
- print("[saving error_mo... | feat: print info for error model to stderr | null | deeppavlov/deeppavlov | Apache License 2.0 | Python |
@@ -80,7 +80,7 @@ function MoleculeSelectPopover({
onCustomAction()
}
- const handleClickCancelButton = () => {
+ const handleCancelButtonClick = () => {
onCancelButtonClick()
handleOnCancel()
}
@@ -126,7 +126,7 @@ function MoleculeSelectPopover({
) : null}
{cancelButtonText ? (
<Button
- onClick={handleClickCancelButt... | feat(components/molecule/selectPopover): change handle name | null | sui-components/sui-components | MIT License | JavaScript |
@@ -7,6 +7,7 @@ import com.codingame.gameengine.core.AbstractPlayer;
import com.codingame.gameengine.core.GameManager;
import com.codingame.gameengine.core.Module;
import com.codingame.gameengine.module.entities.GraphicEntityModule;
+import com.codingame.gameengine.module.entities.Group;
import com.google.inject.Inject... | feat(viewport): restrict Viewports to Groups | null | codingame/codingame-game-engine | MIT License | Java |
@@ -80,7 +80,7 @@ final class OptimizeMojoTest {
@Test
void optimizesIfExpired(@TempDir final Path temp) throws Exception {
final FakeMaven maven = new FakeMaven(temp);
- final Map<String, Path> res = maven
+ final Path tgt = maven
.withProgram(
"+package f",
"[args] > main",
@@ -88,9 +88,9 @@ final class OptimizeMojoT... | feat(#1494): refactor getsAlreadyOptimizedResultsFromCache | null | cqfn/eo | MIT License | Java |
@@ -161,6 +161,9 @@ class Forms
case 'datetimepicker':
$form_element = $this->dateField($element_name, $form_value, $property);
break;
+ case 'media_select':
+ $form_element = $this->mediaSelectField($element_name, $this->flextype->EntriesController->getMediaList($request->getQueryParams()['id'], false), $form_value, $... | feat(core): revert back media_select field for Forms | null | flextype/flextype | MIT License | PHP |
use clap::Args;
+use std::io;
+use std::str::FromStr;
use ockam::{Context, TcpTransport};
use ockam_multiaddr::MultiAddr;
@@ -7,7 +9,7 @@ use crate::util::embedded_node;
#[derive(Clone, Debug, Args)]
pub struct SendCommand {
- addr: MultiAddr,
+ addr: String,
message: String,
}
@@ -20,7 +22,22 @@ impl SendCommand {
asy... | feat(rust): support stdin in command message send | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -394,35 +394,45 @@ namespace PepperDash.Essentials.Core.Bridges
var controlProperties = CommFactory.GetControlPropertiesConfig(dc);
+ BasicTriList eisc;
+
switch (dc.Type.ToLower())
{
case "eiscapiadv":
case "eiscapiadvanced":
{
- var eisc = new ThreeSeriesTcpIpEthernetIntersystemCommunications(controlProperties.IpI... | feat: update client to use correct RoomID | null | pepperdash/essentials | MIT License | C# |
@@ -92,7 +92,7 @@ def status_report(jobs, width, height=None, tmp_prefix='', dst_prefix=''):
# Regular row
else:
try:
- row = [j.plot_id[:8] + '...',
+ row = [j.plot_id[:8],
j.k,
abbr_path(j.tmpdir, tmp_prefix),
abbr_path(j.dstdir, dst_prefix),
@@ -108,7 +108,7 @@ def status_report(jobs, width, height=None, tmp_prefix=... | feat: remove elipses from job id | null | ericaltendorf/plotman | Apache License 2.0 | Python |
@@ -87,6 +87,9 @@ public final class FakeMaven {
* Set default the params for all mojos.
*
* @return The same maven instance.
+ * @todo 1479:90min The method withDefaults() has to be called right in the exec() method.
+ * We should set default properties only if they aren't set using `with()` method. Also
+ * it's impo... | feat(#1479): add puzzles | null | cqfn/eo | MIT License | Java |
@@ -258,7 +258,7 @@ public class SnomedReferenceSetMemberRestService extends AbstractRestService {
+ "- query field of query type reference set members"
)
@ApiResponses({
- @ApiResponse(responseCode = "204", description = "Update successful"),
+ @ApiResponse(responseCode = "204", description = "No Content"),
@ApiRespon... | feat(update): update response | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
@@ -14,6 +14,7 @@ use Atomastic\Session\Session;
use Cocur\Slugify\Slugify;
use DateTimeZone;
use Flextype\Content\Content;
+use Flextype\Media\Media;
use Flextype\Handlers\HttpErrorHandler;
use Flextype\Handlers\ShutdownHandler;
use Flextype\Parsers\Parsers;
@@ -409,6 +410,9 @@ container()->set('images', function () {... | feat(media): init media service | null | flextype/flextype | MIT License | PHP |
package execution
import (
- "bytes"
"context"
"errors"
"fmt"
@@ -100,18 +99,12 @@ func (re *GoTaskRecipeExecutor) Execute(ctx context.Context, m types.DiscoveryMa
return err
}
- var stderrCapture bytes.Buffer
- var stdoutCapture bytes.Buffer
-
e := task.Executor{
Entrypoint: file.Name(),
- Stderr: &stderrCapture,
- St... | feat(install): remove buffer of stdout/stderr when executing go-task | null | newrelic/newrelic-cli | Apache License 2.0 | Go |
@@ -529,7 +529,7 @@ defmodule BorsNG.Worker.Batcher do
pr = GitHub.get_pr!(repo_conn, patch.pr_xref)
pr = %BorsNG.GitHub.Pr{pr | state: :closed, title: "[Merged by Bors] - #{pr.title}"}
pr = GitHub.update_pr!(repo_conn, pr)
- send_message(repo_conn, [patch], {:merged, :squashed, "master"})
+ send_message(repo_conn, [pa... | feat: comment correct branch name in squash merge | null | bors-ng/bors-ng | Apache License 2.0 | Elixir |
@@ -28,6 +28,9 @@ class LonaInfoCommand:
['Lona version', f'v{VERSION_STRING}'],
['project root', self.repl.locals['server'].project_root],
['cli args', pformat(self.repl.locals.get('cli_args', {}))],
+
+ ['logging syslog priorities',
+ repr(self.repl.locals['log_formatter'].syslog_priorities)],
]
write_table(rows, sel... | feat(commands): lona_info: add "logging syslog priorities" | null | lona-web-org/lona | MIT License | Python |
@@ -15,22 +15,26 @@ class CardsModel {
CardsModel({
this.cardActive,
this.initialURL,
- this.isWebCard
+ this.isWebCard,
+ this.requireAuth
});
bool cardActive;
String initialURL;
bool isWebCard;
+ bool requireAuth;
factory CardsModel.fromJson(Map<String, dynamic> json) => CardsModel(
cardActive: json["cardActive"] == ... | feat: add requrieAuth attribute to CardsModel | null | ucsd/campus-mobile | MIT License | Dart |
@@ -228,6 +228,8 @@ namespace acl
uint32_t* get_track_name_offsets(compressed_tracks& tracks) { return track_name_offsets.safe_add_to(&tracks); }
const uint32_t* get_track_name_offsets(const compressed_tracks& tracks) const { return track_name_offsets.safe_add_to(&tracks); }
};
+
+ static_assert(sizeof(optional_metadat... | feat(core): enforce minimum size with static_assert | null | nfrechette/acl | MIT License | C |
service.debounce = debounce;
service.generateUUID = generateUUID;
+ service.disableBodyScroll = disableBodyScroll;
////////////
return uuid.toUpperCase();
}
+
+ function disableBodyScroll()
+ {
+ var body = document.body;
+ var documentElement = document.documentElement;
+
+ var prevDocumentStyle = documentElement.styl... | feat(utils): add a `disableBodyScroll` function | null | lumapps/lumx | MIT License | JavaScript |
@@ -32,7 +32,6 @@ class Container(val loader: Loader, options: Options) : UIObject() {
var options : Options = options
set(options) {
field = options
- playback = null
trigger(InternalEvent.DID_UPDATE_OPTIONS.value)
}
| feat(player_load): Dont set playback to null | null | clappr/clappr-android | BSD 3-Clause New or Revised License | Kotlin |
@@ -61,7 +61,7 @@ impl XEddsaSigner for XSecretKey {
hasher.update(hash_padding);
hasher.update(k.as_bytes());
hasher.update(msg);
- hasher.update(nonce);
+ hasher.update(nonce.as_ref());
let r = Scalar::from_hash(hasher);
// R = rB
| feat(rust): fix so ci is happy | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -74,8 +74,8 @@ export default {
textColor: this.val[i] ? opt.toggleTextColor || this.toggleTextColor : opt.textColor || this.textColor,
icon: opt.icon,
iconRight: opt.iconRight,
- noCaps: this.noCaps,
- noWrap: this.noWrap,
+ noCaps: this.noCaps || this.opt.noCaps,
+ noWrap: this.noWrap || this.opt.noWrap,
outline: ... | feat(QBtnToggle): Take into account more options props for each button | null | quasarframework/quasar | MIT License | JavaScript |
@@ -172,7 +172,15 @@ impl ExecutedBlock {
/// Turn this into a `ClosedBlock`.
pub fn close(mut self, conf: &BlockSysConfig) -> ClosedBlock {
- let env_info = self.env_info();
+ let mut env_info = self.env_info();
+ // In protocol version 0, 1:
+ // Auto Execution's env info author is default address
+ // In protocol ve... | feat(auto_exec): upgrade auto_exec | null | citahub/cita | Apache License 2.0 | Rust |
@@ -7,6 +7,8 @@ import java.util.function.Consumer;
import io.fabric8.kubernetes.client.Config;
import io.javaoperatorsdk.operator.api.monitoring.Metrics;
+import com.fasterxml.jackson.databind.ObjectMapper;
+
@SuppressWarnings("unused")
public class ConfigurationServiceOverrider {
private final ConfigurationService or... | feat: add object mapper to config override | null | java-operator-sdk/java-operator-sdk | Apache License 2.0 | Java |
@@ -2,9 +2,12 @@ package types
import (
"fmt"
- nexus "github.com/axelarnetwork/axelar-core/x/nexus/exported"
+
sdk "github.com/cosmos/cosmos-sdk/types"
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
+
+ nexus "github.com/axelarnetwork/axelar-core/x/nexus/exported"
+ tss "github.com/axelarnetwork/axelar-core/x/t... | feat(axelarnet): add KeyType for cosmos chain | null | axelarnetwork/axelar-core | Apache License 2.0 | Go |
@@ -14,7 +14,6 @@ import {
Content,
Example,
Heading,
- Link,
P,
PageHeading,
PropTypes,
@@ -43,7 +42,15 @@ const BlueBox = props => (
const PageHeadingLayoutOutput = _ => (
<div className="page">
<Theme>
- <PageHeadingLayout heading={<h3>Page title</h3>}>
+ <PageHeadingLayout
+ actions={[
+ <Button key="button1" appea... | feat(site): add page heading layout actions docs | null | pluralsight/design-system | Apache License 2.0 | JavaScript |
@@ -123,7 +123,8 @@ async def extensions_install(
"shortDescription": ext.short_description,
"stars": ext.stars,
"dependencies": ext.dependencies,
- "isInstalled": ext.id in all_extensions,
+ "isInstalled": ext.id in installed_extensions_ids,
+ "isAvailable": ext.id in all_extensions,
"isActive": not ext.id in inactive... | feat: add is `isAvailable` flag | null | lnbits/lnbits | MIT License | Python |
@@ -772,6 +772,44 @@ public class TaskServiceTest {
assertEquals("myValue", variables.get("myParam"));
}
+ @Deployment(resources = {"org/camunda/bpm/engine/test/api/twoParallelTasksProcess.bpmn20.xml"})
+ @Test
+ public void testCompleteTaskWithVariablesInReturn() {
+ String processVarName = "processVar";
+ String proc... | feat(engine): Add tests for returning variables after task completion | null | camunda/camunda-bpm-platform | Apache License 2.0 | Java |
@@ -5,7 +5,6 @@ import (
"fmt"
"path"
"strings"
- "time"
"github.com/ije/gox/utils"
"github.com/ije/rex"
@@ -18,6 +17,10 @@ func registerAPI(storageDir string, cdnDomain string) {
return rex.HTML(indexHTML)
}
+ if pathname == "/favicon.ico" {
+ return 404
+ }
+
var storageType string
switch path.Ext(pathname) {
case ".... | feat: add Cache-Control header | null | esm-dev/esm.sh | MIT License | Go |
@@ -5,17 +5,23 @@ import React, { forwardRef } from 'react';
import { cn } from '../../utils/bem';
import { PropsWithHTMLAttributesAndRef } from '../../utils/types/PropsWithHTMLAttributes';
-export type IconPropSize = 'xs' | 's' | 'm';
-export type IconPropView =
- | 'alert'
- | 'brand'
- | 'ghost'
- | 'link'
- | 'prim... | feat(Icons): update types for usage icons from | null | gazprom-neft/consta-uikit | MIT License | TypeScript |
@@ -642,12 +642,11 @@ func blindPoly(cp []fr.Element, rou, bo uint64) ([]fr.Element, error) {
// random polynomial
blindingPoly := make([]fr.Element, bo+1)
- // TODO reactivate blinding, currently deactivated for testing purposes
- // for i := uint64(0); i < bo+1; i++ {
- // if _, err := blindingPoly[i].SetRandom(); er... | feat: re activated blinding | null | consensys/gnark | Apache License 2.0 | Go |
use borsh::{BorshDeserialize, BorshSerialize};
use serde::Serialize;
-use std::convert::{TryFrom, TryInto};
use std::fmt;
+use std::{
+ convert::{TryFrom, TryInto},
+ str::FromStr,
+};
use crate::env::is_valid_account_id;
use crate::AccountId;
+// TODO: this should probably be a specific error type instead of a string.... | feat: implement FromStr for ValidAccountId | null | near/near-sdk-rs | Apache License 2.0 | Rust |
+/*
+Copyright 2019 vChain, Inc.
+
+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 agreed to in writing, soft... | feat: immu client | null | codenotary/immudb | Apache License 2.0 | Go |
@@ -50,7 +50,7 @@ using ConnectorT = decltype(StoragePrototype(""));
static std::unique_ptr<ConnectorT> ConnectorPtr;
std::string DBMetaImpl::GetGroupPath(const std::string& group_id) {
- return _options.path + "/" + group_id;
+ return _options.path + "/tables/" + group_id;
}
std::string DBMetaImpl::GetGroupDatePartiti... | feat(db): move tables under tables directories to avoid name conflict with reserved meta files | null | milvus-io/milvus | Apache License 2.0 | C++ |
@@ -48,7 +48,7 @@ defmodule Moon.MixProject do
[
organization: "coingaming",
licenses: ["UNLICENSED"],
- files: ["lib", "priv", "mix.exs", "README.md", "CHANGELOG.md", "VERSION"],
+ files: ["lib", "assets", "priv", "mix.exs", "README.md", "CHANGELOG.md", "VERSION"],
links: %{
"GitHub" => "https://github.com/coingaming/... | feat: Include assets to mix package | null | coingaming/moon | MIT License | Elixir |
@@ -25,10 +25,10 @@ pub fn set_panic_hook() {
// If we are currently in a span when the panic occurred, the logged event
// will include the current span, allowing the context in which the panic
// occurred to be recorded.
- std::panic::set_hook(Box::new(|panic| {
- let _guard = LimitMemGuard::enter_unlimited();
- log_... | feat(base): comment set panic | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -103,7 +103,7 @@ public class BundleRestService extends AbstractRestService {
@ApiResponse(responseCode = "200", description = "OK"),
@ApiResponse(responseCode = "404", description = "Not found")
})
- @GetMapping(value = "/{bundleId}", produces = { AbstractRestService.JSON_MEDIA_TYPE })
+ @GetMapping(value = "/{bund... | feat(api): support subpath parsing in `GET /bundles/:id` endpoint | null | b2ihealthcare/snow-owl | Apache License 2.0 | Java |
-use crate::{ProfileIdentifier, ProfileTrait};
+use crate::{ProfileIdentifier, ProfileTrait, Result};
pub mod authentication;
pub use authentication::*;
@@ -11,6 +11,7 @@ pub use identifiers::*;
pub mod secrets;
pub use secrets::*;
+use crate::EntityError::{InvalidInternalState, InvalidParameter};
use ockam_core::hashb... | feat(rust): profile management opts: add, retrieve, update, delete | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -94,6 +94,7 @@ import java.util.HashMap;
import java.util.Map;
import java.util.Map.Entry;
import okhttp3.HttpUrl;
+import okhttp3.MultipartBody;
import okhttp3.OkHttpClient;
import okhttp3.Request;
import okhttp3.WebSocket;
| feat(speech-to-text-v1): add missing import | null | watson-developer-cloud/java-sdk | Apache License 2.0 | Java |
package com.chesire.malime.injection.modules
import com.chesire.malime.core.api.AuthApi
+import com.chesire.malime.core.api.LibraryApi
import com.chesire.malime.kitsu.api.auth.KitsuAuth
+import com.chesire.malime.kitsu.api.library.KitsuLibrary
import dagger.Binds
import dagger.Module
@@ -9,4 +11,7 @@ import dagger.Modu... | feat: bind the libraryapi | null | chesire/nekome | Apache License 2.0 | Kotlin |
@@ -24,14 +24,7 @@ import './logs/private-database-logs.service';
import './metrics/private-database-metrics.controller';
import './oom/private-database-oom.controller';
import './oom/private-database-oom.service';
-import './order/clouddb/index';
-import './order/clouddb/private-database-order-clouddb.component';
-imp... | feat(private-database): remove duplicate imports from bundle | null | ovh/manager | BSD 3-Clause New or Revised License | JavaScript |
@@ -16,3 +16,11 @@ afterEach(function (): void {
test('test getVersion() method', function () {
$this->assertTrue(!Strings::create(flextype()->getVersion())->isEmpty());
});
+
+test('test getInstance() method', function () {
+ $firstCall = Flextype::getInstance();
+ $secondCall = Flextype::getInstance();
+
+ $this->ass... | feat(tests): fix tests for Flextype::getInstance() method | null | flextype/flextype | MIT License | PHP |
@@ -240,8 +240,11 @@ export default class Anchor extends React.Component<AnchorProps, AnchorState> {
return;
}
const { activeLink } = this.state;
- const { offsetTop, bounds } = this.props;
- const currentActiveLink = this.getCurrentAnchor(offsetTop, bounds);
+ const { offsetTop, bounds, targetOffset } = this.props;
+ ... | feat(Anchor): fix getCurrentAnchor offset | null | ant-design/ant-design | MIT License | TypeScript |
@@ -134,6 +134,20 @@ func (s *queryReducer) Reduce(series *tsdb.TimeSeries) (*float64, []string) {
if value > 0 {
allNull = false
}
+ case "P95":
+ var values []float64
+ for _, v := range series.Points {
+ if v.IsValid() {
+ allNull = false
+ values = append(values, v.Value())
+ }
+ }
+ if len(values) >= 1 {
+ sort.Fl... | feat(monitor): influxQuery add P95 reduce | null | yunionio/yunioncloud | Apache License 2.0 | Go |
@@ -122,6 +122,22 @@ using BiasMode = ConvBiasForward::BiasMode;
break; \
}
+#define DISPATCH_FILTER_CHANNEL_WISE(filter, kern, arg...) \
+ switch (filter) { \
+ case 2: \
+ kern(2, ##arg); \
+ break; \
+ case 3: \
+ kern(3, ##arg); \
+ break; \
+ case 5: \
+ kern(5, ##arg); \
+ break; \
+ default: \
+ megdnn_assert(0)... | feat(dnn/arm_common): add arm_common int8 channel wise stride 1 | null | megengine/megengine | Apache License 2.0 | C |
@@ -110,7 +110,6 @@ class SyncServiceImpl implements SyncService, AtSignChangeListener {
void sync({Function? onDone, Function? onError}) {
final syncRequest = SyncRequest();
syncRequest.onDone = onDone;
- syncRequest.onError = onError;
syncRequest.requestSource = SyncRequestSource.app;
syncRequest.requestedOn = DateTi... | feat: add unit tests for notify and sync exception chaining | null | atsign-foundation/at_client_sdk | BSD 3-Clause New or Revised License | Dart |
@@ -17,6 +17,7 @@ use std::mem::size_of;
use std::sync::Arc;
use chrono::NaiveDateTime;
+use common_catalog::table::TableStatistics;
use common_datablocks::DataBlock;
use common_datavalues::chrono::TimeZone;
use common_datavalues::chrono::Utc;
@@ -213,6 +214,15 @@ impl Table for NumbersTable {
pipeline.add_pipe(source_... | feat(query): impl statistics() for numbers table | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -691,6 +691,14 @@ class EntriesController extends Controller
]
);
} else {
+
+ // Merge current entry fieldset with global fildset
+ if (isset($entry['entry_fieldset'])) {
+ $form = $this->forms->render(array_replace_recursive($fieldsets, $entry['entry_fieldset']), $entry, $request);
+ } else {
+ $form = $this->form... | feat(admin-plugin): add ability to work with entry custom fieldset | null | flextype/flextype | MIT License | PHP |
@@ -175,7 +175,7 @@ open class Player(private val base: BaseObject = BaseObject()) : Fragment(), Eve
* a map of key-value options.
*
*/
- fun configure(options: Options) {
+ open fun configure(options: Options) {
core = Core(loader, options)
core?.load()
}
| feat(cofigure_visibility): make configure method open | null | clappr/clappr-android | BSD 3-Clause New or Revised License | Kotlin |
@@ -773,6 +773,7 @@ bool replica::update_local_configuration(const replica_configuration &config,
_config.ballot,
result.to_string());
}
+ _split_mgr->parent_cleanup_split_context();
}
_last_config_change_time_ms = dsn_now_ms();
dassert(max_prepared_decree() >= last_committed_decree(),
| feat(split): parent clear split context while config changed | null | apache/incubator-pegasus | Apache License 2.0 | C++ |
@@ -221,6 +221,8 @@ impl Predicate {
pub(crate) fn with_clear_timestamp_if_max_range(mut self) -> Self {
self.range = self.range.take().and_then(|range| {
if range.contains_all() {
+ debug!("Cleared timestamp max-range");
+
None
} else {
Some(range)
| feat: add debug log to `with_clear_timestamp_if_max_range` | null | influxdata/influxdb_iox | Apache License 2.0 | Rust |
@@ -9,12 +9,15 @@ export type GridProps = {
gap?: number | number[] | string | string[]
} & NativeProps
+type GapStyle = Partial<Record<'--vertical-gap' | '--horizontal-gap', string>>
+type GridStyle = React.CSSProperties & Record<'--columns', GridProps['columns']>
+
const defaultProps = {
gap: 0,
}
export const Grid =... | feat: (Grid) remove `any` type | null | ant-design/ant-design-mobile | MIT License | TypeScript |
@@ -39,15 +39,12 @@ pub fn validate_distributed_query(s_expr: &SExpr) -> bool {
| JoinType::LeftSemi
| JoinType::LeftAnti
| JoinType::RightSemi
- | JoinType::RightAnti => true,
-
- JoinType::Left
- | JoinType::Right
- | JoinType::Full
+ | JoinType::RightAnti
| JoinType::Cross
| JoinType::LeftMark
- | JoinType::RightMar... | feat: try to enable more join types in cluster mode | null | datafuselabs/databend | Apache License 2.0 | Rust |
@@ -34,6 +34,17 @@ pub struct LinkProps<'a> {
#[props(default, strip_option)]
title: Option<&'a str>,
+ #[props(default = true)]
+ autodetect: bool,
+
+ /// Is this link an external link?
+ #[props(default = false)]
+ external: bool,
+
+ /// New tab?
+ #[props(default = false)]
+ new_tab: bool,
+
children: Element<'a>,... | feat: better link | null | dioxuslabs/dioxus | Apache License 2.0 | Rust |
@@ -141,10 +141,34 @@ export default function createClientApi ({ http }) {
.then((response) => wrapOrganizationCollection(http, response.data), errorHandler)
}
+ /**
+ * Make a custom request to the Contentful management API's /spaces endpoint
+ * @memberof ContentfulClientAPI
+ * @param {Object} opts - axios request o... | feat: Add raw request method to client | null | contentful/contentful-management.js | MIT License | JavaScript |
@@ -544,7 +544,7 @@ def only_for(roles, message=False):
myroles = set(get_roles())
if not roles.intersection(myroles):
if message:
- msgprint(_('Only for {}').format(', '.join(roles)))
+ msgprint(_('This action is only allowed for {}').format(bold(', '.join(roles))), _('Not Permitted'))
raise PermissionError
def get_do... | feat: better only_for role message | null | frappe/frappe | MIT License | Python |
@@ -115,7 +115,7 @@ flextype()->container()['cache'] = static function () {
}
if (flextype('registry')->get('flextype.settings.cache.enabled') === false) {
- $driver_name = 'devfalse';
+ $driver_name = 'devnull';
}
function getDriverConfig(string $driver_name): array
@@ -124,7 +124,7 @@ flextype()->container()['cache']... | feat(cache): PhpFastCache - set devull for cache off state | null | flextype/flextype | MIT License | PHP |
@@ -109,16 +109,16 @@ var DeleteMR = func(client *gitlab.Client, projectID interface{}, mrID int) erro
return nil
}
-var MergeMR = func(client *gitlab.Client, projectID interface{}, mrID int, opts *gitlab.AcceptMergeRequestOptions) (*gitlab.MergeRequest, error) {
+var MergeMR = func(client *gitlab.Client, projectID int... | feat(api): return response when merging the Merge Request | null | profclems/glab | MIT License | Go |
@@ -25,6 +25,7 @@ import 'package:smooth_app/helpers/robotoff_insight_helper.dart';
import 'package:smooth_app/helpers/score_card_helper.dart';
import 'package:smooth_app/helpers/smooth_matched_product.dart';
import 'package:smooth_app/helpers/ui_helpers.dart';
+import 'package:smooth_app/pages/preferences/user_prefere... | feat: - link to food preference | null | openfoodfacts/smooth-app | Apache License 2.0 | Dart |
@@ -221,7 +221,7 @@ export class Project {
async getPageHtml(loc: { pathname: string, search?: string }): Promise<[number, string]> {
if (!this.isSSRable(loc.pathname)) {
const [url] = this.#routing.createRouter(loc)
- return [url.pagePath === '' ? 404 : 200, this.getSPAIndexHtml()]
+ return [url.pagePath === '' ? 404 ... | feat: render custom loading page | null | alephjs/aleph.js | MIT License | TypeScript |
@@ -240,7 +240,7 @@ export const STARTER_TEMPLATES: StarterTemplate[] = [
projectType: 'angular',
type: 'repo',
description: 'An example application that builds a camera with gallery',
- repo: 'https://github.com/ionic-team/photo-gallery-tutorial-ionic4',
+ repo: 'https://github.com/ionic-team/photo-gallery-capacitor-n... | feat(start): update "my-first-app" to use Capacitor for Angular and React | null | ionic-team/ionic-cli | MIT License | TypeScript |
@@ -220,7 +220,8 @@ public final class ResolveMojo extends SafeMojo {
private void checkTransitive(final Collection<Dependency> deps) {
for (final Dependency dep : deps) {
if (hasTransitiveDependencies(dep)) {
- throw new IllegalStateException("Dependency %s has transitive dependencies");
+ throw new IllegalStateExcept... | feat(#934): add context information during exception | null | cqfn/eo | MIT License | Java |
@@ -68,7 +68,12 @@ impl ScopeArena {
heuristics: RefCell::new(FxHashMap::default()),
free_scopes: RefCell::new(Vec::new()),
nodes: RefCell::new(nodes),
- tasks: TaskQueue::new(sender),
+ tasks: Rc::new(TaskQueue {
+ tasks: RefCell::new(FxHashMap::default()),
+ task_map: RefCell::new(FxHashMap::default()),
+ gen: Cell::... | feat: tasks are dropped when components are unmounted | null | dioxuslabs/dioxus | Apache License 2.0 | Rust |
@@ -4,6 +4,7 @@ import { spacing } from '@heathmont/sportsbet-utils';
export const BannerBlock = styled.div({
marginBottom: spacing(),
});
+
export const BannerSection = styled.section({
marginTop: spacing('medium'),
});
| feat(user-portal): rename banner | null | coingaming/moon-design | MIT License | TypeScript |
@@ -65,6 +65,10 @@ const supportedInstruments: SupportedInstruments = {
provider: 'checkoutcom',
method: 'card',
},
+ sagepay: {
+ provider: 'sagepay',
+ method: 'credit_card',
+ },
stripe: {
provider: 'stripe',
method: 'credit_card',
| feat(payment): Stored Credit Cards - vaulting enabled | null | bigcommerce/checkout-sdk-js | MIT License | TypeScript |
@@ -202,6 +202,39 @@ void main() async {
'Failed to syncData caused by\nWaited for 10000 millis. No response after 90000');
});
});
+
+ group('A group of tests to validate exception during sync processing', () {
+ var localCommitId = -1;
+ test('invalid batch json from server', () async {
+ registerFallbackValue(FakeSy... | feat: unit test for exception during sync | null | atsign-foundation/at_client_sdk | BSD 3-Clause New or Revised License | Dart |
@@ -99,7 +99,7 @@ class Collection
{
// Check if array is associative then
// make flatten a multi-dimensional array with dots.
- if ($this->isAssocArray($items)) {
+ if ($this->_isAssocArray($items)) {
$flat_array = [];
foreach ($items as $key => $value) {
@@ -121,7 +121,7 @@ class Collection
*
* @param mixed $items I... | feat(element-queries): refactor Collection | null | flextype/flextype | MIT License | PHP |
@@ -24,6 +24,7 @@ open class MediaControl: UICorePlugin, UIGestureRecognizerDelegate {
private var alwaysVisible = false
private var currentlyShowing = false
private var currentlyHiding = false
+ private var isDrawerActive = false
private var isChromeless: Bool { core?.options.bool(kChromeless) ?? false }
required publ... | feat: check whether the drawer is active or not before showing media control | null | clappr/clappr-ios | BSD 3-Clause New or Revised License | Swift |
@@ -41,8 +41,15 @@ ARGS=(
case "$CONFIGURATION" in
*Debug*)
- ARGS+="--dev"
+ ARGS+=("--dev")
;;
esac
+if [ ! -z "$ENDPOINT" ]; then
+ # Remove any trailing trailing '/'
+ ENDPOINT=$(echo $ENDPOINT | sed 's/\/$//')
+ ARGS+=("--endpoint")
+ ARGS+=("$ENDPOINT/sourcemap")
+fi
+
../node_modules/.bin/bugsnag-source-maps upl... | feat(react-native-cli): Pass --endpoint from Xcode build phase | null | bugsnag/bugsnag-js | MIT License | Shell |
@@ -8,6 +8,7 @@ import {
} from '@apollo/client';
import { NetworkError } from '@apollo/client/errors';
import { onError } from '@apollo/client/link/error';
+import { RetryLink } from '@apollo/client/link/retry';
import { offsetLimitPagination } from '@apollo/client/utilities';
import { ChakraProvider } from '@chakra-u... | feat: retry requests on network errors | null | freecodecamp/chapter | BSD 3-Clause New or Revised License | TypeScript |
@@ -24,9 +24,18 @@ class Forms
{
/**
* Flextype Dependency Container
+ *
+ * @var
+ * @access private
*/
private $flextype;
+ /**
+ * Sizes
+ *
+ * @var array
+ * @access private
+ */
private $sizes = [
'1/12' => 'col-1',
'2/12' => 'col-2',
| feat(core): refactor Forms fields | null | flextype/flextype | MIT License | PHP |
@@ -5,15 +5,20 @@ REGISTRY="index.alauda.cn/alaudak8s"
POD_CIDR="10.16.0.0/16" # Do NOT overlap with NODE/SVC/JOIN CIDR
SVC_CIDR="10.96.0.0/12" # Do NOT overlap with NODE/POD/JOIN CIDR
JOIN_CIDR="100.64.0.0/16" # Do NOT overlap with NODE/POD/SVC CIDR
+LABEL="node-role.kubernetes.io/master" # The node label to deploy OV... | feat: add label param in install script | null | kubeovn/kube-ovn | Apache License 2.0 | Shell |
@@ -58,25 +58,6 @@ var file_keys_map = map[string]map[string]string{
},
}
-func fileExists(filename string) bool {
- info, err := os.Stat(filename)
- if os.IsNotExist(err) {
- return false
- }
- return !info.IsDir()
-}
-
-func deleteFile(path string) {
- // delete file
- var err = os.Remove(path)
- if err != nil {
- fm... | feat(docker): confutil avoid deleting original yaml file | null | emqx/kuiper | Apache License 2.0 | Go |
@@ -108,6 +108,7 @@ struct PutCmd {
void parse_args( const vector<string>& args
, vector<asio::ip::address>* ifaddrs
, bool* ping_cmd
+ , bool* find_node_cmd
, optional<GetCmd>* get_cmd
, optional<PutCmd>* put_cmd)
{
@@ -141,6 +142,9 @@ void parse_args( const vector<string>& args
if (args[2] == "ping") {
*ping_cmd = tr... | feat(test/bep5): Impl find_node behind option | null | equalitie/ouinet | MIT License | C++ |
@@ -79,6 +79,10 @@ namespace acl
// Returns the number of samples each track contains.
uint32_t get_num_samples_per_track() const { return m_tracks_header.num_samples; }
+ //////////////////////////////////////////////////////////////////////////
+ // Returns the type of the compressed tracks.
+ track_type8 get_track_t... | feat: expose the compressed track type | null | nfrechette/acl | MIT License | C |
@@ -51,6 +51,27 @@ function openNav() {
document.getElementsByClassName('side-nav')[0].classList.toggle('side-nav--open');
scrollTo(old);
}
+/** Small screen width
+ * If the width of the viewport is lesser than this value
+ * it means that the website is viewed in a tablet or mobile
+ * TODO have this number shared in... | feat: Close side menu on article selection | null | nodejs/nodejs.dev | MIT License | TypeScript |
@@ -182,20 +182,38 @@ import { Pointer, ${__stringImpl(
} = new ${ftype}(mem, ${__addr(offset)}, ${fn}));`
);
} else if (isStr) {
+ const fn = f.len
+ ? [
+ `(addr) => {`,
+ ...__mapStringArray(
+ "buf",
+ $stringImpl,
+ f.len!,
+ isConst,
+ true
+ ),
+ `}`,
+ ]
+ : [
+ `(addr) => new ${$stringImpl}(mem, addr, ${isCons... | feat(wasm-api): update TS codegen (array pointers) | null | thi-ng/umbrella | Apache License 2.0 | TypeScript |
@@ -31,7 +31,7 @@ pub struct Error {
}
/// The type returned by Ockam functions.
-pub type Result<T> = core::result::Result<T, Error>;
+pub type Result<T, E = Error> = core::result::Result<T, E>;
/// Produces Ok(false), which reads confusingly in auth code.
pub fn deny() -> Result<bool> {
| feat(rust): update result to allow generic error type | null | ockam-network/ockam | Apache License 2.0 | Rust |
@@ -4,7 +4,7 @@ use crate::{
graphs::{Relation, Resource},
kernels::KernelSpace,
methods::{
- compile::compile,
+ compile::{self, compile},
decode::decode,
encode::{self, encode},
},
@@ -1353,6 +1353,8 @@ pub mod cli {
Open(Open),
Close(Close),
Show(Show),
+ #[structopt(aliases = &["exec"])]
+ Execute(Execute),
Query(Q... | feat(Documents): Add execute command | null | stencila/stencila | Apache License 2.0 | Rust |
import React from 'react';
-import { Checkbox, Grid, IconButton, Radio, TextField, NativeSelect, TextFieldProps, FormControlLabel, FormControlLabelProps } from '@material-ui/core';
+import { Checkbox, Grid, IconButton, Radio, TextField, NativeSelect, TextFieldProps, FormControlLabel, FormControlLabelProps, Select } fro... | feat: add SelectField | null | coronasafe/care_fe | MIT License | TypeScript |
@@ -43,13 +43,11 @@ class SpeechActivityDetection(Pipeline):
----------
precomputed : str
Path to precomputed SAD scores.
- log_scale : bool, optional
"""
- def __init__(self, precomputed, log_scale=False):
+ def __init__(self, precomputed=None, **kwargs):
super(SpeechActivityDetection, self).__init__()
self.precompute... | feat: add heuristic to determine whether scores are log-scaled | null | pyannote/pyannote-audio | MIT License | Python |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.