message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
doc: fix+add link | @@ -477,4 +477,7 @@ Any plugin expects the passed `KeySet` to be **rewinded**.
## Further Readings
-- [Details of how to write a storage plugin](doc/tutorials/storage-plugins.md)
+Read more about:
+
+- [contracts](/doc/help/elektra-contracts.md)
+- [of how to write a storage plugin](storage-plugins.md)
|
khan: comment fixes | @@ -546,7 +546,7 @@ _khan_sock_err_chdir:
u3_king_bail();
}
-/* _khan_born_news(): initialization complete, open socket.
+/* _khan_born_news(): initialization complete; vane available.
*/
static void
_khan_born_news(u3_ovum* egg_u, u3_ovum_news new_e)
@@ -566,7 +566,7 @@ _khan_born_bail(u3_ovum* egg_u, u3_noun lud)
u3l... |
periph_ctrl: port*_CRITICAL vanilla FreeRTOS compliance | @@ -29,26 +29,26 @@ static uint32_t get_rst_en_reg(periph_module_t periph);
void periph_module_enable(periph_module_t periph)
{
- portENTER_CRITICAL(&periph_spinlock);
+ portENTER_CRITICAL_SAFE(&periph_spinlock);
DPORT_SET_PERI_REG_MASK(get_clk_en_reg(periph), get_clk_en_mask(periph));
DPORT_CLEAR_PERI_REG_MASK(get_rst... |
fix(tests): return error code when build fails | @@ -22,6 +22,7 @@ echo "Running $testcase:"
west build -d build/$testcase -b native_posix -- -DZMK_CONFIG=$testcase > /dev/null 2>&1
if [ $? -gt 0 ]; then
echo "FAIL: $testcase did not build" >> ./build/tests/pass-fail.log
+ exit 1
else
./build/$testcase/zephyr/zmk.exe | sed -e "s/.*> //" | tee build/$testcase/keycode_... |
ble_mesh: Fixes wrong subnet info used for Friend Clear
When Friend node tries to send Friend Clear message to other
Friend nodes, it should use the subnet information based on
the net_idx from friendship. | @@ -363,7 +363,7 @@ static int unseg_app_sdu_unpack(struct bt_mesh_friend *frnd,
meta->is_dev_key = (app_idx == BLE_MESH_KEY_DEV);
bt_mesh_net_header_parse(&buf->b, &meta->net);
err = bt_mesh_app_key_get(meta->subnet, app_idx, &meta->key,
- &meta->aid, NODE, meta->net.ctx.addr);
+ &meta->aid, 0x0, meta->net.ctx.addr);
... |
Fix OpenVR models; | @@ -152,6 +152,7 @@ ModelData* lovrModelDataFromOpenVRModel(OpenVRModel* vrModel) {
vec_init(&root->meshes);
vec_push(&root->meshes, 0);
vec_init(&root->children);
+ mat4_identity(root->transform);
modelData->root = root;
modelData->hasNormals = 1;
|
Replace fill with class fill-current | @@ -13,7 +13,7 @@ export const Lock = (props: React.SVGProps<SVGSVGElement>) => (
fillRule="evenodd"
clipRule="evenodd"
d="M8 5H9C9.55228 5 10 5.44772 10 6V11C10 11.5523 9.55229 12 9 12H1C0.447716 12 0 11.5523 0 11V6C0 5.44772 0.447715 5 1 5H2V3C2 1.34315 3.34315 0 5 0C6.65685 0 8 1.34315 8 3V5ZM7 5V3C7 1.89543 6.10457... |
docs/library/machine.Timer.rst: Add mention of constructor arguments. | @@ -32,6 +32,8 @@ Constructors
Construct a new timer object of the given id. Id of -1 constructs a
virtual timer (if supported by a board).
+ See ``init`` for parameters of initialisation.
+
Methods
-------
|
Swap #if blocks in uid.c so target platform gets checked before host
This avoids the case where a UEFI build on FreeBSD tries to call the system
issetugid function instead of returning 0 as it should do.
CLA: trivial | #include <openssl/crypto.h>
#include <openssl/opensslconf.h>
-#if defined(__OpenBSD__) || (defined(__FreeBSD__) && __FreeBSD__ > 2) || defined(__DragonFly__)
-
-# include OPENSSL_UNISTD
+#if defined(OPENSSL_SYS_WIN32) || defined(OPENSSL_SYS_VXWORKS) || defined(OPENSSL_SYS_UEFI)
int OPENSSL_issetugid(void)
{
- return is... |
Improve find angle header file | @@ -310,7 +310,10 @@ end
function find_angle_header_file(target, file)
local headerpaths = modules_support(target).toolchain_includedirs(target)
for _, dep in ipairs(target:orderdeps()) do
- table.insert(headerpaths, dep:get("sysincludedirs") or dep:get("includedirs"))
+ local includedirs = dep:get("sysincludedirs") or... |
Fix to GNSS test code only.
The computation of the number of expected decoded messages wasn't taking the number of outsized messages into account correctly; it does now. | @@ -735,7 +735,7 @@ U_PORT_TEST_FUNCTION("[gnssMsg]", "gnssMsgReceiveNonBlocking")
uPortLog("\n");
# ifdef U_GNSS_MSG_TEST_INCLUDE_A_POS
if (z == 0) {
- if (pTmp->numDecoded - pTmp->numOutsize < pTmp->numDecodedMin) {
+ if (pTmp->numDecoded + pTmp->numOutsize < pTmp->numDecodedMin) {
bad = true;
}
} else {
@@ -744,11 +... |
use H2O_SIZE_T_LONGEST_STR from | @@ -109,8 +109,8 @@ static inline void h2o_probe_log_response(h2o_req_t *req, uint64_t req_index)
H2O_PROBE_CONN(SEND_RESPONSE, req->conn, req_index, req->res.status);
if (H2O_CONN_IS_PROBED(SEND_RESPONSE_HEADER, req->conn)) {
if (req->res.content_length != SIZE_MAX) {
- char buf[sizeof(H2O_UINT64_LONGEST_STR)];
- size... |
Add news entries, and fix a typo | Next Release
============
+ * Experimental support for wire compression.
+ * Support for snappy and zlib. MongoDB 3.4 only supports snappy, while zlib
+ support is expected in MongoDB 3.6. Wire compression is still experimental
+ for MongoDB clients, and therefore hidden from default configuration.
+ The enable, config... |
Updated README.md - incremental log processing. | @@ -489,7 +489,8 @@ your local machine!
#### INCREMENTAL LOG PROCESSING ####
GoAccess has the ability to process logs incrementally through the on-disk
-B+Tree database. It works in the following way:
+[B+Tree](https://github.com/allinurl/goaccess#storage) database. It works in
+the following way:
1. A data set must be... |
in_netif: add missing return type | @@ -184,7 +184,7 @@ static inline uint64_t calc_diff(struct netif_entry *entry)
}
#define LINE_LEN 256
-static read_proc_file_linux(struct flb_in_netif_config *ctx)
+static int read_proc_file_linux(struct flb_in_netif_config *ctx)
{
FILE *fp = NULL;
char line[LINE_LEN] = {0};
|
docs/conf: Version 2.12.0.6. | @@ -74,7 +74,7 @@ copyright = '2014-2019, Damien P. George, Paul Sokolovsky, and contributors'
#
# We don't follow "The short X.Y version" vs "The full version, including alpha/beta/rc tags"
# breakdown, so use the same version identifier for both to avoid confusion.
-version = release = '2.12.0.5'
+version = release =... |
Dealing with white spaces in files path on cert sign script | @echo off
SET "SignToolDir=C:\Program Files (x86)\Windows Kits\8.1\bin\x64"
-for /r "%~dp0\..\" %%i in (*.sys) do "%SignToolDir%\signtool.exe" sign /f %~dp0\VirtIOTestCert.pfx %%i
-for /r "%~dp0\..\" %%i in (*.cat) do "%SignToolDir%\signtool.exe" sign /f %~dp0\VirtIOTestCert.pfx %%i
+for /r "%~dp0\..\" %%i in (*.sys) d... |
Fixup EVP-MAC-KMAC documentation
Fixes
Added example that shows setup of XOF. | @@ -42,11 +42,78 @@ The length of the "size" parameter should not exceed that of a B<size_t>.
=item "xof" (B<OSSL_MAC_PARAM_XOF>) <integer>
+The "xof" parameter value is expected to be 1 or 0. Use 1 to enable XOF mode.
+The default value is 0.
+
=back
-The "xof" parameter value is expected to be 1 or 0. Use 1 to enable... |
Minor bug when autoremove in runtime. | @@ -173,9 +173,8 @@ sub_install(){
sub_clean(){
echo "clean dependencies"
- $SUDO_CMD apt-get -y remove wget
+ $SUDO_CMD apt-get -y remove wget gpg apt-transport-https
$SUDO_CMD apt-get -y autoclean
- $SUDO_CMD apt-get -y autoremove
}
# Configuration
|
sokol sound works | @@ -259,6 +259,14 @@ static tic80* tic = NULL;
static void app_init(void)
{
+ saudio_desc desc = {0};
+ desc.num_channels = 2;
+
+ saudio_setup(&desc);
+
+ printf("channels %i\n", saudio_channels());
+ printf("samplerate %i\n", saudio_sample_rate());
+
FILE* file = fopen("cart.tic", "rb");
if(file)
@@ -274,7 +282,7 @@ ... |
GIF loader: skip unknown extension block | @@ -420,6 +420,7 @@ gif_load_next(
{
SIXELSTATUS status = SIXEL_FALSE;
unsigned char buffer[256];
+ unsigned char c;
int x;
int y;
int w;
@@ -427,7 +428,7 @@ gif_load_next(
int len;
for (;;) {
- switch (gif_get8(s)) {
+ switch ((c = gif_get8(s))) {
case 0x2C: /* Image Separator (1 byte) */
x = gif_get16le(s); /* Image ... |
links: adds titles to remote content
Fixes | @@ -119,8 +119,10 @@ export const LinkItem = (props: LinkItemProps) => {
overflow="hidden"
onClick={markRead}
>
+ <Text p={2}>{contents[0].text}</Text>
<RemoteContent
ref={r => { remoteRef.current = r }}
+ renderUrl={false}
url={contents[1].url}
text={contents[0].text}
unfold={true}
|
WIP py/builtinimport: Refetch the module from sys.modules before returning it.
This allows module to wrap itself in some proxy (e.g. for read-only access),
and import to return the updated version. | @@ -472,7 +472,15 @@ mp_obj_t mp_builtin___import__(size_t n_args, const mp_obj_t *args) {
return module_obj;
}
// Otherwise, we need to return top-level package
+ #ifdef REFETCH_MODULE_OBJ_FROM_SYS_MODULE
+ // Don't return the original module that we created, return what's now
+ // stored in sys.modules. This allows t... |
driver/stm_mems_common.h: Format with clang-format
BRANCH=none
TEST=none | * Read single register
*/
static inline int st_raw_read8(const int port,
- const uint16_t i2c_spi_addr_flags,
- const int reg, int *data_ptr)
+ const uint16_t i2c_spi_addr_flags, const int reg,
+ int *data_ptr)
{
/* TODO: Implement SPI interface support */
return i2c_read8(port, i2c_spi_addr_flags, reg, data_ptr);
@@ -... |
bootstrap-t4p4s clones into t4p4s, not t4p4s-16 | @@ -37,7 +37,7 @@ git clone --recursive https://github.com/p4lang/p4c && cd p4c && git checkout $P
WAITPROC_P4C="$!"
[ $PARALLEL_INSTALL -ne 0 ] || wait "$WAITPROC_P4C"
-[ -d t4p4s-16 ] || git clone --recursive https://github.com/P4ELTE/t4p4s t4p4s-16 &
+[ -d t4p4s-16 ] || git clone --recursive https://github.com/P4ELT... |
Update FOV documentation. | @@ -51,23 +51,33 @@ typedef struct TCOD_Map {
} TCOD_Map;
typedef TCOD_Map* TCOD_map_t;
/**
- * Field-of-view options.
+ \rst
+ Field-of-view options for :any:`TCOD_map_compute_fov`.
+ \endrst
*/
typedef enum {
/**
- * Basic: http://roguebasin.roguelikedevelopment.org/index.php?title=Ray_casting
+ Trace multiple Bresen... |
grib_get_data: add -s option to set keys | @@ -29,6 +29,7 @@ grib_option grib_options[]={
{"p:",0,0,0,1,0},
{"F:","format","\n\t\tC style format for values. Default is \"%.10e\"\n",0,1,0},
{"w:",0,0,0,1,0},
+ {"s:",0,0,0,1,0},
{"f",0,0,0,1,0},
{"G",0,0,0,1,0},
{"7",0,0,0,1,0},
@@ -93,6 +94,12 @@ int grib_tool_new_handle_action(grib_runtime_options* options, gri... |
Fixed callbacks
This fixes the callback versions of the addDevice
and initPlatform functions. I think I inadvertantly
removed the version of the functions that exposed
the callback in a past cleanup this restors the verson
of the functions that calls the handler. | @@ -447,6 +447,16 @@ int jni_oc_add_device(const char *uri, const char *rt, const char *name,
}
%}
+%rename(addDevice) jni_oc_add_device1;
+%inline %{
+int jni_oc_add_device1(const char *uri, const char *rt, const char *name,
+ const char *spec_version, const char *data_model_version,
+ oc_add_device_cb_t add_device_cb... |
server session BUGFIX validate data before passing them into reply | @@ -401,7 +401,7 @@ nc_clb_default_get_schema(struct lyd_node *rpc, struct nc_session *UNUSED(sessio
data = lyd_new_path(NULL, server_opts.ctx, "/ietf-netconf-monitoring:get-schema/data", model_data,
LYD_ANYDATA_STRING, LYD_PATH_OPT_OUTPUT);
- if (!data) {
+ if (!data || lyd_validate(&data, LYD_OPT_RPCREPLY, NULL)) {
E... |
Check if path part ends with dir sep upfront in `Path.join` | @@ -257,22 +257,22 @@ static Value joinNative(DictuVM *vm, int argCount, Value *args) {
}
}
+ ObjString* part;
// resultSize = # of dir separators that will be used + length of each string arg
size_t resultSize = abs(argCount - 1); // abs is needed her because of a clang bug
- for (int i = 0; i < argCount; ++i) resultS... |
io: tls: do not assume handshake is in async mode | @@ -326,7 +326,6 @@ int net_io_tls_handshake(void *_u_conn, void *_th)
struct flb_tls_session *session;
struct flb_upstream_conn *u_conn = _u_conn;
struct flb_upstream *u = u_conn->u;
-
struct flb_thread *th = _th;
session = flb_tls_session_new(u->tls->context);
@@ -366,6 +365,21 @@ int net_io_tls_handshake(void *_u_co... |
Fix potential wraparound in conn_update_recv_rate()
This is unlikely to wraparound in the real world, but fixing it makes the code easier to fuzz. | @@ -548,7 +548,7 @@ static void conn_update_recv_rate(ngtcp2_conn *conn, size_t datalen,
window = conn->cstat.min_rtt == UINT64_MAX ? NGTCP2_DEFAULT_INITIAL_RTT
: conn->cstat.min_rtt * 2;
- if (conn->rx.rate.start_ts + window > ts) {
+ if (window > ts - conn->rx.rate.start_ts) {
return;
}
|
SAM E54 Xplained Pro: applies reviewer feedback | @@ -166,9 +166,9 @@ void board_init(void)
#endif
// LED0 init
- gpio_set_pin_function(BUTTON_PIN, GPIO_PIN_FUNCTION_OFF);
+ gpio_set_pin_function(LED_PIN, GPIO_PIN_FUNCTION_OFF);
gpio_set_pin_direction(LED_PIN, GPIO_DIRECTION_OUT);
- gpio_set_pin_level(LED_PIN, 1);
+ board_led_write(0);
#if CFG_TUSB_DEBUG >= 2
uart_sen... |
Use h2o_memcpy instead of memcpy in `APPEND` | @@ -511,7 +511,7 @@ static h2o_iovec_t build_request(struct st_h2o_http1client_t *client, h2o_iovec_
} while (0)
#define APPEND(s, l) \
do { \
- memcpy(buf.base + offset, (s), (l)); \
+ h2o_memcpy(buf.base + offset, (s), (l)); \
offset += (l); \
} while (0)
#define APPEND_STRLIT(lit) APPEND((lit), sizeof(lit) - 1)
|
Fix add missing condition to init logstash or not | @@ -95,8 +95,10 @@ if [[ "$NODETYPE" = *mono* ]]; then
if [[ "$STATE" = *initialized* ]];
then
+ if [[ "$AnalyticsActivation" = *true* ]]; then
cd $AS_HOME/scripts
run_as ${DATAFARI_USER} "bash as-manager.sh init_logstash";
+ fi
cd $DIR
|
{AH} add htslib/win to MANIFEST | #
include MANIFEST.in
include COPYING
+include NEWS
include INSTALL
include KNOWN_BUGS
include THANKS
@@ -31,6 +32,8 @@ exclude bcftools/config.h
# htslib
include htslib/*.c
include htslib/*.h
+include htslib/INSTALL
+include htslib/NEWS
exclude htslib/config.h
include htslib/Makefile
include htslib/htslib_vars.mk
@@ -... |
linux/trace: missing ARM_pc/ARM_cpsr for Android arm64 | @@ -378,6 +378,13 @@ static size_t arch_getPC(pid_t pid, uint64_t* pc, uint64_t* status_reg HF_ATTR_U
#endif /* defined(__i386__) || defined(__x86_64__) */
#if defined(__arm__) || defined(__aarch64__)
+#if !defined(ARM_pc)
+#define ARM_pc uregs[15]
+#endif
+#if !defined(ARM_cpsr)
+#define ARM_cpsr uregs[16]
+#endif /* ... |
Improve shader compilation error; | @@ -1631,7 +1631,14 @@ static GLuint compileShader(GLenum type, const char** sources, int count) {
char* log = malloc(logLength);
lovrAssert(log, "Out of memory");
glGetShaderInfoLog(shader, logLength, &logLength, log);
- lovrThrow("Could not compile shader:\n%s", log);
+ const char* name;
+ switch (type) {
+ case GL_V... |
ames: pop the next packet, not the first packet again | |- ^+ packet-pump
?: =(0 sot) packet-pump
?: =(~ liv) packet-pump
- =^ hed liv (pop:packet-queue live.state)
+ =^ hed liv (pop:packet-queue liv)
=. packet-pump (give %send (to-static-fragment hed))
$(sot (dec sot))
:: +on-wake: handle packet timeout
|
Add a flag to clap_event to indicate if an event is live
Fixes | @@ -27,6 +27,12 @@ enum {
};
typedef int32_t clap_event_type;
+enum {
+ // Should be true if the events is external to the host, like a live user input
+ CLAP_EVENT_IS_LIVE = 1 << 0,
+};
+typedef int32_t clap_event_flags;
+
/**
* Note on, off, end and choke events.
* In the case of note choke or end events:
@@ -174,6 +... |
py/asmx64: Fix bug in assembler when creating disp with r13 and 0 offset | @@ -192,7 +192,7 @@ STATIC void asm_x64_write_r64_disp(asm_x64_t *as, int r64, int disp_r64, int dis
return;
}
- if (disp_offset == 0 && disp_r64 != ASM_X64_REG_RBP) {
+ if (disp_offset == 0 && disp_r64 != ASM_X64_REG_RBP && disp_r64 != ASM_X64_REG_R13) {
asm_x64_write_byte_1(as, MODRM_R64(r64) | MODRM_RM_DISP0 | MODRM... |
change the return type of TSCH_CALLBACK_PACKET_READY | @@ -140,7 +140,7 @@ void TSCH_CALLBACK_NEW_TIME_SOURCE(const struct tsch_neighbor *old, const struct
/* Called by TSCH every time a packet is ready to be added to the send queue */
#ifdef TSCH_CALLBACK_PACKET_READY
-void TSCH_CALLBACK_PACKET_READY(void);
+int TSCH_CALLBACK_PACKET_READY(void);
#endif
/***** External Var... |
CI: use docker function for building
Use the docker function that contains
the environment for improved caching
instead of continuously updating
the docker command in build.yml.
This is mostly old functionality,
the primary benefit is that it is
easy for the user to test with the CI
environment. | @@ -132,6 +132,6 @@ jobs:
# Run test
# FIXME: (2023) Remove "ccache -c", workaround for cache growing
# too large from ccache CI/ccache configuration mismatch.
- docker run --privileged --sysctl net.ipv6.conf.all.disable_ipv6=0 -e GITHUB_JOB -e GITHUB_REF -e GITHUB_SHA -e GITHUB_REPOSITORY -e GITHUB_REPOSITORY_OWNER -e... |
try_pkcs12(): cleanse passphrase so it is not left on the stack | @@ -619,9 +619,10 @@ static int try_pkcs12(struct extracted_param_data_st *data, OSSL_STORE_INFO **v,
}
ctx->cached_info = infos;
}
- }
p12_end:
+ OPENSSL_cleanse(tpass, sizeof(tpass));
PKCS12_free(p12);
+ }
*v = sk_OSSL_STORE_INFO_shift(ctx->cached_info);
}
|
Fix another issue on of inheritance table
Previously, when creating a APPEND node for inheritance table, if
subpaths has different number segments in gp_distribution_policy,
the whole APPEND node might be assigned with a wrong numsegments,
so some segments can not get plans and lost data in the results. | @@ -1531,8 +1531,16 @@ set_append_path_locus(PlannerInfo *root, Path *pathnode, RelOptInfo *rel,
}
else if (CdbPathLocus_IsPartitioned(pathnode->locus) &&
CdbPathLocus_IsPartitioned(projectedlocus))
+ {
+ /*
+ * subpaths have different distributed policy, mark it as random
+ * distributed and set the numsegments to the... |
update wdsp patch in sdr_transceiver_emb | --- old/wdsp-master/linux_port.c
+++ wdsp-master/linux_port.c
-@@ -45,7 +45,7 @@
- void InitializeCriticalSectionAndSpinCount(pthread_mutex_t *mutex,int count) {
- pthread_mutexattr_t mAttr;
- pthread_mutexattr_init(&mAttr);
+@@ -49,7 +49,7 @@ void InitializeCriticalSectionAndSpinCou
+ // DL1YCF: MacOS X does not have ... |
Make sure to set deriv_idx | @@ -516,9 +516,9 @@ static int mpfunc(int m, int n, FLT *p, FLT *deviates, FLT **derivs, void *priva
LinmathAxisAnglePose *world2lh = (LinmathAxisAnglePose *)&cameras[lh];
scale3d(rot, world2lh->AxisAngleRot, -1);
+ deriv_idx = survive_optimizer_get_camera_index(mpfunc_ctx) + lh * 7 + 3;
if (isfinite(up[0])) {
error = ... |
__builtin_ctzll, __builtin_clzll for Win32 | #include <intrin.h>
#define __builtin_popcount __popcnt
-#define __builtin_popcountll __popcnt64
static inline
int __builtin_ctz(uint32_t x) {
@@ -29,27 +28,58 @@ int __builtin_ctz(uint32_t x) {
}
static inline
-int __builtin_ctzll(unsigned long long x) {
+int __builtin_clz(uint32_t x) {
unsigned long ret;
- _BitScanFo... |
Logging invaliddata | @@ -205,12 +205,16 @@ public abstract class StratumServer
{
case SocketException sockEx:
if(!ignoredSocketErrors.Contains(sockEx.ErrorCode))
- logger.Error(() => $"[{connection.ConnectionId}] Connection error state: {ex}");
+ logger.Error(() => $"[{connection.ConnectionId}] Connection error: {ex}");
+ break;
+
+ case I... |
wincng: make more use of new helper functions | @@ -423,6 +423,24 @@ _libssh2_wincng_safe_free(void *buf, int len)
free(buf);
}
+/* Copy a big endian set of bits from src to dest.
+ * if the size of src is smaller than dest then pad the "left" (MSB)
+ * end with zeroes and copy the bits into the "right" (LSB) end. */
+static void
+memcpy_with_be_padding(unsigned cha... |
BugID:22604012:[http]check token str len to avoid memory writes out of bounds | @@ -522,6 +522,11 @@ int IOT_HTTP_DeviceNameAuth(void *handle)
goto do_exit;
}
+ if(strlen(pvalue) > IOTX_HTTP_AUTH_TOKEN_LEN - 1) {
+ http_err("token is out of size");
+ goto do_exit;
+ }
+
strcpy(iotx_http_context->p_auth_token, pvalue);
iotx_http_context->is_authed = 1;
HTTP_API_FREE(pvalue);
|
Doc: Tweak description of B-Tree duplicate tuples.
Defining duplicates as "close by" to each other was unclear. Simplify
the definition.
Backpatch: 13-, where deduplication was introduced (by commit 0d861bbb) | @@ -635,10 +635,10 @@ options(<replaceable>relopts</replaceable> <type>local_relopts *</type>) returns
A duplicate is a leaf page tuple (a tuple that points to a table
row) where <emphasis>all</emphasis> indexed key columns have values
that match corresponding column values from at least one other leaf
- page tuple tha... |
[CI] Exclude `.def` files from trailing-whites-pace check | @@ -42,6 +42,6 @@ done
# Check for trailing whitespaces and tabs
echo "Checking for trailing whitespaces and tabs"
-git diff --check HEAD $base || EXIT_STATUS=$?
+git diff --check HEAD $base -- ':(exclude)**.def' || EXIT_STATUS=$?
exit $EXIT_STATUS
|
doc/tutorials/webui: corrected webui directory name | @@ -46,7 +46,7 @@ To build Elektra with the elektra-web tool:
- Install and start the client (connects to the elektrad instance):
- - `cd client`
+ - `cd webui`
- `npm install`
- `npm start` (replaces `kdb run-web`)
@@ -188,7 +188,7 @@ authenticate users, e.g. by [username/password auth](https://www.digitalocean.co
`el... |
we'll have not only float/cat features in future
Note: mandatory check (NEED_CHECK) was skipped | @@ -24,7 +24,7 @@ namespace NCatboostCuda {
const auto& featureMetaInfo = featuresMetaInfo[featureIdx];
if (featureMetaInfo.Type == EFeatureType::Float) {
RegisterDataProviderFloatFeature(featureIdx);
- } else {
+ } else if (featureMetaInfo.Type == EFeatureType::Categorical) {
RegisterDataProviderCatFeature(featureIdx)... |
Fix Pagination numbers disappear | @@ -111,19 +111,31 @@ AjaxFranceLabs.PagerModule = AjaxFranceLabs.AbstractModule.extend({
elm.find('.go_n, .go_l').css('display', this.display);
}
elm.find('.page').css('display', 'none');
- elm.find('.page[page=' + this.pageSelected + ']').addClass('selected');
- elm.find('.page.selected').css('display', this.display)... |
libbpf-tools: update opensnoop for libbpf 1.0
Switch to libbpf 1.0 mode and adapt libbpf API usage accordingly. | @@ -220,7 +220,6 @@ int main(int argc, char **argv)
.parser = parse_arg,
.doc = argp_program_doc,
};
- struct perf_buffer_opts pb_opts;
struct perf_buffer *pb = NULL;
struct opensnoop_bpf *obj;
__u64 time_end = 0;
@@ -230,14 +229,9 @@ int main(int argc, char **argv)
if (err)
return err;
+ libbpf_set_strict_mode(LIBBPF_... |
build: fix centos 8 steam build install-dep
make install-dep sometimes failed at
downloading metadata for repository 'powertools-source':
disable unnecessary powertools-source repo.
Type: fix
Fixes: ("build: fix centos-8 'make install-deps'") | @@ -324,7 +324,7 @@ ifeq ($(OS_ID),rhel)
else ifeq ($(OS_ID)-$(OS_VERSION_ID),centos-8)
@sudo -E dnf install $(CONFIRM) dnf-plugins-core epel-release
@sudo -E dnf config-manager --set-enabled \
- $(shell dnf repolist all 2>/dev/null|grep -i powertools|cut -d' ' -f1)
+ $(shell dnf repolist all 2>/dev/null|grep -i powert... |
BugID:16944965: Reformat app Config.in | @@ -6,6 +6,18 @@ mainmenu "AliOS Things Configuration"
config AOS_BUILD
bool
default y
+ help
+ This option indicates AOS build env is running.
+
+config AOS_BUILD_BOARD
+ string
+ help
+ This option holds the name of the board that is going to build.
+
+config AOS_BUILD_APP
+ string
+ help
+ This option holds the name... |
RemoteContent: fix CORS fallback for images
Fixes urbit/landscape#994 | @@ -44,8 +44,13 @@ const Image = styled.img(system({ objectFit: true }), ...allSystemStyle);
export function RemoteContentImageEmbed(
props: ImageProps & RemoteContentEmbedProps
) {
- const { url, noCors = false, ...rest } = props;
+ const { url, ...rest } = props;
+ const [noCors, setNoCors] = useState(false);
const {... |
Fix deadlock querying some types of pipe handles on Win10 | @@ -673,6 +673,7 @@ VOID PhpUpdateHandleGeneral(
BOOLEAN disableFlushButton = FALSE;
BOOLEAN isFileOrDirectory = FALSE;
BOOLEAN isConsoleHandle = FALSE;
+ BOOLEAN isPipeHandle = FALSE;
FILE_FS_DEVICE_INFORMATION fileDeviceInfo;
FILE_MODE_INFORMATION fileModeInfo;
FILE_STANDARD_INFORMATION fileStandardInfo;
@@ -690,6 +6... |
Fix issues with undefined wsgi_daemon_process when compiling for Windows. | @@ -419,6 +419,8 @@ InterpreterObject *newInterpreterObject(const char *name)
int is_threaded = 0;
int is_forked = 0;
+ int is_service_script = 0;
+
const char *str = NULL;
/* Create handle for interpreter and local data. */
@@ -595,7 +597,10 @@ InterpreterObject *newInterpreterObject(const char *name)
* registering si... |
Fix cap for argc / envc + display an error if these values go above that
cap | @@ -203,9 +203,9 @@ char **uhyve_envp = NULL;
typedef struct {
int argc;
- int argsz[128];
+ int argsz[MAX_ARGC_ENVC];
int envc;
- int envsz[128];
+ int envsz[MAX_ARGC_ENVC];
} __attribute__ ((packed)) uhyve_cmdsize_t;
typedef struct {
@@ -1605,6 +1605,13 @@ int uhyve_loop(int argc, char **argv)
i++;
uhyve_envc = i;
+ ... |
tls13: add labels
add client and server cv magic words | MBEDTLS_SSL_TLS1_3_LABEL( exp_master , "exp master" ) \
MBEDTLS_SSL_TLS1_3_LABEL( ext_binder , "ext binder" ) \
MBEDTLS_SSL_TLS1_3_LABEL( res_binder , "res binder" ) \
- MBEDTLS_SSL_TLS1_3_LABEL( derived , "derived" )
+ MBEDTLS_SSL_TLS1_3_LABEL( derived , "derived" ) \
+ MBEDTLS_SSL_TLS1_3_LABEL( client_cv , "TLS 1.3, ... |
value BUGFIX sr_val_t does not support rpc/action envelopes
Fixes | @@ -844,7 +844,7 @@ sr_tree_to_val(const struct lyd_node *data, const char *path, sr_val_t **value)
sr_error_info_t *err_info = NULL;
struct ly_set *set = NULL;
- SR_CHECK_ARG_APIRET(!data || !path || !value, NULL, err_info)
+ SR_CHECK_ARG_APIRET(!data || (data->schema->nodetype & (LYS_RPC | LYS_ACTION)) || !path || !v... |
bignum_mod: Updated modulus lifecycle with mm and rr.
This patch updates the `mbedtls_mpi_mod_modulus_setup/free()`
methods to precalculate mm and rr(Montgomery const squared) during
setup and zeroize it during free.
A static `set_mont_const_square()` is added to manage the memory allocation
and parameter checking befo... | @@ -77,6 +77,9 @@ void mbedtls_mpi_mod_modulus_free( mbedtls_mpi_mod_modulus *m )
switch( m->int_rep )
{
case MBEDTLS_MPI_MOD_REP_MONTGOMERY:
+ mbedtls_platform_zeroize( (mbedtls_mpi_uint *) m->rep.mont.rr,
+ m->limbs );
+ mbedtls_free( (mbedtls_mpi_uint *)m->rep.mont.rr );
m->rep.mont.rr = NULL;
m->rep.mont.mm = 0; br... |
suppress the output from ping command to determine if internal access is available | @@ -19,7 +19,7 @@ ROCM_VERSION=${ROCM_VERSION:-4.0.0}
# Set the AOMP VERSION STRING and AOMP_PROJECT_REPO_BRANCH.
AOMP_GIT_INTERNAL_IP="gerrit-git.amd.com"
-ping -c 1 $AOMP_GIT_INTERNAL_IP 2> /dev/null
+ping -c 1 $AOMP_GIT_INTERNAL_IP 2> /dev/null >/dev/null
if [ $? != 0 ]; then
AOMP_VERSION=${AOMP_VERSION:-"13.0"}
AOM... |
pkg/columns/formatter/textcolumns: call buildFillString() in AdjustWidthsToContent() | @@ -297,6 +297,8 @@ func (tf *TextColumnsFormatter[T]) AdjustWidthsToContent(entries []*T, considerH
totalWidth += column.calculatedWidth
}
+ tf.buildFillString()
+
// Last but not least, add column dividers
totalWidth += len([]rune(tf.options.ColumnDivider)) * (len(tf.showColumns) - 1)
|
hv:vtd: fix MISRA-C violations on logical conjunctions need brackets
This patch fix MISRA-C violations in arch/x86/vtd.c
on logical conjunctions need brackets.
Acked-by: Anthony Xu | @@ -145,7 +145,7 @@ bool iommu_snoop_supported(const struct acrn_vm *vm)
{
bool ret;
- if (vm->iommu == NULL || vm->iommu->iommu_snoop) {
+ if ((vm->iommu == NULL) || (vm->iommu->iommu_snoop)) {
ret = true;
} else {
ret = false;
@@ -175,7 +175,7 @@ static int32_t register_hrhd_units(void)
uint32_t i;
int32_t ret = 0;
-... |
Simplelink GPIO HAL: Fix bug in pull and IRQ config readout | @@ -101,7 +101,7 @@ to_hal_cfg(PIN_Config pin_cfg, gpio_hal_pin_cfg_t *cfg)
}
/* Pulling config */
- switch(pin_cfg & PIN_BM_PULLING) {
+ switch(pin_cfg & (PIN_GEN | PIN_BM_PULLING)) {
case PIN_NOPULL: *cfg |= GPIO_HAL_PIN_CFG_PULL_NONE; break;
case PIN_PULLUP: *cfg |= GPIO_HAL_PIN_CFG_PULL_UP; break;
case PIN_PULLDOWN... |
samd: Fix a lock-up situation at high traffic.
This PR fixes a transmit lock-up, which happens, when data is received
and sent at the sime time at moderate to high speeds, like code
which just echoes incoming data.
In my case, an issue was reported here: | @@ -286,14 +286,14 @@ bool dcd_edpt_xfer (uint8_t rhport, uint8_t ep_addr, uint8_t * buffer, uint16_t
{
bank->PCKSIZE.bit.MULTI_PACKET_SIZE = total_bytes;
bank->PCKSIZE.bit.BYTE_COUNT = 0;
- ep->EPSTATUSCLR.reg |= USB_DEVICE_EPSTATUSCLR_BK0RDY;
- ep->EPINTFLAG.reg |= USB_DEVICE_EPINTFLAG_TRFAIL0;
+ ep->EPSTATUSCLR.reg ... |
There is mismach between function sdssplitlen() comments and implementation
when count is 0, return NULL | @@ -939,15 +939,13 @@ sds *sdssplitlen(const char *s, ssize_t len, const char *sep, int seplen, int *c
long start = 0, j;
sds *tokens;
- if (seplen < 1 || len < 0) return NULL;
-
+ if (seplen < 1 || len <= 0) {
+ *count = 0;
+ return NULL;
+ }
tokens = s_malloc(sizeof(sds)*slots);
if (tokens == NULL) return NULL;
- if ... |
Add prose test to not spawn mongocrypt if shared library is loaded | @@ -2675,13 +2675,27 @@ test_bypass_spawning_via_helper (const char *auto_encryption_opt)
mongoc_auto_encryption_opts_set_bypass_query_analysis (
auto_encryption_opts, true);
} else if (0 == strcmp (auto_encryption_opt, "cryptSharedLibRequired")) {
+ bson_t *schema =
+ get_bson_from_json_file ("./src/libmongoc/tests/"
... |
saves our public keys and deed sig in %jael on boot | $: yen/(set duct) :: trackers
:: XX use this ::
our=ship ::
+ sig=(unit oath) :: for a moon
:: XX reconcile with .dns.eth ::
tuf=(list turf) :: domains
fak/_| :: fake keys
:: sort-of single-homed
::
=. our.own.sub our
+ :: save our parent signature (only for moons)
+ ::
+ =. sig.own.sub sig.seed.tac
+ :: our initial pu... |
arch/imxrt: split hprtc conditional from lpsrtc in Make.defs
When LPSRTC is enabled, its config enables hprtc by selecting.
It means that Make.defs does not need the hprtc file to include
compilation under lpsrtc. Make.defs can include hprtc under hprtc
conditional. | @@ -157,8 +157,8 @@ endif
ifeq ($(CONFIG_IMXRT_SNVS_LPSRTC),y)
CHIP_CSRCS += imxrt_lpsrtc.c
-CHIP_CSRCS += imxrt_hprtc.c
-else ifeq ($(CONFIG_IMXRT_SNVS_HPRTC),y)
+endif
+ifeq ($(CONFIG_IMXRT_SNVS_HPRTC),y)
CHIP_CSRCS += imxrt_hprtc.c
endif
|
Add Object#memory_statistics for debug | @@ -1003,6 +1003,21 @@ static void c_object_instance_variables(struct VM *vm, mrbc_value v[], int argc)
SET_NIL_RETURN();
}
+
+static void c_object_memory_statistics(struct VM *vm, mrbc_value v[], int argc)
+{
+ int total, used, free, frag;
+ mrbc_alloc_statistics(&total, &used, &free, &frag);
+
+ console_printf("Memor... |
Only use Bidirectional Streams for Throughput Perf | @@ -297,9 +297,7 @@ ThroughputClient::StartQuic()
Status =
MsQuic->StreamOpen(
Shutdown.ConnHandle,
- DownloadLength != 0 ?
- QUIC_STREAM_OPEN_FLAG_NONE :
- QUIC_STREAM_OPEN_FLAG_UNIDIRECTIONAL,
+ QUIC_STREAM_OPEN_FLAG_NONE,
[](HQUIC Handle, void* Context, QUIC_STREAM_EVENT* Event) -> QUIC_STATUS {
return ((StreamConte... |
resgroup: add rolresgroup to pg_roles.
rolresgroup was added to pg_authid in previous commits, we also should
add it to pg_authid. | @@ -26,7 +26,8 @@ CREATE VIEW pg_roles AS
rolcreaterexthttp,
rolcreatewextgpfd,
rolcreaterexthdfs,
- rolcreatewexthdfs
+ rolcreatewexthdfs,
+ rolresgroup
FROM pg_authid;
CREATE VIEW pg_shadow AS
|
Fix netcore on netcore runtime in windows | @@ -18,7 +18,7 @@ netcore_win::netcore_win()
{
this->log = new logger();
this->log->disable();
- this->domain_id = 0;
+ this->domain_id = -1;
}
@@ -132,6 +132,7 @@ bool netcore_win::create_host() {
}
HRESULT hr;
+ bool flgasError = false;
*this->log << W("Setting ICLRRuntimeHost2 startup flags") << logger::endl;
@@ -14... |
Unclutter benchmark-hslua
The way benchmarks were defined was unnecessarily verbose. | @@ -61,42 +61,17 @@ setupTableWithFooField = do
Lua.pushstring "foo"
Lua.setfield (Lua.nthFromTop 2) "bar"
-getfieldBench :: Benchmark
-getfieldBench =
- let getFooField = Lua.getfield Lua.stackTop "foo"
- in luaBench "getfield" setupTableWithFooField getFooField
-
-getlfieldBench :: Benchmark
-getlfieldBench =
- let g... |
[clocks] ClockDividerN: make first output edge occur on first input edge | module ClockDividerN #(parameter DIV)(output logic clk_out = 1'b0, input clk_in);
- localparam DIV_COUNTER_WIDTH = $clog2(DIV);
+ localparam CWIDTH = $clog2(DIV);
localparam LOW_CYCLES = DIV / 2;
+ localparam HIGH_TRANSITION = LOW_CYCLES - 1;
+ localparam LOW_TRANSITION = DIV - 1;
generate
if (DIV == 1) begin
@@ -17,19... |
Fix typos in help | @@ -66,12 +66,12 @@ scrcpy_print_usage(const char *arg0) {
"\n"
" --force-adb-forward\n"
" Do not attempt to use \"adb reverse\" to connect to the\n"
- " the device.\n"
+ " device.\n"
"\n"
" --forward-all-clicks\n"
" By default, right-click triggers BACK (or POWER on) and\n"
" middle-click triggers HOME. This option di... |
in_random: use nanosecond API | #include <fluent-bit/flb_error.h>
#include <fluent-bit/flb_utils.h>
#include <fluent-bit/flb_stats.h>
+#include <fluent-bit/flb_time.h>
#define DEFAULT_INTERVAL_SEC 1
#define DEFAULT_INTERVAL_NSEC 0
@@ -78,7 +79,7 @@ static int in_random_collect(struct flb_input_instance *i_ins,
flb_input_buf_write_start(i_ins);
msgpac... |
better pos for combo on scoreboard | @@ -336,7 +336,7 @@ class Scoreboard(FrameObject):
return
number = number + "x"
n = len(number)
- x_start = self.frames[0].size[0] - int(n * self.combo[0].size[0])
+ x_start = self.frames[0].size[0] * 0.95 - int(n * self.combo[0].size[0])
self.drawnumber(background, x_start, y_offset, number, self.combo, alpha)
def dra... |
sdl/sdl: Add SDL_INIT_SENSOR for SDL 2.0.9 | // Package sdl is SDL2 wrapped for Go users. It enables interoperability between Go and the SDL2 library which is written in C. That means the original SDL2 installation is required for this to work. SDL2 is a cross-platform development library designed to provide low level access to audio, keyboard, mouse, joystick, a... |
esp_pm: Fix build error when CONFIG_PM_PROFILING is enabled | @@ -646,7 +646,7 @@ void IRAM_ATTR vApplicationSleep( TickType_t xExpectedIdleTime )
int64_t sleep_time_us = MIN(wakeup_delay_us, time_until_next_alarm);
if (sleep_time_us >= configEXPECTED_IDLE_TIME_BEFORE_SLEEP * portTICK_PERIOD_MS * 1000LL) {
esp_sleep_enable_timer_wakeup(sleep_time_us - LIGHT_SLEEP_EARLY_WAKEUP_US)... |
qs1dsearch/autotest: moving functionality to testbench | #include <math.h>
#include <getopt.h>
-float qs1dsearch_autotest_utility_min(float _v, void * _context)
+float qs1dsearch_utility_min(float _v, void * _context)
{
float v_opt = *(float*)(_context);
float v = _v - v_opt;
@@ -37,15 +37,16 @@ float qs1dsearch_autotest_utility_min(float _v, void * _context)
}
//
-void auto... |
OcBootManagementLib: Fix potential OOB access | @@ -291,6 +291,7 @@ InternalSetBootEntryFlags (
{
EFI_DEVICE_PATH_PROTOCOL *DevicePathWalker;
CONST CHAR16 *Path;
+ UINTN Len;
BootEntry->IsFolder = FALSE;
BootEntry->IsRecovery = FALSE;
@@ -306,7 +307,8 @@ InternalSetBootEntryFlags (
if ((DevicePathType (DevicePathWalker) == MEDIA_DEVICE_PATH)
&& (DevicePathSubType (D... |
test-ipmi-hiomap: Add ack-error test
Cc: stable | @@ -1652,6 +1652,12 @@ static void test_hiomap_flush_error(void)
scenario_exit();
}
+static void test_hiomap_ack_error(void)
+{
+ /* Same thing at the moment */
+ test_hiomap_protocol_action_error();
+}
+
struct test_case {
const char *name;
void (*fn)(void);
@@ -1689,6 +1695,7 @@ struct test_case test_cases[] = {
TEST... |
Add check mark for large heap on STM32F769I_DISCOVERY | @@ -68,7 +68,7 @@ The above firmware builds include support for the class libraries and features m
| ST_STM32F429I_DISCOVERY | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | :heavy_check_mark: | :heavy_check_mark: | :heavy_check_mark: | | :heavy_check_mark: |
| ST_NUCLEO64_F091RC ... |
[chainmaker][#676]add BoatChainmakerWalletSetChainId function declaration | @@ -32,6 +32,8 @@ api_chainmaker.c defines the Ethereum wallet API for BoAT IoT SDK.
#define BOAT_TXID_LEN 64
static BOAT_RESULT BoatChainmakerWalletSetOrgId(BoatHlchainmakerWallet *wallet_ptr, const BCHAR *org_id_ptr);
+static BOAT_RESULT BoatChainmakerWalletSetChainId(BoatHlchainmakerWallet *wallet_ptr, const BCHAR *... |
Check that a TLSv1.3 encrypted message has an app data content type | @@ -618,7 +618,8 @@ int ssl3_get_record(SSL *s)
if (SSL_IS_TLS13(s) && s->enc_read_ctx != NULL) {
size_t end;
- if (thisrr->length == 0) {
+ if (thisrr->length == 0
+ || thisrr->type != SSL3_RT_APPLICATION_DATA) {
al = SSL_AD_UNEXPECTED_MESSAGE;
SSLerr(SSL_F_SSL3_GET_RECORD, SSL_R_BAD_RECORD_TYPE);
goto f_err;
|
dm: validate inputs in vq_endchains
inputs shall be validated to avoid NULL pointer access. | @@ -647,6 +647,9 @@ vq_endchains(struct virtio_vq_info *vq, int used_all_avail)
uint16_t event_idx, new_idx, old_idx;
int intr;
+ if (!vq || !vq->used)
+ return;
+
/*
* Interrupt generation: if we're using EVENT_IDX,
* interrupt if we've crossed the event threshold.
|
print output in ci | @@ -112,6 +112,8 @@ test_script:
xmake lua --verbose --diagnosis runner.lua $_.fullname >stdout_file 2>stderr_file
$outcome = if ($?) { "Passed" } else { $all_success = $false; "Failed" }
}
+ Get-Content stdout_file | Out-Host
+ Get-Content stderr_file | Out-Host
Update-AppveyorTest -Name $testname -Framework "xmake-te... |
SOVERSION bump to version 4.1.0 | @@ -34,8 +34,8 @@ set(SYSREPO_VERSION ${SYSREPO_MAJOR_VERSION}.${SYSREPO_MINOR_VERSION}.${SYSREPO_
# Major version is changed with every backward non-compatible API/ABI change, minor version changes
# with backward compatible change and micro version is connected with any internal change of the library.
set(SYSREPO_MAJ... |
Use only log enricher to validate when the profile recorder is enabled | @@ -16,6 +16,10 @@ limitations under the License.
package e2e_test
+import (
+ "time"
+)
+
func (e *e2e) testCaseSPODEnableProfileRecorder(nodes []string) {
e.enableLogEnricherInSpod()
@@ -23,8 +27,14 @@ func (e *e2e) testCaseSPODEnableProfileRecorder(nodes []string) {
profileRecorderEnabledInSPODDS := e.kubectlOperato... |
DM: virtio-gpio: support reading value from IRQ descriptor
Support reading GPIO value when the GPIO switches to IRQ mode.
Acked-by: Yu Wang | @@ -250,6 +250,7 @@ struct gpio_irq_desc {
int fd; /* read event */
int pin; /* pin number */
bool mask; /* mask and unmask */
+ bool deinit; /* deinit state */
uint8_t level; /* level value */
uint64_t mode; /* interrupt trigger mode */
void *data; /* virtio gpio instance */
@@ -401,17 +402,32 @@ gpio_get_value(struct... |
Solve minor const bug in python loader. | @@ -1194,7 +1194,7 @@ void py_loader_impl_error_print(loader_impl_py py_impl)
type_str = PyString_AsString(type_str_obj);
value_str = PyString_AsString(value_str_obj);
- traceback_str = traceback_str_obj ? PyString_AsString(traceback_str_obj) : traceback_not_found;
+ traceback_str = traceback_str_obj ? PyString_AsStrin... |
README.md: Use version 2.05.39 | @@ -36,11 +36,11 @@ https://github.com/dresden-elektronik/deconz-rest-plugin/releases
1. Download deCONZ package
- wget http://www.dresden-elektronik.de/rpi/deconz/beta/deconz-2.05.38-qt5.deb
+ wget http://www.dresden-elektronik.de/rpi/deconz/beta/deconz-2.05.39-qt5.deb
2. Install deCONZ package
- sudo dpkg -i deconz-2... |
Simpler and probably better to handle it that way | @@ -202,7 +202,8 @@ static s16 fadeCounter;
// forward
-static void setFadePalette(u16 ind, const u16 *src, u16 len);
+static void setFadePalette(u16 ind, const u16 *src, u16 len, bool forceWaitVBlank);
+static bool doFadeStepInternal(bool forceWaitVBlank);
u16 PAL_getColor(u16 index)
@@ -302,18 +303,13 @@ void PAL_set... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.