message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
naive: add parse raw tx in aggregator submit action | |= =part-tx
^- [octs tx:naive]
?+ -.part-tx !!
- :: %raw [+.part-tx (decode-tx:naive +.part-tx)]
+ %raw
+ ?~ batch=(parse-raw-tx:naive q.raw.part-tx)
+ ~& %parse-failed
+ :: TODO: maybe return a unit if parsing fails?
+ ::
+ !!
+ [raw tx]:-.u.batch
:: %don [(encode-tx:naive +.part-tx) +.part-tx]
%ful +.part-tx
==
|
bugId:17646749:[mqtt]improve log level | @@ -1225,7 +1225,7 @@ static int iotx_mc_read_packet(iotx_mc_client_t *c, iotx_time_t *timer, unsigned
HAL_MutexUnlock(c->lock_read_buf);
return SUCCESS_RETURN;
} else if (1 != rc) {
- mqtt_debug("mqtt read error, rc=%d", rc);
+ mqtt_err("mqtt read error, rc=%d", rc);
HAL_MutexUnlock(c->lock_read_buf);
return MQTT_NETW... |
Fix event ownership comment | @@ -75,7 +75,7 @@ control_event_queue_is_empty(const struct control_event_queue *queue);
bool
control_event_queue_is_full(const struct control_event_queue *queue);
-// event is copied, the queue does not use the event after the function returns
+// the event is "moved": the queue takes ownership of its fields
bool
cont... |
kernel/os; minor fixes to comments. Remove obsolete define. | extern "C" {
#endif
-#define OS_CALLOUT_F_QUEUED (0x01)
-
#include "os/os_eventq.h"
#include <stddef.h>
@@ -101,8 +99,8 @@ void os_callout_stop(struct os_callout *);
*/
int os_callout_reset(struct os_callout *, int32_t);
-/*
- * Returns the number of ticks which remains to callout..
+/**
+ * Returns the number of ticks... |
change it to PA6 as the bootload active pin. | #include <stdint.h>
#define FLASH_START_ADDR 0x00200000
-#define BOOTLOADER_BACKDOOR_ENABLE 0xF7FFFFFF // ENABLED: PORT A, PIN 6, LOW
+#define BOOTLOADER_BACKDOOR_ENABLE 0xF6FFFFFF // ENABLED: PORT A, PIN 6, LOW
#define BOOTLOADER_BACKDOOR_DISABLE 0xEFFFFFFF
#define SYS_CTRL_EMUOVR 0x400D20B4
#define SYS_CTRL_I_MAP 0x4... |
Fixes return value defect | @@ -2297,6 +2297,7 @@ ACVP_RESULT acvp_enable_rsa_keygen_cap_parm (ACVP_CTX *ctx,
break;
case ACVP_RAND_PQ:
case ACVP_FIXED_PUB_EXP_VAL:
+ rv = ACVP_INVALID_ARG;
ACVP_LOG_ERR("Use acvp_enable_rsa_keygen_mode() or acvp_enable_rsa_keygen_exp_parm() API to enable a new randPQ or exponent.");
break;
default:
|
tools/tcplife: Remove dead code | from __future__ import print_function
from bcc import BPF
import argparse
-from socket import inet_ntop, ntohs, AF_INET, AF_INET6
+from socket import inet_ntop, AF_INET, AF_INET6
from struct import pack
from time import strftime
@@ -191,7 +191,7 @@ int kprobe__tcp_set_state(struct pt_regs *ctx, struct sock *sk, int sta... |
hw/mcu/nrf5340_net: Remove enable/disable from init | @@ -466,15 +466,6 @@ hal_spi_init(int spi_num, void *cfg, uint8_t spi_type)
return EINVAL;
}
- rc = hal_spi_disable(spi_num);
- if (rc) {
- return rc;
- }
- rc = hal_spi_enable(spi_num);
- if (rc) {
- return rc;
- }
-
return hal_spi_init_master(spi, (struct nrf5340_net_hal_spi_cfg *)cfg);
#endif
@@ -483,11 +474,6 @@ ha... |
build: fix RPM package name | @@ -665,8 +665,6 @@ set(CPACK_PACKAGE_VENDOR "Treasure Data")
set(CPACK_PACKAGING_INSTALL_PREFIX "/opt/td-agent-bit")
set(CPACK_RESOURCE_FILE_LICENSE "${PROJECT_SOURCE_DIR}/LICENSE")
set(CPACK_PACKAGING_INSTALL_PREFIX "/")
-set(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_NAME}-${CPACK_PACKAGE_VERSION}-${CPACK_PACKAGE_RELE... |
Orchestra: add missing 'extern' to Orchestra rule declarations | @@ -51,11 +51,11 @@ struct orchestra_rule {
const char *name;
};
-struct orchestra_rule eb_per_time_source;
-struct orchestra_rule unicast_per_neighbor_rpl_storing;
-struct orchestra_rule unicast_per_neighbor_rpl_ns;
-struct orchestra_rule unicast_per_neighbor_link_based;
-struct orchestra_rule default_common;
+extern ... |
Sort last processing queue on backup from standby.
The last queue was not being sorted when a primary queue was added first.
This did not affect the backup or integrity but could lead to slightly lower performance since large files were not always copied first. | @@ -1381,8 +1381,8 @@ backupProcessQueue(Manifest *manifest, List **queueList)
THROW(FileMissingError, "no files have changed since the last backup - this seems unlikely");
// Sort the queues
- for (unsigned int targetIdx = 0; targetIdx < strLstSize(targetList); targetIdx++)
- lstSort(*(List **)lstGet(*queueList, targe... |
Rename some vars for consistency. | @@ -14,14 +14,14 @@ import (
type facts []*a.Expr
-func (z *facts) appendFact(x *a.Expr) {
+func (z *facts) appendFact(fact *a.Expr) {
// TODO: make this faster than O(N) by keeping facts sorted somehow?
- for _, f := range *z {
- if f.Eq(x) {
+ for _, x := range *z {
+ if x.Eq(fact) {
return
}
}
- *z = append(*z, x)
+... |
init.cpp fixes | @@ -949,7 +949,9 @@ bool AppInit2()
// ********************************************************* Step 11: start node
if (!CheckDiskSpace())
- return false;
+ {
+ return InitError(_("Error: not enough disk space to start Denarius."));
+ }
if (!strErrors.str().empty())
return InitError(strErrors.str());
@@ -987,10 +989,6... |
naive: add pending-by-address to aggregator | :: on %tx diff from naive, remove the matching tx from the frozen group.
::
::TODO remaining general work:
-:: - hook up timer callbacks
::
::TODO questions:
:: - it's a bit weird how we just assume the raw and tx in raw-tx to match...
::
/- *aggregator
-/+ azimuth, naive, default-agent, ethereum, dbug, verb, lib=naive... |
instanceid keys DOC fix param doc | @@ -47,9 +47,9 @@ struct lyd_value_instance_identifier_keys {
};
/**
- * @brief Print xpath1.0 value in the specific format.
+ * @brief Print instance-id-keys value in the specific format.
*
- * @param[in] xp_val xpath1.0 value structure.
+ * @param[in] val instance-id-keys value structure.
* @param[in] format Format t... |
Ensure that %remove diffs actually get sent out for those interested in config.
In the future, this should also go out to those interested in group, and delete the remote group when it is received. | $bear (so-bear bur.rum)
$peer (so-delta-our rum)
$gram (so-open src nev.rum)
- $remove (so-delta-our %config src %remove ~)
+ $remove ::TODO should also remove from {remotes}?
+ (so-delta-our %config src %remove ~)
::
$new
?: =(src so-cir)
?+ -.det %hasnot
$gram %grams
$new %config-l
+ $remove %config-l
$config ?: =(ci... |
vsyscall test build missing __stack_chk_guard | @@ -113,7 +113,9 @@ SRCS-udploop= \
$(SRCDIR)/runtime/tuple.c
LDFLAGS-udploop= -static
-SRCS-vsyscall= $(CURDIR)/vsyscall.c
+SRCS-vsyscall= \
+ $(CURDIR)/vsyscall.c \
+ $(SRCDIR)/unix_process/ssp.c
LDFLAGS-vsyscall= -static
SRCS-web= \
|
abis/linux: fix struct stat on aarch64
This is not an ABI break as this struct is not used by anyone yet. | extern "C" {
#endif
-#if defined(__x86_64__) || defined(__aarch64__)
+#if defined(__x86_64__)
-// TODO: Is this correct for AArch64?
struct stat {
dev_t st_dev;
ino_t st_ino;
@@ -63,7 +62,7 @@ struct stat {
long __unused[3];
};
-#elif defined(__riscv) && __riscv_xlen == 64
+#elif (defined(__riscv) && __riscv_xlen == 64... |
extmod/moductypes: Use mp_obj_is_dict_or_ordereddict to simplify code. | @@ -160,11 +160,7 @@ STATIC void uctypes_struct_print(const mp_print_t *print, mp_obj_t self_in, mp_p
(void)kind;
mp_obj_uctypes_struct_t *self = MP_OBJ_TO_PTR(self_in);
const char *typen = "unk";
- if (mp_obj_is_type(self->desc, &mp_type_dict)
- #if MICROPY_PY_COLLECTIONS_ORDEREDDICT
- || mp_obj_is_type(self->desc, &m... |
Disabled pcap on windows | @@ -137,6 +137,7 @@ IF(USE_LAPACKE)
LIST(APPEND PLUGINS poser_sba)
ENDIF()
+IF(NOT WIN32)
find_library(PCAP_LIBRARY pcap)
if(PCAP_LIBRARY)
list(APPEND PLUGINS driver_usbmon)
@@ -144,6 +145,7 @@ if(PCAP_LIBRARY)
else()
message("Can't build usbmon plugin -- pcap library was not found")
endif()
+endif()
if(UNIX)
list(APPE... |
Extract video size computation
One method, one thing. | @@ -40,18 +40,23 @@ public final class Device {
return screenInfo;
}
- @SuppressWarnings("checkstyle:MagicNumber")
private ScreenInfo computeScreenInfo(int maxSize) {
+ DisplayInfo displayInfo = serviceManager.getDisplayManager().getDisplayInfo();
+ boolean rotated = (displayInfo.getRotation() & 1) != 0;
+ Size deviceS... |
client session BUGFIX handle data rpc replies with only default values
Fixes | @@ -1661,13 +1661,8 @@ parse_reply(struct ly_ctx *ctx, struct lyxml_elem *xml, struct nc_rpc *rpc, int
struct nc_rpc_act_generic *rpc_gen;
int i, data_parsed = 0;
- if (!xml->child) {
- ERR("An empty <rpc-reply>.");
- return NULL;
- }
-
/* rpc-error */
- if (!strcmp(xml->child->name, "rpc-error") && xml->child->ns && !... |
esp8266/machine_pin: Disable ets_loop_iter during hard IRQ handler.
Otherwise ets_loop_iter may be reentered. Related to issue | #include "py/gc.h"
#include "py/mphal.h"
#include "extmod/virtpin.h"
+#include "ets_alt_task.h"
#include "modmachine.h"
#define GET_TRIGGER(phys_port) \
@@ -103,23 +104,26 @@ void pin_init0(void) {
}
void pin_intr_handler(uint32_t status) {
- mp_sched_lock();
- gc_lock();
status &= 0xffff;
for (int p = 0; status; ++p, ... |
schema BUGFIX handling empty array of features
Beasides NULL, accept also the array of size 1 with the NULL pointer. | @@ -522,7 +522,7 @@ lys_enable_features(struct lysp_module *pmod, const char **features)
uint32_t i = 0;
struct lysp_feature *f = 0;
- if (!features) {
+ if (!features || !features[0]) {
/* keep all features disabled */
return LY_SUCCESS;
}
|
kakadu: update led pwm duty
Set led pwm duty to max to get full brightness.
BRANCH=kukui
TEST=make -j BOARD=kakadu
TEST=make buildall
TEST=Check LED on kakadu. | @@ -116,8 +116,8 @@ static void kakadu_led_init(void)
mt6370_led_set_dim_mode(LED_GREEN, dim);
mt6370_led_set_pwm_frequency(LED_RED, freq);
mt6370_led_set_pwm_frequency(LED_GREEN, freq);
- mt6370_led_set_pwm_dim_duty(LED_RED, 0);
- mt6370_led_set_pwm_dim_duty(LED_GREEN, 0);
+ mt6370_led_set_pwm_dim_duty(LED_RED, 12);
+... |
Update default theme window styles | @@ -886,6 +886,9 @@ BOOLEAN CALLBACK PhpThemeWindowEnumChildWindows(
}
else if (PhEqualStringZ(className, L"SysListView32", FALSE))
{
+ PhSetWindowStyle(WindowHandle, WS_BORDER, 0);
+ PhSetWindowExStyle(WindowHandle, WS_EX_CLIENTEDGE, 0);
+
ListView_SetBkColor(WindowHandle, RGB(30, 30, 30));
ListView_SetTextBkColor(Win... |
ToDo: Mention `cpptemplate` plugin | @@ -628,15 +628,15 @@ DEFAULT_BACKEND ->
(+ make it work)
good out-of-the-box behaviour
-## CPPPLUGIN ##
+## CPPTEMPLATE ##
-cppplugin:
- make a nice and easy cpp solution for plugins
+cpptemplate:
+ make a nice and easy cpp solution for plugins (improve current template)
(integration into cpp binding)
assemble C symbo... |
rollback: Fix compile warning when local entropy is disabled.
BRANCH=none
TEST=make buildall -j | @@ -168,8 +168,10 @@ static int add_entropy(uint8_t *dst, const uint8_t *src,
BUILD_ASSERT(SHA256_DIGEST_SIZE == CONFIG_ROLLBACK_SECRET_SIZE);
struct sha256_ctx ctx;
uint8_t *hash;
+#ifdef CONFIG_ROLLBACK_SECRET_LOCAL_ENTROPY_SIZE
uint8_t extra;
int i;
+#endif
SHA256_init(&ctx);
SHA256_update(&ctx, src, CONFIG_ROLLBACK... |
Print current values of stat counters as well.
For some reasons unknown to me the current values of stat counters are never printed.
This makes is quite hard to use printing during the debugging in the middle
of program run. | @@ -167,6 +167,7 @@ static void mi_print_count(int64_t n, int64_t unit, mi_output_fun* out, void* ar
static void mi_stat_print(const mi_stat_count_t* stat, const char* msg, int64_t unit, mi_output_fun* out, void* arg ) {
_mi_fprintf(out, arg,"%10s:", msg);
if (unit>0) {
+ mi_print_amount(stat->current, unit, out, arg);... |
Drop incorrect skipping of some evp_test testcases with no-gost | @@ -26,7 +26,6 @@ my $no_des = disabled("des");
my $no_dh = disabled("dh");
my $no_dsa = disabled("dsa");
my $no_ec = disabled("ec");
-my $no_gost = disabled("gost");
my $no_sm2 = disabled("sm2");
my $no_siv = disabled("siv");
@@ -78,7 +77,7 @@ push @files, qw(
evppkey_ecdsa.txt
evppkey_kas.txt
evppkey_mismatch.txt
- )... |
refactor: use new github function names | #include <string.h>
#include <curl/curl.h>
-#include "github-v3.h"
+#include "github.h"
#include "orka-utils.h"
#include "orka-config.h"
@@ -49,8 +49,8 @@ int main (int argc, char ** argv)
}
- struct github_v3_git_op_file ** files = NULL;
- files = (struct github_v3_git_op_file**)ntl_calloc(argc-optind, sizeof(struct g... |
tools: added realpath_int() for MacOS script path resolution
JIRA | # This script should be sourced, not executed.
+function realpath_int() {
+ wdir="$PWD"; [ "$PWD" = "/" ] && wdir=""
+ case "$0" in
+ /*) scriptdir="${0}";;
+ *) scriptdir="$wdir/${0#./}";;
+ esac
+ scriptdir="${scriptdir%/*}"
+ echo "$scriptdir"
+}
+
+
function idf_export_main() {
# The file doesn't have executable pe... |
VERSION bump to version 1.4.44 | @@ -37,7 +37,7 @@ endif()
# micro version is changed with a set of small changes or bugfixes anywhere in the project.
set(SYSREPO_MAJOR_VERSION 1)
set(SYSREPO_MINOR_VERSION 4)
-set(SYSREPO_MICRO_VERSION 43)
+set(SYSREPO_MICRO_VERSION 44)
set(SYSREPO_VERSION ${SYSREPO_MAJOR_VERSION}.${SYSREPO_MINOR_VERSION}.${SYSREPO_MI... |
Remove obsolete test in common/memContext.
Once upon a time the allocation array was allocated up front so this test was required for the top context, which did not allocate up front.
Now allocations are done on demand so this case is covered for every context that does not allocate memory. | @@ -155,12 +155,6 @@ testRun(void)
TEST_RESULT_VOID(memContextSwitch(memContextTop()), "switch to top");
TEST_RESULT_VOID(memContextFree(memContextTop()), "free top");
-
- MemContext *noAllocation = memContextNewP("empty");
- memContextKeep();
- noAllocation->allocListSize = 0;
- free(noAllocation->allocList);
- TEST_R... |
Cerise: Modify DC S3 Batled behavior
Change DC S3 Batled 1s on/3s off
BRANCH=firmware-kukui-12573.B
TEST=test firmware branch, DC S3 batled behavior ok | @@ -23,8 +23,8 @@ struct led_descriptor led_bat_state_table[LED_NUM_STATES][LED_NUM_PHASES] = {
[STATE_CHARGING_LVL_2] = {{EC_LED_COLOR_AMBER, LED_INDEFINITE} },
[STATE_CHARGING_FULL_CHARGE] = {{EC_LED_COLOR_WHITE, LED_INDEFINITE} },
[STATE_DISCHARGE_S0] = {{EC_LED_COLOR_WHITE, LED_INDEFINITE} },
- [STATE_DISCHARGE_S3]... |
explicitly cast htons value | @@ -4630,7 +4630,7 @@ sctp_lowlevel_chunk_output(struct sctp_inpcb *inp,
} else {
ip6h->ip6_nxt = IPPROTO_SCTP;
}
- ip6h->ip6_plen = htons(packet_length - sizeof(struct ip6_hdr));
+ ip6h->ip6_plen = htons((uint16_t)(packet_length - sizeof(struct ip6_hdr)));
ip6h->ip6_dst = sin6->sin6_addr;
/*
@@ -11899,7 +11899,7 @@ sc... |
fix potential deadlock in block.c | @@ -1030,7 +1030,6 @@ static void *work_thread(void *arg)
}
pthread_mutex_lock(&block_mutex);
- pthread_mutex_lock(&g_transport_mutex);
if (g_xdag_state == XDAG_STATE_REST) {
g_xdag_sync_on = 0;
@@ -1057,7 +1056,9 @@ static void *work_thread(void *arg)
conn_time = sync_time = 0;
goto begin;
- } else if (t > (g_xdag_las... |
Fix typo in variable name Rust_CARGO_EXECUTABLE in rs_loader's CMakeLists | @@ -49,12 +49,12 @@ add_custom_target(${target}_runtime
add_custom_target(${target} ALL
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}
- COMMAND ${CARGO_EXECUTABLE} build ${TARGET_BUILD_TYPE}
+ COMMAND ${Rust_CARGO_EXECUTABLE} build ${TARGET_BUILD_TYPE}
# TODO: $ORIGIN does not work, but even using absolute path, the li... |
Fix bug with input() | @@ -119,8 +119,8 @@ static Value inputNative(VM *vm, int argCount, Value *args) {
printf("%s", AS_CSTRING(prompt));
}
- uint8_t current_size = 128;
- char *line = malloc(current_size);
+ uint64_t currentSize = 128;
+ char *line = malloc(currentSize);
if (line == NULL) {
runtimeError(vm, "Memory error on input()!");
@@ ... |
[lwIP] code cleanup for Kconfig.
1. code cleanup for Kconfig.
2. fix the compiling warning for BYTE_ORDER. | #define LWIP_HAVE_LOOPIF 0
#define LWIP_PLATFORM_BYTESWAP 0
+
+#ifndef BYTE_ORDER
#define BYTE_ORDER LITTLE_ENDIAN
+#endif
/* #define RT_LWIP_DEBUG */
|
[numerics] add DEBUG verbose | @@ -47,8 +47,6 @@ int gfc3d_compute_error(GlobalFrictionContactProblem* problem,
if (problem == NULL || globalVelocity == NULL)
numerics_error("gfc3d_compute_error", "null input");
-
-
/* Computes error = dnorm2( GlobalVelocity -M^-1( q + H reaction)*/
int nc = problem->numberOfContacts;
int m = nc * 3;
@@ -60,8 +58,6 ... |
elektrad: install eslint-plugin-standard | "babel-eslint": "^7.1.1",
"babel-watch": "^2.0.2",
"eslint": "^3.11.1",
- "eslint-config-standard": "^6.2.1"
+ "eslint-config-standard": "^6.2.1",
+ "eslint-plugin-standard": "^2.0.1"
}
}
|
maint: better flakey example diagnostics.
Fixes Fixes
* spec/posix_spec.yaml (fcntl): Show unexpected errno string. | @@ -463,23 +463,23 @@ specify posix:
- it returns error if cannot lock file with F_SETLK: |
parent_fd = open(path, O_RDWR)
result = fcntl(parent_fd, F_SETLK, write_lock)
- expect(result).to_be(0)
+ expect(result).to_be(SUCCESS)
process = fork()
if process == P_CHILD then
child_fd = open(path, O_RDWR)
- result = fcntl(c... |
fix ksi uninstall | @@ -36,7 +36,9 @@ NTSTATUS SetupUninstallBuild(
if (!NT_SUCCESS(PhDeleteDirectoryWin32(Context->SetupInstallPath)))
{
static PH_STRINGREF ksiFileName = PH_STRINGREF_INIT(L"ksi.dll");
+ static PH_STRINGREF ksiOldFileName = PH_STRINGREF_INIT(L"ksi.dll-old");
PPH_STRING ksiFile;
+ PPH_STRING ksiOldFile;
ksiFile = PhConcat... |
Fix issue when algotithm header is not present | @@ -1351,6 +1351,9 @@ void esp_http_client_add_auth(esp_http_client_handle_t client)
client->auth_data->nc = 1;
client->auth_data->realm = http_utils_get_string_between(auth_header, "realm=\"", "\"");
client->auth_data->algorithm = http_utils_get_string_between(auth_header, "algorithm=", ",");
+ if (client->auth_data->... |
fixed calculation of AES-128-CMAC | @@ -461,6 +461,11 @@ else if(keyver == 3)
memcpy (pkeptr +34, wpak->nonce, 32);
memcpy (pkeptr +66, zeiger->nonce, 32);
}
+ pkedata_prf[0] = 1;
+ pkedata_prf[1] = 0;
+ memcpy (pkedata_prf + 2, pkedata, 98);
+ pkedata_prf[100] = 0x80;
+ pkedata_prf[101] = 1;
HMAC(EVP_sha256(), &pmkpbkdf2, 32, pkedata_prf, 2 + 98 + 2, pt... |
Create .buildtools file once the tools have been installed | @@ -29,4 +29,5 @@ if exist ".buildtools" (
echo y | call sdkmanager.bat --install --include_obsolete --verbose --sdk_root=%ANDROID_SDK_ROOT% "ndk-bundle" "cmake;3.10.2.4988404" "ndk;21.1.6352462"
popd
popd
+ copy NUL .buildtools
)
|
sds: fix sds_printf() prototype in declaration | @@ -83,6 +83,6 @@ flb_sds_t flb_sds_cat_utf8(flb_sds_t *s, char *str, int len);
flb_sds_t flb_sds_increase(flb_sds_t s, size_t len);
flb_sds_t flb_sds_copy(flb_sds_t s, char *str, int len);
void flb_sds_destroy(flb_sds_t s);
-flb_sds_t flb_sds_printf(flb_sds_t s, const char *fmt, ...);
+flb_sds_t flb_sds_printf(flb_sds... |
stats: fix memory leak in statseg config
Type: fix | @@ -746,23 +746,18 @@ statseg_config (vlib_main_t * vm, unformat_input_t * input)
{
stat_segment_main_t *sm = &stat_segment_main;
- /* set default socket file name when statseg config stanza is empty. */
- sm->socket_name = format (0, "%s", STAT_SEGMENT_SOCKET_FILE);
- /*
- * NULL-terminate socket name string
- * clib_... |
upsampling: rm asserts w/REDUCE_CSP+OMIT_C_CODE
with WEBP_NEON_OMIT_C_CODE the default _C functions won't be set and
with WEBP_REDUCE_CSP the NEON functions won't be either triggering an
assert for an empty table member. | @@ -322,6 +322,7 @@ WEBP_TSAN_IGNORE_FUNCTION void WebPInitUpsamplers(void) {
assert(WebPUpsamplers[MODE_BGRA] != NULL);
assert(WebPUpsamplers[MODE_rgbA] != NULL);
assert(WebPUpsamplers[MODE_bgrA] != NULL);
+#if !defined(WEBP_REDUCE_CSP) || !WEBP_NEON_OMIT_C_CODE
assert(WebPUpsamplers[MODE_RGB] != NULL);
assert(WebPUps... |
apps/btc/bip143: remove needless "static" keyword
Must have been a copy/paste error, ctx can be a stack var instead. | @@ -32,7 +32,7 @@ void btc_bip143_sighash(
uint8_t* out // 32 bytes result
)
{
- static sha256_context_t ctx = {0};
+ sha256_context_t ctx = {0};
sha256_reset(&ctx);
// https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki#specification
// 1.
|
added x4y4 to the snap_pblock | @@ -25,5 +25,6 @@ resize_pblock pblock_action -remove CLOCKREGION_X3Y3:CLOCKREGION_X3Y4
#enlarge SNAP PBLOCK for DDR
resize_pblock pblock_snap -add CLOCKREGION_X3Y3:CLOCKREGION_X3Y4
+resize_pblock pblock_snap -add CLOCKREGION_X4Y4:CLOCKREGION_X4Y4
add_cells_to_pblock pblock_snap [get_cells [list a0/axi_clock_converter_... |
fib: remove unsued path flag
Type: refactor | @@ -140,10 +140,6 @@ typedef enum fib_path_oper_attribute_t_ {
* The path is resolved
*/
FIB_PATH_OPER_ATTRIBUTE_RESOLVED,
- /**
- * The path is attached, despite what the next-hop may say.
- */
- FIB_PATH_OPER_ATTRIBUTE_ATTACHED,
/**
* The path has become a permanent drop.
*/
@@ -178,7 +174,6 @@ typedef enum fib_path_... |
Print some more informative text when assertion fails | @@ -37,6 +37,8 @@ _xassert(const char *file, int lineno)
printf("Assertion failed: file %s, line %d.\n", file, lineno);
#if !ASSERT_RETURNS
+ printf("The firmware will stop running\n");
+ printf("A watchdog timer may restart this device\n");
while(1);
#endif
}
|
CI/CD: install libsgx-headers*.deb in Dockerfile-ubuntu18.04
libsgx-header*.deb is needed by libsgx-dcap-quote-verify*.deb. If
libsgx-dcap-quote-verify*.deb isn't installed by apt-get install but
installed by dpkg, we also need to install libsgx-headers explicitly. | @@ -36,3 +36,9 @@ RUN apt-get install -y apt-transport-https ca-certificates curl software-propert
# configure docker
RUN mkdir -p /etc/docker && \
echo "{\n\t\"runtimes\": {\n\t\t\"rune\": {\n\t\t\t\"path\": \"/usr/local/bin/rune\",\n\t\t\t\"runtimeArgs\": []\n\t\t}\n\t},\n\t\"storage-driver\": \"vfs\"\n}" >> /etc/doc... |
minor timeout review tweak | @@ -3315,8 +3315,11 @@ static void fio_review_timeout(void *arg, void *ignr) {
if (!fd_data(fd).protocol || (fd_data(fd).active + timeout >= review))
goto finish;
tmp = protocol_try_lock(fd, FIO_PR_LOCK_STATE);
- if (!tmp)
+ if (!tmp) {
+ if (errno == EBADF)
+ goto finish;
goto reschedule;
+ }
if (prt_meta(tmp).locks[F... |
Fix wolfssl BIO file memory leak | @@ -56,12 +56,6 @@ int new_session_cb(WOLFSSL *ssl, WOLFSSL_SESSION *session) {
std::numeric_limits<uint32_t>::max()) {
std::cerr << "max_early_data_size is not 0xffffffff" << std::endl;
}
- auto f = wolfSSL_BIO_new_file(config.session_file, "w");
- if (f == nullptr) {
- std::cerr << "Could not write TLS session in " <... |
Fix luv_prep_bufs declaration | @@ -128,7 +128,7 @@ static void luv_alloc_cb(uv_handle_t* handle, size_t suggested_size, uv_buf_t* b
/* From misc.c */
static void luv_prep_buf(lua_State *L, int idx, uv_buf_t *pbuf);
-static uv_buf_t* luv_prep_bufs(lua_State* L, int index, size_t *count);
+static uv_buf_t* luv_prep_bufs(lua_State* L, int index, size_t... |
[kernel] add GlobalRollingFrictionContact in python swig interface | PY_REGISTER(FrictionContact, Kernel); \
PY_REGISTER(GlobalFrictionContact, Kernel); \
PY_REGISTER(RollingFrictionContact, Kernel); \
+ PY_REGISTER(GlobalRollingFrictionContact, Kernel); \
PY_REGISTER(EulerMoreauOSI, Kernel); \
PY_REGISTER(MoreauJeanOSI, Kernel); \
PY_REGISTER(MoreauJeanBilbaoOSI, Kernel); \
|
BugID:19037404: Modify the kv module init function | @@ -36,7 +36,7 @@ extern int vfs_device_init(void);
#include "aos/yloop.h"
extern aos_loop_t aos_loop_init(void);
#endif
-extern int aos_kv_init(void);
+extern int32_t kv_init(void);
extern void ota_service_init(void);
extern void dumpsys_cli_init(void);
extern int application_start(int argc, char **argv);
@@ -275,7 +2... |
Windows build script fix: always check for working nuget, even when not building .nupkg | @@ -201,10 +201,11 @@ if not checkExecutable(args.msbuild, '/?'):
print('Failed to find msbuild executable. Use --msbuild to specify its location')
sys.exit(-1)
-if args.buildnuget:
if not checkExecutable(args.nuget, 'help'):
print('Failed to find nuget executable. Use --nuget to specify its location')
sys.exit(-1)
+
+... |
replace "FILENAME_MAX" with "H2O_TMP_FILE_TEMPLATE_MAX"
see issues | @@ -131,9 +131,10 @@ typedef struct st_h2o_buffer_t {
char _buf[1];
} h2o_buffer_t;
+#define H2O_TMP_FILE_TEMPLATE_MAX 256
typedef struct st_h2o_buffer_mmap_settings_t {
size_t threshold;
- char fn_template[FILENAME_MAX];
+ char fn_template[H2O_TMP_FILE_TEMPLATE_MAX];
} h2o_buffer_mmap_settings_t;
struct st_h2o_buffer_... |
s5j/irq: remove macro definitions not in use
Remove macro definitions that are not in use for better readability. | #ifndef __ARCH_ARM_INCLUDE_S5J_S5JT200_IRQ_H
#define __ARCH_ARM_INCLUDE_S5J_S5JT200_IRQ_H
-#define NR_VECTORS 512
#define NR_IRQS 512
-#define S5J_IRQ_INVALID 0x3FF
#define IRQ_INVALID 0x3FF
-
#define IRQ_SPI(x) (32 + (x))
#define IRQ_EINT0 IRQ_SPI(0)
|
pb ll_service | @@ -55,6 +55,9 @@ void selftest_SetRxFlag(void)
void selftest_init(void)
{
Luos_Init();
+ revision_t revision = {.major = 1, .minor = 0, .build = 0};
+
+ Luos_CreateService(NULL, VOID_TYPE, "Selftest", revision);
}
/******************************************************************************
@@ -67,7 +70,7 @@ result_... |
Update RELEASE.md for catboost 0.11.1 | +# Release 0.11.1
+## Changes:
+* Accelerated formula evaluation by ~15%
+* Improved model application interface
+* Improved compilation time for building GPU version
+* Better handling of stray commas in list arguments
+* Added a benchmark that employs Rossman Store Sales dataset to compare quality of GBDT packages
+*... |
VERSION bump to version 0.9.11 | @@ -28,7 +28,7 @@ set(CMAKE_C_FLAGS_DEBUG "-g -O0")
# set version
set(LIBNETCONF2_MAJOR_VERSION 0)
set(LIBNETCONF2_MINOR_VERSION 9)
-set(LIBNETCONF2_MICRO_VERSION 10)
+set(LIBNETCONF2_MICRO_VERSION 11)
set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
set(LI... |
system: nxrecorder: Fix compile warnings in nxrecorder.c | @@ -216,7 +216,7 @@ static int nxrecorder_enqueuebuffer(FAR struct nxrecorder_s *precorder,
bufdesc.session = precorder->session;
#endif
bufdesc.numbytes = apb->nbytes;
- bufdesc.u.pbuffer = apb;
+ bufdesc.u.buffer = apb;
ret = ioctl(precorder->dev_fd, AUDIOIOC_ENQUEUEBUFFER,
(unsigned long)&bufdesc);
@@ -576,7 +576,7 ... |
[chainmaker][#412]deal with return result NULL | @@ -518,14 +518,18 @@ BOAT_RESULT BoatHlchainmakerContractQuery(BoatHlchainmakerTx *tx_ptr, char* meth
memset(query_reponse->message, 0, BOAT_RESPONSE_MESSAGE_MAX_LEN);
memcpy(query_reponse->message, tx_reponse->message, strlen(tx_reponse->message));
+ memset(query_reponse->contract_result, 0, BOAT_RESPONSE_CONTRACT_RE... |
Fix Coverity memory accesses
These are all false positives result from Coverity not understanding our
up_ref and free pairing. | @@ -332,7 +332,11 @@ int EVP_PKEY_derive_init_ex(EVP_PKEY_CTX *ctx, const OSSL_PARAM params[])
/* No more legacy from here down to legacy: */
+ /* A Coverity false positive with up_ref/down_ref and free */
+ /* coverity[use_after_free] */
ctx->op.kex.exchange = exchange;
+ /* A Coverity false positive with up_ref/down_... |
vabtool: Fix the format of the usage message
Recent additions to the vabtool and the usage message left the usage
message in a bad state (a missing end-brace at the end of the parameter
list). This change replaces the final comma with "} ..." | @@ -292,7 +292,7 @@ help() {
printf "Usage: vabtool {sr_key_provision, sr_status,\n"
printf " pr_key_provision, pr_status,\n"
printf " sr_key_cancel, sr_cancel_status,\n"
- printf " pr_key_cancel, pr_cancel_status,\n"
+ printf " pr_key_cancel, pr_cancel_status} ...\n"
printf "\n"
printf "\tPerform Vendor Authorized Boo... |
in_nginx_exporter_metrics: fix data types | @@ -73,16 +73,16 @@ static int nginx_parse_stub_status(flb_sds_t buf, struct nginx_status *status)
goto error;
}
- rc = sscanf(lines[0], "Active connections: %lu \n", &status->active);
+ rc = sscanf(lines[0], "Active connections: %" PRIu64 " \n", &status->active);
if (rc != 1) {
goto error;
}
- rc = sscanf(lines[2], " ... |
validation BUGFIX do not validate operation itself
When validating a reply. The operation should have
been validated as part of operation (input) validation. | @@ -1492,7 +1492,7 @@ API LY_ERR
lyd_validate_op(struct lyd_node *op_tree, const struct lyd_node *tree, LYD_VALIDATE_OP op, struct lyd_node **diff)
{
LY_ERR ret;
- struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_node, *op_parent;
+ struct lyd_node *tree_sibling, *tree_parent, *op_subtree, *op_node, *op_pa... |
lint RTC example | from pimoroni_i2c import PimoroniI2C
from breakout_rtc import BreakoutRTC
-import time
import machine
PINS_BREAKOUT_GARDEN = {"sda": 4, "scl": 5} # i2c pins 4, 5 for Breakout Garden
@@ -19,7 +18,7 @@ rtcbreakout.setup()
print(f"Getting time from Pico RTC/Thonny: {rtcpico.datetime()}")
year, month, day, weekday, hour, m... |
zephyr: volteer: disable chargen/chgramp commands
Disable the chargen and chgramp console commands to match the Chromium
EC configuration.
BRANCH=none
TEST=zmake testall | @@ -26,6 +26,7 @@ CONFIG_PLATFORM_EC_CBI=y
CONFIG_PLATFORM_EC_CONSOLE_CMD_HCDEBUG=n
CONFIG_PLATFORM_EC_CONSOLE_CMD_RTC=n
CONFIG_PLATFORM_EC_CONSOLE_CMD_RTC_ALARM=n
+CONFIG_PLATFORM_EC_CONSOLE_CMD_CHGRAMP=n
# Keyboard
CONFIG_PLATFORM_EC_KEYBOARD=y
@@ -97,7 +98,6 @@ CONFIG_HAS_TASK_KEYPROTO=y
CONFIG_HAS_TASK_POWERBTN=y
#... |
Updated xUnit plugin in Jenkinsfile. | @@ -1335,7 +1335,7 @@ def cnokdbtest() {
* @param p Pattern to scan for
*/
def xunitUpload(p = 'build/Testing/**/*.xml') {
- step([$class: 'XUnitBuilder',
+ step([$class: 'XUnitPublisher',
thresholds: [
[$class: 'SkippedThreshold', failureThreshold: '0'],
[$class: 'FailedThreshold', failureThreshold: '0']
|
fix typo on pipe_common | /****************************************************************************
*
- * Copyright 2016 Samsung Electronics All Rights Reserved.
+ * Copyright 2016-2017 Samsung Electronics All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in complianc... |
Pull Request Template: Use code style for filepath | Do not describe the purpose here but:
- [ ] Short descriptions should be in the release notes (added as entry in
- doc/news/_preparation_next_release.md which contains `*(my name)*`)
+ `doc/news/_preparation_next_release.md` which contains `*(my name)*`)
**Please always add something to the the release notes.**
- [ ] L... |
hark-store: address L style review | |= [time=@da =index:store read=?]
^+ poke-core
=. poke-core (upd-cache read time index)
- =/ t=(unit timebox:store)
+ =/ tib=(unit timebox:store)
(get:orm notifications time)
- ?~ t poke-core
- =/ n=(unit notification:store)
- (~(get by u.t) index)
- ?~ n poke-core
+ ?~ tib poke-core
+ =/ not=(unit notification:store)
... |
bcc: remove trailing semicolon of macro
The trailing semicolon of a do-while style macro will cause
a if-else condition without braces failed to compile.
Meanwhile, also align with other do-while style macros. | @@ -1347,20 +1347,20 @@ static int ____##name(unsigned long long *ctx, ##args)
do { \
unsigned short __offset = args->data_loc_##field & 0xFFFF; \
bpf_probe_read((void *)dst, length, (char *)args + __offset); \
- } while (0);
+ } while (0)
#define TP_DATA_LOC_READ(dst, field) \
do { \
unsigned short __offset = args->da... |
Fake headset doesn't stomp on existing glfw callbacks; | @@ -113,9 +113,14 @@ static void updateWindow() {
state.window = window;
if (window) {
- glfwSetMouseButtonCallback(window, onMouseButton);
- glfwSetCursorPosCallback(window, onMouseMove);
- glfwSetWindowFocusCallback(window, onFocus);
+ GLFWmousebuttonfun prevMouseButton = glfwSetMouseButtonCallback(window, onMouseBut... |
Update `pyto_ui.py` | @@ -1858,7 +1858,7 @@ class ButtonItem:
self.__py_item__.title = new_value
@property
- def image(self) -> "Image":
+ def image(self) -> "Image.Image":
"""
A ``PIL`` image object displayed on screen. May also be an ``UIKit`` ``UIImage`` symbol. See :func:`~pyto_ui.image_with_system_name`.
@@ -4178,7 +4178,7 @@ class But... |
components/freertos: removed CONFIG_FREERTOS_ISR_STATS the ISR test is now self contained | @@ -435,18 +435,8 @@ menu "FreeRTOS"
would be checked to be in compliance with Vanilla FreeRTOS.
e.g Calling port*_CRITICAL from ISR context would cause assert failure
-<<<<<<< HEAD
config FREERTOS_DEBUG_OCDAWARE
bool
help
Hidden option, gets selected by CONFIG_ESPxx_DEBUG_OCDAWARE
-
-=======
- config FREERTOS_ISR_STAT... |
input: chunk: add extra checks to chunk status and types casting | @@ -68,7 +68,7 @@ struct flb_input_chunk *flb_input_chunk_map(struct flb_input_instance *in,
{
int ret;
int records;
- const char *buf_data;
+ char *buf_data;
size_t buf_size;
struct flb_input_chunk *ic;
@@ -132,7 +132,7 @@ struct flb_input_chunk *flb_input_chunk_create(struct flb_input_instance *in,
}
/* Write tag int... |
Remove duplicate SSL_CTX_clear_options | @@ -1848,8 +1848,6 @@ SSL_CTX *create_ssl_ctx() {
SSL_CTX_set_min_proto_version(ssl_ctx, TLS1_3_VERSION);
SSL_CTX_set_max_proto_version(ssl_ctx, TLS1_3_VERSION);
- SSL_CTX_clear_options(ssl_ctx, SSL_OP_ENABLE_MIDDLEBOX_COMPAT);
-
// This makes OpenSSL client not send CCS after an initial
// ClientHello.
SSL_CTX_clear_o... |
super-rsu: fix logic for determining 'force' opt.
This changes behavior of determining whether or not to force a flash
operation. Without this change, if 'force' is present in a flash spec,
this value (True or False) will always be used and not the command line
argument '--force-flash'. | @@ -682,7 +682,7 @@ class pac(object):
flash_type = flash_info['type']
flash_rev = flash_info.get('revision', '')
filename = flash_info['filename']
- force = flash_info.get('force', args.force_flash)
+ force = flash_info.get('force', False) or args.force_flash
if os.path.exists(os.path.join(flash_dir, filename)):
filen... |
chat: set code toggle only at start of input | @@ -454,7 +454,9 @@ export class ChatInput extends Component {
? this.completePatp(state.selectedSuggestion)
: this.messageSubmit(),
'Shift-3': (cm) =>
- this.toggleCode()
+ cm.getValue().length === 0
+ ? this.toggleCode()
+ : CodeMirror.Pass
}
};
|
Fix compile error on older Qt versions
QDateTime::toSecsSinceEpoch() was added later. | @@ -248,7 +248,7 @@ int DeRestPluginPrivate::getSensorData(const ApiRequest &req, ApiResponse &rsp)
return REQ_READY_SEND;
}
- qint64 fromTime = dt.toSecsSinceEpoch();
+ qint64 fromTime = dt.toMSecsSinceEpoch() / 1000;
openDb();
loadSensorDataFromDb(sensor, rsp.list, fromTime, maxRecords);
|
Fixes syntax error I introduced | @@ -5860,15 +5860,15 @@ zoom(const Arg *arg)
XRaiseWindow(dpy, c->win);
if (!selmon->lt[selmon->sellt]->arrange
- || (selmon->sel && selmon->sel->isfloating))
- return;
- if (c == nexttiled(selmon->clients))
- if (!c || !(c = nexttiled(c->next)))
+ || (selmon->sel && selmon->sel->isfloating)
+ || (c == nexttiled(selmon... |
Return translated PSA error in PSA version of ssl_get_ecdh_params_from_cert() | @@ -2886,7 +2886,7 @@ static int ssl_get_ecdh_params_from_cert( mbedtls_ssl_context *ssl )
status = psa_get_key_attributes( ssl->handshake->ecdh_psa_privkey,
&key_attributes );
if( status != PSA_SUCCESS)
- return( MBEDTLS_ERR_PK_BAD_INPUT_DATA );
+ return( psa_ssl_status_to_mbedtls( status ) );
ssl->handshake->ecdh_psa... |
Added Cortex-M1 | @@ -756,6 +756,16 @@ to verify a minimum version or ensure that the right processor core is used.
\endcode
+\b core_cm1.h
+\code
+#define __CM1_CMSIS_VERSION_MAIN (__CM_CMSIS_VERSION_MAIN) /*!< \deprecated [31:16] CMSIS HAL main version */
+#define __CM1_CMSIS_VERSION_SUB (__CM_CMSIS_VERSION_SUB) /*!< \deprecated [15:0... |
Remove sudo in readme | @@ -33,7 +33,7 @@ This will run `make install_tests` and `make run_tests`
To run a specific tests (here the send test):
```
cd tests
-sudo jest --runInBand --detectOpenHandles src/send.test.js
+jest --runInBand --detectOpenHandles src/send.test.js
```
Make sure you're in the `tests` folder before running `jest` or `yar... |
doc: update doc version selector for v2.3 | @@ -197,6 +197,7 @@ html_context = {
'docs_title': docs_title,
'is_release': is_release,
'versions': ( ("latest", "/latest/"),
+ ("2.3", "/2.3/"),
("2.2", "/2.2/"),
("2.1", "/2.1/"),
("2.0", "/2.0/"),
|
Fixed rebuilding of Dockerfiles. | @@ -49,7 +49,7 @@ dockerfiles: $(addprefix Dockerfile., $(MODULES))
build: dockerfiles $(addprefix build-,$(MODULES))
push: build $(addprefix push-,$(MODULES)) latest
-Dockerfile.%: ../../src/nxt_main.h
+Dockerfile.%: ../../version
@echo "===> Building $@"
cat Dockerfile.tmpl | sed \
-e 's,@@UNITPACKAGES@@,$(MODULE_$*)... |
doc: remove build problem in release notes
when an XML option was removed, it will break documentation links to
that option information. We'll remove the link in the old release notes
to fix this problem. | @@ -109,7 +109,7 @@ Add New Configuration Options
In v2.5, the following elements are added to scenario XML files:
-- :option:`hv.FEATURES.NVMX_ENABLED`
+- ``hv.FEATURES.NVMX_ENABLED``
- :option:`vm.PTM`
The following element is renamed:
@@ -118,7 +118,7 @@ The following element is renamed:
Constraints on values of the... |
Fix container image
Missed commit from | @@ -13,7 +13,7 @@ RUN curl -o /tmp/dc-downloads/cmake.sh $CMAKE_SCRIPT \
&& chmod +x /tmp/dc-downloads/cmake.sh \
&& bash /tmp/dc-downloads/cmake.sh --skip-license --prefix=/tmp/dc-extracted/cmake
-FROM ghcr.io/linuxcontainers/alpine:latest AS devcontainer
+FROM ghcr.io/linuxcontainers/debian-slim:latest AS devcontaine... |
make flush-all.t more reliable
can end up sitting on the border of a second. better fix would be to poll the
server until it thinks at least 4s have passed, since in weird/slow scenarios
the tests can run faster than the daemon. | @@ -40,7 +40,7 @@ is(scalar <$sock>, "OK\r\n", "did flush_all in future");
print $sock "set foo 0 0 4\r\n1234\r\n";
is(scalar <$sock>, "STORED\r\n", "stored foo = '1234'");
mem_get_is($sock, "foo", '1234');
-sleep(3);
+sleep(5);
mem_get_is($sock, "foo", undef);
print $sock "set foo 0 0 5\r\n12345\r\n";
|
fib: Uninitialised pad in the prefix (coverity warning)
Type: fix | @@ -89,6 +89,7 @@ fib_prefix_from_ip46_addr (const ip46_address_t *addr,
pfx->fp_len = ((ip46_address_is_ip4(addr) ?
32 : 128));
pfx->fp_addr = *addr;
+ pfx->___fp___pad = 0;
}
void
@@ -100,6 +101,7 @@ fib_prefix_from_mpls_label (mpls_label_t label,
pfx->fp_len = 21;
pfx->fp_label = label;
pfx->fp_eos = eos;
+ pfx->___... |
Define INT16_MAX in re.c. | @@ -40,7 +40,6 @@ order to avoid confusion with operating system threads.
#include <assert.h>
#include <string.h>
-#include <limits.h>
#include <yara/limits.h>
#include <yara/globals.h>
@@ -57,6 +56,10 @@ order to avoid confusion with operating system threads.
#define EMIT_DONT_SET_FORWARDS_CODE 0x02
#define EMIT_DONT_... |
fix error prone + annontation processor 4 jdk 11 | @@ -37,6 +37,17 @@ def get_java_version(exe):
return None
+def get_classpath(cmd):
+ for i, part in enumerate(cmd):
+ if part == '-classpath':
+ i += 1
+ if i < len(cmd):
+ return cmd[i]
+ else:
+ return None
+ return None
+
+
def just_do_it(argv):
java, javac, error_prone_tool, javac_cmd = argv[0], argv[1], argv[2], a... |
PostContent: use unified graph rendering | import React from 'react';
-import { Col } from '@tlon/indigo-react';
-import { MentionText } from '~/views/components/MentionText';
-import useContactState from '~/logic/state/contact';
+import { Col, Box } from '@tlon/indigo-react';
+import { GraphContentWide } from "~/views/landscape/components/Graph/GraphContentWid... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.