- Sort Score
- Result 10 results
- Languages All
Results 1141 - 1150 of 1,842 for Pong (0.03 sec)
-
src/main/java/org/codelibs/fess/dict/mapping/CharMappingItem.java
private final String[] inputs; private final String output; private String[] newInputs; private String newOutput; public CharMappingItem(final long id, final String[] inputs, final String output) { this.id = id; this.inputs = inputs; this.output = output == null ? null : output.replace("\n", " "); Arrays.sort(inputs);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/DataConfig.java
return asDocMeta().id(); } public void setId(final String id) { asDocMeta().id(id); } public Long getVersionNo() { return asDocMeta().version(); } public void setVersionNo(final Long version) { asDocMeta().version(version); } @Override public Integer getTimeToLive() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Oct 12 01:54:15 UTC 2024 - 18.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/Constants.java
public static final int DEFAULT_INTERVAL_TIME_FOR_WEB = 10000; public static final int DEFAULT_NUM_OF_THREAD_FOR_FS = 5; public static final int DEFAULT_NUM_OF_THREAD_FOR_WEB = 1; public static final long DEFAULT_CRAWLING_EXECUTION_INTERVAL = 5000L; public static final String CRAWLING_USER_AGENT_PREFIX = "Mozilla/5.0 (compatible; Fess/";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/FreshValueGenerator.java
@Generates Integer generateInteger() { return new Integer(generateInt()); } @Generates long generateLong() { return generateInt(); } @SuppressWarnings("removal") // b/321209431 -- maybe just use valueOf here? @Generates Long generateLongObject() { return new Long(generateLong()); } @Generates float generateFloat() { return generateInt(); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jul 23 14:22:54 UTC 2024 - 28.1K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/ws/MessageInflater.kt
// We cannot read all, as the source does not close. // Instead, we ensure that all bytes from source have been processed by inflater. do { inflaterSource.readOrInflate(buffer, Long.MAX_VALUE) } while (inflater.bytesRead < totalBytesToRead && !inflater.finished()) } @Throws(IOException::class) override fun close() = inflaterSource.close()
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.8K bytes - Viewed (0) -
okhttp-testing-support/src/main/kotlin/okhttp3/UppercaseRequestInterceptor.kt
.build() } private fun uppercaseSink(sink: Sink): Sink { return object : ForwardingSink(sink) { @Throws(IOException::class) override fun write( source: Buffer, byteCount: Long, ) { val bytes = source.readByteString(byteCount) delegate.write( Buffer() .write(bytes.toAsciiUppercase()), byteCount, ) } } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 1.9K bytes - Viewed (0) -
src/main/java/org/codelibs/core/exception/ClassNotFoundRuntimeException.java
import static org.codelibs.core.collection.ArrayUtil.asArray; /** * クラスが見つからないときにスローされる例外です。 * * @author higa */ public class ClassNotFoundRuntimeException extends ClRuntimeException { private static final long serialVersionUID = -9022468864937761059L; private final String className; /** * {@link ClassNotFoundRuntimeException}を作成します。 * * @param cause * 原因となった例外 */
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/user/allcommon/EsAbstractConditionBean.java
private Boolean explain; private Float minScore; private String preference; private String routing; private String searchType; private long timeoutInMillis = -1; private Boolean version; private Boolean seqNoAndPrimaryTerm = Boolean.TRUE; private int terminateAfter = 0;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 17.8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Writer.kt
* connection if `streamId` is zero. */ @Throws(IOException::class) fun windowUpdate( streamId: Int, windowSizeIncrement: Long, ) { this.withLock { if (closed) throw IOException("closed") require(windowSizeIncrement != 0L && windowSizeIncrement <= 0x7fffffffL) {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 20 17:03:43 UTC 2024 - 11.3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CreateRequest.java
private byte securityFlags; private byte requestedOplockLevel = SMB2_OPLOCK_LEVEL_NONE; private int impersonationLevel = SMB2_IMPERSONATION_LEVEL_IMPERSONATION; private long smbCreateFlags; private int desiredAccess = 0x00120089; // 0x80000000 | 0x1; private int fileAttributes; private int shareAccess = FILE_SHARE_READ | FILE_SHARE_WRITE; private int createDisposition = FILE_OPEN;
Registered: Sun Nov 03 00:10:13 UTC 2024 - Last Modified: Sat Jun 01 09:52:11 UTC 2019 - 14.3K bytes - Viewed (0)