message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
Fix SYMFONISK Sound Controller
The model id wasn't complete.
Issue: | "ikeaSoundControllerMap": {
"vendor": "IKEA",
"doc": "SYMFONISK remote",
- "modelids": ["SYMFONISK"],
+ "modelids": ["SYMFONISK Sound Controller"],
"buttons": [
{"S_BUTTON_1": "Button 1"},
{"S_BUTTON_2": "Rotate clockwise"},
|
force change state type | @@ -1408,7 +1408,7 @@ static inline int mbedtls_ssl_conf_is_hybrid_tls12_tls13( const mbedtls_ssl_conf
static inline void mbedtls_ssl_handshake_set_state( mbedtls_ssl_context *ssl,
mbedtls_ssl_states state )
{
- ssl->state = state;
+ ssl->state = ( int ) state;
}
/*
|
driverless: Fix double free and select() timeout handling | @@ -96,16 +96,13 @@ copy_output(int read_ipp_fd, /* I - IPP file descriptor */
FD_ZERO(&input);
FD_SET(read_ipp_fd, &input);
FD_SET(read_ipps_fd, &input);
- timeout.tv_sec = 2;
- timeout.tv_usec = 0;
+ timeout.tv_sec = 0;
+ timeout.tv_usec = 200000;
if (select(nfds, &input, NULL, NULL, &timeout) < 0)
return (-1);
if (!... |
publish: migrate note body correctly | ^- graph:graph-store
%^ put:orm:graph-store
*graph:graph-store %1
+ =/ body=@t
+ =/ idx
+ (find ";>" file.note)
+ ?~ idx
+ file.note
+ %- crip
+ (slag (add 2 u.idx) (trip file.note))
%* . (blank-note-node note)
index.post ~[date-created.note %1 %1]
- contents.post ~[text+title.note text+filename.note]
+ contents.post ~... |
Coding: Change style of code section | @@ -210,8 +210,7 @@ provide a proper encoding!**
Files should start with:
-\verbatim
-
+```c
/**
* @file
*
@@ -219,8 +218,7 @@ Files should start with:
*
* @copyright BSD License (see LICENSE.md or https://www.libelektra.org)
*/
-
-\endverbatim
+```
Note:
|
Trying to get RTD to find the docstrings correctly. | @@ -72,7 +72,9 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Core Cosmology Library'
+project = u'pyccl'
+__import__(project)
+package = sys.modules[project]
copyright = u'2017, LSST DESC'
author = u'LSST DESC'
|
add clock defines for F411 to hardware.h | #endif
#ifdef F405
+#ifdef F411
+#define SYS_CLOCK_FREQ_HZ 84000000
+#define PWM_CLOCK_FREQ_HZ 84000000
+#define TICK_CLOCK_FREQ_HZ 10500000
+#define LOOPTIME 250
+#else
#define SYS_CLOCK_FREQ_HZ 168000000
#define PWM_CLOCK_FREQ_HZ 84000000
#define TICK_CLOCK_FREQ_HZ 21000000
#define LOOPTIME 250
#endif
#endif
+#endif
... |
Fix OCSP_sendreq_nbio arg order
Fixes | @@ -189,7 +189,7 @@ typedef OSSL_HTTP_REQ_CTX OCSP_REQ_CTX;
OCSP_REQ_CTX_i2d(r, ASN1_ITEM_rptr(OCSP_REQUEST), (ASN1_VALUE *)(req))
# define OCSP_REQ_CTX_nbio OSSL_HTTP_REQ_CTX_nbio
# define OCSP_REQ_CTX_nbio_d2i OSSL_HTTP_REQ_CTX_nbio_d2i
-# define OCSP_sendreq_nbio(r, p) \
+# define OCSP_sendreq_nbio(p, r) \
OSSL_HTTP... |
[CI] remove duplicated tasks with Jenkins
more cleaning need to be done | @@ -275,16 +275,13 @@ siconos_frama_c = siconos_default.copy()(
# 4. dispatch based on hostname and distrib type (to min. disk requirement)
#
known_tasks = {'siconos---vm0':
- (siconos_fedora_latest,
- siconos_gcc_asan,
+ (siconos_gcc_asan,
siconos_gcc_asan_latest,
- siconos_debian_mechanisms,
- siconos_ubuntu_15_10),
... |
clean up some unused macros | @@ -35,18 +35,6 @@ byte swap
#define NVM_PRODUCT_NAME "Intel(R) Optane(TM) DC persistent memory Software\0"
#define NVM_SYSLOG_SOURCE "NVM_MGMT"
-#define NVM_DEFAULT_NAMESPACE_NAME "NvDimmVol"
-#define NVM_SYSTEM "Intel(R) Optane(TM) DC Persistent Memory"
-#define NVM_INTEL_VENDOR_ID 0x8980
-#define NVM_DIMM_SUBSYSTEM_... |
fixed formatting error in manpage | @@ -112,11 +112,10 @@ once hcxdumptool terminated, power off system
.I --ignore_warning
hcxdumptool will not terminate if other services take access on the device
.TP
--I
+.I -I
show wlan interfaces
.TP
-.I
--C
+.I -C
show available channels and quit
.TP
.I -h or --help
|
fix spurious error setting SA on ipsec intf
Reverse the polarity on test to determine if old SA session
deletion succeeded. 0 == success, not failure. | @@ -586,7 +586,7 @@ ipsec_set_interface_sa (vnet_main_t * vnm, u32 hw_if_index, u32 sa_id,
if (ipsec_get_sa_index_by_sa_id (old_sa->id) == old_sa_index)
hash_unset (im->sa_index_by_sa_id, old_sa->id);
- if (!ipsec_add_del_sa_sess_cb (im, old_sa_index, 0))
+ if (ipsec_add_del_sa_sess_cb (im, old_sa_index, 0))
{
clib_war... |
Localize SwiftUI views | @@ -57,7 +57,7 @@ public struct JSONBrowserView: View {
let dismiss: (() -> Void)?
- init(title: String = "Inspector", dismiss: (() -> Void)? = nil, navBarMode: Binding<NavigationBarItem.TitleDisplayMode>, items: [String:Any], isArray: Bool = false) {
+ init(title: String = NSLocalizedString("inspector", bundle: SwiftU... |
Make sure we check the return value of extract_min_max()
Commit turned this function from returning void to
returning an int error code. This instance of calling it was
missed.
Found by Coverity. | @@ -667,7 +667,9 @@ static int asid_contains(ASIdOrRanges *parent, ASIdOrRanges *child)
for (;; p++) {
if (p >= sk_ASIdOrRange_num(parent))
return 0;
- extract_min_max(sk_ASIdOrRange_value(parent, p), &p_min, &p_max);
+ if (!extract_min_max(sk_ASIdOrRange_value(parent, p), &p_min,
+ &p_max))
+ return 0;
if (ASN1_INTEGE... |
Fixed collisions on windows | @@ -436,14 +436,14 @@ void SceneUpdateActorMovement_b(UBYTE i, VEC2D *update_dir)
}
// Check collisions on left tile
- collision_index = (scene_width * (next_ty - 1)) + (next_tx - 1);
+ collision_index = ((UWORD)scene_width * (next_ty - 1)) + (next_tx - 1);
if (scene_col_tiles[collision_index >> 3] & (1 << (collision_i... |
fix dragging lag | @@ -2191,6 +2191,7 @@ movemouse(const Arg *arg)
if (!selmon->lt[selmon->sellt]->arrange || c->isfloating)
resize(c, nx, ny, c->w, c->h, 1);
+ if (ev.xmotion.y_root < selmon->my + bh + 100) {
if (ev.xmotion.x_root < selmon->mx ||
ev.xmotion.x_root > selmon->mx + selmon->mw ||
ev.xmotion.y_root < selmon->my ||
@@ -2200,1... |
config_map: always compare key lengths | @@ -460,11 +460,18 @@ int flb_config_map_properties_check(char *context_name,
*/
static int properties_override_default(struct mk_list *properties, char *name)
{
+ int len;
struct mk_list *head;
struct flb_kv *kv;
+ len = strlen(name);
+
mk_list_foreach(head, properties) {
kv = mk_list_entry(head, struct flb_kv, _head)... |
Fix small rule name typo
I'm cannibalizing all the rules here to use in unit tests for plyara (https://github.com/plyara/plyara). I noticed that someone starting typing rest rather than test. r is next to t. | @@ -124,28 +124,28 @@ static void test_comparison_operators()
"rule test { condition: 0.5 <= 1}", NULL);
assert_true_rule(
- "rule rest { condition: 1.0 <= 1}", NULL);
+ "rule test { condition: 1.0 <= 1}", NULL);
assert_true_rule(
- "rule rest { condition: \"abc\" == \"abc\"}", NULL);
+ "rule test { condition: \"abc\" ... |
Refactor test_comment_handled_in_default()
Eliminates an unnecessary handler when we can use
accumulate_characters instead. | @@ -5228,17 +5228,6 @@ START_TEST(test_invalid_character_entity)
END_TEST
/* Test that processing instructions are picked up by a default handler */
-static void XMLCALL
-default_matching_handler(void *userData,
- const XML_Char *s,
- int len)
-{
- const char *target = (const char *)userData;
-
- if ((int)strlen(target... |
feat(hid): Enhance consumer report to support higher codes
Switch from single byte to double byte usages.
Allow the entire 0x0C page for future compatibility.
Closes Co-requisite of | @@ -116,18 +116,20 @@ static const u8_t zmk_hid_report_desc[] = {
/* LOGICAL_MINIMUM (0) */
HID_GI_LOGICAL_MIN(1),
0x00,
- /* LOGICAL_MAXIMUM (1) */
- HID_GI_LOGICAL_MAX(1),
+ /* LOGICAL_MAXIMUM (0xFFFF) */
+ HID_GI_LOGICAL_MAX(2),
+ 0xFF,
0xFF,
HID_LI_USAGE_MIN(1),
0x00,
- /* USAGE_MAXIMUM (Keyboard Application) */
- ... |
Update package repo details for matrix builds as well. | @@ -47,6 +47,8 @@ jobs:
with:
name: dist
path: dist
+ - name: "Update package details"
+ run: sudo apt --fix-missing update
- name: "Install Apache package"
run: sudo apt install -y apache2-dev
- name: "Update pip installation"
|
board/osiris/pwm.c: Format with clang-format
BRANCH=none
TEST=none
Tricium: disable | #include "pwm_chip.h"
const struct pwm_t pwm_channels[] = {
- [PWM_CH_FAN] = {
- .channel = 5,
+ [PWM_CH_FAN] = { .channel = 5,
.flags = PWM_CONFIG_OPEN_DRAIN,
- .freq = 25000
- },
- [PWM_CH_FAN2] = {
- .channel = 3,
+ .freq = 25000 },
+ [PWM_CH_FAN2] = { .channel = 3,
.flags = PWM_CONFIG_OPEN_DRAIN,
- .freq = 25000
- ... |
Added more details about WebSocket server to manpage | @@ -374,6 +374,14 @@ Do not show the last updated field displayed in the HTML generated report.
Do now show the progress metrics and parsing spinner.
.SS
SERVER OPTIONS
+.P
+.I Note
+This is just a WebSocket server to provide the raw real-time data.
+It is not a WebServer itself. To access your reports html file, you w... |
[stm32f0xx] Support multi-packet setup transactions. | @@ -143,9 +143,12 @@ void HAL_PCD_DataInStageCallback(PCD_HandleTypeDef *hpcd, uint8_t epnum)
LTRACEF("epnum %u, xfer count %u len %u\n", epnum, ep->xfer_count, ep->xfer_len);
if (epnum == 0) {
- // TODO(konkers): implement multi packet.
- struct ep_status *ep = &usbc.ep_in[0];
- if (ep->ack_ep0_in) {
+ struct ep_statu... |
testing/smart: fix wrong hard-coded device pathname and sector size | # define CONFIG_TESTING_SMART_VERBOSE 0
#endif
+/* Smartfs device naming ****************************************************/
+
+#define STR(s) STR2(s)
+#define STR2(s) #s
+
+#define TESTING_SMART_DEVNUM 1
+#define TESTING_SMART_PARTNAME "test"
+#define TESTING_SMART_DEVNAME "/dev/smart" STR(TESTING_SMART_DEVNUM) \
+ ... |
Reset the timeout as we get body chunks
Not doing so would result in h2o timing out while the request body
was still being sent by the client. | @@ -562,6 +562,8 @@ static int do_write_req(h2o_httpclient_t *_client, h2o_iovec_t chunk, int is_end
return 0;
}
+ h2o_timer_unlink(&client->super._timeout);
+
h2o_iovec_t iov = h2o_iovec_init(client->_body_buf_in_flight->bytes, client->_body_buf_in_flight->size);
if (client->_is_chunked) {
h2o_iovec_t bufs[3];
@@ -575... |
tm: Remove a check for NULL subtypes.
Callers should be using the default self_type, and never be creating a
type with 0 inner types. | @@ -92,8 +92,7 @@ static lily_type *lookup_type(lily_type *input_type)
lily_type *ret = NULL;
while (iter_type) {
- if (iter_type->subtypes != NULL &&
- iter_type->subtype_count == input_type->subtype_count &&
+ if (iter_type->subtype_count == input_type->subtype_count &&
(iter_type->flags & ~BUBBLE_FLAGS) ==
(input_ty... |
Fixed linux links
DEB <-> RPM | @@ -43,8 +43,8 @@ These builds reflects the latest changes from the `develop` branch and are updat
#### Linux
-[](https://circleci.com/api/v1.1/project/github/chrismaltby/gb-studio/latest/artifacts/... |
pico: start each eye from origin | @@ -575,6 +575,9 @@ JNIEXPORT void JNICALL Java_org_lovr_app_Activity_lovrPicoDrawEye(JNIEnv* jni, j
arr_push(&state.canvases, ((NativeCanvas) { .id = framebuffer, .instance = canvas }));
}
+ // start each eye from origin
+ lovrGraphicsOrigin();
+
for (uint32_t i = 0; i < 2; i++) {
float view[16];
mat4_identity(view);
|
khan: TODO, init pipe after unlink | @@ -109,7 +109,7 @@ u3_khan_io_init(u3_pier* pir_u)
{
c3_c pax_c[2048];
- // XX better error handling
+ // XX needs better error handling
if ( NULL == getcwd(pax_c, sizeof(pax_c)) ) {
c3_assert(!"khan-getcwd");
}
@@ -118,8 +118,9 @@ u3_khan_io_init(u3_pier* pir_u)
c3_assert(!"khan-chdir");
}
else {
- uv_pipe_init(u3L, ... |
Better text for change:
- Fix install of trust anchor when two anchors are present, makes both
valid. Checks hash of DS but not signature of new key. This fixes
the root.key file if created when unbound is installed between
sep11 and oct11 2017. | 22 August 2017: Wouter
- Fix install of trust anchor when two anchors are present, makes both
valid. Checks hash of DS but not signature of new key. This fixes
- installs between sep11 and oct11 2017.
+ the root.key file if created when unbound is installed between
+ sep11 and oct11 2017.
- tag 1.6.5 with pointrelease ... |
Doc: Fix incorrect contributor name in release notes
A typo from commit is at the origin of the mistake.
Author: Alexander Lakhin
Discussion: | @@ -3917,7 +3917,7 @@ Author: Michael Paquier <michael@paquier.xyz>
<member>Yuming Wang</member>
<member>YunQiang Su</member>
<member>Yuri Kurenkov</member>
- <member>Yusuke Egashita</member>
+ <member>Yusuke Egashira</member>
<member>Yuzuko Hosoya</member>
<member>Zhou Digoal</member>
</simplelist>
|
fix hub client ut | @@ -53,7 +53,7 @@ static void test_az_iot_hub_client_init_NULL_client_fails(void** state)
(void)state;
ASSERT_PRECONDITION_CHECKED(
- az_iot_hub_client_init(NULL, test_device_id, test_hub_hostname, NULL));
+ az_iot_hub_client_init(NULL, test_hub_hostname, test_device_id, NULL));
}
static void test_az_iot_hub_client_ini... |
interop: Output qlog | @@ -22,7 +22,7 @@ LOG=/logs/log.txt
if [ "$ROLE" == "client" ]; then
# Wait for the simulator to start up.
/wait-for-it.sh sim:57832 -s -t 30
- CLIENT_ARGS="server 443 --download /downloads -s --no-quic-dump --no-http-dump --timeout=5s"
+ CLIENT_ARGS="server 443 --download /downloads -s --no-quic-dump --no-http-dump --... |
Fix previous runas command | @@ -2704,17 +2704,13 @@ INT_PTR CALLBACK PhpRunFileWndProc(
}
else
{
- status = PhpRunFileProgram(
- context,
- commandString
- );
-
- if (NT_SUCCESS(status))
- PhpAddRunMRUListEntry(commandString);
+ status = PhpRunFileProgram(context, commandString);
}
if (NT_SUCCESS(status))
{
+ PhpAddRunMRUListEntry(commandString);... |
remove alignment from vec3 and mat3 | #endif
typedef float vec2[2];
-typedef CGLM_ALIGN_IF(8) float vec3[3];
+typedef float vec3[3];
typedef int ivec3[3];
typedef CGLM_ALIGN_IF(16) float vec4[4];
+typedef vec4 versor;
+typedef vec3 mat3[3];
#ifdef __AVX__
-typedef CGLM_ALIGN_IF(32) vec3 mat3[3];
typedef CGLM_ALIGN_IF(32) vec4 mat4[4];
#else
-typedef vec3 m... |
GH Actions: add -march=native build | @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- isax: ["", "-msse3", "-mssse3", "-msse4.1", "-msse4.2", "-mavx", "-mfma", "-mavx2"]
+ isax: ["", "-msse3", "-mssse3", "-msse4.1", "-msse4.2", "-mavx", "-mfma", "-mavx2", "-march=native"]
steps:
- uses: actions/checkout@v2
- name: Install APT Dependencies
|
extmod/modlwip: Fix read-polling of listening socket with a backlog.
The recent implementation of the listen backlog meant that the logic to
test for readability of such a socket changed, and this commit updates the
logic to work again. | @@ -292,9 +292,10 @@ typedef struct _lwip_socket_obj_t {
uint8_t type;
#define STATE_NEW 0
- #define STATE_CONNECTING 1
- #define STATE_CONNECTED 2
- #define STATE_PEER_CLOSED 3
+ #define STATE_LISTENING 1
+ #define STATE_CONNECTING 2
+ #define STATE_CONNECTED 3
+ #define STATE_PEER_CLOSED 4
// Negative value is lwIP e... |
Setenv for Plan 9. | @@ -12,11 +12,13 @@ use "sldup"
use "sleq"
use "slpush"
use "slurp"
+use "blat"
use "threadhooks"
pkg std =
const getenv : (name : byte[:] -> option(byte[:]))
const getenvv : (name : byte[:], default : byte[:] -> byte[:])
+ const setenv : (name : byte[:], val : byte[:] -> void)
;;
var envkey : byte[:][:]
@@ -64,3 +66,1... |
boot/bootutil; security fix - if BOOTUTIL_VALIDATE_SLOT0 was set,
bootloader would still boot image in slot0 with invalid signature. | @@ -572,17 +572,17 @@ boot_validate_slot(int slot)
return BOOT_EFLASH;
}
- if ((boot_data.imgs[slot].hdr.ih_magic != IMAGE_MAGIC ||
- boot_image_check(&boot_data.imgs[slot].hdr, fap) != 0) &&
- slot == 1) {
+ if (boot_data.imgs[slot].hdr.ih_magic != IMAGE_MAGIC ||
+ boot_image_check(&boot_data.imgs[slot].hdr, fap) != 0... |
crota: configure GPIOD2 as PMU alternate function
This will fix crota cannot boot from hibernate when hibernate.
BRANCH=none
TEST=verify DUT can boot from hibernate by lid open | @@ -104,6 +104,7 @@ ALTERNATE(PIN_MASK(8, 0x04), 0, MODULE_KB, GPIO_ODR_HIGH) /* KSO14/GPIO82 */
/* PMU alternate functions */
ALTERNATE(PIN_MASK(0, 0x01), 0, MODULE_PMU, GPIO_INT_BOTH | GPIO_HIB_WAKE_HIGH) /* PSL_IN2_L&GPI00/GPIO00 */
ALTERNATE(PIN_MASK(0, 0x02), 0, MODULE_PMU, GPIO_INT_BOTH | GPIO_HIB_WAKE_LOW) /* GP... |
runtime: use size_t instead of unsigned int for egress pool size
Bug reported by Jinyoung Oh | #define COMMAND_QUEUE_MCOUNT 4096
/* the egress buffer pool must be large enough to fill all the TXQs entirely */
-static unsigned int calculate_egress_pool_size(void)
+static size_t calculate_egress_pool_size(void)
{
- unsigned int buflen = MBUF_DEFAULT_LEN;
+ size_t buflen = MBUF_DEFAULT_LEN;
return align_up(PACKET_Q... |
Improve process tree sorting | @@ -1664,7 +1664,7 @@ BEGIN_SORT_FUNCTION(Virtualized)
{
PhpUpdateProcessNodeToken(node1);
PhpUpdateProcessNodeToken(node2);
- sortResult = intcmp(node1->VirtualizationEnabled, node2->VirtualizationEnabled);
+ sortResult = ucharcmp(node1->VirtualizationEnabled, node2->VirtualizationEnabled);
}
END_SORT_FUNCTION
@@ -179... |
dev-tools/numpy: fix centos buildrequires | @@ -35,17 +35,19 @@ Patch1: numpy-buildfix.patch
Patch2: numpy-intelccomp.patch
Patch3: numpy-intelfcomp.patch
Requires: lmod%{PROJ_DELIM} >= 7.6.1
-BuildRequires: %{python_module setuptools}
BuildRequires: python-rpm-macros%{PROJ_DELIM}
Requires: python
Provides: numpy = %{version}
%if 0%{?suse_version}
BuildRequires:... |
Have mimiclib accept both giflib v4 and v5. | @@ -32,10 +32,19 @@ int mimic_gif_read_func(GifFileType* f, GifByteType* ptr, int len) {
const char* mimic_gif_decode(puffs_base__buf1* dst, puffs_base__buf1* src) {
const char* ret = NULL;
- // TODO: #ifdef API calls for libgif version 4 vs version 5? Note that:
- // - Version 4 ships with Ubunty 14.04 LTS "Trusty".
-... |
board/volet/sensors.c: Format with clang-format
BRANCH=none
TEST=none | @@ -39,23 +39,17 @@ static struct bmi_drv_data_t g_bmi160_data;
static struct icm_drv_data_t g_icm426xx_data;
/* Rotation matrix for the lid accelerometer */
-static const mat33_fp_t lid_standard_ref = {
- { FLOAT_TO_FP(-1), 0, 0},
+static const mat33_fp_t lid_standard_ref = { { FLOAT_TO_FP(-1), 0, 0 },
{ 0, FLOAT_TO_F... |
LinkWindow: fix duplicate keys | @@ -84,19 +84,18 @@ export function LinkWindow(props: LinkWindowProps) {
...props,
node,
measure,
- key: index.toString()
};
if(index.eq(first ?? bigInt.zero)) {
return (
- <>
+ <React.Fragment key={index.toString()}>
<Col key={index.toString()} mx="auto" mt="4" maxWidth="768px" width="100%" flexShrink={0} px={3}>
<Lin... |
Fixing Imath automatic install. | @@ -56,8 +56,10 @@ if(NOT Imath_FOUND)
# Python bindings will be generated for Imath if PYTHON=ON
)
- include_directories(${EXTERNAL_INSTALL_LOCATION}/include)
- link_directories(${EXTERNAL_INSTALL_LOCATION}/lib)
+ include_directories(${EXTERNAL_INSTALL_LOCATION}/Imath)
+ include_directories(${EXTERNAL_INSTALL_LOCATION... |
update 80m WSPR frequency | @@ -7,7 +7,7 @@ bands = (
// { freq = 0.137500; chan = 1; },
// { freq = 0.475700; chan = 1; },
{ freq = 1.838100; chan = 1; },
- { freq = 3.594100; chan = 1; },
+ { freq = 3.570100; chan = 1; },
{ freq = 5.288700; chan = 1; },
{ freq = 7.040100; chan = 1; },
{ freq = 10.140200; chan = 1; },
|
Update %mint task structure in helm | $% [%bonk wire ~] ::
{$conf wire dock $load ship term} ::
{$flog wire flog:dill} ::
- [%mint wire our=ship p=ship q=safe:rights:jael]
+ [%mint wire p=ship q=safe:rights:jael]
{$nuke wire ship} ::
{$serv wire ?(desk beam)} ::
{$poke wire dock pear} ::
:: our new private key, as a +tree of +rite
::
=/ rit (sy [%jewel (my... |
mat4:__mul works with vec3 in vanillua; | @@ -240,10 +240,19 @@ static int l_lovrMat4Orthographic(lua_State* L) {
static int l_lovrMat4__mul(lua_State* L) {
mat4 m = luax_checkmathtype(L, 1, MATH_MAT4, NULL);
- mat4 n = luax_checkmathtype(L, 2, MATH_MAT4, NULL);
+ MathType type;
+ float* n = luax_tomathtype(L, 2, &type);
+ if (!n || type == MATH_QUAT) return l... |
Disable the internal session cache in OpenSSL | @@ -112,7 +112,7 @@ int TLSClientContext::init(const char *private_key_file,
if (config.session_file) {
SSL_CTX_set_session_cache_mode(
- ssl_ctx_, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL_STORE);
+ ssl_ctx_, SSL_SESS_CACHE_CLIENT | SSL_SESS_CACHE_NO_INTERNAL);
SSL_CTX_sess_set_new_cb(ssl_ctx_, new_session_cb... |
added socket improvements from hcxlabtool | @@ -7134,6 +7134,10 @@ static struct packet_mreq mr;
static struct ethtool_drvinfo drvinfo;
static struct iw_param txpower;
static double lfin;
+static int enable = 1;
+static int fdnum;
+static fd_set readfds;
+static struct timespec tsfd;
fd_socket = 0;
memset(&mac_orig, 0, 6);
@@ -7304,6 +7308,25 @@ if(setsockopt(fd... |
Add -march=skylake-avx512 to AVX512 compile check and suppress its output | @@ -68,7 +68,7 @@ endif()
if (X86_64 OR X86)
file(WRITE ${PROJECT_BINARY_DIR}/avx512.tmp "int main(void){ __asm__ volatile(\"vbroadcastss -4 * 4(%rsi), %zmm2\"); }")
-execute_process(COMMAND ${CMAKE_C_COMPILER} -v -o ${PROJECT_BINARY_DIR}/avx512.o -x c ${PROJECT_BINARY_DIR}/avx512.tmp RESULT_VARIABLE NO_AVX512)
+execut... |
CMake: force use of internal OpenCL headers if OCL-ICD is 3.0-compatible
This enables some additional tests to run, in case the system-wide installed
headers are older than 3.0 and the OCL-ICD loader is 3.0-compatible. | @@ -973,16 +973,27 @@ if(NOT APPLE)
find_file(OPENCL_HPP opencl.hpp PATH_SUFFIXES CL)
endif()
-# if ICD is disabled, we might as well compile with our own headers
-if(OPENCL_H AND ENABLE_ICD)
- message(STATUS "OpenCL.h found (${OPENCL_H}) and ICD enabled, NOT installing our headers")
+if(OPENCL_H AND ENABLE_ICD AND (NO... |
graph-pull-hook: do not archive on nack | ++ on-pull-nack
|= [=resource =tang]
^- (quip card _this)
- %- (slog leaf+"nacked {<resource>}" tang)
- :_ this
- ?. (~(has in get-keys:gra) resource) ~
- =- [%pass /pull-nack %agent [our.bowl %graph-store] %poke %graph-update-3 -]~
- !> ^- update:store
- [now.bowl [%archive-graph resource]]
+ `this
::
++ on-pull-kick
... |
Change resize to use grid ruler increments | @@ -639,20 +639,24 @@ int main(int argc, char** argv) {
++ruler_spacing_y;
break;
case '(':
- tui_resize_grid(&field, &markmap_r, 0, -1, tick_num, &scratch_field,
- &undo_hist, &tui_cursor, &needs_remarking);
+ tui_resize_grid(&field, &markmap_r, 0, -(Isz)ruler_spacing_x, tick_num,
+ &scratch_field, &undo_hist, &tui_cu... |
esp32/mphalport: Improve mp_hal_stdout_tx_XXX functions.
This makes way for enabling uos.dupterm(). | */
#include <stdio.h>
+#include <string.h>
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
@@ -52,36 +53,36 @@ int mp_hal_stdin_rx_chr(void) {
}
}
-void mp_hal_stdout_tx_char(char c) {
- uart_tx_one_char(c);
- //mp_uos_dupterm_tx_strn(&c, 1);
-}
-
void mp_hal_stdout_tx_str(const char *str) {
- MP_THREAD_GIL_E... |
Do not require Lua 5.4.3 in the CI scripts
While the Pallene programs must use exactly Lua 5.4.3, the compiler itself should work with any
version of Lua >= 5.3. Therefore, we don't need to specify the full version of Lua in the
CI scripts. | @@ -21,8 +21,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: leafo/gh-actions-lua@v8.0.0
- with:
- luaVersion: "5.4.3"
- uses: leafo/gh-actions-luarocks@v4.0.0
- name: Install Luacheck
@@ -37,8 +35,6 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: leafo/gh-actions-lua@v8.0.0
- with:
- luaVersion: "5.4.3"
- us... |
Doc: Describe CREATE INDEX deduplication strategy.
The B-Tree index deduplication strategy used during CREATE INDEX and
REINDEX differs from the lazy strategy used by retail inserts. Make
that clear by adding a new paragraph to the B-Tree implementation
section of the documentation.
In passing, do some copy-editing of... | @@ -622,12 +622,13 @@ equalimage(<replaceable>opcintype</replaceable> <type>oid</type>) returns bool
</para>
<note>
<para>
- While NULL is generally not considered to be equal to any other
- value, including NULL, NULL is nevertheless treated as just
- another value from the domain of indexed values by the B-Tree
- imp... |
fix build with cgo | @@ -3804,12 +3804,12 @@ module GO_BASE_UNIT: BASE_UNIT {
when ($OS_DARWIN) {
GO_TOOLCHAIN_ENV += ${env:"CC=clang"} ${env:"PATH=$(DEFAULT_DARWIN_X86_64)/bin:$MACOS_SDK_RESOURCE_GLOBAL/usr/bin:$CCTOOLS_ROOT_RESOURCE_GLOBAL/bin"}
- GO_EXTLD = ++extld clang ++extldflags $LD_SDK_VERSION -undefined dynamic_lookup $C_FLAGS_PL... |
Remove legacy SetLastError | @@ -316,12 +316,6 @@ HANDLE PhCreateThread(
NULL
);
- // NOTE: PhCreateThread previously used CreateThread with callers using GetLastError()
- // for checking errors. We need to preserve this behavior for compatibility -dmex
- // TODO: Migrate code over to PhCreateThreadEx and remove this function.
- //RtlSetLastWin32E... |
BugID:17646749:using module name in LITE_malloc for impl logpost | #define LOG_PUBLISH_MSG_MAXLEN (255)
+#define IMPL_LOGPOST_MALLOC(size) LITE_malloc(size, MEM_MAGIC, "impl.logpost")
+#define IMPL_LOGPOST_FREE(ptr) LITE_free(ptr)
+
static int iotx_mc_log_post(void *pclient, char *payload);
static const char THING_LOG_POST_PARAMS[] =
@@ -29,7 +32,7 @@ int IOT_MQTT_LogPost(void *pHandl... |
u3: use u3s_cue_sill_with() in u3u_uncram() | @@ -860,23 +860,20 @@ u3u_uncram(c3_c* dir_c, c3_d eve_d)
// XX errors are fatal, barring a full "u3m_reboot"-type operation.
//
{
- ur_dict32_t dic_u = {0};
- u3_noun roc, cod, ref;
-
// XX tune the initial dictionary size for less reallocation
//
- ur_dict32_grow((ur_root_t*)0, &dic_u, ur_fib33, ur_fib34);
+ u3_cue_s... |
cmake checks socket API params
Necessary for HP-UX and other legacy platforms. | @@ -178,9 +178,6 @@ if (MINGW)
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -D_CRT_RAND_S")
endif ()
-# Reasonable default. CheckCompiler.m4 checks thoroughly for HP-UX's sake.
-set (MONGOC_SOCKET_ARG2 "struct sockaddr")
-
include(CheckTypeSize)
if (MSVC)
SET(CMAKE_EXTRA_INCLUDE_FILES "ws2tcpip.h")
@@ -198,6 +195,54 @@ else()
... |
sizeof(struct xdag_field) | @@ -630,7 +630,7 @@ static int recieve_data_from_connection(connection_list_element *connection, int
conn_data->data_size += data_size;
- if(conn_data->data_size == sizeof(struct xdag_field)) {
+ if(conn_data->data_size == sizeof(struct xdag_field)) { //32
conn_data->data_size = 0;
dfslib_uncrypt_array(g_crypt, conn_da... |
Added name and contribution to authors.csv. Noting that even before adding this line, the author list does not appear to compile correctly. | @@ -42,6 +42,7 @@ Eifler,Tim,"Tim Eifler",Contributor,"Jet Propulsion Laboratory, California Insti
Eifler,Tim,"Tim Eifler",Contributor,"Department of Physics, California Institute of Technology, Pasadena, CA 91125, USA","Reviewed/tested code.",tim.eifler@jpl.nasa.gov
Hlozek,Ren\'ee,"Ren\'ee Hlozek",Contributor,"Dunlap ... |
feat(fabric tests):
add the test case of CreateWallet_0002 | @@ -264,6 +264,28 @@ START_TEST(test_001CreateWallet_0001CreateOneTimeWalletSuccess)
rtnVal = BoatWalletCreate(BOAT_PROTOCOL_HLFABRIC, NULL, &wallet_config, sizeof(BoatHlfabricWalletConfig));
+ ck_assert_int_eq(rtnVal, 0);
+ ck_assert(g_boat_iot_sdk_context.wallet_list[0].is_used == true);
+ g_fabric_wallet_ptr = BoatG... |
Adapt tests to having only a subset of types in the library | @@ -529,16 +529,20 @@ CTEST(potrf, smoketest_trivial){
for (j = 0; j < n; ++j) {
double err;
+#ifdef BUILD_SINGLE
err = fabs(A1s[i+n*j] - Bs[i+n*j]);
if (err > 1e-5) {
CTEST_ERR("%s:%d %c s(%d,%d) difference: %g", __FILE__, __LINE__, uplo, i, j, err);
}
-
+#endif
+#ifdef BUILD_DOUBLE
err = fabs(A1d[i+n*j] - Bd[i+n*j]);... |
Added caveat on BBKS for MCMC notebook | @@ -986,7 +986,7 @@ Correlation.ipynb.
MCMC Likelihood Analysis.ipynb
\end{verbatim}
-Note that the likelihood analysis in the last notebook is not intended to be realistic, but it gives an operational example of how {\tt CCL} can be integrated into such an analysis. In particular, the notebook only considers cosmic sh... |
Fix bugs in gopts_win32.h | @@ -25,7 +25,7 @@ static int loadArgs (char *** argvp)
return 0;
}
- char ** argv = elektraMalloc ((count + 1) * sizeof (char *));
+ char ** argv = elektraMalloc ((argc + 1) * sizeof (char *));
for (int i = 0; i < argc; ++i)
{
@@ -41,7 +41,7 @@ static int loadArgs (char *** argvp)
*argvp = argv;
- return nArgs;
+ retur... |
[BSP] Update module compiling parameters for QEMU. | @@ -49,12 +49,12 @@ if PLATFORM == 'gcc':
else:
CFLAGS += ' -O2'
- CXXFLAGS = CFLAGS
+ CXXFLAGS = CFLAGS + ' -Woverloaded-virtual -fno-exceptions -fno-rtti'
M_CFLAGS = CFLAGS + ' -mlong-calls -fPIC '
M_CXXFLAGS = CXXFLAGS + ' -mlong-calls -fPIC'
M_LFLAGS = DEVICE + CXXFLAGS + ' -Wl,--gc-sections,-z,max-page-size=0x4' +... |
[Kernel] Fix APIC timer register offsets | @@ -61,7 +61,6 @@ impl ProcessorLocalApic {
}
fn write_register(&self, register_idx: usize, val: u32) {
- //println!("Writing {val:08x} to Reg {register_idx}");
let register_addr = (self.base + (register_idx * 0x10)).to_remapped_high_memory_virt();
let register: &'static mut u32 = unsafe { &mut *(register_addr.0 as *mu... |
When activating providers via config check we've not already activated them
We skip the activation if we already configured them.
Fixes | #include <openssl/err.h>
#include <openssl/conf.h>
#include <openssl/safestack.h>
+#include <openssl/provider.h>
#include "internal/provider.h"
#include "internal/cryptlib.h"
#include "provider_local.h"
@@ -107,6 +108,26 @@ static int provider_conf_params(OSSL_PROVIDER *prov,
return ok;
}
+static int prov_already_activ... |
external/mambo: Add support for readline if it exists
Add support for tclreadline package if it is present.
This patch loads the package and uses it when the
simulation stops for any reason. | # need to get images path defined early
source $env(LIB_DIR)/ppc/util.tcl
+#
+# Call tclreadline's Loop to move to friendlier
+# commandline if one exists
+#
+proc readline { } {
+ set readline [catch { package require tclreadline }]
+ if { $readline == 0 } {
+ ::tclreadline::Loop
+ }
+}
+
proc mconfig { name env_name ... |
test: Add test cases for RESP3 bool | @@ -634,6 +634,35 @@ static void test_reply_reader(void) {
strcasecmp(reader->errstr,"Bad nil value") == 0);
freeReplyObject(reply);
redisReaderFree(reader);
+
+ test("Can parse RESP3 bool (true): ");
+ reader = redisReaderCreate();
+ redisReaderFeed(reader, "#t\r\n",4);
+ ret = redisReaderGetReply(reader,&reply);
+ te... |
Add a test for OSSL_LIB_CTX_set0_default
Also includes testing for OSSL_LIB_CTX_get0_global_default(). | @@ -73,9 +73,64 @@ static int test_def_context(void)
return test_context(NULL);
}
+static int test_set0_default(void)
+{
+ OSSL_LIB_CTX *global = OSSL_LIB_CTX_get0_global_default();
+ OSSL_LIB_CTX *local = OSSL_LIB_CTX_new();
+ OSSL_LIB_CTX *prev;
+ int testresult = 0;
+ FOO *data = NULL;
+
+ if (!TEST_ptr(global)
+ ||... |
porting: Remove extra file from Makefile.defs
By default all files are build and this list should be used only
for exluding. | @@ -50,7 +50,6 @@ NIMBLE_SRC := \
$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT)/nimble/host/services/lls/src/*.c)) \
$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT)/nimble/host/services/tps/src/*.c)) \
$(filter-out $(NIMBLE_IGNORE), $(wildcard $(NIMBLE_ROOT)/nimble/host/store/ram/src/*.c)) \
- $(NIM... |
framework/st_things: fix an array write out-of-bound issue
'abs_json_path' buffer is allocated with length 'len_of_path', write to index 'len_of_path' is out-of-bound | @@ -158,7 +158,7 @@ static char *things_make_abs_device_def_path(const char *json_path)
abs_json_path = (char *)things_malloc(len_of_path * sizeof(char));
strncpy(abs_json_path, json_path, len_of_path);
}
- abs_json_path[len_of_path] = '\0';
+ abs_json_path[len_of_path - 1] = '\0';
return abs_json_path;
}
|
Bumping version number for pending 1.8.1 release | #ifndef LIBSSH2_H
#define LIBSSH2_H 1
-#define LIBSSH2_COPYRIGHT "2004-2016 The libssh2 project and its contributors."
+#define LIBSSH2_COPYRIGHT "2004-2019 The libssh2 project and its contributors."
/* We use underscore instead of dash when appending DEV in dev versions just
to make the BANNER define (used by src/sess... |
z_shieldcoinbase appears to need time to mature before being useful | @@ -190,6 +190,95 @@ namespace MiningCore.Blockchain.ZCash
/// </summary>
private async Task ShieldCoinbaseAsync()
{
+ // Emulate z_shieldcoinbase until its stable
+#if true
+ // get t-addr balance
+ var balanceResult = await daemon.ExecuteCmdSingleAsync<object>(BitcoinCommands.GetBalance);
+
+ if (balanceResult.Error ... |
Remove mandatory generated files too | @@ -408,7 +408,7 @@ libclean:
clean: libclean
$(RM) $(PROGRAMS) $(TESTPROGS) $(ENGINES) $(SCRIPTS)
- $(RM) $(GENERATED)
+ $(RM) $(GENERATED_MANDATORY) $(GENERATED)
-$(RM) `find . -name '*{- $depext -}' -a \! -path "./.git/*"`
-$(RM) `find . -name '*{- $objext -}' -a \! -path "./.git/*"`
$(RM) core
|
remove duplicate NBR_TABLE_CONF_MAX_NEIGHBORS definition: already defined in contiki-default-conf.h | @@ -53,12 +53,7 @@ typedef enum {
NBR_TABLE_REASON_SIXTOP,
} nbr_table_reason_t;
-/* Neighbor table size */
-#ifdef NBR_TABLE_CONF_MAX_NEIGHBORS
#define NBR_TABLE_MAX_NEIGHBORS NBR_TABLE_CONF_MAX_NEIGHBORS
-#else /* NBR_TABLE_CONF_MAX_NEIGHBORS */
-#define NBR_TABLE_MAX_NEIGHBORS 8
-#endif /* NBR_TABLE_CONF_MAX_NEIGHBO... |
Test attribute with high-byte-set character name | @@ -6070,6 +6070,27 @@ START_TEST(test_trailing_spaces_in_elements)
}
END_TEST
+START_TEST(test_utf16_attribute)
+{
+ const char text[] =
+ /* <d {KHO KHWAI}{CHO CHAN}='a'/>
+ * where {KHO KHWAI} = U+0E04 = 0xe0 0xb8 0x84 in UTF-8
+ * and {CHO CHAN} = U+0E08 = 0xe0 0xb8 0x88 in UTF-8
+ */
+ "<\0d\0 \0\x04\x0e\x08\x0e=\... |
Re-order rac.Writer fields | @@ -208,14 +208,6 @@ type Writer struct {
// Nil is an invalid value.
Writer io.Writer
- // IndexLocation is whether the index is at the start or end of the RAC
- // file.
- //
- // See the RAC specification for further discussion.
- //
- // The zero value of this field is IndexLocationAtEnd: a one pass encoding.
- Ind... |
Add print encoding unittests. | @@ -18,3 +18,43 @@ TEST_CASE("SDL renderer") {
TCOD_console_delete(NULL);
}
+
+TEST_CASE("Console ascii") {
+ TCODConsole console = TCODConsole(5, 1);
+ console.print(0, 0, "Test");
+ for (int i = 0; i < 5; ++i) {
+ CHECK(console.getChar(i, 0) == (int)("Test "[i]));
+ }
+}
+
+TEST_CASE("Console eascii") {
+ TCODConsole... |
BugID:17795330:RHINO_CONFIG_MM_TLF can be closed, when closed use malloc instead | @@ -672,7 +672,6 @@ int aos_work_cancel(aos_work_t *work)
}
#endif
-#if (RHINO_CONFIG_MM_TLF > 0)
void *aos_zalloc(unsigned int size)
{
void *tmp = NULL;
@@ -819,7 +818,6 @@ void aos_free(void *mem)
krhino_mm_free(mem);
}
-#endif
long long aos_now(void)
{
|
existence is questionable | ::
$them :: outbound request
?~ p.kyz
- =+ sud=(need (~(get by kes) hen))
+ ?~ sud=(~(get by kes) hen)
+ +>.$
=. +>.$
%_ +>.$
- mow :_(mow [ged [%give %thus sud ~]])
- q.ask (~(del by q.ask) sud)
+ mow :_(mow [ged [%give %thus u.sud ~]])
+ q.ask (~(del by q.ask) u.sud)
kes (~(del by kes) hen)
==
::
|
misc: update copy_package utility to include "-i" option which can be
used to increment release strings | #--------------------------------------------------------------------
if [ "$#" -lt 3 ];then
- echo "usage: `basename $0` [source-project] [target-project] [pkg-name]"
+ echo " "
+ echo "usage: `basename $0` <OPTIONS> [source-project] [target-project] [pkg-name]"
+ echo " "
+ echo "where OPTIONS are:"
+ echo " -i maint... |
clay: speed up +checkout-changes | ::
++ checkout-changes
|= [=ford=args:ford:fusion changes=(map path (each page lobe))]
- =/ cans=(list [=path change=(each page lobe)]) ~(tap by changes)
- |- ^- [(map path [=lobe =cage]) ford-cache]
- ?~ cans
- [~ ford-cache.ford-args]
+ ^- [(map path [=lobe =cage]) ford-cache]
+ %+ roll `(list [path (each page lobe)]... |
esp_transport_destroy: Fix memory leak
if tcp_transport component was used separately (e.g. using tranpsort_ssl.h directly without building list of transport) then it leaks memory on unitialization
Merges
Closes | @@ -110,9 +110,6 @@ esp_err_t esp_transport_list_clean(esp_transport_list_handle_t list)
esp_transport_handle_t tmp;
while (item != NULL) {
tmp = STAILQ_NEXT(item, next);
- if (item->_destroy) {
- item->_destroy(item);
- }
esp_transport_destroy(item);
item = tmp;
}
@@ -137,6 +134,9 @@ esp_transport_handle_t esp_transpo... |
Fix namespace test setup routine to work properly in builds | @@ -7076,7 +7076,7 @@ END_TEST
static void
namespace_setup(void)
{
- parser = XML_ParserCreateNS(NULL, ' ');
+ parser = XML_ParserCreateNS(NULL, XCS(' '));
if (parser == NULL)
fail("Parser not created.");
}
|
Completing buffers immediately
This fixes crash introduced in | @@ -1369,14 +1369,12 @@ nxt_h1p_complete_buffers(nxt_task_t *task, nxt_h1proto_t *h1p, nxt_bool_t all)
size_t size;
nxt_buf_t *b, *in, *next;
nxt_conn_t *c;
- nxt_work_queue_t *wq;
nxt_debug(task, "h1p complete buffers");
b = h1p->buffers;
c = h1p->conn;
in = c->read;
- wq = &task->thread->engine->fast_work_queue;
if (... |
apple: set -D_DARWIN_C_SOURCE globally | @@ -90,6 +90,17 @@ if (CMAKE_COMPILER_IS_GNUCXX)
endif (WIN32)
endif (CMAKE_COMPILER_IS_GNUCXX)
+#
+# Platform specific settings
+#
+if (APPLE)
+
+ # Workaround to not loose functions as soon as feature test macros are used
+ # https://boringssl.googlesource.com/boringssl/+/63a0797ff247f13870b649c3f6239d80be202752
+ # ... |
VERSION bump to version 2.0.255 | @@ -61,7 +61,7 @@ set (CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_BINARY_DIR})
# set version of the project
set(LIBYANG_MAJOR_VERSION 2)
set(LIBYANG_MINOR_VERSION 0)
-set(LIBYANG_MICRO_VERSION 254)
+set(LIBYANG_MICRO_VERSION 255)
set(LIBYANG_VERSION ${LIBYANG_MAJOR_VERSION}.${LIBYANG_MINOR_VERSION}.${LIBYANG_MICRO_VERSION}... |
common/port80.c: Format with clang-format
BRANCH=none
TEST=none | @@ -54,14 +54,15 @@ void port_80_write(int data)
* developers to help debug BIOS progress by tracing port80 messages.
*/
if (print_in_int)
- CPRINTF("%c[%pT Port 80: 0x%02x]",
- scroll ? '\n' : '\r', PRINTF_TIMESTAMP_NOW, data);
+ CPRINTF("%c[%pT Port 80: 0x%02x]", scroll ? '\n' : '\r',
+ PRINTF_TIMESTAMP_NOW, data);
h... |
newlib: using lwip implementation of interface name/index conversion
Links | #define _ESP_PLATFORM_NET_IF_H_
#include "lwip/sockets.h"
+#include "lwip/if_api.h"
#define MSG_DONTROUTE 0x4 /* send without using routing tables */
#define SOCK_SEQPACKET 5 /* sequenced packet stream */
#define SOCK_SEQPACKET 5 /* sequenced packet stream */
#define SOMAXCONN 128
-#define IF_NAMESIZE 16
-
#define IPV6... |
Build openmp before extras to make omp.h available to libm | @@ -95,7 +95,7 @@ date
echo " ================= START build_aomp.sh ==================="
echo
if [ "$AOMP_STANDALONE_BUILD" == 1 ] ; then
- components="roct rocr project libdevice extras openmp pgmath flang flang_runtime comgr rocminfo"
+ components="roct rocr project libdevice openmp extras pgmath flang flang_runtime ... |
nimble/ll: Fix Extended Advertising Set Parameters parsing
Some parameters were not ignored correctly. | @@ -3212,8 +3212,7 @@ ble_ll_adv_ext_set_param(const uint8_t *cmdbuf, uint8_t len,
goto done;
}
- if ((cmd->own_addr_type > BLE_HCI_ADV_OWN_ADDR_MAX) ||
- (cmd->peer_addr_type > BLE_HCI_ADV_PEER_ADDR_MAX)) {
+ if (cmd->own_addr_type > BLE_HCI_ADV_OWN_ADDR_MAX) {
rc = BLE_ERR_INV_HCI_CMD_PARMS;
goto done;
}
@@ -3226,7 +... |
docs: add docker section to GETSTARTED and fix formatting issues | kdb run_nokdbtests
```
+## Docker
+
+ In order to ease the above process, we also provide [up-to-date docker images](https://hub.docker.com/r/elektra/elektra) which you can use to try docker without having to install and run docker on your local machine.
+
+ More detailed tutorials on running specific taks or tools:
+-... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.