- Sort Score
- Result 10 results
- Languages All
Results 1321 - 1330 of 1,566 for kong (0.01 sec)
-
src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java
return new TestFessConfig(); } // Test configuration class extending FessConfig.SimpleImpl private static class TestFessConfig extends FessConfig.SimpleImpl { private static final long serialVersionUID = 1L; @Override public String getApiPingSearchEngineFields() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 18.8K bytes - Viewed (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/connection/ConnectionPoolTest.kt
pool.evictAll() assertThat(pool.connectionCount()).isEqualTo(0) taskFaker.runTasks() } private fun forceConnectionsToExpire( pool: RealConnectionPool, expireTime: Long, ) { val idleTimeNanos = expireTime + pool.keepAliveDurationNs repeat(pool.connectionCount()) { pool.closeConnections(idleTimeNanos) } taskFaker.runTasks() } private fun connectHttp2(
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 12.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFileOutputStream.java
private final SmbFile file; private final boolean append, useNTSmbs; private int openFlags; private final int access; private final int writeSize; private long fp; private byte[] tmp = new byte[1]; private SmbComWriteAndX reqx; private SmbComWriteAndXResponse rspx; private SmbComWrite req; private SmbComWriteResponse rsp; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 11K bytes - Viewed (0) -
docs/distributed/README.md
### High availability A stand-alone MinIO server would go down if the server hosting the drives goes offline. In contrast, a distributed MinIO setup with _m_ servers and _n_ drives will have your data safe as long as _m/2_ servers or _m*n_/2 or more drives are online.
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/CharMappingService.java
* @return an OptionalEntity containing the character mapping item if found, empty otherwise */ public OptionalEntity<CharMappingItem> getCharMappingItem(final String dictId, final long id) { return getCharMappingFile(dictId).map(file -> file.get(id).get()); } /** * Stores a character mapping item in the specified dictionary. * <p>
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.1K bytes - Viewed (0) -
src/main/java/jcifs/pac/Pac.java
} for (int bufferIndex = 0; bufferIndex < bufferCount; bufferIndex++) { int bufferType = pacStream.readInt(); int bufferSize = pacStream.readInt(); long bufferOffset = pacStream.readLong(); if (bufferOffset % 8 != 0) { throw new PACDecodingException("Unaligned buffer " + bufferType); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 7.3K bytes - Viewed (0) -
android/guava/src/com/google/common/io/CharSink.java
* * @return the number of characters written * @throws IOException if an I/O error occurs while reading from {@code readable} or writing to * this sink */ @CanIgnoreReturnValue public long writeFrom(Readable readable) throws IOException { checkNotNull(readable); try (Writer out = openStream()) { return CharStreams.copy(readable, out); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Apr 14 16:07:06 UTC 2025 - 6.7K bytes - Viewed (0) -
src/test/java/jcifs/pac/ASN1UtilTest.java
int length = ASN1Util.readLength(s, 100, false); assertEquals(10, length); } @Test void testReadLength_LongForm() throws IOException { // Definite-length long form (length 256) InputStream s = new ByteArrayInputStream(new byte[] { (byte) 0x82, 0x01, 0x00 }); int length = ASN1Util.readLength(s, 500, false); assertEquals(256, length); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 9.4K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/AbstractIteratorTester.java
} private static final class UnknownElementException extends RuntimeException { private UnknownElementException(Collection<?> expected, Object actual) { super("Returned value '" + actual + "' not found. Remaining elements: " + expected); } @GwtIncompatible @J2ktIncompatible private static final long serialVersionUID = 0; } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed May 14 19:40:47 UTC 2025 - 21.4K bytes - Viewed (0) -
src/main/java/jcifs/http/NetworkExplorer.java
public class NetworkExplorer extends HttpServlet { /** * Default constructor. */ public NetworkExplorer() { super(); } /** * */ private static final long serialVersionUID = -3847521461674504364L; private static final Logger log = LoggerFactory.getLogger(NetworkExplorer.class); /** The CSS style for HTML rendering */ private String style;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 23.4K bytes - Viewed (0)