message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
Another change to classifyAlign: check concordance of spliced reads even if the overhangs are small. | @@ -51,12 +51,22 @@ int alignToTranscript(Transcript &aG, uint trS1, uint32 *exSE1, uint16 exN1, uin
if (iab==0 || aG.canonSJ[iab-1]==-3 || bEtprev==(uint32)-1) {//start of align, or jump to another mate, or previous block was too short
ex1=binarySearch1<uint32>(bS, exSE1, 2*exN1) / 2;// alignStart>=ex1start
- } else i... |
esp32/machine_pin: Make it so None as pull value disables pull up/down.
Previously specifying None as the pull value would leave the pull up/down
state unchanged. This change makes it so -1 leaves the state unchanged and
None makes the pin float, as per the docs. | @@ -137,7 +137,7 @@ STATIC mp_obj_t machine_pin_obj_init_helper(const machine_pin_obj_t *self, size_
enum { ARG_mode, ARG_pull, ARG_value };
static const mp_arg_t allowed_args[] = {
{ MP_QSTR_mode, MP_ARG_OBJ, {.u_obj = mp_const_none}},
- { MP_QSTR_pull, MP_ARG_OBJ, {.u_obj = mp_const_none}},
+ { MP_QSTR_pull, MP_ARG_O... |
host/ble_gattc: Cancel prepered writes if data doesn't match in response
If data received in ble_gattc_write_long_rx_prep() doesn't match
data sent in prepare write request we need not only return error in
function, but also send ATT_Execute_Write_Response with flag set to
BLE_ATT_EXEC_WRITE_F_CANCEL.
This is affecting... | @@ -3765,9 +3765,11 @@ ble_gattc_write_long_rx_prep(struct ble_gattc_proc *proc,
proc->write_long.length) != 0) {
rc = BLE_HS_EBADDATA;
- goto err;
- }
+ /* if data doesn't match up send cancel write */
+ ble_att_clt_tx_exec_write(proc->conn_handle, BLE_ATT_EXEC_WRITE_F_CANCEL);
+ goto err;
+ } else {
/* Send follow-up... |
Properly handled bsd detection. | @@ -45,7 +45,7 @@ typedef enum parser_state {
} parser_state;
static inline long get_gmt_offset(struct tm *t) {
-#if defined(__USE_BSD) || defined(__APPLE__) && defined(__MACH__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) && defined(__MACH__)
return t->tm_gmtoff;
#else
return t->__tm_gmtoff;... |
remove stats timer | @@ -68,7 +68,6 @@ struct stat_flow {
struct timeval tv_last;
struct timeval tv_delta;
uint16_t protocol;
- uv_timer_t timer;
struct neat_flow *flow;
};
@@ -138,31 +137,11 @@ on_writable(struct neat_flow_operations *opCB)
return NEAT_OK;
}
-static void
-print_timer_stats(uv_timer_t *handle)
-{
- struct stat_flow *stat =... |
ACPI: don't abort when buttons cannot be initialized | @@ -67,10 +67,10 @@ void buttons_init(void)
printf("Installing fixed event handler for power button\n");
as = AcpiInstallFixedEventHandler(ACPI_EVENT_POWER_BUTTON,
power_button_handler, NULL);
- assert(ACPI_SUCCESS(as));
- }
-
+ if(ACPI_SUCCESS(as)) {
// install handlers for notify events on other button objects
AcpiGe... |
SOVERSION bump to version 5.6.12 | @@ -53,7 +53,7 @@ set(SYSREPO_VERSION ${SYSREPO_MAJOR_VERSION}.${SYSREPO_MINOR_VERSION}.${SYSREPO_
# with backward compatible change and micro version is connected with any internal change of the library.
set(SYSREPO_MAJOR_SOVERSION 5)
set(SYSREPO_MINOR_SOVERSION 6)
-set(SYSREPO_MICRO_SOVERSION 11)
+set(SYSREPO_MICRO_S... |
use TSRESOL_USEC as default if we have not time resolution information in IDB | @@ -337,7 +337,7 @@ memset(&pcapngapplinfo, 0, OPTIONLEN_MAX);
memset(&pcapngoptioninfo, 0, OPTIONLEN_MAX);
memset(&pcapngweakcandidate, 0 ,OPTIONLEN_MAX);
memset(&pcapngdeviceinfo, 0 ,6);
-pcapngtimeresolution = IF_TSRESOL;
+pcapngtimeresolution = TSRESOL_USEC;
memset(&myaktap, 0 ,6);
memset(&myaktclient, 0 ,6);
memse... |
libhfuzz: use _memcmp as memcmp() by default | @@ -52,7 +52,20 @@ cmpfeedback_t* globalCmpFeedback = NULL;
uint32_t my_thread_no = 0;
-int (*libc_memcmp)(const void* s1, const void* s2, size_t n) = memcmp;
+static int _memcmp(const void* m1, const void* m2, size_t n) {
+ const unsigned char* s1 = (const unsigned char*)m1;
+ const unsigned char* s2 = (const unsigned... |
Extend dynamic_allocators example and fix previous code. | int main() {
int n = 1024;
+ int r = 0;
+ #pragma omp target map(tofrom:r)
+ {
+ omp_allocator_handle_t al = omp_init_allocator(omp_default_mem_space, 0, {});
+
+ int *p = (int *)omp_alloc(n*sizeof(int), al);
+ #pragma omp parallel for
+ for(int i = 0; i < n; i++)
+ p[i] = i;
+
+ #pragma omp parallel for reduction(+:r)... |
update example def path | @@ -13,11 +13,10 @@ echo "-------------------------------------------------------"
if [ "x$DISTRO_FAMILY" == "xCentOS" ];then
export DISTRO=centos
- export BOOTSTRAP_DEF=/usr/share/doc/singularity-ohpc-2.2.1/examples/${DISTRO}.def
else
export DISTRO=sles
- export BOOTSTRAP_DEF=/usr/share/doc/packages/singularity-ohpc/e... |
Added support for AAarch64 (Apple Sillicon) | #if defined(__powerpc__)
#define USE_LITTLE_ENDIAN NO
-#elif defined(_WIN32) || defined(__x86__) || defined(__x86_64__) || defined(i386) || defined(__i386__)
+#elif defined(_WIN32) || defined(__x86__) || defined(__x86_64__) || defined(i386) || defined(__i386__) || defined(__aarch64__)
#define USE_LITTLE_ENDIAN YES
#els... |
Fix typo Xiomi --> Xiaomi | @@ -6904,7 +6904,7 @@ void DeRestPluginPrivate::handleZclAttributeReportIndicationXiaomiSpecial(const
qint16 temperature = INT16_MIN;
quint8 onOff = UINT8_MAX;
- DBG_Printf(DBG_INFO, "0x%016llX extract Xiomi special\n", ind.srcAddress().ext());
+ DBG_Printf(DBG_INFO, "0x%016llX extract Xiaomi special\n", ind.srcAddress... |
esp_event: Fix flakey esp_event example test
The execution order of the "task_event_source" and "application_task" tasks
on startup can vary. This will result a different order of logs, thus leading
to the example test failing.
This commit synchronizes both tasks on startup. | @@ -23,6 +23,9 @@ esp_event_loop_handle_t loop_without_task;
static void application_task(void* args)
{
+ // Wait to be started by the main task
+ ulTaskNotifyTake(pdTRUE, portMAX_DELAY);
+
while(1) {
ESP_LOGI(TAG, "application_task: running application task");
esp_event_loop_run(loop_without_task, 100);
@@ -58,6 +61,9... |
Make internal function static | #import <CommonCrypto/CommonDigest.h>
#import "configuration_utils.h"
-SecCertificateRef certificateFromPEM(NSString *pem);
+
+static SecCertificateRef certificateFromPEM(NSString *pem)
+{
+ // NOTE: multi-certificate PEM is not supported since this is for individual
+ // trust anchor certificates.
+
+ // Strip PEM hea... |
Update ndarray.c
Fix bug in ndarray_tobytes() | @@ -1554,7 +1554,7 @@ mp_obj_t ndarray_tobytes(mp_obj_t self_in) {
if(!ndarray_is_dense(self)) {
mp_raise_ValueError(translate("tobytes can be invoked for dense arrays only"));
}
- return mp_obj_new_bytearray_by_ref(self->len, self->array);
+ return mp_obj_new_bytearray_by_ref(self->itemsize * self->len, self->array);
... |
mesh: Fixes wrong return value
Fixes missing return value on va_del
Fixes wrong return value on va_add
this is port of | @@ -1149,7 +1149,7 @@ static u8_t va_add(u8_t *label_uuid, u16_t *addr)
if (update) {
update->ref++;
va_store(update);
- return 0;
+ return STATUS_SUCCESS;
}
if (!free_slot) {
@@ -1181,6 +1181,7 @@ static u8_t va_del(u8_t *label_uuid, u16_t *addr)
}
va_store(update);
+ return STATUS_SUCCESS;
}
if (addr) {
|
travis: trying to get working build matrix | @@ -53,25 +53,25 @@ matrix:
os: linux
env: RHO_TARGET="android" RHO_APP="auto_common_spec" RHO_ANDROID_LEVEL="24"
- # - language: android
- # os: linux
- # env: RHO_TARGET="android" RHO_APP="framework_spec"
+ - language: android
+ os: linux
+ env: RHO_TARGET="android" RHO_APP="framework_spec"
- # - language: android
- ... |
Set static frame direction offset correctly when sprite has 6 frames | @@ -212,6 +212,10 @@ const getSpriteIndex = (spriteId, sprites) => {
return spriteIndex;
};
+const getSprite = (spriteId, sprites) => {
+ return sprites.find(sprite => sprite.id === spriteId);
+};
+
const getVariableIndex = (variable, variables) => {
const variableIndex = variables.indexOf(String(variable));
if (variab... |
Seems that [[nodiscard]] isn't cool with C17 | #if defined(__cplusplus) && __cplusplus >= 201703L
# define CLAP_HAS_CXX17
# define CLAP_NODISCARD [[nodiscard]]
-#elif defined(__STDC_VERSION__) && __STDC_VERSION__ >= 201300L
-# define CLAP_NODISCARD [[nodiscard]]
#else
# define CLAP_NODISCARD
#endif
|
[util] TODO added
Note: mandatory check (NEED_CHECK) was skipped | @@ -203,6 +203,7 @@ public:
return s ? TTraits::GetLength(s) : 0;
}
+ // TODO: DROP! this one provides an implicit TStringBuf -> std::string conversion!
template <class T, class A>
inline operator std::basic_string<TCharType, T, A>() const {
return std::basic_string<TCharType, T, A>(Ptr(), Len());
|
Fixing WebSocket frame retain function.
Some of the pointers were not adjusted after frame's memory re-allocation.
Fortunately, this function was not used and the bug has no effect. | @@ -3288,7 +3288,7 @@ int
nxt_unit_websocket_retain(nxt_unit_websocket_frame_t *ws)
{
char *b;
- size_t size;
+ size_t size, hsize;
nxt_unit_websocket_frame_impl_t *ws_impl;
ws_impl = nxt_container_of(ws, nxt_unit_websocket_frame_impl_t, ws);
@@ -3306,12 +3306,23 @@ nxt_unit_websocket_retain(nxt_unit_websocket_frame_t ... |
Add native-write, which will write structs to buffers.
Useful for testing as well as useful in its own right. Begs
for an inverse, native-read which would convert byte data
to native structs. | @@ -641,11 +641,28 @@ JANET_CORE_FN(cfun_ffi_call,
}
}
+JANET_CORE_FN(cfun_ffi_buffer_write,
+ "(native-write ffi-type data &opt buffer)",
+ "Append a native tyep to a buffer such as it would appear in memory. This can be used "
+ "to pass pointers to structs in the ffi, or send C/C++/native structs over the network "
... |
Includes: AppleKeyMapAggregator revision is UINT64 | @@ -83,7 +83,7 @@ EFI_STATUS
// APPLE_KEY_MAP_AGGREGATOR_PROTOCOL
struct APPLE_KEY_MAP_AGGREGATOR_PROTOCOL {
- UINTN Revision;
+ UINT64 Revision;
KEY_MAP_GET_KEY_STROKES GetKeyStrokes;
KEY_MAP_CONTAINS_KEY_STROKES ContainsKeyStrokes;
};
|
Set up some basic *san envvars, even with sanitizers support disabled | #define kMSAN_OPTS kSAN_COMMON":exit_code=" STR(HF_SAN_EXIT_CODE) ":"\
"wrap_signals=0:print_stats=1"
+/* If no sanitzer support was requested, simply make it use abort() on errors */
+#define kSAN_REGULAR "abort_on_error=1:handle_segv=1:allocator_may_return_null=1"
+
/*
* If the program ends with a signal that ASan do... |
resize set: convert ppt to px for floating containers | @@ -511,16 +511,40 @@ static struct cmd_results *resize_set_tiled(struct sway_container *con,
*/
static struct cmd_results *resize_set_floating(struct sway_container *con,
struct resize_amount *width, struct resize_amount *height) {
- int min_width, max_width, min_height, max_height;
+ int min_width, max_width, min_hei... |
rewrite moving average | @@ -63,6 +63,7 @@ complex float median_complex_float(int N, const complex float ar[N])
return (1 == N % 2) ? tmp[(N - 1) / 2] : ((tmp[(N - 1) / 2 + 0] + tmp[(N - 1) / 2 + 1]) / 2.);
}
+
static float vec_dist(int D, const float x[D], const float y[D])
{
float sum = 0.;
@@ -115,15 +116,6 @@ static complex float median_ge... |
mips/Gstep.c: unw_handle_signal_frame: remove unused 'sp' variable
This fixes GCC 4.9.3 warnings (Linux/mipsel):
mips/Gstep.c: In function '_Umips_handle_signal_frame':
mips/Gstep.c:33:23: warning: unused variable 'sp' [-Wunused-variable]
unw_word_t sc_addr, sp, sp_addr = c->dwarf.cfa;
^ | @@ -30,7 +30,7 @@ PROTECTED int
unw_handle_signal_frame (unw_cursor_t *cursor)
{
struct cursor *c = (struct cursor *) cursor;
- unw_word_t sc_addr, sp, sp_addr = c->dwarf.cfa;
+ unw_word_t sc_addr, sp_addr = c->dwarf.cfa;
unw_word_t ra, fp;
int ret;
|
xfconf-plugin: Add description how arrays work | @@ -17,7 +17,9 @@ This is a storage plugin to mount the xfconf configuration settings.
### Property
-A property in xfconf is the same as a key in libelektra i.e. it has a name and can hold one or more values.
+A property in xfconf is the same as a key in libelektra i.e. it has a name and can hold a value.
+In contrast ... |
sim: use flash_area_get_sectors()
Use the new flash sector API by default when testing. | @@ -19,6 +19,7 @@ fn main() {
conf.flag("-Wall");
conf.define("__BOOTSIM__", None);
// conf.define("MCUBOOT_OVERWRITE_ONLY", None);
+ conf.define("MCUBOOT_USE_FLASH_AREA_GET_SECTORS", None);
conf.compile("libbootutil.a");
walk_dir("../boot").unwrap();
walk_dir("csupport").unwrap();
|
remove initrd from .iso dependency | @@ -79,7 +79,7 @@ $(FSGENERATOR): $(FSGENERATOR).c
$(ISO_DIR)/boot/initrd.img: $(FSGENERATOR)
@./$(FSGENERATOR) $(INITRD); mv $(INITRD).img $@
-$(ISO_NAME): $(ISO_DIR)/boot/axle.bin $(ISO_DIR)/boot/grub/grub.cfg $(ISO_DIR)/boot/initrd.img
+$(ISO_NAME): $(ISO_DIR)/boot/axle.bin $(ISO_DIR)/boot/grub/grub.cfg
$(ISO_MAKER)... |
ci: do not retry on 404 when LOCAL_GITLAB_HTTPS_HOST not set | @@ -29,7 +29,7 @@ def retry(func: TR) -> TR:
if e.response_code == 500:
# retry on this error
pass
- elif e.response_code == 404:
+ elif e.response_code == 404 and os.environ.get('LOCAL_GITLAB_HTTPS_HOST', None):
# remove the environment variable "LOCAL_GITLAB_HTTPS_HOST" and retry
os.environ.pop('LOCAL_GITLAB_HTTPS_HO... |
Update: removal of unused assert | @@ -99,10 +99,10 @@ static int smallestGrandChild(PriorityQueue *queue, int i, bool invert)
{
return i;
}
- Item lv = at(l);
int min = l;
for(int r=l+1; r<queue->itemsAmount && r < l+4; r++)
{ //iterate on three grandsiblings (they are consecutive)
+ Item lv = at(l);
Item rv = at(r);
if((rv.priority < lv.priority)^inve... |
[mocks]: fixed strippables patterns for CMock | - callback
:strippables:
- '(?:__attribute__\s*\(+.*?\)+)'
- - '(?:vQueueAddToRegistry\s*\(+.*?\)+)'
- - '(?:vQueueUnregisterQueue\s*\(+.*?\)+)'
- - '(?:pcQueueGetName\s*\(+.*?\)+)'
- - '(?:vTaskSetThreadLocalStoragePointerAndDelCallback\s*\(+.*?\)+)'
+ # following functions are disabled by configQUEUE_REGISTRY_SIZE
+ ... |
SLW: Print verbose info on errors only
Change print level from debug to warning for reporting
bad EC_PPM_SPECIAL_WKUP_* scom values. To reduce cluttering
in the log print only on error. | @@ -252,12 +252,17 @@ static bool slw_set_overrides_p9(struct proc_chip *chip, struct cpu_thread *c)
rc = xscom_read(chip->id,
XSCOM_ADDR_P9_EC_SLAVE(core, EC_PPM_SPECIAL_WKUP_HYP),
&tmp);
- prlog(PR_DEBUG, "SLW: EC_PPM_SPECIAL_WKUP_HYP read 0x%016llx\n", tmp);
+ if (tmp)
+ prlog(PR_WARNING,
+ "SLW: core %d EC_PPM_SPEC... |
boten: remove CONFIG_SYSTEM_UNLOCKED
It's used for final firmware.
BRANCH=boten
TEST=make buildall | #define VARIANT_DEDEDE_EC_IT8320
#include "baseboard.h"
-/* System unlocked in early development */
-#define CONFIG_SYSTEM_UNLOCKED
-
/* Battery */
#define CONFIG_BATTERY_FUEL_GAUGE
#define CONFIG_BATTERY_V2
|
let segger RTT kconfig sink one level | # see the file kconfig-language.txt in the NuttX tools repository.
#
+menu "Segger RTT drivers"
+
config SEGGER_RTT
bool
---help---
@@ -113,3 +115,5 @@ config SEGGER_SYSVIEW_RAM_BASE
The lowest RAM address used for IDs
endif
+
+endmenu # Segger RTT drivers
|
py/runtime: Use mp_import_name to implement tail of mp_import_from. | @@ -1361,15 +1361,8 @@ import_error:
qstr dot_name_q = qstr_from_strn(dot_name, dot_name_len);
mp_local_free(dot_name);
- mp_obj_t args[5];
- args[0] = MP_OBJ_NEW_QSTR(dot_name_q);
- args[1] = mp_const_none; // TODO should be globals
- args[2] = mp_const_none; // TODO should be locals
- args[3] = mp_const_true; // Pass... |
jinlon: Assign SYS_RST_ODL to GPIOC5
Clone from CL:1928421
BRANCH=hatch
TEST=make sure AP reset pass. | @@ -44,7 +44,7 @@ GPIO_INT(HDMI_CONN_HPD, PIN(7, 2), GPIO_INT_BOTH, hdmi_hpd_interrupt)
GPIO_INT(EC_VOLDN_BTN_ODL, PIN(9, 3), GPIO_INT_BOTH | GPIO_PULL_UP, button_interrupt)
GPIO_INT(EC_VOLUP_BTN_ODL, PIN(7, 5), GPIO_INT_BOTH | GPIO_PULL_UP, button_interrupt)
-GPIO(SYS_RESET_L, PIN(0, 2), GPIO_ODR_HIGH) /* SYS_RST_ODL ... |
eyre: look for lowercase last-event-id header
Eyre always gets passed request headers in lowercase, so we should search for
the lowercased version of the header.
Arguably `+get-header` should lowercase keys before comparing them, but that's
a more serious behavioral change. | :: the request may include a 'Last-Event-Id' header
::
=/ maybe-last-event-id=(unit @ud)
- ?~ maybe-raw-header=(get-header:http 'Last-Event-ID' header-list.request)
+ ?~ maybe-raw-header=(get-header:http 'last-event-id' header-list.request)
~
(rush u.maybe-raw-header dum:ag)
:: flush events older than the passed in 'La... |
Fix dask and partd import tests.
dask has many optional dependencies
Note: mandatory check (NEED_CHECK) was skipped | @@ -23,6 +23,8 @@ def check_imports(no_check=None, extra=[], skip_func=None):
'click._winconsole',
'common.*', # sandbox.common
+ 'dask.*',
+
'flaky.flaky_pytest_plugin',
'flask.ext.__init__',
@@ -137,6 +139,8 @@ def check_imports(no_check=None, extra=[], skip_func=None):
"pandas.util.clipboard",
"parsel.unified",
+ 'p... |
fix handling of multiple flows not working if device flow failed | @@ -176,6 +176,9 @@ void oidcd_handleGen(struct ipcPipe pipes, const char* account_json,
}
struct oidc_device_code* dc = initDeviceFlow(account);
if (dc == NULL) {
+ if (flows->len != 1) {
+ continue;
+ }
ipc_writeOidcErrnoToPipe(pipes);
list_iterator_destroy(it);
secFreeList(flows);
|
kdb: add comment about supported namespaces to file | @@ -33,6 +33,9 @@ int FileCommand::execute (Cmdline const & cl)
throw invalid_argument (cl.arguments[0] + " is not a valid keyname");
}
+ // Not all namespaces are supported, because we don't know if the key actually exists
+ // If it does not exist, the key name alone must uniquely determine the storage location
+ // ... |
compile BUGFIX extension instances compilation
In case of YIN input and the extension defined in the same module, the
extension instance's prefix was incorectly processed and the schema
module was never found. | @@ -538,7 +538,7 @@ lys_compile_ext(struct lysc_ctx *ctx, struct lysp_ext_instance *ext_p, struct ly
lysc_update_path(ctx, NULL, prefixed_name);
if (!ext_mod) {
- ext_mod = lys_module_find_prefix(ctx->mod_def, prefixed_name, u - 1);
+ ext_mod = u ? lys_module_find_prefix(ctx->mod_def, prefixed_name, u - 1) : ctx->mod_d... |
check device info string len first | @@ -891,6 +891,7 @@ if(fh_deviceinfo == NULL) return;
qsort(aplist, aplistptr -aplist, MACLIST_SIZE, sort_maclist_by_manufacturer);
for(zeigermac = aplist; zeigermac < aplistptr; zeigermac++)
{
+ if((zeigermac->manufacturerlen == 0) && (zeigermac->modellen == 0) && (zeigermac->serialnumberlen == 0) && (zeigermac->devic... |
Convert tabs to spaces in cpu.cpp/cpu.h | @@ -235,9 +235,9 @@ bool CPUStats::UpdateCpuTemp(){
bool CPUStats::GetCpuFile() {
std::string name, path;
std::string hwmon = "/sys/class/hwmon/";
+
auto dirs = ls(hwmon.c_str());
- for (auto& dir : dirs)
- {
+ for (auto& dir : dirs) {
path = hwmon + dir;
name = read_line(path + "/name");
#ifndef NDEBUG
@@ -248,6 +248,... |
[core] use kill_signal for gw_proc_kill()
After 4 seconds, send kill() every second while waiting for child to exit.
Send host->kill_signal for next 4 seconds, then send SIGTERM (usually same
as host->kill_signal) for following 8 seconds, and finally send SIGKILL
each second after that, until the child process dies.
gi... | @@ -330,7 +330,8 @@ static void gw_proc_waitpid_log(server *srv, gw_host *host, gw_proc *proc, int s
WEXITSTATUS(status), proc->connection_name);
}
} else if (WIFSIGNALED(status)) {
- if (WTERMSIG(status) != SIGTERM && WTERMSIG(status) != SIGINT) {
+ if (WTERMSIG(status) != SIGTERM && WTERMSIG(status) != SIGINT
+ && WT... |
travis: split apt install into multiple commands
Fix gcc-multilib fail to install issue.
Refer to: | @@ -17,7 +17,12 @@ env:
PATH="${PATH}:${ARM_BINDIR}:${ESP8266_BINDIR}:${ESP32_BINDIR}"
before_install:
- - sudo apt install -qq gcc-multilib libssl-dev libssl-dev:i386 libncurses5-dev libncurses5-dev:i386 libreadline-dev libreadline-dev:i386
+ - sudo apt update -qq
+ - while [ $? -ne 0 ]; do sudo apt update -qq; done
+... |
pujjo: declare unused GPIOs
Declare unused GPIOs.
BRANCH=none
TEST=zmake build pujjo
Code-Coverage: Zoss | unused-pins {
compatible = "unused-gpios";
unused-gpios =
+ <&gpio3 2 0>,
<&gpio3 3 0>,
+ <&gpio3 5 0>,
<&gpio3 6 0>,
+ <&gpio5 7 0>,
+ <&gpio6 0 0>,
+ <&gpio6 6 0>,
+ <&gpio8 3 0>,
+ <&gpio8 6 0>,
+ <&gpiob 1 0>,
+ <&gpioc 7 0>,
<&gpiod 7 0>,
<&gpiof 2 0>,
<&gpiof 3 0>;
|
feat: improve the error reporting | @@ -2288,11 +2288,15 @@ json_vextract (char * json, size_t size, char * extractor, va_list ap)
switch (tokens[0].type)
{
case JSMN_OBJECT:
- ASSERT_S(cv.is_object, "Cannot extract array from json object\n");
+ if (!cv.is_object)
+ ERR("Cannot apply '%s' to json array:'%.*s'\n",
+ extractor, tokens[0].size, tokens[0].st... |
Nit: use a helper function to know if we are writing | @@ -413,7 +413,7 @@ static void stream_send_error(h2o_http2_conn_t *conn, uint32_t stream_id, int er
static void request_gathered_write(h2o_http2_conn_t *conn)
{
assert(conn->state < H2O_HTTP2_CONN_STATE_IS_CLOSING);
- if (conn->sock->_cb.write == NULL && !h2o_timer_is_linked(&conn->_write.timeout_entry)) {
+ if (!h2o_... |
Readd ignore fpga-shells in main submodule setup | @@ -39,6 +39,8 @@ git config submodule.vlsi/hammer-cadence-plugins.update none
git config submodule.vlsi/hammer-synopsys-plugins.update none
git config submodule.vlsi/hammer-mentor-plugins.update none
git config submodule.software/firemarshal.update none
+# Disable update to fpga-shells
+git config submodule.fpga/fpga-... |
launch: stop passing 'invite' prop to tile | @@ -22,8 +22,8 @@ export default class Home extends Component {
tileData = this.props.data[tile] !== null
? this.props.data[tile] : {};
- tileData["invites"] = ("invites" in this.props.data)
- ? this.props.data["invites"] : {};
+ // tileData["invites"] = ("invites" in this.props.data)
+ // ? this.props.data["invites"] ... |
doc: add link to ceph setup tools
Add link/info for ceph tool setup. | @@ -45,6 +45,19 @@ We encourage pull requests and issues tracking via Github, and the [target-devel
1. If using systemd, copy `org.kernel.TCMUService1.service` to `/usr/share/dbus-1/system-services/` and `tcmu-runner.service` to `/lib/systemd/system`.
1. Or, run it from the command line as root. It should print the num... |
Fix missing image filename path for linux processes | @@ -1174,7 +1174,7 @@ VOID PhpFillProcessItem(
{
PPH_STRING fileName;
- if (ProcessItem->QueryHandle)
+ if (ProcessItem->QueryHandle && !ProcessItem->IsSubsystemProcess)
{
PhGetProcessImageFileNameWin32(ProcessItem->QueryHandle, &ProcessItem->FileName);
}
|
rune/skeleton: remove the static definition of ssa frame
SSA frame is already calculated dynamically. | .fill 1, 8, 0 # STATE (set by CPU)
.fill 1, 8, 0 # FLAGS
- .quad encl_ssa # OSSA
+ .quad 0 # OSSA (set by skeleton)
.fill 1, 4, 0 # CSSA (set by CPU)
.fill 1, 4, 1 # NSSA
.quad encl_entry # OENTRY
@@ -99,9 +99,6 @@ err:
.section ".data", "aw"
-encl_ssa:
- .space 4096
-
xsave_area:
.fill 1, 4, 0x037F # FCW
.fill 5, 4, 0... |
gdb-helper: add gdb_show_traces
gdb_show_traces() dumps buffer traces.
Ease gdb debugging when vpp crashed... | @@ -185,6 +185,79 @@ gdb_show_session (int verbose)
unformat_free (&input);
}
+static int
+trace_cmp (void *a1, void *a2)
+{
+ vlib_trace_header_t **t1 = a1;
+ vlib_trace_header_t **t2 = a2;
+ i64 dt = t1[0]->time - t2[0]->time;
+ return dt < 0 ? -1 : (dt > 0 ? +1 : 0);
+}
+
+void
+gdb_show_traces ()
+{
+ vlib_trace_ma... |
ossl_shim: include core_names.h to resolve undeclared symbols | @@ -39,6 +39,7 @@ OPENSSL_MSVC_PRAGMA(comment(lib, "Ws2_32.lib"))
#include <openssl/bio.h>
#include <openssl/buffer.h>
#include <openssl/bn.h>
+#include <openssl/core_names.h>
#include <openssl/crypto.h>
#include <openssl/dh.h>
#include <openssl/err.h>
|
merge workaround to latest usb class: mstorage.c | @@ -612,6 +612,7 @@ static rt_err_t _ep_in_handler(ufunction_t func, rt_size_t size)
else
{
//rt_kprintf("warning:in stall path but not stall\n");
+
/* FIXME: Disable the operation or the disk cannot work. */
//rt_usbd_ep_set_stall(func->device, data->ep_in);
}
@@ -736,7 +737,7 @@ static void _cb_len_calc(ufunction_t f... |
config_map: pass properties that starts with '_debug.' | @@ -392,6 +392,20 @@ int property_count(char *key, int len, struct mk_list *properties)
return count;
}
+/*
+ * If the property starts with '_debug.', it's an internal property for
+ * some component of Fluent Bit, not the plugin it self.
+ */
+static int is_internal_debug_property(char *prop_name)
+{
+ if (strncmp(pro... |
FIX Issue Time calculation did return unsigned int instead of unsigned long
Fix uses now unsigned long. | @@ -125,14 +125,14 @@ static int snap_map_funcs(struct snap_card *card,
snap_action_type_t action_type);
/* Get Time in msec */
-static unsigned int tget_ms(void)
+static unsigned long tget_ms(void)
{
struct timeval now;
- unsigned int tms;
+ unsigned long tms;
gettimeofday(&now, NULL);
- tms = (unsigned int)(now.tv_se... |
set socket option IP_MTU_DISCOVER=IP_PMTUDISC_PROBE and IPV6_MTU_DISCOVER=IP_PMTUDISC_PROBE | @@ -1054,11 +1054,10 @@ CxPlatSocketContextInitialize(
//
// Windows: setsockopt IPPROTO_IP IP_DONTFRAGMENT TRUE.
- // Linux: IP_DONTFRAGMENT option is not available. IPV6_MTU_DISCOVER is the
- // apparent alternative.
- // TODO: Verify this.
+ // Linux: IP_DONTFRAGMENT option is not available. IP_MTU_DISCOVER/IPV6_MTU... |
provisioning/warewulf-vnfs: disable update repo for leap 15.1 on aarch64 only
(url is not available) | @@ -17,7 +17,7 @@ index 7bbe5b9..8998949 100644
#http://download.opensuse.org/update/leap/15.0/oss/"
+elif [ "$(uname -m)" = "aarch64" ]; then
+ ZYPP_MIRROR="http://download.opensuse.org/ports/aarch64/distribution/leap/15.1/repo/oss/,\
-+http://download.opensuse.org/ports/aarch64/update/leap/15.1/oss/"
++ #http://downl... |
nxplayer: Fix warnings by nxstyle | @@ -673,7 +673,7 @@ int nxplayer_main(int argc, char *argv[])
/* Release the NxPlayer context */
-// nxplayer_detach(pPlayer);
+ /* nxplayer_detach(pPlayer); */
nxplayer_release(pPlayer);
return OK;
|
Clarify DNS callbacks | @@ -236,6 +236,10 @@ Provides DNS resolution for a hostname.
- `domain` domain name
- `function(net.socket, ip)` callback function. The first parameter is the socket, the second parameter is the IP address as a string.
+If a callback `c` is provided, it is equivalent to having called `:on("dns",
+c)` on this socket; th... |
OcDebugLogLib: Fix null pointer dereference | @@ -355,13 +355,6 @@ OcLogAddEntry (
return Status;
}
-/**
- Retrieve pointer to the log buffer
-
- @param[in] This This protocol.
- @param[in] OcLogBuffer Address to store the buffer pointer.
-
-**/
EFI_STATUS
EFIAPI
OcLogGetLog (
@@ -385,15 +378,6 @@ OcLogGetLog (
return Status;
}
-/**
- Save the current log
-
- @par... |
input_manager.c: Correct log | @@ -102,7 +102,7 @@ press_back_or_turn_screen_on(struct controller *controller) {
msg.type = CONTROL_MSG_TYPE_BACK_OR_SCREEN_ON;
if (!controller_push_msg(controller, &msg)) {
- LOGW("Could not request 'turn screen on'");
+ LOGW("Could not request 'press back or turn screen on'");
}
}
|
fix typos in sway-input.5.scd | @@ -233,7 +233,7 @@ correct seat.
*seat* <name> idle_wake <sources...>
Sets the set of input event sources which can wake the seat from
its idle state, as a space separated list of source names. Valid names are
- "keyboard", "pointer", "touchpad", "touch", "tablet pad", "tablet tool",
+ "keyboard", "pointer", "touchpad... |
Simplify byteread_int16() and byteread_int32() | @@ -161,7 +161,8 @@ int byteread_int16(bytestream * s, uint16_t * value)
return bytestream_error(s);
}
else {
- *value = (s->data[s->ptr] << 8) | s->data[s->ptr + 1];
+ const uint8_t * ptr = s->data + s->ptr;
+ *value = (ptr[0] << 8) | ptr[1];
s->ptr += 2;
return 0;
}
@@ -186,12 +187,9 @@ int byteread_int32(bytestream ... |
out_datadog: switch noisy info level to debug level | @@ -376,12 +376,12 @@ static void cb_datadog_flush(struct flb_event_chunk *event_chunk,
}
else {
if (client->resp.payload) {
- flb_plg_info(ctx->ins, "%s%s, port=%i, HTTP status=%i payload=%s",
+ flb_plg_debug(ctx->ins, "%s%s, port=%i, HTTP status=%i payload=%s",
ctx->scheme, ctx->host, ctx->port,
client->resp.status, ... |
SNAT: fix overlapping address space test
change address/network of the second interface within VRF 10 | @@ -553,9 +553,9 @@ class TestSNAT(MethodHolder):
cls.pg4._local_ip4n = socket.inet_pton(socket.AF_INET, i.local_ip4)
cls.pg4._remote_hosts[0]._ip4 = "172.16.255.2"
cls.pg4.set_table_ip4(10)
- cls.pg5._local_ip4 = "172.16.255.3"
+ cls.pg5._local_ip4 = "172.17.255.3"
cls.pg5._local_ip4n = socket.inet_pton(socket.AF_INET... |
replace int_wid with int_awid in axis_ram_writer | @@ -50,7 +50,7 @@ module axis_ram_writer #
reg int_awvalid_reg, int_awvalid_next;
reg int_wvalid_reg, int_wvalid_next;
reg [ADDR_WIDTH-1:0] int_addr_reg, int_addr_next;
- reg [AXI_ID_WIDTH-1:0] int_wid_reg, int_wid_next;
+ reg [AXI_ID_WIDTH-1:0] int_awid_reg, int_awid_next;
wire int_full_wire, int_empty_wire, int_rden_... |
Emitter: Func pipe now rewrites the tree type to be a call.
Keyword args will be dispatching on the tree type, and this makes
doing that simpler. | @@ -3642,6 +3642,7 @@ static void eval_func_pipe(lily_emit_state *emit, lily_ast *ast,
/* This particular operation is a special case. In nearly any other case,
evaluating a tree should not damage the subtrees in any way. I'm doing it
this way only because calls are hard. */
+ ast->tree_type = tree_call;
eval_call(emit... |
fix: debian build settings for LLVM package names
there's no `llvm-8.0`, but instead it's `llvm-8` in Ubuntu. | @@ -4,10 +4,10 @@ Section: misc
Priority: optional
Standards-Version: 3.9.5
Build-Depends: debhelper (>= 9), cmake,
- libllvm9 | libllvm8.0 | libllvm6.0 | libllvm3.8 [!arm64] | libllvm3.7 [!arm64],
- llvm-9-dev | llvm-8.0-dev | llvm-6.0-dev | llvm-3.8-dev [!arm64] | llvm-3.7-dev [!arm64],
- libclang-9-dev | libclang-8.... |
contact-store: lte rather than lth | |^
^- (quip card _state)
=/ old (~(got by rolodex) ship)
- ?: (lth timestamp last-updated.old)
+ ?: (lte timestamp last-updated.old)
[~ state]
=/ contact (edit-contact old edit-field)
?: =(old contact)
|
Fix bug in `lv_tileview_scrl_signal` | @@ -376,7 +376,7 @@ static lv_res_t lv_tileview_scrl_signal(lv_obj_t * scrl, lv_signal_t sign, void
if(!ext->drag_right_en && indev->proc.types.pointer.vect.x < 0 && x < -(ext->act_id.x * w)) {
lv_page_start_edge_flash(tileview, LV_PAGE_EDGE_RIGHT);
- lv_obj_set_x(scrl, -ext->act_id.x * w + top);
+ lv_obj_set_x(scrl, -... |
Windows share connector deactivated by default in menu
since jcifs-ng.jar cannot be distributed | <!--repositoryconnector name="LiveLink" class="org.apache.manifoldcf.crawler.connectors.livelink.LivelinkConnector"/-->
<repositoryconnector name="Jira" class="org.apache.manifoldcf.crawler.connectors.jira.JiraRepositoryConnector"/>
<repositoryconnector name="JDBC" class="org.apache.manifoldcf.crawler.connectors.jdbc.J... |
Added Sum test in Integration_test | @@ -44,3 +44,16 @@ TEST_F(integration_test, PyMultiply)
log_write("metacall", LOG_LEVEL_DEBUG, "7's multiples dude!");
}
+
+TEST_F(integration_test, Sum)
+{
+ value ret = NULL;
+
+ ret = metacall("Sum", 5, 10);
+
+ EXPECT_NE((value)NULL, (value)ret);
+
+ EXPECT_EQ((int)value_to_long(ret), (int)15);
+
+ value_destroy(re... |
Author: fix mono spacing | @@ -18,7 +18,7 @@ import { PropFunc } from '~/types';
interface AuthorProps {
ship: string;
- date: number;
+ date?: number;
showImage?: boolean;
children?: ReactNode;
unread?: boolean;
@@ -113,11 +113,13 @@ export default function Author(props: AuthorProps & PropFunc<typeof Box>): React
lineHeight='tall'
fontFamily={s... |
Add CharaCard Agent ID | @@ -332,5 +332,6 @@ public enum AgentId : uint {
MycItemBox = 371, //Bozja Lost Finds Cache
MycItemBag = 372, //Bozja Lost Finds Holster
MycBattleAreaInfo = 375, //Bozja Recruitment
- OrnamentNoteBook = 376 //Accessories
+ OrnamentNoteBook = 376, //Accessories
+ CharaCard = 393 // AdventurerPlate
}
|
Fix possible memory leak on buffer overflow.
(All buffer push functions can panic (longjmp), skipping
deinit. Instead, we should use the garbage collected api). | @@ -98,43 +98,31 @@ static Janet janet_core_print(int32_t argc, Janet *argv) {
}
static Janet janet_core_describe(int32_t argc, Janet *argv) {
- JanetBuffer b;
- janet_buffer_init(&b, 0);
+ JanetBuffer *b = janet_buffer(0);
for (int32_t i = 0; i < argc; ++i)
- janet_description_b(&b, argv[i]);
- Janet ret = janet_strin... |
test-suite: skip warewulf-ipmitool check if not installed | @@ -14,6 +14,7 @@ fi
@test "[warewulf-ipmi] ipmitool compiled with lanplus" {
[[ "$ARCH" == "aarch64" ]] && skip "Skipping warewulf-ipmitool check for ARCH=$ARCH"
+ rpm -q --quiet warewulf-ipmi-ohpc || skip "Warewulf not installed, skipping warewulf-ipmitool check"
if [ -z "$IPMI_PASSWORD" ];then
flunk "IPMI_PASSWORD i... |
client session BUGFIX quit notif thread if session is invalid | @@ -1715,6 +1715,9 @@ nc_recv_notif_thread(void *arg)
break;
}
nc_notif_free(notif);
+ } else if ((msgtype == NC_MSG_NOTIF) && (session->status != NC_STATUS_RUNNING)) {
+ /* quit this thread once the session is broken */
+ break;
}
usleep(NC_CLIENT_NOTIF_THREAD_SLEEP);
|
Make compile-time BUFFERSIZE setting actually reach the compiler/preprocessor | @@ -1279,6 +1279,10 @@ CCOMMON_OPT += -DUSE_PAPI
EXTRALIB += -lpapi -lperfctr
endif
+ifdef BUFFERSIZE
+CCOMMON_OPT += -DBUFFERSIZE=$(BUFFERSIZE)
+endif
+
ifdef DYNAMIC_THREADS
CCOMMON_OPT += -DDYNAMIC_THREADS
endif
|
fpgainfo: don't destroy parent token
With the recent refactoring to introduce ref counting
for wrapped tokens, it is no longer correct to destroy
a parent token obtained from a properties object. The
reference to the parent token will be cleaned up when
the properties object is destroyed. | @@ -115,10 +115,7 @@ void fpgainfo_print_common(const char *hdr, fpga_properties props)
res = fpgaPropertiesGetObjectType(pprops, &objtype);
fpgainfo_print_err("reading objtype from properties", res);
-
- res = fpgaDestroyToken(&par);
- fpgainfo_print_err("destroying parent token", res);
- };
+ }
res = fpgaPropertiesGe... |
zephyr/shim/include/temp_sensor/temp_sensor.h: Format with clang-format
BRANCH=none
TEST=none | #define HAS_POWER_GOOD_PIN(node_id) DT_NODE_HAS_PROP(node_id, power_good_pin) ||
#define ANY_INST_HAS_POWER_GOOD_PIN \
- (DT_FOREACH_STATUS_OKAY(cros_ec_temp_sensor, HAS_POWER_GOOD_PIN) \
- 0)
+ (DT_FOREACH_STATUS_OKAY(cros_ec_temp_sensor, HAS_POWER_GOOD_PIN) 0)
enum temp_sensor_id {
#if DT_NODE_EXISTS(DT_PATH(named_te... |
xpath DOC change explanation of repeat structure | @@ -184,16 +184,19 @@ struct lyxp_expr {
* we do not parse it as an OrExpr but directly as PathExpr).
* Examples:
*
- * Expression: "/ *[key1 and key2 or key1 < key2]"
- * Tokens: '/', '*', '[', NameTest, 'and', NameTest, 'or', NameTest, '<', NameTest, ']'
- * Repeat: NULL, NULL, NULL, [AndExpr, NULL, NULL, NULL, [Rela... |
[CUDA] Fix race condition for external events
If a dependent CUDA event is still CL_QUEUED when pocl_cuda_notify is
triggered, assertions were failing because the event wasn't yet set up
properly. | @@ -1295,6 +1295,9 @@ pocl_cuda_notify (cl_device_id device, cl_event event, cl_event finished)
if (finished->queue && finished->queue->device->ops == device->ops)
return;
+ if (event->status == CL_QUEUED)
+ return;
+
pocl_cuda_event_data_t *event_data = (pocl_cuda_event_data_t *)event->data;
assert (event_data);
|
options/ansi: Implement wmemchr() | @@ -43,7 +43,6 @@ char *strncat(char *__restrict dest, const char *__restrict src, size_t max_size
}
int memcmp(const void *a, const void *b, size_t size) {
-
for(size_t i = 0; i < size; i++) {
auto a_byte = static_cast<const unsigned char *>(a)[i];
auto b_byte = static_cast<const unsigned char *>(b)[i];
@@ -212,7 +211... |
Ensure we use curl to download the provision file from the deb repo. | @@ -98,14 +98,14 @@ jobs:
install: |
case "${{ matrix.distro }}" in
ubuntu*|jessie|stretch|buster|bullseye)
- apt-get update && apt-get install -y wget lsb-release && apt-get clean all
+ apt-get update && apt-get install -y wget curl lsb-release && apt-get clean all
;;
esac
# Produce a binary artifact and place it in t... |
Make a list from ignored tests in TASKS | @@ -127,8 +127,7 @@ def do_analyze_coverage(outcome_file, args):
def do_analyze_driver_vs_reference(outcome_file, args):
"""Perform driver vs reference analyze."""
- ignored_tests = args['ignored'].split(',')
- ignored_tests = ['test_suite_' + x for x in ignored_tests]
+ ignored_tests = ['test_suite_' + x for x in args... |
Fix DefaultShader initialization; | @@ -1108,6 +1108,7 @@ static ShaderSource luax_checkshadersource(lua_State* L, int index, ShaderStage
} else {
for (int i = 0; lovrDefaultShader[i].length; i++) {
if (lovrDefaultShader[i].length == length && !memcmp(lovrDefaultShader[i].string, string, length)) {
+ *allocated = false;
return lovrGraphicsGetDefaultShade... |
log BUGFIX handle missing libyang errors
Refs | @@ -210,8 +210,14 @@ sr_errinfo_new_ly(sr_error_info_t **err_info, struct ly_ctx *ly_ctx)
struct ly_err_item *e;
e = ly_err_first(ly_ctx);
- /* this function is called only when an error is expected */
- assert(e);
+
+ /* this function is called only when an error is expected, but it is still possible there
+ * will be... |
examples/efuse: fix issue with flash related commands in CI tests
Relevant:
Closes | @@ -15,7 +15,7 @@ from pytest_embedded_idf.serial import IdfSerial
# which is required only for this test
class EfuseFlashEncSerial(IdfSerial):
- @IdfSerial.use_esptool
+ @IdfSerial.use_esptool()
def write_flash_no_enc(self) -> None:
self.app.flash_settings['encrypt'] = False
flash_files = []
|
PtrToStringAnsi withou strlen
ps. PtrToStringAuto has something related to system encoding... | @@ -536,7 +536,7 @@ namespace SLua
string s = null;
if (strlen > 0 && str != IntPtr.Zero)
{
- s = Marshal.PtrToStringAnsi(str, strlen);
+ s = Marshal.PtrToStringAnsi(str);
// fallback method
if(s == null)
{
|
Remove mutex lock inside bundleContext_destroy. Not needed and leads to thread sanitizer issues. | @@ -84,9 +84,6 @@ celix_status_t bundleContext_destroy(bundle_context_pt context) {
celix_status_t status = CELIX_SUCCESS;
if (context != NULL) {
- celixThreadMutex_lock(&context->mutex);
-
-
assert(hashMap_size(context->bundleTrackers) == 0);
hashMap_destroy(context->bundleTrackers, false, false);
assert(hashMap_size(... |
Update build instructions for Visual Studio | @@ -101,7 +101,22 @@ Creating Visual Studio project files from the command line:
md build
cd build
- cmake -G "Visual Studio 10" ..
+ cmake -G "Visual Studio 15 2017" ..
+
+.. note::
+
+ You should replace the name of the generator (``-G`` flag) matching
+ the Visual Studio version installed on your system. Currently, ... |
fixed store operation | @@ -806,8 +806,7 @@ d_m3Op (f64_Store)
#define d_m3Store_i(SRC_TYPE, SIZE_TYPE) \
d_m3Op (SRC_TYPE##_Store_##SIZE_TYPE##_sr) \
{ \
- u32 operand = * (u32 *) (_sp + immediate (i32)); \
- \
+ u32 operand = slot (u32); \
u32 offset = immediate (u32); \
operand += offset; \
\
@@ -824,8 +823,7 @@ d_m3Op (SRC_TYPE##_Store_##... |
Update netdb.txt
Add:
52.71.124.24:18888 Jason
Remove:
92.223.80.93:16775 Darkmoon
149.28.131.30:16775 Alex | 47.100.202.206:56600
47.104.147.94:13655
52.69.99.30:13655
+52.71.124.24:18888
52.80.150.210:13655
52.83.132.76:13655
52.83.192.224:13655
78.46.82.220:16775
88.198.100.226:13654
92.223.72.45:16775
-92.223.80.93:16775
95.216.36.234:16775
98.126.204.50:16775
104.40.243.113:31337
139.99.120.77:13655
139.99.124.23:13655
13... |
Don't assume the platform will provide uart1.h | #include "net/ipv6/uip.h"
#include "net/ipv6/uip-ds6.h"
#include "dev/slip.h"
-#include "dev/uart1.h"
#include <string.h>
#define UIP_IP_BUF ((struct uip_ip_hdr *)&uip_buf[UIP_LLH_LEN])
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.