message stringlengths 6 474 | diff stringlengths 8 5.22k |
|---|---|
add per_float_feature_binarization parameter to python | @@ -2939,6 +2939,10 @@ class CatBoostClassifier(CatBoost):
- 'GreedyLogSum'
- 'MaxLogSum'
- 'MinEntropy'
+ per_float_feature_binarization : list of strings, [default=['0:32:Forbidden:GreedyLogSum', '1:32:Forbidden:GreedyLogSum', ...]]
+ List of float binarization descriptions.
+ Format : see documentation
+ Example: ['... |
Add check read ptr macro | @@ -409,6 +409,29 @@ static inline int mbedtls_ssl_chk_buf_ptr( const uint8_t *cur,
} \
} while( 0 )
+/**
+ * \brief This macro checks if the remaining size in a input buffer is
+ * greater or equal than a needed space. If it is not the case,
+ * it returns an SSL_DECODE_ERROR error and sends DECODE_ERROR
+ * alert mes... |
mdns: Fix potential null dereference identified by fuzzer tests | @@ -2775,7 +2775,8 @@ static bool _mdns_question_matches(mdns_parsed_question_t * question, uint16_t t
}
} else if (service && (type == MDNS_TYPE_SRV || type == MDNS_TYPE_TXT)) {
const char * name = _mdns_get_service_instance_name(service->service);
- if (name && question->host && !strcasecmp(name, question->host)
+ if... |
sysdeps/managarm: Handle EINVAL in ioctl(TIOCGWINSZ) | @@ -2768,6 +2768,8 @@ int sys_ioctl(int fd, unsigned long request, void *arg, int *result) {
managarm::fs::SvrResponse<MemoryAllocator> resp(getSysdepsAllocator());
resp.ParseFromArray(recv_resp->data, recv_resp->length);
+ if(resp.error() == managarm::fs::Errors::ILLEGAL_OPERATION_TARGET)
+ return EINVAL;
__ensure(res... |
remove watch only coins from coincontrol dialog | @@ -675,22 +675,6 @@ void WalletModel::listCoins(std::map<QString, std::vector<COutput> >& mapCoins)
std::vector<COutput> vCoins;
wallet->AvailableCoins(vCoins);
- LOCK2(cs_main, wallet->cs_wallet); // ListLockedCoins, mapWallet
- std::vector<COutPoint> vLockedCoins;
-
- // add locked coins
- BOOST_FOREACH(const COutPo... |
envydis: Rename sigauth to sigcmp | @@ -294,7 +294,7 @@ static struct insn tabcocmd[] = {
* expanded key - ie. you need to stuff the key through ckexp before
* use for decryption. */
{ 0xd4000000, 0xfc000000, N("cdec"), CREG1, CREG2 },
- { 0xd8000000, 0xfc000000, N("csigauth"), CREG1, CREG2 },
+ { 0xd8000000, 0xfc000000, N("csigcmp"), CREG1, CREG2 },
/* ... |
lovr.filesystem.getDirectoryItems works if table.sort is unavailable;
It just doesn't sort the output. | @@ -129,9 +129,15 @@ static int l_lovrFilesystemGetDirectoryItems(lua_State* L) {
}
lua_getglobal(L, "table");
+ if (lua_type(L, -1) == LUA_TTABLE) {
lua_getfield(L, -1, "sort");
+ if (lua_type(L, -1) == LUA_TFUNCTION) {
lua_pushvalue(L, 2);
lua_call(L, 1, 0);
+ } else {
+ lua_pop(L, 1);
+ }
+ }
lua_pop(L, 1);
return 1... |
multiline: fix last_flush data type | @@ -261,7 +261,7 @@ struct flb_ml_group {
struct flb_ml {
flb_sds_t name; /* name of this multiline setup */
int flush_ms; /* max flush interval found in groups/parsers */
- time_t last_flush; /* last flush time (involving groups) */
+ uint64_t last_flush; /* last flush time (involving groups) */
struct mk_list groups;... |
lowercase readme | # RISC-V Project Template
-**THIS BRANCH IS UNDER DEVELOPMENT**
-**IT CURRENTLY HAS MANY SUBMODULES**
-**PLEASE RUN ./scripts/init-submodules-no-riscv-tools.sh TO UPDATE SUBMODULES, UNLESS YOU WANT TO SPEND A LONG TIME WAITING FOR SUBMODULE TO CLONE**
+**This branch is under development**
+**It currently has many submo... |
Narrow the scope of a local variable.
This is better style and more symmetrical with the other if-branch.
This likely should have been included in (which created
the opportunity), but it was overlooked.
Japin Li
Discussion: | @@ -493,7 +493,6 @@ logicalrep_write_tuple(StringInfo out, Relation rel, HeapTuple tuple, bool binar
HeapTuple typtup;
Form_pg_type typclass;
Form_pg_attribute att = TupleDescAttr(desc, i);
- char *outputstr;
if (att->attisdropped || att->attgenerated)
continue;
@@ -537,6 +536,8 @@ logicalrep_write_tuple(StringInfo out... |
CLEANUP: fixed do_smmgr_memid comment | @@ -366,11 +366,12 @@ static inline int do_smmgr_memid(int slen, bool above)
}
int smid = cls->tocnt + ((slen-cls->tolen) / cls->sulen);
/* The above code logic likes followings.
- if (slen < ( 2*1024)) return ( 0 + ((slen ) / 16));
- if (slen < ( 6*1024)) return (128 + ((slen-( 2*1024)) / 32));
- if (slen < (14*1024))... |
[lib][debugcommands] add a workaround for gcc 12.1
GCC 12 seems to be much more aggressive about warnings about any
dereferences near 0. For this particular piece of code, which is
explicitly trying to force a fault by touching address 1, simply disable
the warning around the block of code. | @@ -305,6 +305,9 @@ static int cmd_sleep(int argc, const console_cmd_args *argv) {
return 0;
}
+/* fix warning for the near-null pointer dereference below with gcc 12.x+ */
+#pragma GCC diagnostic push
+#pragma GCC diagnostic ignored "-Warray-bounds"
static int cmd_crash(int argc, const console_cmd_args *argv) {
/* sho... |
bumping openmpi version to 1.10.7 | @@ -37,7 +37,7 @@ Name: %{pname}-psm2-%{compiler_family}%{PROJ_DELIM}
Name: %{pname}-%{compiler_family}%{PROJ_DELIM}
%endif
-Version: 1.10.4
+Version: 1.10.7
Release: 1%{?dist}
License: BSD-3-Clause
Group: %{PROJ_NAME}/mpi-families
|
fix duplicate dealloc | @@ -281,7 +281,6 @@ cryptoWalletManagerRecoverTransferFromTransferBundleXTZ (BRCryptoWalletManager m
BRTezosAddress destination = tezosTransferGetTarget (foundTransfer);
bool foundBurnTransfer = (1 == tezosAddressIsUnknownAddress (destination));
tezosAddressFree (destination);
- cryptoTransferGive (baseTransfer);
if (i... |
set guc main_disp_connections_per_thread when init | @@ -22,6 +22,7 @@ try:
import os
import sys
import re
+ import math
import logging, time
import subprocess
import threading
@@ -309,6 +310,26 @@ class HawqInit:
logger.error("Set default_hash_table_bucket_number failed")
return result
+ def set_main_disp_connections_per_thread(self):
+ if 'main_disp_connections_per_thr... |
publish: fix foreign notebooks | @@ -137,10 +137,6 @@ export default function PublishApp(props: PublishAppProps) {
bookGroupPath in contacts ? contacts[bookGroupPath] : {};
const notebook = notebooks?.[ship]?.[book];
- if(!notebook) {
- return null
- }
-
return (
<NotebookRoutes
notebook={notebook}
|
[ARB] Fixed a parser problem | @@ -3255,7 +3255,11 @@ void parseToken(sCurStatus* curStatusPtr, int vertex, char **error_msg, int *has
FAIL("Invalid texture sampler");
}
curStatusPtr->curValue.newInst.state = STATE_AFTER_TEXSPLINT;
- } else {
+ break;
+ }
+
+ /* FALLTHROUGH */
+ case STATE_AFTER_SIGN: {
sVariable *cst = createVariable(VARTYPE_CONST)... |
DM: Fix a potential null-pointer dereference
Acked-by: Eddie Dong | @@ -162,7 +162,7 @@ static int rpmb_sim_open(const char *rpmb_devname)
rpmb_fd = fopen(rpmb_devname, "wb+");
DPRINTF(("rpmb device file(%s) does not exist, create a new file\n", rpmb_devname));
/* Write 0 to the last byte to enable 4MB length access */
- if (file_write(rpmb_fd, &data, 1, TEEDATA_SIZE - 1) < 0) {
+ if (... |
safety_honda: reverting change to disallow controls when brake switch is triggered. Such bit appears to have spurious activations, so it will only be considered by controls | @@ -27,8 +27,8 @@ static void honda_rx_hook(CAN_FIFOMailBox_TypeDef *to_push) {
// exit controls on brake press
if ((to_push->RIR>>21) == 0x17C) {
- // bit 32 or 53
- if (to_push->RDHR & 0x200001) {
+ // bit 53
+ if (to_push->RDHR & 0x200000) {
controls_allowed = 0;
}
}
|
Fix for out-of-bound accessing last free block in EXTENSIVE defragmentation algorithm.
Code by
See | @@ -13289,7 +13289,7 @@ VkResult VmaDefragmentationContext_T::DefragmentPassEnd(VmaDefragmentationPassMo
VMA_SWAP(vector->m_Blocks[i], vector->m_Blocks[vector->GetBlockCount() - ++m_ImmovableBlockCount]);
if (state.firstFreeBlock != SIZE_MAX)
{
- if (i < state.firstFreeBlock - 1)
+ if (i + 1 < state.firstFreeBlock)
{
i... |
sdl/sensor: Remove redundant return statement | @@ -305,7 +305,6 @@ func (sensor *Sensor) GetData(data []float32) (err error) {
// (https://wiki.libsdl.org/SDL_SensorClose)
func (sensor *Sensor) Close() {
C.SDL_SensorClose((*C.SDL_Sensor)(sensor))
- return
}
// SensorUpdate updates the current state of the open sensors.
|
Tab completion for CREATE TYPE.
Author: Thomas Munro
Discussion: | @@ -2686,6 +2686,45 @@ psql_completion(const char *text, int start, int end)
else if (Matches("CREATE", "ROLE|USER|GROUP", MatchAny, "IN"))
COMPLETE_WITH("GROUP", "ROLE");
+/* CREATE TYPE */
+ else if (Matches("CREATE", "TYPE", MatchAny))
+ COMPLETE_WITH("(", "AS");
+ else if (Matches("CREATE", "TYPE", MatchAny, "AS"))... |
jenkins: disable gpgme on debian unstable | @@ -557,7 +557,7 @@ def generateFullBuildStages() {
DOCKER_IMAGES.sid,
CMAKE_FLAGS_BUILD_ALL+
CMAKE_FLAGS_DEBUG + [
- 'PLUGINS': 'ALL;-crypto;-fcrypt',
+ 'PLUGINS': 'ALL;-crypto;-fcrypt;-gpgme',
],
[TEST.ALL, TEST.MEM, TEST.INSTALL]
)
@@ -589,7 +589,7 @@ def generateFullBuildStages() {
CMAKE_FLAGS_BUILD_ALL +
CMAKE_FLA... |
Renamed the %noob setting flag to %nicks. | ++ glyph (mask "/\\\{(<!?{(zing glyphs)}") ::< circle postfix
++ setting ::< setting flag
%- perk :~
- %noob ::TODO rename to nick
+ %nicks
%quiet
%showtime
==
?~ txs ~
:: render the author.
=/ nom/tape
- ?: (~(has in sef) %noob)
+ ?: (~(has in sef) %nicks)
(~(cr-nick cr [who (main who)]))
(~(cr-curt cr [who (main who)... |
[hardware] Correct operands input to pack2 simd | @@ -1445,8 +1445,8 @@ module dspu #(
simd_result[2*i +: 2] = simd_op_b[2*i][1] ? simd_op_a[2*simd_op_b[2*i][0] +: 2] : simd_op_c[2*simd_op_b[2*i][0] +: 2];
end
SimdPack: begin
- simd_result[3:2] = op_a_i[1:0];
- simd_result[1:0] = op_b_i[1:0];
+ simd_result[3:2] = simd_op_a[1:0];
+ simd_result[1:0] = simd_op_b[1:0];
en... |
Added function to always have default icon in results (not for mobile) | @@ -5,6 +5,7 @@ AjaxFranceLabs.SubClassResultWidget = AjaxFranceLabs.ResultWidget.extend({
firstTimeWaypoint : true,
isMobile : $(window).width()<800,
mutex_locked:false,
+availableImages: {},
buildWidget : function () {
this.elm = $(this.elmSelector);
@@ -19,6 +20,17 @@ AjaxFranceLabs.SubClassResultWidget = AjaxFrance... |
Update: Portability of socket close in UDPNar improved, also works on Mac now, other UDPNAR functionality was unaffected | @@ -100,7 +100,8 @@ void UDPNAR_Stop()
{
assert(Started, "UDPNAR not started, call UDPNAR_Start first!");
Stopped = true;
- shutdown(receiver_sockfd, SHUT_RDWR);
+ shutdown(receiver_sockfd, SHUT_RDWR); //sufficient on Linux to get out of blocking ops on socket, insufficient on Mac
+ close(receiver_sockfd); //sufficient... |
adjust temp string length return | @@ -552,7 +552,7 @@ static Value repeatString(DictuVM *vm, int argCount, Value *args) {
strcat(temp, string->chars);
}
- return OBJ_VAL(takeString(vm, temp, tempLen));
+ return OBJ_VAL(takeString(vm, temp, tempLen - 1));
}
void declareStringMethods(DictuVM *vm) {
|
cann't hardcode the TARGET value like this because it wont work on other archs. To test the -O3 -w -i8 flags, you need to add them to extra flags. I know this looks weird with FORTRAN but this is just how the test harnesss is working | @@ -5,7 +5,8 @@ TESTSRC_MAIN = decl_targ.f95
TESTSRC_AUX =
TESTSRC_ALL = $(TESTSRC_MAIN) $(TESTSRC_AUX)
-TARGET = -fopenmp -O3 -w -i8 -fopenmp-targets=amdgcn-amd-amdhsa -Xopenmp-target=amdgcn-amd-amdhsa -march=$(AOMP_GPU)
+CFLAGS = -O3
+EXTRA_CFLAGS = -w -i8
FLANG = flang
OMP_BIN = $(AOMP)/bin/$(FLANG)
CC = $(OMP_BIN) ... |
cleanup and enforce more %dns-bind invariants | ++ poke-dns-bind
|= [for=ship him=ship tar=target]
^- (quip move _this)
- ~& [%bind src=src.bow for=for him=him tar=tar]
+ ~& [%bind src=src.bow +<.$]
+ =/ lan (clan:title him)
+ ?: ?=(%czar lan)
+ ~|(%bind-galazy !!)
?: =(for him)
~|(%bind-yoself !!)
- ?: ?& ?=(%king (clan:title him))
+ ?: ?& ?=(%king lan)
?=(%indirec... |
5. implements hint at %11 and wish at %12 (4K) | {$7 b/* c/*} $(fol =>(fol [2 b 1 c]))
{$8 b/* c/*} $(fol =>(fol [7 [[7 [0 1] b] 0 1] c]))
{$9 b/* c/*} $(fol =>(fol [7 c 2 [0 1] 0 b]))
+ {$11 @ c/*} $(fol c.fol)
+ {$11 {b/* c/*} d/*}
+ =+ ben=$(fol c.fol)
+ ?. ?=($0 -.ben) ben
+ ?: ?=(?($hunk $hand $lose $mean $spot) b.fol)
+ $(fol d.fol, tax [[b.fol p.ben] tax])
+ $... |
Tighter layout of Union type connect button | @@ -30,6 +30,8 @@ import {
ActorDirection,
ScriptEventFieldSchema,
} from "store/features/entities/entitiesTypes";
+import styled from "styled-components";
+import { Button } from "ui/buttons/Button";
import { DropdownButton } from "ui/buttons/DropdownButton";
import { CheckboxField } from "ui/form/CheckboxField";
impo... |
py/parse: Split out rule name from rule struct into separate array.
The rule name is only used for debugging, and this patch makes things a bit
cleaner by completely separating out the rule name from the rest of the
rule data. | typedef struct _rule_t {
byte rule_id;
byte act;
-#ifdef USE_RULE_NAME
- const char *rule_name;
-#endif
uint16_t arg[];
} rule_t;
@@ -94,13 +91,8 @@ enum {
#define tok(t) (RULE_ARG_TOK | MP_TOKEN_##t)
#define rule(r) (RULE_ARG_RULE | RULE_##r)
#define opt_rule(r) (RULE_ARG_OPT_RULE | RULE_##r)
-#ifdef USE_RULE_NAME
-#d... |
fix lua_children method | #pragma mark - Export Lua
- (void)lua_children:(NSArray<UIView *> *)subviews {
+ if ([subviews isKindOfClass:[NSArray class]] == NO) {
+ return;
+ }
[subviews enumerateObjectsUsingBlock:^(UIView *_Nonnull view, NSUInteger idx, BOOL *_Nonnull stop) {
if ([view isKindOfClass:[UIView class]]) {
[self lua_addSubview:view];... |
Add v1.1 to Release Docs | @@ -35,6 +35,7 @@ This table describes the version, release date and end of support for official (
| Release | Branch | Fork Date | Release Date | Support Type | End of Support |
| -- | -- | -- | -- | -- | -- |
| [1.0](https://github.com/microsoft/msquic/releases/tag/v1.0.0-129524) | [release/1.0](https://github.com/mi... |
[TX] Add validation for aergo.system | @@ -13,6 +13,8 @@ import (
//governance type transaction which has aergo.system in recipient
const VoteBP = "v1voteBP"
+const VoteFee = "v1voteFee"
+const VoteNumBP = "v1voteNumBP"
const Stake = "v1stake"
const Unstake = "v1unstake"
const NameCreate = "v1createName"
@@ -136,6 +138,8 @@ func validateSystemTx(tx *TxBody)... |
texttopdf: Set default margins when no PPD file is used | @@ -594,6 +594,9 @@ cupsRasterParseIPPOptions(cups_page_header2_t *h, /* I - Raster header */
else if (set_defaults)
{
/* TODO: Automatic A4/Letter, like in scheduler/conf.c in CUPS. */
+ h->cupsPageSize[0] = 612.0f;
+ h->cupsPageSize[1] = 792.0f;
+
h->PageSize[0] = 612;
h->PageSize[1] = 792;
_strlcpy(h->cupsPageSizeNa... |
Patch leak in EVP_PKEY2PKCS8() error path | @@ -78,7 +78,7 @@ PKCS8_PRIV_KEY_INFO *EVP_PKEY2PKCS8(const EVP_PKEY *pkey)
/* Force a key downgrade if that's possible */
/* TODO(3.0) Is there a better way for provider-native keys? */
if (EVP_PKEY_get0(pkey) == NULL)
- return NULL;
+ goto error;
if (pkey->ameth) {
if (pkey->ameth->priv_encode) {
|
zmake: remove v2.5 from module path
BRANCH=none
TEST=build volteer
Cq-Depend: chrome-internal:3950225, chromium:2991827, chromium:2983914 | @@ -17,10 +17,7 @@ def third_party_module(name, checkout):
Return:
The path to the module module.
"""
- # TODO(b/180531609): version "v2.5" below is a misnomer, as these
- # modules are actually compatible with all kernel versions. Drop
- # v2.5 from the manifest checkout path and remove it from here.
- return checkout... |
Fix comment about data sent over the socket
We now send the device name in addition to the screen dimensions on the
socket. Update the comment accordingly. | @@ -283,7 +283,7 @@ SDL_bool show_screen(const char *serial, Uint16 local_port) {
decoder.video_socket = device_socket;
decoder.skip_frames = SDL_TRUE;
- // now we consumed the width and height values, the socket receives the video stream
+ // now we consumed the header values, the socket receives the video stream
// s... |
Update lz4w.txt
Fixed original LZ4 github repository link. | @@ -2,7 +2,7 @@ LZ4W packer 1.0 (april 2016)
Stephane Dallongeville
https://stephane-d.github.io/SGDK/
-LZ4W is a custom packer based on LZ4 compression scheme: https://cyan4973.github.io/lz4/
+LZ4W is a custom packer based on LZ4 compression scheme: https://github.com/lz4/lz4
The 'W' suffix stands for 'Word' as LZ4W o... |
serf: auto-pack every 50K events | @@ -450,6 +450,10 @@ _serf_sure_feck(u3_serf* sef_u, c3_w pre_w, u3_noun vir)
sef_u->rec_o = c3o(sef_u->rec_o, _(0 == (sef_u->dun_d % 1000ULL)));
}
+ // pack every 50K events
+ //
+ sef_u->pac_o = c3o(sef_u->pac_o, _(0 == (sef_u->dun_d % 50000ULL)));
+
// notify daemon of memory pressure via "fake" effect
//
if ( u3_no... |
disable CLEANUP for debugging | @@ -77,7 +77,7 @@ if (! -d $tmp_path) {
File::Path::make_path($tmp_path) || die("Unable to create $tmp_path\n");
}
-my $tmp_dir = File::Temp::tempdir(CLEANUP => 1, DIR=> $tmp_path) || MYERROR("Unable to create temporary directory");
+my $tmp_dir = File::Temp::tempdir(CLEANUP => 0, DIR=> $tmp_path) || MYERROR("Unable to... |
Added missing typecast to pass build checks | @@ -364,7 +364,7 @@ bool tud_usbtmc_start_bus_read()
default:
TU_VERIFY(false);
}
- TU_VERIFY(usbd_edpt_xfer(usbtmc_state.rhport, usbtmc_state.ep_bulk_out, usbtmc_state.ep_bulk_out_buf, usbtmc_state.ep_bulk_out_wMaxPacketSize));
+ TU_VERIFY(usbd_edpt_xfer(usbtmc_state.rhport, usbtmc_state.ep_bulk_out, usbtmc_state.ep_b... |
backoff faster | ~| %cancel-order-effect-fail
:: ?> ?=(^ rod)
:: XX get failure reason
- :: XX print a message, shorter timer
- :: XX backoff, count retries statefully in order, how long, etc.
::
=/ try=@ud ?~(rod 1 try.u.rod)
- =/ lul=@dr (max ~h1 (backoff try))
+ :: backoff faster than usual
+ ::
+ =/ lul=@dr (max ~h1 (backoff (add 4... |
network/libc: fix getaddrinfo memory leak.
netdev_ioctl() converts lwIP data type to socket data type to pass the
result of getaddrinfo(). but it doesn't free lwip data type moreover doesn't free it's member data. | @@ -252,6 +252,14 @@ static int _netdev_free_addrinfo(struct addrinfo *ai)
while (ai != NULL) {
next = ai->ai_next;
+ if (ai->ai_addr) {
+ kumm_free(ai->ai_addr);
+ ai->ai_addr = NULL;
+ }
+ if (ai->ai_canonname) {
+ kumm_free(ai->ai_canonname);
+ ai->ai_canonname = NULL;
+ }
kumm_free(ai);
ai = next;
}
@@ -305,6 +313,... |
Fix bug:lib/pty.c:add check to GNU Hurd since it also haven't a stropts.h | @@ -60,7 +60,7 @@ _gftp_ptys_open (int fdm, int fds, char *pts_name)
#elif HAVE_GRANTPT
-#if !(defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) || defined(__linux__))
+#if !(defined(__FreeBSD__) || defined(__NetBSD__) || defined(__APPLE__) || defined(__linux__) || defined(__GNU__))
#include <stropts.h>... |
Update radio_setFrequency interface for bsp_quick_cal project. | @@ -383,6 +383,9 @@ void cb_startFrame(PORT_TIMER_WIDTH timestamp) {
return;
}
break;
+ default:
+ // should never happen
+ break;
}
}
@@ -413,7 +416,7 @@ void cb_endFrame(PORT_TIMER_WIDTH timestamp) {
// set radio back to listen on myChannel
radio_rfOn();
- radio_setFrequency(app_vars.myChannel);
+ radio_setFrequency(... |
parallel-libs/petsc: bump to v3.14.4 | @@ -25,7 +25,7 @@ Name: %{pname}-%{compiler_family}-%{mpi_family}%{PROJ_DELIM}
Summary: Portable Extensible Toolkit for Scientific Computation
License: 2-clause BSD
Group: %{PROJ_NAME}/parallel-libs
-Version: 3.13.1
+Version: 3.14.4
Release: 1%{?dist}
Source0: http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-%{... |
README: fixed package repository paths. | @@ -126,7 +126,7 @@ Ubuntu 16.04 LTS.
```
[unit]
name=unit repo
- baseurl=http://nginx.org/packages/centos/7/$basearch/
+ baseurl=http://nginx.org/packages/mainline/centos/7/$basearch/
gpgcheck=0
enabled=1
```
@@ -153,8 +153,8 @@ Ubuntu 16.04 LTS.
3. Append the following to the end of the file **/et... |
esp_eth/CI: Fix app-test regex for parsing DUT's MAC | @@ -78,7 +78,8 @@ def test_component_ut_esp_eth(env, appname): # type: (tiny_test_fw.Env, str) ->
stdout = dut.expect("Enter next test, or 'enter' to see menu", full_stdout=True)
ttfw_idf.ComponentUTResult.parse_result(stdout, test_format=TestFormat.UNITY_BASIC)
dut.write('"recv_pkt"')
- expect_result = dut.expect(re.c... |
ethernet: put vlib_get_buffers together
The patch brings 0.8 clocks saved per pkt in IPv4 l3fwd case on Skylake.
Type: improvement | @@ -842,18 +842,15 @@ eth_input_process_frame (vlib_main_t * vm, vlib_node_runtime_t * node,
u16 et_vlan = clib_host_to_net_u16 (ETHERNET_TYPE_VLAN);
u16 et_dot1ad = clib_host_to_net_u16 (ETHERNET_TYPE_DOT1AD);
i32 n_left = n_packets;
- vlib_buffer_t *b[20];
- u32 *from;
+ vlib_buffer_t *bufs[VLIB_FRAME_SIZE];
+ vlib_b... |
Base 666: Replace plugin name correctly | @@ -53,7 +53,7 @@ static int decode (Key * key, Key * parent)
kdb_octet_t * buffer;
size_t bufferLen;
- int result = ELEKTRA_PLUGIN_FUNCTION (ELEKTRA_PLUGIN_NAME_C, base64Decode) (strVal, &buffer, &bufferLen);
+ int result = PLUGIN_FUNCTION (base64Decode) (strVal, &buffer, &bufferLen);
if (result == 1)
{
keySetBinary (... |
HV/Kconfig: update efi bootloader image file path for Kconfig
Update efi bootloader image file path for Yocto rootfs in Kconfig. | @@ -325,7 +325,7 @@ config L1D_FLUSH_VMENTRY_ENABLED
config UEFI_OS_LOADER_NAME
string "UEFI OS loader name"
- default "\\EFI\\org.clearlinux\\bootloaderx64.efi"
+ default "\\EFI\\BOOT\\bootx64.efi"
help
Name of the UEFI bootloader that starts the Service VM. This is
typically the systemd-boot or Grub bootloader but co... |
runner: print lio name and not the uio name | @@ -1109,7 +1109,8 @@ static int xcopy_locate_udev(struct tcmulib_context *ctx,
continue;
*udev = dev;
- tcmu_dev_dbg(dev, "Located tcmu devivce: %s\n", dev->dev_name);
+ tcmu_dev_dbg(dev, "Located tcmu devivce: %s\n",
+ dev->tcm_dev_name);
return 0;
}
|
Fixed a problem with input from GTF files that might have been causing SIGABRT. | @@ -37,12 +37,15 @@ GTF::GTF(Genome &genome, Parameters &P, const string &dirOut, SjdbClass &sjdbLoc
exonN=0;
while (sjdbStreamIn.good()) {//count the number of exons
- string chr1,ddd2,featureType;
- sjdbStreamIn >> chr1 >> ddd2 >> featureType;
+
+ string oneLine,chr1,ddd2,featureType;
+ getline(sjdbStreamIn,oneLine);... |
board/primus/led.c: Format with clang-format
BRANCH=none
TEST=none | static int tick;
-const enum ec_led_id supported_led_ids[] = {
- EC_LED_ID_BATTERY_LED,
- EC_LED_ID_POWER_LED
-};
+const enum ec_led_id supported_led_ids[] = { EC_LED_ID_BATTERY_LED,
+ EC_LED_ID_POWER_LED };
const int supported_led_ids_count = ARRAY_SIZE(supported_led_ids);
static void led_set_color_battery(enum ec_led... |
out_stackdriver: set 2 workers by default | @@ -2359,6 +2359,7 @@ struct flb_output_plugin out_stackdriver_plugin = {
.cb_init = cb_stackdriver_init,
.cb_flush = cb_stackdriver_flush,
.cb_exit = cb_stackdriver_exit,
+ .workers = 2,
/* Test */
.test_formatter.callback = stackdriver_format_test,
|
Add syntax highlighting to CLI readme | @@ -48,9 +48,7 @@ Or to run from source, clone this repo then:
```bash
> cd gb-studio
-
> yarn
-
> npm start
```
@@ -58,15 +56,12 @@ Or to run from source, clone this repo then:
Install GB Studio from source as above then
-```
+```bash
> npm run make:cli
-
> yarn link
-
# From any folder you can now run gb-studio-cli
>... |
is -> isOfType | @@ -6,7 +6,7 @@ class ApplicationDocument extends ::APP_MAIN::
#if nme
var added:nme.display.DisplayObject = null;
ApplicationMain.setAndroidViewHaxeObject(this);
- if (Std.is(this, nme.display.DisplayObject))
+ if (#if (haxe_ver>="4.1") Std.isOfType #else Std.is #end(this, nme.display.DisplayObject))
{
added = cast th... |
iokernel: add fast wakeup path for directpath | @@ -237,7 +237,8 @@ static uint32_t hwq_find_head(struct hwq *h, uint32_t cur_tail, uint32_t last_he
return i + start_idx;
}
-static bool hardware_queue_congested(struct thread *th, struct hwq *h)
+static bool hardware_queue_congested(struct thread *th, struct hwq *h,
+ bool update_pointers)
{
uint32_t cur_tail, cur_he... |
Nicer status message for mpfit poser | @@ -459,23 +459,24 @@ static FLT handle_optimizer_results(survive_optimizer *mpfitctx, int res, const
*out = *soLocation;
rtn = result->bestnorm;
- SV_VERBOSE(110,
- "MPFIT success %s %f7.5s %f/%10.10f (%3d measurements, %d result, %d lighthouses, %d axis, %6.3fms "
+ SV_VERBOSE(
+ 110,
+ "MPFIT success %s %f7.5s %f/%1... |
[simulator] improve init process | * Change Logs:
* Date Author Notes
* 2017-04-03 Urey the first version
+ * 2022-06-01 Meco Man improve the init process
*/
#include <rtthread.h>
#include <rtdevice.h>
@@ -36,6 +37,9 @@ static int mnt_init(void)
}
if (dfs_mount("sd0", "/sd", "elm", 0, 0) == 0)
+#else
+ if (dfs_mount("sd0", "/", "elm", 0, 0) == 0)
+#endi... |
nimble/phy/nrf: Fix setting -3dBm power on nRF5340
There was a typo which would result in -4 dBm being set instead. | @@ -1817,7 +1817,7 @@ ble_phy_txpower_round(int dbm)
}
if (dbm >= (int8_t)RADIO_TXPOWER_TXPOWER_Neg3dBm) {
- return (int8_t)RADIO_TXPOWER_TXPOWER_Neg4dBm;
+ return (int8_t)RADIO_TXPOWER_TXPOWER_Neg3dBm;
}
if (dbm >= (int8_t)RADIO_TXPOWER_TXPOWER_Neg4dBm) {
|
Ensure after an HRR any PSKs have the right hash
Don't include a PSK that does not have the right hash for the selected
ciphersuite following an HRR. | @@ -769,6 +769,14 @@ int tls_construct_ctos_psk(SSL *s, WPACKET *pkt, unsigned int context, X509 *x,
return 1;
}
+ if (s->hello_retry_request && md != ssl_handshake_md(s)) {
+ /*
+ * Selected ciphersuite hash does not match the hash for the session so
+ * we can't use it.
+ */
+ return 1;
+ }
+
/*
* Technically the C s... |
Fix lovr.graphics.getBlendMode when blending is off; | @@ -615,6 +615,10 @@ static int l_lovrGraphicsGetBlendMode(lua_State* L) {
BlendMode mode;
BlendAlphaMode alphaMode;
lovrGraphicsGetBlendMode(&mode, &alphaMode);
+ if (mode == BLEND_NONE) {
+ lua_pushnil(L);
+ return 1;
+ }
luax_pushenum(L, BlendMode, mode);
luax_pushenum(L, BlendAlphaMode, alphaMode);
return 2;
|
Remove unreached 'return'. | @@ -64,11 +64,9 @@ toNonlinear(half linear)
if ( fabs( (float)linear ) <= 1.0f) {
return (half)(sign * pow(fabs((float)linear), 1.f/2.2f));
- } else {
- return (half)(sign * ( log(fabs((float)linear)) / log(logBase) + 1.0f) );
}
- return (half)0.0f;
+ return (half)(sign * ( log(fabs((float)linear)) / log(logBase) + 1.0... |
sidk_s5jt200: enable network commands
This commit enables network-related tash commands(e.g. ping, ifconfig,
ifdown, ifup) in sidk_tash_wlan defconfig. | @@ -288,6 +288,7 @@ CONFIG_RAM_SIZE=804864
#
# Board Selection
#
+# CONFIG_ARCH_BOARD_ARTIK053 is not set
CONFIG_ARCH_BOARD_SIDK_S5JT200=y
CONFIG_ARCH_BOARD="sidk_s5jt200"
@@ -304,6 +305,10 @@ CONFIG_ARCH_HAVE_IRQBUTTONS=y
# CONFIG_BOARD_RAMDUMP_FLASH is not set
# CONFIG_BOARD_RAMDUMP_UART is not set
+#
+# Board-Specif... |
added additional infomation about the kind of missing frames | @@ -553,7 +553,7 @@ eapolmsgerrorcount = eapolmsgerrorcount +eapolm1errorcount +eapolm2errorcount +e
if(eapolmsgerrorcount > 0) printf("EAPOL messages (malformed packets).......: %ld\n", eapolmsgerrorcount);
if(malformedcount > 10)
{
- printf( "\nMalformed packets detected!\n"
+ printf( "\nWarning: malformed packets de... |
moli: fix and update gpio configuration
Follow Moli GPIO Table_20220324.xlsx to modify the GPIO.
change USB_C0_OC_ODL/ USB_C1_OC_ODL to GPIO04
TEST=make -j BOARD=moli | @@ -44,9 +44,6 @@ GPIO(EN_PP5000_FAN, PIN(6, 1), GPIO_OUT_HIGH)
/* ADC, need to check the usage */
GPIO(ANALOG_PPVAR_PWR_IN_IMON_EC, PIN(4, 2), GPIO_INPUT)
-/* Display */
-GPIO(DP_CONN_OC_ODL, PIN(2, 5), GPIO_INPUT)
-
/* BarrelJack */
GPIO(EN_PPVAR_BJ_ADP_L, PIN(0, 7), GPIO_OUT_LOW)
@@ -107,7 +104,6 @@ GPIO(EC_I2C_USB_... |
luci-app-unblockneteasemusic-go: fix UCI is incorrect in the system log
daemon.notice procd: /etc/rc.d/S96unblockneteasemusic: uci: Entry not found | START=96
STOP=10
-lan_addr="$(uci get network.lan.ipaddr)"
+lan_addr="$(uci -q get network.lan.ipaddr)"
-enable="$(uci get unblockneteasemusic.@unblockneteasemusic[0].enable)"
-http_port="$(uci get unblockneteasemusic.@unblockneteasemusic[0].http_port)"
-https_port="$(uci get unblockneteasemusic.@unblockneteasemusic[0]... |
only upload .so files | @@ -44,6 +44,6 @@ jobs:
regionName: 'us-west-2'
bucketName: 'cdn.cribl.io'
sourceFolder: 'lib/'
- globExpressions: '**'
+ globExpressions: '**/*.so'
targetFolder: 'dl/scope/latest/'
filesAcl: 'public-read'
|
Readability tweaks in C.lua | @@ -63,6 +63,7 @@ end
-- * Use braces on if statements, while loops, and for loops.
-- * /**/-style comments must not span multiple lines
-- * Be careful about special characters inside strings and comments
+-- * goto labels must appear on a line by themselves
--
function C.reformat(input)
local out = {}
@@ -86,12 +87,... |
Add IUM to process protection label, Add missing copyright | * Process properties: General page
*
* Copyright (C) 2009-2016 wj32
+ * Copyright (C) 2016-2021 dmex
*
* This file is part of Process Hacker.
*
@@ -71,11 +72,21 @@ PPH_STRING PhGetProcessItemProtectionText(
else
signer = L"";
+ // Isolated User Mode (IUM) (dmex)
+ if (ProcessItem->Protection.Type == PsProtectedTypeNone... |
Add note on lack of signed equivalent of BC6 | @@ -25,7 +25,7 @@ their compressed bitrate are shown in the table below.
| BC3nm | G+R | 8 | BC1 G + BC4 R |
| BC4 | R | 4 | L8 |
| BC5 | R+G | 8 | BC1 R + BC1 G |
-| BC6 | RGB (HDR) | 8 | |
+| BC6H | RGB (HDR) | 8 | |
| BC7 | RGB / RGBA | 8 | |
| EAC_R11 | R | 4 | R11 |
| EAC_RG11 | RG | 8 | RG11 |
@@ -105,7 +105,7 @@... |
Fix clang analyzer warnings about long shifts. | @@ -62,7 +62,8 @@ chunk_get_last(void* base, udb_void chunk, int exp)
static void
chunk_set_last(void* base, udb_void chunk, int exp, uint8_t value)
{
- *((uint8_t*)UDB_REL(base, chunk+(1<<exp)-1)) = value;
+ assert(exp >= 0 && exp <= 63);
+ *((uint8_t*)UDB_REL(base, chunk+((uint64_t)1<<exp)-1)) = value;
}
/** create u... |
Ignore status text for process environment from exited processes | @@ -172,7 +172,7 @@ VOID PhpSetEnvironmentListStatusMessage(
_In_ ULONG Status
)
{
- if (Context->ProcessItem->State & PH_PROCESS_ITEM_REMOVED)
+ if (Context->ProcessItem->State & PH_PROCESS_ITEM_REMOVED || Status == STATUS_PARTIAL_COPY)
{
PhMoveReference(&Context->StatusMessage, PhCreateString(L"There are no environme... |
more fixes to Adding an Accelerator | @@ -75,7 +75,7 @@ To create a RegisterRouter-based peripheral, you will need to specify a paramete
val pwmout = Output(Bool())
}
- trait PWMTLModule {
+ trait PWMTLModule extends HasRegMap {
val io: PWMTLBundle
implicit val p: Parameters
def params: PWMParams
@@ -159,7 +159,7 @@ This code is from ``generators/example/s... |
Fix wrong get socket error method | @@ -739,7 +739,7 @@ HRESULT Library_sys_net_native_System_Net_Sockets_NativeSocket::SendRecvHelper(
// send/recv/sendto/recvfrom failed
if(bytes == SOCK_SOCKET_ERROR)
{
- CLR_INT32 err = SOCK_getlasterror();
+ CLR_INT32 err = SOCK_getsocklasterror(handle);
if(err != SOCK_EWOULDBLOCK)
{
|
Documentation: Use `cmake --build` command | @@ -36,8 +36,8 @@ mkdir build
cd build
cmake .. # watch output to see if everything needed is included
ccmake .. # optional: overview of the available build settings (needs cmake-curses-gui)
-make -j 5
-make run_nokdbtests # optional: run tests
+cmake --build build -- -j5
+cmake --build build --target run_nokdbtests # ... |
impl HasTime for Result Frame | @@ -210,6 +210,15 @@ mod swiftnav_impl {
self.to_sbp().time()
}
}
+
+ impl<E> HasTime for Result<Frame, E> {
+ fn time(&self) -> Option<Result<MessageTime, GpsTimeError>> {
+ match self {
+ Ok(m) => m.time(),
+ Err(_) => None,
+ }
+ }
+ }
}
#[cfg(test)]
|
Update full error | #include "NumericsVector.h"
#endif
+#define MIN_RELATIVE_SCALING sqrt(DBL_EPSILON)
+
void grfc3d_unitary_compute_and_add_error(
double* r,
double* u,
@@ -130,10 +132,10 @@ int grfc3d_compute_error(GlobalRollingFrictionContactProblem* problem,
double error_primal = cblas_dnrm2(m,tmp_m_2,1); // error_primal = |-Mv + Hr -... |
remove rst pin | #define CURLINE 0x53
#define GPIOCTL 0x82
-#define RST_PORT GPIOD
-#define RST_PIN GPIO_PIN_12
-#define RST_PIN_WRITE(bit) HAL_GPIO_WritePin(RST_PORT, RST_PIN, bit);
-
#define CS_PORT GPIOB
#define CS_PIN GPIO_PIN_12
#define CS_PIN_WRITE(bit) HAL_GPIO_WritePin(CS_PORT, CS_PIN, bit);
@@ -480,7 +476,6 @@ static mp_obj_t ... |
multiline: use new CFL hashing interface | #include <fluent-bit/flb_pack.h>
#include <fluent-bit/multiline/flb_ml.h>
#include <fluent-bit/multiline/flb_ml_rule.h>
-#include <xxhash.h>
+#include <cfl/cfl.h>
static int ml_flush_stdout(struct flb_ml_parser *parser,
struct flb_ml_stream *mst,
@@ -235,7 +235,7 @@ int flb_ml_stream_create(struct flb_ml *ml,
}
/* Set ... |
dockerfile: replace deprecated MAINTAINER instruction | @@ -53,7 +53,7 @@ COPY conf/fluent-bit.conf \
/fluent-bit/etc/
FROM gcr.io/distroless/cc
-MAINTAINER Eduardo Silva <eduardo@treasure-data.com>
+LABEL maintainer="Eduardo Silva <eduardo@treasure-data.com>"
LABEL Description="Fluent Bit docker image" Vendor="Fluent Organization" Version="1.1"
COPY --from=builder /usr/lib... |
specify remote repos for ohpc-release query as well | @@ -80,7 +80,14 @@ else
fi
fi
-info=`repoquery -q $options --queryformat='%{Name} %{Version} %{URL} %{Group} %{Summary}\n' ohpc-release`
+if [[ $micro_ver -eq 0 ]];then
+ info=`repoquery --archlist=${arch} --repofrompath="ohpc-base,${repobase}" --repoid=ohpc-base -q \
+--queryformat='%{Name} %{Version} %{URL} %{Group} ... |
external/netutils: close opened fd before exit
The function exits without closing opened fd when write is failed.
It causes memory leak. This commit closes opened fd at every exit. | static inline int _send_msg(lwnl_msg *msg)
{
+ int ret = 0;
+
int fd = socket(AF_LWNL, SOCK_RAW, LWNL_ROUTE);
if (fd < 0) {
- return -1;
- }
-
- int res = write(fd, msg, sizeof(*msg));
- if (res < 0) {
- return -2;
+ ret = -1;
+ } else {
+ if (write(fd, msg, sizeof(*msg)) < 0) {
+ ret = -2;
}
close(fd);
+ }
- return 0;... |
gitlab: Add posix-ec
Add this board so we get coverage on gitlab.
BRANCH=none
TEST=try on gitlab | # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-image: sjg20/bionic-20200526-12feb21
+image: sjg20/bionic-20200526-7may21a
# You can update that image using this repo:
# https://gitlab.com/zephyr-ec/gitlab-ci-runner/-/tree/main
@@ -48,7 +48,7 @@ before_script:
stag... |
Use more accurate unit2() and unit3() constants | @@ -243,7 +243,8 @@ static ASTCENC_SIMD_INLINE vfloat4 unit4()
*/
static ASTCENC_SIMD_INLINE vfloat4 unit3()
{
- return vfloat4(0.57735f, 0.57735f, 0.57735f, 0.0f);
+ float val = 0.577350258827209473f;
+ return vfloat4(val, val, val, 0.0f);
}
/**
@@ -251,7 +252,8 @@ static ASTCENC_SIMD_INLINE vfloat4 unit3()
*/
static ... |
EfiLdr: Revert removal of memmap shifts | @@ -106,14 +106,14 @@ FindSpace (
MaxNoPages = 0;
CurrentMemoryDescriptor = NULL;
for (Index = 0; Index < *NumberOfMemoryMapEntries; Index++) {
- if (EfiMemoryDescriptor[Index].PhysicalStart + EFI_PAGES_TO_SIZE (EfiMemoryDescriptor[Index].NumberOfPages) <= BASE_1MB) {
+ if (EfiMemoryDescriptor[Index].PhysicalStart + LS... |
update Accel and Gyro factor | #include <sensor_msgs/BatteryState.h>
#include <sensor_msgs/MagneticField.h>
-#define ACCEL_FACTOR -0.000598 // 2.0 * -9.8 / 32768 adc * 2/32768 = g
-#define GYRO_FACTOR 0.000133 // pi / (131 * 180) adc * 1/16.4 = deg/s => 1/16.4 deg/s -> 0.001064225157909 rad/s
+#define ACCEL_FACTOR -0.0005981 // (-9.8) * ADC_Value / ... |
Cursor update changes an EAGAIN code before returning | @@ -2596,6 +2596,13 @@ ikvdb_kvs_cursor_update(struct hse_kvs_cursor *cur, struct hse_kvdb_opspec *os)
perfc_lat_record(cur->kc_pkvsl_pc, PERFC_LT_PKVSL_KVS_CURSOR_UPDATE, tstart);
+ /* Since the update code doesn't currently allow retrying, change the error code
+ * if it's an EAGAIN. Wherever possible, the code retri... |
ssl_tls12_populate_transform: store the en/decryption keys and alg in the new fields | #include "mbedtls/oid.h"
#endif
+/* Convert key bits to byte size */
+#define KEY_BYTES( bits ) ( ( (size_t) bits + 7 ) / 8 )
+
#if defined(MBEDTLS_SSL_PROTO_DTLS)
#if defined(MBEDTLS_SSL_DTLS_CONNECTION_ID)
@@ -720,6 +723,14 @@ static int ssl_tls12_populate_transform( mbedtls_ssl_transform *transform,
const mbedtls_ci... |
apps/; Change space to tab and help to ---help--- in Kconfig files. | @@ -7,7 +7,7 @@ config NETUTILS_PING
bool "ICMP ping support"
default n
depends on NET_ICMP
- help
+ ---help---
Build in support for a IPv4 ping command. This command ping will
send the ICMP ECHO_REQUEST and wait for the ICMP ECHO_RESPONSE from
the remote peer.
@@ -16,7 +16,7 @@ config NETUTILS_PING
bool "ICMPv6 ping s... |
direct-ctl: Use the EC primary for special wakeups | @@ -519,7 +519,7 @@ static int p9_sreset_thread(struct cpu_thread *cpu)
int dctl_set_special_wakeup(struct cpu_thread *t)
{
- struct cpu_thread *c = t->primary;
+ struct cpu_thread *c = t->ec_primary;
int rc = OPAL_SUCCESS;
if (proc_gen == proc_gen_unknown)
@@ -541,7 +541,7 @@ int dctl_set_special_wakeup(struct cpu_thr... |
Don't use native methods in TestLib::slurp_file on Msys
Commit has upset some buildfarm members running Msys, that
weren't previously having problems, so the use of native Windows methods
to open files is restricted by this patch to only MSVC builds. | @@ -400,7 +400,7 @@ sub slurp_file
my ($filename) = @_;
local $/;
my $contents;
- if (!$windows_os)
+ if ($Config{osname} ne 'MSWin32')
{
open(my $in, '<', $filename)
or die "could not read \"$filename\": $!";
|
config: append Parsers_File key and file path | # By default 'info' is set, that means it includes 'error' and 'warning'.
Log_Level info
+ # Parsers_File
+ # ============
+ # Specify an optional 'Parsers' configuration file
+ Parsers_File parsers.conf
+
# HTTP Monitoring Server
# ======================
#
|
added hashing of entire byte representation of key | @@ -1320,13 +1320,26 @@ hash(
return key;
}
+int
+key_bytes_to_int(
+ ion_byte_t * key,
+ linear_hash_table_t * linear_hash
+) {
+ int i;
+ int key_bytes_as_int = 0;
+ for(i = 0; i < linear_hash->super.record.key_size; i++) {
+ key_bytes_as_int += *(key + i);
+ }
+ return key_bytes_as_int;
+}
+
int
hash_to_bucket(
ion_... |
[core] fix 100% CPU spin if traffic limit hit
(thx Dirk) (reported on FreeBSD)
HTTP/1.1 requests might end up spinning if traffic limits are configured
(connection.kbytes-per-second)
(server.kbytes-per-second) | @@ -523,7 +523,7 @@ static int connection_handle_write_state(request_st * const r, connection * cons
}
} while (r->http_version <= HTTP_VERSION_1_1
&& (!chunkqueue_is_empty(&r->write_queue)
- ? con->is_writable > 0
+ ? con->is_writable > 0 && 0 == con->traffic_limit_reached
: r->resp_body_finished));
return CON_STATE_W... |
xcframeworkbuild.sh: bump MACOSX_CATALYST_MIN_VERSION
14.0 (-target x86_64-apple-ios14.0-macabi) is supported by default in
Xcode 14.0.1. | @@ -15,7 +15,7 @@ set -e
# Set these variables based on the desired minimum deployment target.
readonly IOS_MIN_VERSION=6.0
readonly MACOSX_MIN_VERSION=10.15
-readonly MACOSX_CATALYST_MIN_VERSION=13.0
+readonly MACOSX_CATALYST_MIN_VERSION=14.0
# Extract Xcode version.
readonly XCODE=$(xcodebuild -version | grep Xcode |... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.