- Sort Score
- Result 10 results
- Languages All
Results 1921 - 1930 of 2,150 for BOOLEAN (0.12 sec)
-
src/main/java/org/codelibs/fess/Constants.java
public static final int DEFAULT_ADMIN_PAGE_NUMBER = 1; public static final String TRUE = "true"; public static final String FALSE = "false"; public static final Boolean T = true; public static final Boolean F = false; public static final String SCORE = "score"; public static final String SEARCHER = "searcher"; public static final String ON = "on";
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Aug 22 12:43:18 UTC 2024 - 16.6K bytes - Viewed (0) -
okhttp/src/test/java/okhttp3/MultipartBodyTest.kt
} fun String.toOneShotRequestBody(): RequestBody { return object : RequestBody() { override fun contentType() = null override fun isOneShot(): Boolean = true override fun contentLength() = ******@****.***8Size() override fun writeTo(sink: BufferedSink) { sink.writeUtf8(this@toOneShotRequestBody) } } }
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 10.4K bytes - Viewed (0) -
.teamcity/src/test/kotlin/CIConfigIntegrationTests.kt
assertTrue(projectDirsWithUnitTests.contains(it), "Contains unit tests: $it") } } private fun containsSrcFileWithString(srcRoot: File, content: String, exceptions: List<String>): Boolean { srcRoot.walkTopDown().forEach { file -> if (file.extension == "groovy" || file.extension == "java") { val originalText = file.readText()
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Jul 18 07:02:47 UTC 2024 - 13.4K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/InvokableTest.java
// case, but we do check that its API still has the same public methods. We exclude some methods // that were added in Java 9 and that people probably weren't calling via Invokable, namely // `boolean canAccess(Object)`. public void testApiCompatibleWithAccessibleObject() { ImmutableSet<String> invokableMethods = publicMethodSignatures(Invokable.class, ImmutableSet.<String>of());
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 13:00:28 UTC 2024 - 30.7K bytes - Viewed (0) -
guava/src/com/google/common/util/concurrent/ExecutionSequencer.java
// we'd be interfering with their operation. executingTaskQueue.thread = null; } } private boolean trySetStarted() { return compareAndSet(NOT_RUN, STARTED); } private boolean trySetCancelled() { return compareAndSet(NOT_RUN, CANCELLED); } }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Feb 01 21:46:34 UTC 2024 - 22.1K bytes - Viewed (0) -
guava-testlib/test/com/google/common/testing/FreshValueGeneratorTest.java
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Dec 04 17:37:03 UTC 2017 - 18.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/FessBoot.java
} public static void shutdown(final String[] args) { System.exit(0); } private static boolean isNoneEnv() { return System.getProperty("lasta.env") == null; } protected static int getPort() { final String value = System.getProperty(FESS_PORT); if (value != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:20:39 UTC 2024 - 8K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/internal/-HeadersCommon.kt
} internal fun Headers.commonNewBuilder(): Headers.Builder { val result = Headers.Builder() result.namesAndValues += namesAndValues return result } internal fun Headers.commonEquals(other: Any?): Boolean { return other is Headers && namesAndValues.contentEquals(other.namesAndValues) } internal fun Headers.commonHashCode(): Int = namesAndValues.contentHashCode() internal fun Headers.commonToString(): String {
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 5.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ComparatorsTest.java
final Integer value; Foo(int value) { this.value = value; } @Override public int hashCode() { return value.hashCode(); } @Override public boolean equals(@Nullable Object o) { return (o instanceof Foo) && ((Foo) o).value.equals(value); } @Override public int compareTo(Foo other) { return value.compareTo(other.value); }
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 6.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ForwardingSortedMap.java
* {@link #tailMap}. If you override {@link #tailMap}, you may wish to override {@link * #containsKey} to forward to this implementation. * * @since 7.0 */ @Override protected boolean standardContainsKey(@CheckForNull Object key) { try { // any CCE or NPE will be caught @SuppressWarnings({"unchecked", "nullness"})
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 5.6K bytes - Viewed (0)