- Sort Score
- Result 10 results
- Languages All
Results 1 - 5 of 5 for isUnix (0.14 sec)
-
fess-crawler/src/test/java/org/codelibs/fess/crawler/client/fs/FileSystemClientTest.java
// First initialization if (client.isInit.compareAndSet(false, true)) { client.init(); } assertTrue("Client should be initialized", client.isInit.get()); // Second initialization attempt should be no-op boolean secondInit = client.isInit.compareAndSet(false, true); assertFalse("Second initialization should not occur", secondInit);Registered: 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/fs/FileSystemClient.java
/** Helper for managing content length limits */ @Resource protected ContentLengthHelper contentLengthHelper; /** Flag to track initialization status */ protected AtomicBoolean isInit = new AtomicBoolean(false); /** * Constructs a new FileSystemClient. */ public FileSystemClient() { // Default constructor } /* * (non-Javadoc) *Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Nov 23 12:19:14 UTC 2025 - 15.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/s3/S3Client.java
*/ @Resource protected ContentLengthHelper contentLengthHelper; /** * Flag indicating whether the client has been initialized. */ protected volatile boolean isInit = false; /** * The AWS S3 client instance for interacting with object storage. */ protected software.amazon.awssdk.services.s3.S3Client awsS3Client; /**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/gcs/GcsClient.java
*/ @Resource protected ContentLengthHelper contentLengthHelper; /** * Flag indicating whether the client has been initialized. */ protected volatile boolean isInit = false; /** * The GCS Storage client instance for interacting with Google Cloud Storage. */ protected Storage storage; /** * Creates a new GcsClient instance. */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/storage/StorageClient.java
*/ @Resource protected ContentLengthHelper contentLengthHelper; /** * Flag indicating whether the client has been initialized. */ protected volatile boolean isInit = false; /** * The MinIO client instance for interacting with object storage. */ protected MinioClient minioClient; /** * Creates a new StorageClient instance. */Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 20K bytes - Viewed (2)