- Sort Score
- Result 10 results
- Languages All
Results 281 - 290 of 427 for minimal (0.06 sec)
-
src/main/java/jcifs/util/SmbCircuitBreaker.java
* * @return 95th percentile response time in milliseconds */ public long getP95ResponseTime() { return p95ResponseTime.get(); } /** * Get minimum response time * * @return minimum response time in milliseconds */ public long getMinResponseTime() { long min = minResponseTime.get(); return min == Long.MAX_VALUE ? 0 : min; } /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 33.4K bytes - Viewed (0) -
docs/es/docs/advanced/websockets.md
Eso lanzará la excepción `WebSocketDisconnect`, y todos los otros clientes recibirán un mensaje como: ``` Client #1596980209979 left the chat ``` /// tip | Consejo La aplicación anterior es un ejemplo mínimo y simple para demostrar cómo manejar y transmitir mensajes a varias conexiones WebSocket.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 30 18:26:57 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/tr/docs/python-types.md
Değişkenlerin tiplerini belirterek editör ve araçlardan daha fazla destek alabilirsiniz. Bu pythonda tip belirteçleri için **hızlı bir başlangıç / bilgi tazeleme** rehberidir . Bu rehber **FastAPI** kullanmak için gereken minimum konuyu kapsar ki bu da çok az bir miktardır. **FastAPI' nin** tamamı bu tür tip belirteçleri ile donatılmıştır ve birçok avantaj sağlamaktadır.
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Nov 18 02:25:44 UTC 2024 - 9.5K bytes - Viewed (0) -
src/main/java/jcifs/smb/PreauthIntegrityService.java
throw new CIFSException("Session ID cannot be null or empty"); } if (salt == null || salt.length < 16) { throw new CIFSException("Invalid preauth salt: minimum 16 bytes required"); } if (!isHashAlgorithmSupported(hashAlgorithm)) { throw new CIFSException("Unsupported hash algorithm: " + hashAlgorithm); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 12.1K bytes - Viewed (0) -
src/main/java/jcifs/smb/compression/DefaultCompressionService.java
private static final Logger log = LoggerFactory.getLogger(DefaultCompressionService.class); // Configuration constants private static final int MIN_COMPRESSION_SIZE = 512; // 512 bytes minimum private static final int MAX_COMPRESSION_SIZE = 1024 * 1024; // 1MB maximum private static final int COMPRESSION_LEVEL = Deflater.DEFAULT_COMPRESSION; // Supported algorithms
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 11.2K bytes - Viewed (0) -
docs/debugging/s3-verify/main.go
flag.StringVar(&targetBucket, "target-bucket", "", "Select a specific bucket") flag.StringVar(&targetPrefix, "target-prefix", "", "Select a prefix") flag.StringVar(&minimumObjectAge, "minimum-object-age", "0s", "Ignore objects younger than the specified age") flag.BoolVar(&debug, "debug", false, "Prints HTTP network calls to S3 endpoint") flag.BoolVar(&insecure, "insecure", false, "Disable TLS verification")
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Wed Jun 22 15:12:47 UTC 2022 - 8.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/action/FessHtmlPathTest.java
if (field.getType().equals(HtmlNext.class)) { pathCount++; } } } // Verify minimum expected number of paths assertTrue("Should have at least 100 paths, found: " + pathCount, pathCount >= 100); } public void test_detailsEditPattern() throws Exception {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/internal/fscc/FileInternalInfoTest.java
// Verify assertEquals(8, bytesDecoded); assertEquals(expectedIndexNumber, fileInternalInfo.getIndexNumber()); } @Test @DisplayName("Test decode with minimum index number") void testDecodeWithMinIndexNumber() throws SMBProtocolDecodingException { // Prepare test data byte[] buffer = new byte[8]; long expectedIndexNumber = Long.MIN_VALUE;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/TreeRangeMapTest.java
rangeMap.put(Range.closedOpen(18, 19), 3); rangeMap.putCoalescing(Range.closedOpen(-5, -4), 0); // disconnected rangeMap.putCoalescing(Range.closedOpen(-6, -5), 0); // lower than minimum rangeMap.putCoalescing(Range.closedOpen(2, 4), 1); // between rangeMap.putCoalescing(Range.closedOpen(9, 14), 0); // different value rangeMap.putCoalescing(Range.closedOpen(17, 20), 3); // enclosing
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 30K bytes - Viewed (0) -
api/maven-api-plugin/src/main/mdo/plugin.mdo
@since Maven 4.0.0-alpha-3 </description> <type>String</type> </field> <field> <name>requiredMavenVersion</name>
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Tue Feb 25 08:28:41 UTC 2025 - 24.8K bytes - Viewed (0)