Notary API 2.0.0+ https://developer.apple.com/documentation/notaryapi
New submissions are accepted without checking the SHA256 hash
import {useCallback, useEffect, useMemo, useState} from "react"; | |
import {useQuery} from "react-query"; | |
// Provide ability to reset the error | |
const useEnhancedQuery = (queryKey, queryFn, options) => { | |
const {error: queryError, refetch: queryRefetch, status, ...queryResult} = | |
useQuery(queryKey, queryFn, options); | |
const [error, setError] = useState(queryError); |
# CEF symbols are too large to upload directly to Sentry.io. The maximum size is 2GB. | |
# We use Breakpad to reduce the size of the original symbols at the expense of some | |
# fidelity for inline functions. | |
name: CEF Symbols | |
on: | |
workflow_dispatch: | |
inputs: | |
cef-version: | |
description: 'Version of CEF to upload' | |
required: true |
#!/usr/bin/env python | |
import argparse | |
import boto3 | |
import jwt | |
import requests | |
import time | |
import os | |
import hashlib | |
from datetime import timezone | |
from datetime import datetime |
Notary API 2.0.0+ https://developer.apple.com/documentation/notaryapi
New submissions are accepted without checking the SHA256 hash
https://github.com/nmoinvaz/zlib-ng/tree/improvements/functable-inffast
OS: Windows 10 10.0.22000 AMD64
CPU: Intel64 Family 6 Model 158 Stepping 10, GenuineIntel
$files=(git ls-files --exclude-standard); foreach ($file in $files) { if ((get-item $file).Extension -in ".cpp", ".hpp", ".c", ".cc", ".cxx", ".h", ".hxx", ".ixx", ".hh", ".m", ".mm") { &clang-format -i -style=file $file } } |
#include <stdio.h> | |
#include <stdlib.h> | |
#include <string.h> | |
#include <stdint.h> | |
#include <arm_neon.h> | |
#include <byteswap.h> | |
#include <stdio.h> | |
#include <stdint.h> |
``` | |
2022-01-19T20:11:24-08:00 | |
Running C:\Users\nathan\Source\zlib-ng\build\test\benchmarks\Release\benchmark_zlib.exe | |
Run on (8 X 2995 MHz CPU s) | |
CPU Caches: | |
L1 Data 48 KiB (x4) | |
L1 Instruction 32 KiB (x4) | |
L2 Unified 1280 KiB (x4) | |
L3 Unified 12288 KiB (x1) | |
-------------------------------------------------------------------- |
/* | |
cmake_minimum_required(VERSION 3.17) | |
cmake_policy(SET CMP0091 NEW) | |
project(adler32_benchmark CXX) | |
set(BENCHMARK_ENABLE_GTEST_TESTS OFF) | |
add_executable(adler32_benchmark) | |
add_subdirectory(benchmark) | |
target_sources(adler32_benchmark PRIVATE adler32_benchmark.cc) |
/* | |
cmake_minimum_required(VERSION 3.17) | |
cmake_policy(SET CMP0091 NEW) | |
include(FetchContent) | |
project(crc32_benchmark CXX) | |
set(CMAKE_CXX_STANDARD 14) | |
set(CMAKE_CXX_STANDARD_REQUIRED YES) |