Total calls: 16533400
Count Frequency Percentage
3 4314962 26.10%
4 2598912 15.72%
5 2051025 12.41%
6 1613384 9.76%
7 1142336 6.91%
8 571554 3.46%
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[==========] Running 5 tests from 2 test suites. | |
[----------] Global test environment set-up. | |
2025-03-13T14:13:33.462-07 [19301] Log Level: DEBUG | |
2025-03-13T14:13:33.462-07 [19301] Log Filename: /home/buildbox/.local/share/gtest_host/gtest_host.log | |
2025-03-13T14:13:33.462-07 [19301] Command Line: /home/buildbox/actions-runner/_work/client/client/build/Coverage/gtest_host --verbose | |
2025-03-13T14:13:33.462-07 [19301] INFO - Desktop environment: Gnome3 | |
2025-03-13T14:13:33.462-07 [19301] INFO - System: x86_64 Linux 6.8.0-51-generic x86_64 | |
2025-03-13T14:13:33.462-07 [19301] INFO - Elevated: false | |
2025-03-13T14:13:33.462-07 [19301] INFO - Process Id: 19301 | |
2025-03-13T14:13:33.462-07 [19301] INFO - Current Directory: /home/buildbox/actions-runner/_work/client/client/test/ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Repeating all tests (iteration 1) . . . | |
Note: Google Test filter = AnalyticsWebTest.*:AppTrackTest.* | |
[==========] Running 5 tests from 2 test suites. | |
[----------] Global test environment set-up. | |
2025-03-13T14:04:52.621-07 [18056] Log Level: DEBUG | |
2025-03-13T14:04:52.621-07 [18056] Log Filename: /home/buildbox/.local/share/gtest_host/gtest_host.log | |
2025-03-13T14:04:52.621-07 [18056] Command Line: /home/buildbox/actions-runner/_work/client/client/build/Coverage/gtest_host --verbose | |
2025-03-13T14:04:52.621-07 [18056] INFO - Desktop environment: Gnome3 | |
2025-03-13T14:04:52.621-07 [18056] INFO - System: x86_64 Linux 6.8.0-51-generic x86_64 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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 } } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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> |
NewerOlder