- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 136 for b_init (0.43 sec)
-
src/bytes/bytes_test.go
size = 32 } a := make([]byte, size) b := make([]byte, size) b_init := make([]byte, size) // randomish but deterministic data for i := 0; i < size; i++ { a[i] = byte(17 * i) b_init[i] = byte(23*i + 100) } for len := 0; len <= size; len++ { for x := 0; x <= size-len; x++ { for y := 0; y <= size-len; y++ { copy(b, b_init) copy(b[y:y+len], a[x:x+len])
Registered: Tue Dec 30 11:13:12 UTC 2025 - Last Modified: Tue Dec 23 23:54:14 UTC 2025 - 62.9K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java
public void test_initialization_idempotency() { // Test that multiple init calls are safe FileSystemClient client = new FileSystemClient(); // First initialization if (client.isInit.compareAndSet(false, true)) { client.init(); } assertTrue("Client should be initialized", client.isInit.get()); // Second initialization attempt should be no-opRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Nov 19 08:59:28 UTC 2025 - 11.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/gcs/GcsClient.java
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 17.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
*/ public S3Client() { super(); } @Override public synchronized void init() { if (isInit) { return; } super.init(); final String endpoint = getInitParameter("endpoint", null, String.class); if (StringUtil.isBlank(endpoint)) { throw new CrawlingAccessException(Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Dec 11 08:38:29 UTC 2025 - 21.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/storage/StorageClient.java
*/ protected volatile boolean isInit = false; /** * The MinIO client instance for interacting with object storage. */ protected MinioClient minioClient; /** * Creates a new StorageClient instance. */ public StorageClient() { super(); } @Override public synchronized void init() { if (isInit) { return;Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20K bytes - Viewed (2) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/fs/FileSystemClient.java
* @throws CrawlingAccessException if the request fails */ protected ResponseData processRequest(final String uri, final boolean includeContent) { if (isInit.compareAndSet(false, true)) { init(); } // start AccessTimeoutTarget accessTimeoutTarget = null; TimeoutTask accessTimeoutTask = null; if (accessTimeout != null) {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 15.1K bytes - Viewed (0) -
docker-buildx.sh
#!/bin/bash set -ex function _init() { ## All binaries are static make sure to disable CGO. export CGO_ENABLED=0 export CRED_DIR="/media/${USER}/minio" ## List of architectures and OS to test coss compilation. SUPPORTED_OSARCH="linux/ppc64le linux/amd64 linux/arm64" remote=$(git remote get-url upstream) if test "$remote" != "******@****.***:minio/minio.git"; thenRegistered: Sun Dec 28 19:28:13 UTC 2025 - Last Modified: Sun Oct 19 08:22:05 UTC 2025 - 1.9K bytes - Viewed (0) -
okhttp/api/jvm/okhttp.api
public final fun value (I)Ljava/lang/String; public fun writeTo (Lokio/BufferedSink;)V } public final class okhttp3/FormBody$Builder { public fun <init> ()V public fun <init> (Ljava/nio/charset/Charset;)V public synthetic fun <init> (Ljava/nio/charset/Charset;ILkotlin/jvm/internal/DefaultConstructorMarker;)V public final fun add (Ljava/lang/String;Ljava/lang/String;)Lokhttp3/FormBody$Builder;
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Nov 05 18:28:35 UTC 2025 - 70.2K bytes - Viewed (0) -
docs/de/docs/deployment/cloud.md
Es vereinfacht den Prozess des **Erstellens**, **Deployens** und **Zugreifens** auf eine API mit minimalem Aufwand. Es bringt die gleiche **Developer-Experience** beim Erstellen von Apps mit FastAPI auch zum **Deployment** in der Cloud. 🎉 FastAPI Cloud ist der Hauptsponsor und Finanzierungsgeber für die *FastAPI and friends* Open-Source-Projekte. ✨
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 17:32:56 UTC 2025 - 1.4K bytes - Viewed (0) -
docs/de/docs/deployment/fastapicloud.md
Es vereinfacht den Prozess des **Erstellens**, **Deployens** und **Nutzens** einer API mit minimalem Aufwand. Es bringt die gleiche **Developer-Experience** beim Erstellen von Apps mit FastAPI auch zum **Deployment** in der Cloud. 🎉 Es kümmert sich außerdem um das meiste, was beim Deployen einer App nötig ist, zum Beispiel: * HTTPS
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Tue Dec 02 17:32:56 UTC 2025 - 2.2K bytes - Viewed (0)