message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
Be less eager to set macro-form in macex1. | See macex docs for info on on-binding."
[x &opt on-binding]
- (setdyn :macro-form x)
-
(when on-binding
(when (symbol? x)
(break (on-binding x))))
(def m? (entry :macro))
(cond
s (s t)
- m? (m ;(tuple/slice t 1))
+ m? (do (setdyn :macro-form t) (m ;(tuple/slice t 1)))
(tuple/slice (map recur t))))
(def ret
|
CONTRIBUTING: update the description about fix line
It is not necessary to have a blank line before SOB. | @@ -131,7 +131,6 @@ The format can be described more formally:
<why this change was made>
<BLANK LINE>
<FIX LINE>
-<BLANK LINE>
<SOB LINE>
```
@@ -145,7 +144,7 @@ If the change affects many subsystems, you can use ```*``` instead, like ```*:``
The message of commit body should describe why the change was made and how t... |
bugfix: fixed wrong place of the err check | @@ -212,10 +212,11 @@ int event_encode_dict(struct odict *od, struct ua *ua, enum ua_event ev,
if (user_data) {
err |= odict_entry_add(od, "userdata", ODICT_STRING,
user_data);
+ }
+
if (err)
goto out;
}
- }
if (str_isset(prm)) {
err = odict_entry_add(od, "param", ODICT_STRING, prm);
|
local: add net_lock to local_listen | @@ -79,6 +79,8 @@ int local_listen(FAR struct socket *psock, int backlog)
return -EOPNOTSUPP;
}
+ net_lock();
+
server = (FAR struct local_conn_s *)psock->s_conn;
/* Some sanity checks */
@@ -87,6 +89,7 @@ int local_listen(FAR struct socket *psock, int backlog)
server->lc_state == LOCAL_STATE_UNBOUND ||
server->lc_type... |
scripts/grash.sh: update script to new extract
current versions of bart extract exclude the end index.
This commit updates the script to be compatible with
newer versions of bart. | @@ -159,7 +159,7 @@ calib_slice()
bart slice 2 $1 grasp_hybrid grasp1-$1
# extract first $CALIB spokes
- bart extract 1 $(($SKIP + 0)) $(($SKIP + $CALIB - 1)) grasp1-$1 grasp2-$1
+ bart extract 1 $(($SKIP + 0)) $(($SKIP + $CALIB)) grasp1-$1 grasp2-$1
# reshape dimensions
bart reshape $(bart bitmask 0 1 2 3) 1 $READ $CA... |
better explanation of the MESSAGEPAIR bitmask | @@ -5724,11 +5724,11 @@ printf("%s %s (C) %s ZeroBeat\n"
"bitmask of message pair field:\n"
"2,1,0:\n"
" 000 = M1+M2, EAPOL from M2 (challenge)\n"
- " 001 = M1+M4, EAPOL from M4 usable if not zeroed (authorized)\n"
+ " 001 = M1+M4, EAPOL from M4 (authorized) - usable if SNONCE is not zeroed \n"
" 010 = M2+M3, EAPOL fro... |
fix $INCLUDE | @@ -1451,6 +1451,11 @@ az_parse_file(struct auth_zone* z, FILE* in, uint8_t* rr, size_t rrbuflen,
/* skip spaces */
while(*incfile == ' ' || *incfile == '\t')
incfile++;
+ incfile = strdup(incfile);
+ if(!incfile) {
+ log_err("malloc failure");
+ return 0;
+ }
verbose(VERB_ALGO, "opening $INCLUDE %s",
incfile);
inc = f... |
changelog: finalize 9.3.0 | # Changelog
-## 9.3.0 [version may change, pending release]
+## 9.3.0 [tagged 2020-11-23]
- Enter multisig account name on the device if the name in BTCRegisterScriptConfigRequest is empty.
- Allow new keypaths: m/48'/coin'/account' for multisig, to enable compatibility with the Nunchuk wallet.
- Multisig script type a... |
TFS: file_unlink(): destroy tuples not present in the dictionary
If a filesystem tuple being unlinked from the filesystem is not
present in the TFS log dictionary, it can (and should) be destroyed
immediately (it won't be destroyed when the filesystem log is
rebuilt). | @@ -1001,6 +1001,17 @@ static fs_status fs_set_dir_entry(filesystem fs, tuple parent, symbol name_sym,
return s;
}
+closure_function(1, 2, boolean, file_unlink_each,
+ tuple, t,
+ value, k, value, v)
+{
+ if (is_tuple(v) && get(v, sym(no_encode))) {
+ destruct_tuple(v, true);
+ set(bound(t), k, 0);
+ }
+ return true;
+... |
Use consistent path for the artifacts | @@ -754,18 +754,18 @@ endforeach()
configure_file(
${CMAKE_CURRENT_SOURCE_DIR}/src/libmongoc-1.0.pc.in
- ${CMAKE_CURRENT_BINARY_DIR}/libmongoc-1.0.pc
+ ${CMAKE_CURRENT_BINARY_DIR}/src/libmongoc-1.0.pc
@ONLY)
install(
- FILES ${CMAKE_CURRENT_BINARY_DIR}/libmongoc-1.0.pc
+ FILES ${CMAKE_CURRENT_BINARY_DIR}/src/libmongoc-... |
[ArgoUI] fix gloable function register | @@ -506,15 +506,15 @@ static int mlnui_errorFunc_traceback (lua_State *L) {
}
BOOL needSetGlobal = YES;
if (strcmp(packageName, "NULL") != 0) {
+ needSetGlobal = NO;
lua_getglobal(L, packageName);
if (!lua_istable(L, -1)) {
lua_newtable(L);
lua_pushvalue(L, -1);
- lua_setglobal(L, libname);
+ lua_setglobal(L, packageNa... |
Pull in missing guard for the currently executing callout
The code to guard the currently executing callout while being in
process was not ported in for some reason. This leaves open the
possibility for the currently executing callout's function to free
the callout from another thread while running. | @@ -77,8 +77,14 @@ int sctp_get_tick_count(void) {
* SCTP_TIMERQ_LOCK protects:
* - SCTP_BASE_INFO(callqueue)
* - sctp_os_timer_next: next timer to check
+ * - sctp_os_timer_current: current callout callback in progress
+ * - sctp_os_timer_waiting: waiting for callout to complete
*/
static sctp_os_timer_t *sctp_os_time... |
Added compression support to MAP resource | @@ -8,6 +8,8 @@ import sgdk.rescomp.Processor;
import sgdk.rescomp.Resource;
import sgdk.rescomp.resource.Map;
import sgdk.rescomp.resource.Tileset;
+import sgdk.rescomp.tool.Util;
+import sgdk.rescomp.type.Basics.Compression;
import sgdk.tool.FileUtil;
import sgdk.tool.StringUtil;
@@ -25,12 +27,18 @@ public class MapP... |
feat : fix tim channel comment | @@ -61,10 +61,10 @@ menu "On-chip Peripheral Drivers"
bool "Enable TIM3 channel2 PWM"
default n
config BSP_USING_TIM3_CH3
- bool "Enable TIM3 channel2 PWM"
+ bool "Enable TIM3 channel3 PWM"
default n
config BSP_USING_TIM3_CH4
- bool "Enable TIM3 channel2 PWM"
+ bool "Enable TIM3 channel4 PWM"
default n
endif
endif
|
improved detection of damaged ESSIDs also on jtr and old hccapx outpu | @@ -1677,7 +1677,7 @@ if((apstaessidlistecleaned != NULL) && (hccapbestoutname != NULL))
{
break;
}
- if((memcmp(zeiger->mac_ap, zeigeressid->mac_ap, 6) == 0))
+ if((memcmp(zeiger->mac_ap, zeigeressid->mac_ap, 6) == 0) && ((memcmp(zeiger->mac_sta, zeigeressid->mac_sta, 6) == 0) || (memcmp(&mac_broadcast, zeigeressid->m... |
harness: add new machines | @@ -384,8 +384,8 @@ machines = dict({
'host_tickrate' : 2500,
'boot_timeout' : 360},
- 'stilton': {'ncores' : 8,
- 'machine_name' : 'stilton',
+ 'danablu1': {'ncores' : 8,
+ 'machine_name' : 'danablu1',
'bootarch' : 'armv8',
'buildarchs' : ['armv8'],
'cores_per_socket': 8,
@@ -395,6 +395,38 @@ machines = dict({
'platfo... |
io-libs/sionlib: bump to v1.7.4 | Summary: Scalable I/O Library for Parallel Access to Task-Local Files
Name: %{pname}-%{compiler_family}-%{mpi_family}%{PROJ_DELIM}
-Version: 1.7.3
+Version: 1.7.4
Release: 1%{?dist}
License: BSD
Group: %{PROJ_NAME}/io-libs
|
remove liblist-dev build dependency | @@ -19,7 +19,6 @@ Build-Depends: debhelper-compat (= 13),
pkg-config (>= 0.29),
libsecret-1-dev (>= 0.18.4),
libcjson-dev (>= 1.7.14),
- liblist-dev (>= 0.1.0)
Package: oidc-agent-cli
Architecture: any
|
Stop using fancy window update strategy
It might help large RTT + BW scenario, but it increases number of
outgoing packets in other places increasing CPU usage. | @@ -2477,12 +2477,8 @@ static int conn_should_send_max_stream_data(ngtcp2_conn *conn,
ngtcp2_strm *strm) {
uint64_t win = conn_initial_stream_rx_offset(conn, strm->stream_id);
uint64_t inc = strm->rx.unsent_max_offset - strm->rx.max_offset;
- ngtcp2_conn_stat *cstat = &conn->cstat;
- return win < 2 * inc ||
- (cstat->m... |
fix: typo
requirement -> requirements | @@ -63,7 +63,7 @@ Find the documentations here:
Testing is done via the open-source framework [zemu](https://github.com/Zondax/zemu).
-### Requirement
+### Requirements
- [nodeJS](https://github.com/nvm-sh/nvm)
- [yarn](https://classic.yarnpkg.com/lang/en/docs/install/#debian-stable)
|
honggfuzz: move main loop into a separate func | @@ -257,6 +257,44 @@ static void* signalThread(void* arg) {
return NULL;
}
+static void mainThreadLoop(honggfuzz_t* hfuzz) {
+ setupSignalsMainThread();
+ setupMainThreadTimer();
+
+ for (;;) {
+ if (hfuzz->display.useScreen) {
+ if (ATOMIC_XCHG(clearWin, false)) {
+ display_clear();
+ }
+ display_display(hfuzz);
+ }
+... |
u3: rewrites +skid jet with u3i_defcons() | */
#include "all.h"
- static u3_noun
- _skid_in(u3j_site* sit_u, u3_noun a)
+u3_noun
+u3qb_skid(u3_noun a, u3_noun b)
{
- if ( 0 == a ) {
- return u3nc(u3_nul, u3_nul);
- }
- else if ( c3n == u3du(a) ) {
- return u3m_bail(c3__exit);
- } else {
- u3_noun acc = _skid_in(sit_u, u3t(a));
- u3_noun hoz = u3j_gate_slam(sit_u... |
VERSION bump to version 1.4.12 | @@ -31,7 +31,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 11)
+set(SYSREPO_MICRO_VERSION 12)
set(SYSREPO_VERSION ${SYSREPO_MAJOR_VERSION}.${SYSREPO_MINOR_VERSION}.${SYSREPO_MI... |
configs/imxrt1050-evk/loadable_elf_apps: enable SDRAM_PRIMARY and SPI
update it using latest | @@ -185,6 +185,7 @@ CONFIG_IMXRT_LPSPI1=y
# CONFIG_IMXRT_LPSPI3 is not set
# CONFIG_IMXRT_LPSPI4 is not set
# CONFIG_IMXRT_I2S is not set
+# CONFIG_IMXRT_PWM is not set
CONFIG_IMXRT_SEMC=y
# CONFIG_IMXRT_SNVS_LPSRTC is not set
# CONFIG_IMXRT_SNVS_HPRTC is not set
@@ -201,13 +202,13 @@ CONFIG_IMXRT_SDRAM_SIZE=33554432
#... |
nrf52832: fix assemble rule
Make sure the output directory exists
before writing files to it. | @@ -172,7 +172,7 @@ vpath %.s $(ASM_PATHS)
CONTIKI_OBJECTFILES += $(ASM_OBJECTS) $(NRF52_SDK_ROOT)/components/iot/ble_6lowpan/lib/ble_6lowpan.a
# Assemble files
-$(OBJECT_DIRECTORY)/%.o: %.s
+$(OBJECT_DIRECTORY)/%.o: %.s | $(DEPDIR)
$(TRACE_CC)
$(Q)$(CCACHE) $(CC) $(ASMFLAGS) $(addprefix -I$(NRF52_SDK_ROOT)/, $(INC_PAT... |
Document why we don't error out for q_len, and clean up some formatting. | @@ -820,8 +820,9 @@ enable_usb_printer(
return (false);
snprintf(filename, sizeof(filename), "%s/functions/printer.g_printer0/q_len", gadget_dir);
- if (!create_string_file(printer, filename, "10\n"))
- return (false);
+ // Note: Cannot error out on this since q_len cannot be changed once the
+ // f_printer module is i... |
LinkBlocks: add component | import { Col, Row, Text } from '@tlon/indigo-react';
import { Association, Graph } from '@urbit/api';
-import React, { useCallback, useState } from 'react';
+import React, { useCallback, useState, useMemo } from 'react';
import _ from 'lodash';
import { useResize } from '~/logic/lib/useResize';
import { LinkBlockItem }... |
VERSION bump to version 0.8.30 | @@ -28,7 +28,7 @@ set(CMAKE_C_FLAGS_DEBUG "-g -O0")
# set version
set(LIBNETCONF2_MAJOR_VERSION 0)
set(LIBNETCONF2_MINOR_VERSION 8)
-set(LIBNETCONF2_MICRO_VERSION 29)
+set(LIBNETCONF2_MICRO_VERSION 30)
set(LIBNETCONF2_VERSION ${LIBNETCONF2_MAJOR_VERSION}.${LIBNETCONF2_MINOR_VERSION}.${LIBNETCONF2_MICRO_VERSION})
set(LI... |
Added a softlink for modulecmd
Adds a softlink from the lmod binary to /usr/bin/modulecmd
which is required by scl-utils, among other things. | @@ -182,6 +182,12 @@ EOF
%{__mkdir_p} ${RPM_BUILD_ROOT}/%{_docdir}
+#install a modulecmd soft link
+# to allow use of scl-utils, among other dependencies
+%{__mkdir_p} %{buildroot}/%{_bindir}
+
+%{__ln_s} %{OHPC_ADMIN}/lmod/lmod/libexec/lmod %{buildroot}/%{_bindir}/modulecmd
+
%files
%dir %{OHPC_HOME}
%dir %{OHPC_ADMIN... |
tests: run sim tests in single JVM
Time for 07-simulation-base before:
real 116.79
user 25.92
sys 3.22
Time for 07-simulation-base after:
real 66.46
user 1.46
sys 0.15
Time for 17-tun-rpl-br before:
real 563.27
user 9.24
sys 1.29
Time for 17-tun-rpl-br after:
real 556.57
user 2.96
sys 0.69 | @@ -58,7 +58,14 @@ endif
endif
.PHONY: all clean tests
-tests: $(TESTLOGS)
+
+# Perform a bash loop of $(RUNCOUNT) iterations.
+# Successful simulations do nothing, failures appends test+seed to summary.
+tests: $(TESTS)
+ @for (( SEED=$(BASESEED); SEED < $$(( $(BASESEED) + $(RUNCOUNT) )); SEED++ )); do \
+ $(GRADLE) -... |
Careem's case have added. | @@ -8,6 +8,7 @@ We will be happy to add your success story using CatBoost to this list. Send us
## Use cases
* The Large Hadron Collider beauty (LHCb) experiment uses [CatBoost](https://catboost.ai/news#particle_identification).
+* * [Careem](https://careem.com/), the leading ride-hailing platform for the greater Middl... |
Badger2040: Put state files in their own directory to keep things tidy | @@ -71,15 +71,23 @@ def state_launch():
def state_delete(app):
try:
- os.remove("{}_state.txt".format(app))
+ os.remove("/state/{}.json".format(app))
except OSError:
pass
def state_save(app, data):
- with open("{}_state.txt".format(app), "w") as f:
+ try:
+ with open("/state/{}.json".format(app), "w") as f:
f.write(jso... |
refactor: Remove unnecessary tags and break | @@ -92,7 +92,6 @@ static int derive_mpi(const mbedtls_ecp_group *grp, mbedtls_mpi *x,
if (mbedtls_mpi_cmp_mpi(x, &grp->N) >= 0)
MBEDTLS_MPI_CHK(mbedtls_mpi_sub_mpi(x, x, &grp->N));
-cleanup:
return(ret);
}
@@ -175,7 +174,6 @@ int boat_mbedtls_ecp_read_key( mbedtls_ecp_group_id grp_id, mbedtls_ecp_keypair
}
// #endif
-c... |
[core] ignore config dir-listing.* if not enabled | @@ -1279,6 +1279,10 @@ int config_finalize(server *srv, const buffer *default_server_tag) {
/* all var.* is known as user defined variable */
if (strncmp(k->ptr, "var.", sizeof("var.") - 1) == 0)
continue;
+ /* mod_dirlisting not loaded if dir-listing.activate not enabled */
+ if (strncmp(k->ptr, "dir-listing.", sizeof... |
feat(fabric test):
add fabric test case "TxQueryFail_Txptr_NULL" | @@ -582,6 +582,35 @@ START_TEST(test_002Transaction_0023TxQuery_Success)
}
END_TEST
+START_TEST(test_002Transaction_0024TxQueryFail_Txptr_NULL)
+{
+ BSINT32 rtnVal;
+ BoatHlfabricTx tx_ptr;
+ BoatHlfabricWallet *g_fabric_wallet_ptr = NULL;
+ BoatHlfabricWalletConfig wallet_config = get_fabric_wallet_settings();
+ BoatI... |
swap out api token | @@ -29,7 +29,7 @@ addons:
deploy:
provider: releases
api_key:
- secure: adz7cDMVUEgxaX8eFwy0ms77UvG69+gSwBaAn2+Op1PRe1bSG0rl6BWo8R5ZBaSFKBiZu5+92z74b5+N071AQMZJ+IWEMSiI2lrMm+VJF/E/Z5cDndVr1XA/lVzfAblKlS57z/5azeC8c+s0TFIcNRb1SsDGfWjx65wD5yLC5lk=
+ secure: G0DvLxngByYkIPs7lkP/lPDbKVX2QnEGdA9FA7CRGcup8lPZmITEPW+H9AKsWDjmj... |
Fix an error in frontendlauncher.py. | @@ -410,7 +410,7 @@ else:
if (sys.version_info > (3, 0)):
exec(compile(open(customlauncher).read(), customlauncher, 'exec'))
else:
- execfile(launcher)
+ execfile(customlauncher)
try:
newlauncher = createlauncher()
launcher = newlauncher
|
plugins: dpdk: fix check which makes not sense, likely a typo | @@ -546,7 +546,7 @@ dpdk_pool_create (vlib_main_t * vm, u8 * pool_name, u32 elt_size,
break;
}
/* *INDENT-ON* */
- if (rv != 0 && rv != EINVAL)
+ if (rv != 0 && errno != EINVAL)
clib_unix_warning ("ioctl(VFIO_IOMMU_MAP_DMA) pool '%s'", pool_name);
}
|
Configurations/descrip.mms.tmpl: Fix small errors
A missing parenthesis here, a missing comma there... | @@ -176,7 +176,7 @@ ENGINESDIR_C={- $osslprefix -}ENGINES{- $sover_dirname.$target{pointer_size} -}:
CC={- $config{CC} -}
CPP={- $config{CPP} -}
DEFINES={- our $defines1 = join('', map { ",$_" } @{$config{CPPDEFINES}}) -}
-INCLUDES={- our $includes1 = join('', map { ",$_" } @{$config{CPPINCLUDES}}) -}
+INCLUDES={- our ... |
eyre: add dark mode styling to sign-in | left: 50%;
transform: translate(-50%, -50%);
}
+ @media all and (prefers-color-scheme: dark) {
+ html, body {
+ background-color: #333;
+ color: #fff;
+ }
+ a, a:visited {
+ color: #fff;
+ }
+ input {
+ background: #333;
+ color: #fff;
+ border: 1px solid #7f7f7f;
+ }
+ input:focus {
+ border: 1px solid #fff;
+ }
+ }
@... |
Improve the example getpass() implementation to show an error return
Also, modernize the code, so that it isn't trying to store a size_t
into an int, and then check the int's sign. :/ | @@ -346,17 +346,16 @@ Skeleton pass phrase callback:
int pass_cb(char *buf, int size, int rwflag, void *u)
{
- int len;
- char *tmp;
/* We'd probably do something else if 'rwflag' is 1 */
printf("Enter pass phrase for \"%s\"\n", (char *)u);
/* get pass phrase, length 'len' into 'tmp' */
- tmp = "hello";
- len = strlen(... |
Print no button handler warning only if sensor has RStateButtonEvent | @@ -4504,9 +4504,12 @@ void DeRestPluginPrivate::checkSensorButtonEvent(Sensor *sensor, const deCONZ::A
return;
}
+ if (sensor->item(RStateButtonEvent))
+ {
DBG_Printf(DBG_INFO, "[INFO] - No button handler for: %s endpoint: 0x%02X cluster: %s command: %s payload[0]: 0%02X\n",
qPrintable(sensor->modelId()), ind.srcEndpo... |
Radar: add /api/v1 prefix to server URL endpoints
This is needed to match the current Radar server configuration. | @@ -263,7 +263,7 @@ static void telemetry_crash_report(void)
}
}
buffer_write_cstring(b, "\"}\r\n");
- if (!telemetry_send("/crashes", b, 0)) {
+ if (!telemetry_send("/api/v1/crashes", b, 0)) {
deallocate_buffer(b);
goto error;
}
@@ -316,7 +316,7 @@ static void telemetry_boot(void)
if (ops_ver)
kfunc(bprintf)(b, ",\"op... |
docs: updated logic for MPI installs now that approach is to make IB optional | @@ -49,11 +49,13 @@ OpenMPI & \multicolumn{1}{c}{\checkmark} & \multicolum
[sms](*\#*) (*\install*) openmpi3-gnu7-ohpc mpich-gnu7-ohpc
\end{lstlisting}
% ohpc_indent 0
-% ohpc_command elif [[ ${enable_ib} -eq 1 ]];then
+% ohpc_command fi
+% ohpc_command if [[ ${enable_ib} -eq 1 ]];then
% ohpc_indent 5
% ohpc_command (*... |
Fix flag setting logic | @@ -1374,8 +1374,8 @@ int DeRestPluginPrivate::changeSensorConfig(const ApiRequest &req, ApiResponse &
hostFlags = val.value.u32;
}
- // clear `set off` (0x10) and `boost` (0x04) flags
- hostFlags &= ~(0x10 | 0x04);
+ hostFlags &= ~0x04; // clear `boost` flag
+ hostFlags |= 0x10; // set `disable off` flag
ResourceItem ... |
Fix Spring Security user search filter | @@ -107,8 +107,8 @@ public class DatafariWebSecurity {
final List<LdapRealm> adList = LdapConfig.getActiveDirectoryRealms();
for (final LdapRealm adr : adList) {
for (final String userBase : adr.getUserBases()) {
- auth.ldapAuthentication().ldapAuthoritiesPopulator(new DatafariLdapAuthoritiesPopulator()).userSearchBase... |
Update circular option docs | @@ -223,7 +223,7 @@ struct _options oj_default_options = {
*
* Returns the default load and dump options as a Hash. The options are
* - *:indent* [_Fixnum_|_String_|_nil_] number of spaces to indent each element in an JSON document, zero or nil is no newline between JSON elements, negative indicates no newline between ... |
idf_size: Sort output on total-size instead of filename | import argparse, sys, subprocess, re
import os.path
import pprint
+import operator
DEFAULT_TOOLCHAIN_PREFIX = "xtensa-esp32-elf-"
@@ -204,27 +205,30 @@ def print_detailed_sizes(sections, key, header):
"& rodata",
"Total")
print("%24s %10s %6s %6s %10s %8s %7s" % headings)
- for k in sorted(sizes.keys()):
+ result = {}
... |
risc-v/esp32c3: Fix retrieval for linker-defined symbol | @@ -91,7 +91,7 @@ void up_allocate_heap(void **heap_start, size_t *heap_size)
* Check boards/risc-v/esp32c3.
*/
- extern uint8_t *_sheap;
+ extern uint8_t _sheap[];
extern const struct esp32c3_rom_layout_s *ets_rom_layout_p;
board_autoled_on(LED_HEAPALLOCATE);
@@ -123,7 +123,7 @@ void up_allocate_kheap(void **heap_star... |
Added missing name to default devices | @@ -283,7 +283,9 @@ struct key_value model_number_subtypes[] = {
{"Utah MP", SURVIVE_OBJECT_SUBTYPE_INDEX_HMD}, {"Vive Controller MV", SURVIVE_OBJECT_SUBTYPE_WAND},
{"Vive. Controller MV", SURVIVE_OBJECT_SUBTYPE_WAND}, {"VIVE Tracker Pro MV", SURVIVE_OBJECT_SUBTYPE_TRACKER_GEN2},
{"Vive. Tracker MV", SURVIVE_OBJECT_SUB... |
test-suite: define MPI2PRV_TMP_DIR for use with extrae test | @@ -43,6 +43,9 @@ unset OMP_NUM_THREADS
rm -f job.out
+ mkdir -p .tmp.extrae
+ export MPI2PRV_TMP_DIR=.tmp.extrae
+
run_mpi_binary -o "job.out" "mpimpi2prv -syn -f TRACE.mpits -o trace.prv" "" $NODES $TASKS
assert_success
@@ -66,5 +69,6 @@ unset OMP_NUM_THREADS
rm -rf profile*
rm -rf *prv *row *pcf TRACE.*
+ rm -rf $MP... |
isl9241: change control1_mutex to use K_MUTEX_DEFINE
Convert control1_mutex to use K_MUTEX_DEFINE(), removing the
requirement for runtime initialization on Zephyr.
BRANCH=none
TEST=zmake testall && make buildall | static int learn_mode;
/* Mutex for CONTROL1 register, that can be updated from multiple tasks. */
-static mutex_t control1_mutex;
+K_MUTEX_DEFINE(control1_mutex);
/* Charger parameters */
static const struct charger_info isl9241_charger_info = {
@@ -378,9 +378,6 @@ static void isl9241_init(int chgnum)
const struct bat... |
nvbios/info: Correct code comment about GM206 (nv126) | @@ -273,7 +273,7 @@ int envy_bios_parse_bit_i (struct envy_bios *bios, struct envy_bios_bit_entry *b
bios->chipset = 0x124;
bios->chipset_name = "GM204";
break;
- /* GM200 */
+ /* GM206 */
case 0x8406:
bios->chipset = 0x126;
bios->chipset_name = "GM206";
|
Remove unused typedef
Fixes | @@ -114,7 +114,6 @@ enum {
CLAP_EVENT_MIDI_SYSEX, // raw midi sysex event; clap_event_midi_sysex
CLAP_EVENT_MIDI2, // raw midi 2 event; clap_event_midi2
};
-typedef int32_t clap_event_type;
// Note on, off, end and choke events.
// In the case of note choke or end events:
|
Skyrim: Add annotations needed for customization
Add notes throughout the usbc_config file about which options will need
supported and changed going forward.
BRANCH=None
TEST=zmake testall | @@ -155,6 +155,8 @@ struct usb_mux usbc1_ps8818 = {
.board_set = &board_c1_ps8818_mux_set,
};
+/* TODO: ANX7483 support */
+
/*
* ANX7491(A1) and ANX7451(C1) are on the same i2c bus. Both default
* to 0x29 for the USB i2c address. This moves ANX7451(C1) USB i2c
@@ -200,6 +202,10 @@ struct usb_mux usb_muxes[] = {
};
BUI... |
Let IKEA lights report 'sw build id' every 30 minutes
This is inline with how the IKEA gateway configures reporting. | @@ -1325,6 +1325,36 @@ bool DeRestPluginPrivate::sendConfigureReportingRequest(BindingTask &bt)
return sendConfigureReportingRequest(bt, {rq, rq2});
}
+ else if (bt.binding.clusterId == BASIC_CLUSTER_ID && manufacturerCode == VENDOR_IKEA && lightNode)
+ {
+ deCONZ::NumericUnion dummy;
+ dummy.u64 = 0;
+ // 'sw build id... |
tls: pake: fix missing return values check | @@ -1908,7 +1908,7 @@ int mbedtls_ssl_set_hs_ecjpake_password( mbedtls_ssl_context *ssl,
return( MBEDTLS_ERR_SSL_HW_ACCEL_FAILED );
}
- psa_pake_set_password_key( &ssl->handshake->psa_pake_ctx,
+ status = psa_pake_set_password_key( &ssl->handshake->psa_pake_ctx,
ssl->handshake->psa_pake_password );
if( status != PSA_SU... |
Copy gem files before running the package script | @@ -331,6 +331,7 @@ jobs:
mv actions/docker/* build
mkdir -p build/macosx64
find actions -name '*win_amd64.whl' -exec mv {} build/windows64 \;
+ find actions/macos_amd64 -name '*.gem' -exec mv {} build/macosx64 \;
find actions/macos_amd64 -name '*go.zip' -exec mv {} build/macosx64 \;
find actions/macos_amd64 -name '*.j... |
0.6-4 was published. This change starts development of 0.6-5 | # Set the AOMP VERSION STRING.
# After a release, this is changed to the next release under development
AOMP_VERSION=${AOMP_VERSION:-"0.6"}
-AOMP_VERSION_MOD=${AOMP_VERSION_MOD:-"4"}
+AOMP_VERSION_MOD=${AOMP_VERSION_MOD:-"5"}
AOMP_VERSION_STRING=${AOMP_VERSION_STRING:-"$AOMP_VERSION-$AOMP_VERSION_MOD"}
export AOMP_VERS... |
naive: l2 %detach %own tests | ==
::
:: sponsorship tests
+++ losrut-own [~losrut %own]
+++ losrut-mgmt [~losrut %manage]
+++ holrut-own [~holrut %own]
+++ holrut-mgmt [~holrut %manage]
+++ rigrut-own [~rigrut %own]
+++ rigrut-mgmt [~rigrut %manage]
++ losred-own [~losred %own]
+++ losred-mgmt [~losred %manage]
++ rigred-own [~rigred %own]
+++ rigre... |
Check for htp == NULL before setting max_body_size | @@ -2745,12 +2745,15 @@ htp__connection_new_(evhtp_t * htp, evutil_socket_t sock, evhtp_type type)
connection->scratch_buf = evbuffer_new();
evhtp_alloc_assert(connection->scratch_buf);
+ if (htp != NULL) {
+ connection->max_body_size = htp->max_body_size;
+ }
+
connection->flags = EVHTP_CONN_FLAG_OWNER;
connection->so... |
dm: fix memory leakage issue in disk_logger.c
In function probe_disk_log_file(), handler 'dir'
returned by opendir() is not released before
function return and results in memory leakage. | @@ -96,6 +96,7 @@ static int probe_disk_log_file(void)
index = tmp;
}
}
+ closedir(dir);
snprintf(file_name, FILE_NAME_LENGTH - 1, LOG_NAME_FMT, LOG_PATH_NODE, vmname, index);
disk_fd = open(file_name, O_RDWR | O_CREAT | O_APPEND, 0644);
|
nimble/phy: Fix pipeline delays for nRF52
Pipeline delays for nRF52832 and nRF52840 were measured from scratch
and new values include extra delays caused by incoroprating erratas
102/106/107 for nRF52832. | @@ -151,13 +151,13 @@ static const uint16_t g_ble_phy_mode_pkt_start_off[BLE_PHY_NUM_MODE] = { 376, 40
#define BLE_PHY_T_TXENFAST (XCVR_TX_RADIO_RAMPUP_USECS)
#define BLE_PHY_T_RXENFAST (XCVR_RX_RADIO_RAMPUP_USECS)
/* delay between EVENTS_READY and start of tx */
-static const uint8_t g_ble_phy_t_txdelay[BLE_PHY_NUM_MO... |
Add entry for cryptoauthlib component manager migration | @@ -18,6 +18,7 @@ Following components are removed from ESP-IDF and moved to `IDF Component Regist
* `sh2lib <https://components.espressif.com/component/espressif/sh2lib>`_
* `expat <https://components.espressif.com/component/espressif/expat>`_
* `coap <https://components.espressif.com/component/espressif/coap>`_
+* `e... |
Expose update mark constants to script. | @@ -827,6 +827,13 @@ int mapstrings_transconst(ScriptVariant **varlist, int paramCount)
ICMPCONST(PORTING_WIZ)
ICMPCONST(PORTING_XBOX)
+ // Update marks.
+ ICMPCONST(UPDATE_MARK_NONE)
+ ICMPCONST(UPDATE_MARK_CHECK_AI)
+ ICMPCONST(UPDATE_MARK_CHECK_GRAVITY)
+ ICMPCONST(UPDATE_MARK_CHECK_MOVE)
+ ICMPCONST(UPDATE_MARK_UPD... |
Fix cloud builder link | @@ -340,6 +340,6 @@ Of course you should still use functions to structure your code and encapsulate
## Firmware and Lua app development
### How to save memory?
-* The NodeMCU development team recommends that you consider using a tailored firmware build, which only includes the modules that you plan to use before develo... |
SOVERSION bump to version 5.6.10 | @@ -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 9)
+set(SYSREPO_MICRO_SO... |
include/i2c_private.h: Format with clang-format
BRANCH=none
TEST=none | * @param flags Flags (see I2C_XFER_* above)
* @return EC_SUCCESS, or non-zero if error.
*/
-int chip_i2c_xfer(const int port,
- const uint16_t addr_flags,
- const uint8_t *out, int out_size,
- uint8_t *in, int in_size, int flags);
+int chip_i2c_xfer(const int port, const uint16_t addr_flags, const uint8_t *out,
+ int o... |
muxread,CreateInternal: fix riff size checks
previously when adjusting size down based on a smaller riff_size the
checks were insufficient to prevent 'size -= RIFF_HEADER_SIZE' from
rolling over causing ChunkVerifyAndAssign to over read. the new checks
are imported from demux.c. | @@ -187,7 +187,7 @@ WebPMux* WebPMuxCreateInternal(const WebPData* bitstream, int copy_data,
size = bitstream->size;
if (data == NULL) return NULL;
- if (size < RIFF_HEADER_SIZE) return NULL;
+ if (size < RIFF_HEADER_SIZE + CHUNK_HEADER_SIZE) return NULL;
if (GetLE32(data + 0) != MKFOURCC('R', 'I', 'F', 'F') ||
GetLE32... |
Fix comment in heapam.c
Improvement per suggestion from Tom Lane.
Author: Daniel Gustafsson
Discussion: | @@ -2145,7 +2145,7 @@ heap_multi_insert(Relation relation, TupleTableSlot **slots, int ntuples,
* that check MUST be done at least past the point of acquiring an
* exclusive buffer content lock on every buffer that will be affected,
* and MAY be done after all inserts are reflected in the buffers and
- * those locks ar... |
docs: references_guide.md: add/fix search examples/tools links
add/fix search examples/tools links in references_guide.md | @@ -752,7 +752,8 @@ Syntax: ```map.insert(&key, &val)```
Associate the value in the second argument to the key, only if there was no previous value.
Examples in situ:
-[search /examples](https://github.com/iovisor/bcc/search?q=insert+path%3Aexamples&type=Code)
+[search /examples](https://github.com/iovisor/bcc/search?q... |
build/ci: adding code coverage test job | # base configuration
image: debian
stages: [build, test]
-
before_script:
- - apt-get -qq update && apt-get -qq install -y automake autoconf gcc make
+ - apt-get -qq update && apt-get -qq install -y automake autoconf gcc gcovr make
# build from scratch
compile:
@@ -41,3 +40,15 @@ examples:
artifacts:
paths: [run_exampl... |
Fix localhost hostname | @@ -442,7 +442,7 @@ PPH_STRING PhGetHostNameFromAddressEx(
if (!(dnsReverseNameString = PhpGetDnsReverseNameFromAddress(Address)))
return NULL;
- if (PhEnableNetworkResolveDoHSupport)
+ if (PhEnableNetworkResolveDoHSupport && !dnsLocalQuery)
{
dnsRecordList = PhDnsQuery(
NULL,
|
dns-cookies: fix nsd-control argument parsing | @@ -2316,12 +2316,12 @@ execute_cmd(struct daemon_remote* rc, RES* ssl, char* cmd, struct rc_state* rs)
do_assoc_tsig(ssl, rc->xfrd, skipwhite(p+10));
} else if(cmdcmp(p, "del_tsig", 8)) {
do_del_tsig(ssl, rc->xfrd, skipwhite(p+8));
- } else if(cmdcmp(p, "drop_cookie_secret", 11)) {
- do_drop_cookie_secret(ssl, rc->xfr... |
VPP 19.04 Release Notes | @@ -24,7 +24,70 @@ TBD
@page release_notes_1904 Release notes for VPP 19.04
-TBD
+More than 700 commits since the 19.01 release.
+
+## Features
+
+### Infrastructure
+- DPDK 19.02 integration
+- Buffer manager rework and improvements
+- Python3 migration (work in progress)
+ - vppapigen
+ - Python API wrappers
+ - Docs... |
update conduit version on my machine. | ## Setup VISITHOME variables.
##
SET(VISITHOME /home/biagas2/visit/thirdparty/2.13.0)
-#SET(VISITARCH linux-x86_64_gcc-4.4)
SET(VISITARCH linux-x86_64_gcc-6.2)
## Compiler flags.
##
-VISIT_OPTION_DEFAULT(VISIT_C_COMPILER gcc TYPE FILEPATH)
-VISIT_OPTION_DEFAULT(VISIT_CXX_COMPILER g++ TYPE FILEPATH)
+VISIT_OPTION_DEFAUL... |
Fix bug that probe packet is not retransmitted | @@ -1019,7 +1019,7 @@ static ssize_t conn_retransmit_unacked(ngtcp2_conn *conn, uint8_t *dest,
for (; !ngtcp2_ksl_it_end(&it); ngtcp2_ksl_it_next(&it)) {
ent = ngtcp2_ksl_it_get(&it);
- if (!ent->frc || (ent->flags & NGTCP2_RTB_FLAG_PROBE)) {
+ if (!ent->frc) {
continue;
}
@@ -1036,7 +1036,11 @@ static ssize_t conn_ret... |
Ensure abort() is not called | @@ -881,7 +881,8 @@ grib_handle* grib_util_set_spec2(grib_handle* h,
break;
default :
printf("invalid packing_spec->packing_type = %ld\n",(long)packing_spec->packing_type);
- abort();
+ *err = GRIB_INTERNAL_ERROR;
+ goto cleanup;
break;
}
packingTypeIsSet=1;
@@ -906,7 +907,8 @@ grib_handle* grib_util_set_spec2(grib_han... |
Fix return-value checks in OCSP_resp_get1_id()
Commit added the function
but would improperly report success if the underlying dup operation
failed. | @@ -230,7 +230,7 @@ int OCSP_resp_get1_id(const OCSP_BASICRESP *bs,
} else {
return 0;
}
- if (pname == NULL && pid == NULL)
+ if (*pname == NULL && *pid == NULL)
return 0;
return 1;
}
|
typo fixed in documentation | @@ -238,6 +238,8 @@ u32 DMA_getQueueTransferSize();
* - DMA_VRAM (for VRAM transfer).<br>
* - DMA_CRAM (for CRAM transfer).<br>
* - DMA_VSRAM (for VSRAM transfer).<br>
+ * \param from
+ * Source buffer.
* \param to
* VRAM/CRAM/VSRAM destination address.
* \param len
|
h2olog: label the line with varnishlog semantics | @@ -75,9 +75,9 @@ int trace_receive_req_header(struct pt_regs *ctx) {
def print_req_line(line):
if line.http_version:
v = "HTTP/%d.%d" % (line.http_version / 256, line.http_version % 256)
- print("%u %u: %s" % (line.conn_id, line.req_id, v))
+ print("%u %u RxProtocol %s" % (line.conn_id, line.req_id, v))
else:
- print(... |
hw: bsp: frdm-k82f: update LED definitions
Use standard LED_n nomenclature from color name based. | @@ -30,10 +30,11 @@ extern uint8_t __DATA_ROM;
#define RAM_SIZE 0x40000
/* RBG LED pins */
-#define LED_RED_PIN MCU_GPIO_PORTC(8)
-#define LED_GREEN_PIN MCU_GPIO_PORTC(9)
-#define LED_BLUE_PIN MCU_GPIO_PORTC(10)
-#define LED_BLINK_PIN LED_RED_PIN
+#define LED_1 MCU_GPIO_PORTC(8) /* RGB red */
+#define LED_2 MCU_GPIO_PO... |
OcAcpiLib: Reduce log size | #include <Library/BaseLib.h>
#include <Library/BaseMemoryLib.h>
-#include <Library/DebugLib.h>
+#include <Library/OcDebugLogLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Library/UefiLib.h>
#include <Library/UefiBootServicesTableLib.h>
@@ -673,7 +673,7 @@ AcpiApplyContext (
Context->Rsdt->Tables[Index] = (UI... |
engine: dispatch: release chunk lock if task could not be created | @@ -148,9 +148,12 @@ int flb_engine_dispatch(uint64_t id, struct flb_input_instance *in,
* Do not release the buffer since if allocated, it will be
* released when the task is destroyed.
*/
+ flb_input_chunk_release_lock(ic);
continue;
}
if (!buf_data) {
+ flb_input_chunk_release_lock(ic);
+
continue;
}
@@ -167,7 +170,... |
Update Route.hpp
This looked very wrong. | #include <assert.h>
#include <vector>
-//
-// XXX: [MG] - This is pneumonoultramicroscopicsilicovolcanoconiosis..
-//
namespace ARIASDK_NS_BEGIN {
//! Interface for generic route sink (incoming data handler)
|
travis: fix for formatting issue on macOS | @@ -437,7 +437,7 @@ bool checkArgument (std::vector<std::string> const & arguments, std::string test
{
return arguments.size () == 1 || find (arguments.begin (), arguments.end (), testname) != arguments.end ();
}
-}
+} // namespace
void TestCommand::doTests (std::vector<std::string> const & arguments)
{
|
headset_oculus fix; | @@ -392,8 +392,7 @@ static void oculus_renderTo(void (*callback)(void*), void* userdata) {
lovrGraphicsSetViewMatrix(eye, view);
float projection[16];
- ovrMatrix4f projection = ovrMatrix4f_Projection(state.desc.DefaultEyeFov[eye], state.clipNear, state.clipFar, ovrProjection_ClipRangeOpenGL);
- mat4_fromMat44(projecti... |
test/recipes/90-test_store.t: Add a few cases with files starting with 'file:'
These cases are performed on Linux only. They check that files with
names starting with 'file:' can be processed as well. | # https://www.openssl.org/source/license.html
use File::Spec;
+use File::Copy;
use MIME::Base64;
use OpenSSL::Test qw(:DEFAULT srctop_file srctop_dir bldtop_file data_file);
@@ -55,10 +56,24 @@ my @generated_files =
"ec-key-pkcs8-pbes2-sha1.pem", "ec-key-pkcs8-pbes2-sha1.der",
"ec-key-aes256-cbc-sha256.p12",
);
+my %ge... |
Example build fix: invalid types of functions. | * Private Data & Functions
****************************************************************************/
/* example */
-static int hello_example(int argc, char *argv[])
+static void *hello_example(void *arg)
{
+ (void)arg;
printf("This is an example to add it in tash\n");
printf("Hello, World!!\n");
- return 0;
+ retur... |
Compare DNS Cookie hashes with CRYPTO_memcmp | @@ -279,7 +279,7 @@ void cookie_verify(query_type *q, struct nsd* nsd, uint32_t *now_p) {
q->edns.cookie_status = COOKIE_INVALID;
siphash(q->edns.cookie, verify_size,
nsd->cookie_secrets[0].cookie_secret, hash, 8);
- if( memcmp(hash2verify, hash, 8) == 0 ) {
+ if(CRYPTO_memcmp(hash2verify, hash, 8) == 0 ) {
if (subtrac... |
gall: now restarts %hood, but not %dojo yet | (mo-apply agent routes deal)
:: %hood or %dojo must run; wake them up
::
- ?: ?=(?(%hood %dojo) agent-name)
- ~> %slog.2^leaf/"gall: force load {<agent-name>}"
- =/ bek=beak [our q.beak.yoke da+now]
- =/ rag (mo-scry-agent-cage agent-name q.bek da+now)
+ ?: ?=(?(%hood %dojo) agent)
+ ~> %slog.2^leaf/"gall: force load {... |
change ymake.core.conf to use partitioned python yndexing
change ymake.core.conf to use partitioned python yndexing
([arc::pullid] eff9062d-51daa745-21363bb5-f71dcefe) | @@ -32,12 +32,8 @@ otherwise {
GCCFILTER=
}
-macro GENERATE_PYTHON_YNDEXER_ARGS(PartitionCount, PartitionIndex) {
- .CMD=${cwd:ARCADIA_BUILD_ROOT} ${env:"XDG_CACHE_HOME=$ARCADIA_BUILD_ROOT"} $YMAKE_PYTHON ${input:"build/scripts/python_yndexer.py"} $PYNDEXER_RESOURCE_GLOBAL/pyxref 1500 ${output;noext;rootrel;suf=$Partit... |
Check OCLint: Fix syntax error | @@ -29,7 +29,7 @@ oclint -p "@PROJECT_BINARY_DIR@" -enable-global-analysis -enable-clang-static-an
"src/plugins/yamlcpp/"*.{c,cpp} \
"src/plugins/yamlsmith/"*.{c,cpp} \
"src/plugins/yanlr/"*.{c,cpp} \
- "src/plugins/yawn/"*.cpp \
+ "src/plugins/yawn/"*.cpp
exit_if_fail "OCLint found problematic code"
end_script
|
travis: wait 30 minutes for run output | @@ -38,7 +38,7 @@ script:
- $TRAVIS_BUILD_DIR/.ci/safe_run.sh $TRAVIS_BUILD_DIR/.ci/targets/$RHO_TARGET/build_artefact_for_deploy.sh
#TODO: change this to run specs in auto mode and collect results
-- $TRAVIS_BUILD_DIR/.ci/safe_run.sh $TRAVIS_BUILD_DIR/.ci/targets/$RHO_TARGET/run_app_on_simulator.sh
+- travis_wait 30 $... |
BugID:17642035:[example]fix too many subdevice added in gateway example | HAL_Printf("\033[0m\r\n"); \
} while (0)
+#define EXAMPLE_SUBDEV_ADD_NUM 3
#define EXAMPLE_SUBDEV_MAX_NUM 20
const iotx_linkkit_dev_meta_info_t subdevArr[EXAMPLE_SUBDEV_MAX_NUM] = {
{
@@ -432,7 +433,7 @@ int linkkit_main(void *paras)
/* Add subdev */
if (user_example_ctx->master_initialized && user_example_ctx->subdev_... |
Update psa/crypto_config.h to new names
An earlier commit fixes the names of the PSA_WANT_ECC_ macros. Update
the crypto_config.h file to match these new names. | #define PSA_WANT_ALG_TLS12_PSK_TO_MS 1
#define PSA_WANT_ALG_XTS 1
-#define PSA_WANT_ECC_BP256R1 1
-#define PSA_WANT_ECC_BP384R1 1
-#define PSA_WANT_ECC_BP512R1 1
-#define PSA_WANT_ECC_CURVE25519 1
-#define PSA_WANT_ECC_CURVE448 1
-#define PSA_WANT_ECC_SECP192K1 1
-#define PSA_WANT_ECC_SECP192R1 1
-#define PSA_WANT_ECC_... |
[mod_cgi] omit cgi_handle_fdevent after proc exit
Omit calling cgi_handle_fdevent() after CGI process exit.
Another (sub)process may be holding pipe fd open and might write
response instead of the initial CGI process. | @@ -1019,6 +1019,7 @@ static handler_t cgi_waitpid_cb(server *srv, void *p_d, pid_t pid, int status) {
if (pid != p->cgi_pid.ptr[i].pid) continue;
hctx = (handler_ctx *)p->cgi_pid.ptr[i].ctx;
+ if (hctx) hctx->pid = -1;
cgi_pid_del(p, i);
if (WIFEXITED(status)) {
@@ -1036,11 +1037,6 @@ static handler_t cgi_waitpid_cb(s... |
Let the provider also provide the load uri | @@ -100,14 +100,14 @@ typedef struct clap_preset_discovery_metadata_receiver {
// The path defines a human friendly path to the preset in the container file. It
// should be unique within the container file.
//
- // The preset_id is a machine friendly string used to load the preset inside the container via a
- // the p... |
Remove warning about unreferenced label. | #include <testutils.h>
#include <math.h>
+#ifdef _MSC_VER
+#pragma warning(push)
+/* unreferenced label */
+#pragma warning(disable:4102)
+#endif
+
void
vector_vec2_init(CuTest *tc)
{
@@ -323,3 +329,7 @@ get_vector_suite()
SUITE_ADD_TEST(suite, vector_vec_sub_same);
return suite;
}
+
+#ifdef _MSC_VER
+#pragma warning(p... |
revert r4575995
ymake crash during:
$ ya clone trunk3
$ cd trunk3
$ ya make --checkout -j0 direct
([arc::pullid] 96157db8-fef6c700-ba71ab89-1d23ff00) | },
"ymake": {
"formula": {
- "sandbox_id": [389969775],
+ "sandbox_id": [386321438],
"match": "ymake"
},
"executable": {
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.