- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for Availability (0.09 sec)
-
src/main/java/jcifs/util/SmbCircuitBreaker.java
if (total == 0) { return 100.0; } return (totalSuccesses.get() * 100.0) / total; } /** * Calculate availability * * @return availability as percentage (0-100) */ private double calculateAvailability() { long total = totalRequests.get(); if (total == 0) { return 100.0; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailGeneratorTest.java
Map<String, Object> docMap = new HashMap<>(); docMap.put("mimetype", null); assertFalse(thumbnailGenerator.isTarget(docMap)); } public void test_isAvailable() { // Test availability check assertTrue(thumbnailGenerator.isAvailable()); } public void test_destroy() { // Test destroy method - should not throw exception thumbnailGenerator.destroy();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 11.4K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbPipeHandleImpl.java
return this.handle.acquire(); } // Wait for named pipe availability - called when pipe is not immediately available if (this.uncPath.startsWith("\\pipe\\")) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 10.2K bytes - Viewed (0) -
src/main/java/jcifs/internal/witness/WitnessRpcClient.java
import jcifs.CIFSContext; import jcifs.dcerpc.DcerpcHandle; /** * Client implementation for the SMB Witness RPC protocol (MS-SWN). * Provides communication with witness servers for monitoring SMB resource availability. */ public class WitnessRpcClient implements AutoCloseable { private static final Logger log = LoggerFactory.getLogger(WitnessRpcClient.class); private final InetAddress serverAddress;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:12:28 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/thumbnail/impl/BaseThumbnailGenerator.java
/** The name of this thumbnail generator. */ protected String name; /** Maximum number of redirects to follow. */ protected int maxRedirectCount = 10; /** Availability status of this generator. */ protected Boolean available = null; /** * Registers this thumbnail generator with the thumbnail manager. */ public void register() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 13.3K bytes - Viewed (0) -
apache-maven/src/main/appended-resources/licenses/EPL-2.0.txt
Exhibit A - Form of Secondary Licenses Notice "This Source Code may also be made available under the following Secondary Licenses when the conditions for such availability set forth in the Eclipse Public License, v. 2.0 are satisfied: {name license(s), version(s), and exceptions or additional permissions here}." Simply including a copy of this Agreement, including this Exhibit A
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Jun 04 06:45:16 UTC 2024 - 13.9K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/ConnectionSpec.kt
) // This is nearly equal to the cipher suites supported in Chrome 72, current as of 2019-02-24. // See https://tinyurl.com/okhttp-cipher-suites for availability. private val APPROVED_CIPHER_SUITES = listOf( // TLSv1.3. CipherSuite.TLS_AES_128_GCM_SHA256, CipherSuite.TLS_AES_256_GCM_SHA384,
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 13.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Throwables.java
* available for all platforms and configurations. If that implementation is unavailable, this * method falls back to {@code getStackTrace}. Callers that require the special implementation can * check its availability with {@link #lazyStackTraceIsLazy()}. * * <p>The expected (but not guaranteed) performance of the special implementation differs from
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 20.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java
public void test_run_componentNotAvailable() throws Exception { final List<String> sessionIdList = Arrays.asList("session1"); indexUpdater.setSessionIdList(sessionIdList); // Set component availability to false after some time new Thread(() -> { ThreadUtil.sleep(200); ((TestSystemHelper) systemHelper).setComponentAvailable(false); }).start();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 33K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Constants.java
* * @since 3.9.0 */ @Config public static final String MAVEN_REPO_LOCAL_TAIL = "maven.repo.local.tail"; /** * User property for chained LRM: whether to ignore "availability check" in tail or not. Usually you do want * to ignore it. This property is mapped onto corresponding Resolver 2.x property, is like a synonym for it. * Default value: <code>true</code>. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jul 25 11:08:20 UTC 2025 - 25.4K bytes - Viewed (0)