- Sort Score
- Result 10 results
- Languages All
Results 581 - 590 of 1,982 for wong (0.03 sec)
-
guava-testlib/src/com/google/common/testing/GcFinalization.java
@ElementTypesAreNonnullByDefault public final class GcFinalization { private GcFinalization() {} /** * 10 seconds ought to be long enough for any object to be GC'ed and finalized. Unless we have a * gigantic heap, in which case we scale by heap size. */ private static long timeoutSeconds() { // This class can make no hard guarantees. The methods in this class are inherently flaky, but
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 11.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocumentUtil.java
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 5K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerAdapter.kt
* limitations under the License. */ package okhttp3.tls.internal.der import okio.Buffer import okio.ByteString /** * Encode and decode a model object like a [Long] or [Certificate] as DER bytes. */ internal interface DerAdapter<T> { /** Returns true if this adapter can read [header] in a choice. */ fun matches(header: DerHeader): Boolean /**
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoLoginException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class SsoLoginException extends FessSystemException { private static final long serialVersionUID = 1L; public SsoLoginException(final String message) { super(message); } public SsoLoginException(final String message, final Exception e) { super(message, e); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 967 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/SsoProcessException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class SsoProcessException extends FessSystemException { private static final long serialVersionUID = 1L; public SsoProcessException(final String message) { super(message); } public SsoProcessException(final String message, final Exception e) { super(message, e);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 973 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/exentity/ElevateWordToLabel.java
import org.codelibs.fess.es.config.bsentity.BsElevateWordToLabel; /** * @author ESFlute (using FreeGen) */ public class ElevateWordToLabel extends BsElevateWordToLabel { private static final long serialVersionUID = 1L;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 897 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/ContentNotFoundException.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.exception; public class ContentNotFoundException extends FessSystemException { private static final long serialVersionUID = 1L; public ContentNotFoundException(final String parentUrl, final String url) { super("Not Found: " + url + " Parent: " + parentUrl, false, false); }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 947 bytes - Viewed (0) -
src/main/config/es/fess_config_duplicate_host.json
"aliases" : { }, "mappings" : { "duplicate_host" : { "properties" : { "createdBy" : { "type" : "keyword" }, "createdTime" : { "type" : "long" }, "duplicateHostName" : { "type" : "keyword" }, "regularName" : { "type" : "keyword" }, "sortOrder" : {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 984 bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.data_config/data_config.json
"sortOrder": { "type": "integer" }, "createdBy": { "type": "keyword" }, "createdTime": { "type": "long" }, "updatedBy": { "type": "keyword" }, "updatedTime": { "type": "long" }, "description" : { "type": "text", "analyzer": "standard_analyzer" } }
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 859 bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/UnsignedBytesTest.java
assertThat(UnsignedBytes.saturatedCast(-1L)).isEqualTo(LEAST); assertThat(UnsignedBytes.saturatedCast(Long.MAX_VALUE)).isEqualTo(GREATEST); assertThat(UnsignedBytes.saturatedCast(Long.MIN_VALUE)).isEqualTo(LEAST); } private static void assertCastFails(long value) { try { UnsignedBytes.checkedCast(value); fail("Cast to byte should have failed: " + value);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 13.4K bytes - Viewed (0)