- Sort Score
- Result 10 results
- Languages All
Results 291 - 300 of 2,695 for FALSE (0.03 sec)
-
mockwebserver/src/test/java/mockwebserver3/internal/http2/Http2Server.kt
Header(":version", "HTTP/1.1"), Header("content-type", "text/plain"), ) stream.writeHeaders( responseHeaders = responseHeaders, outFinished = false, flushHeaders = false, ) val out = stream.getSink().buffer() out.writeUtf8("Not found: $path") out.close() } private fun serveDirectory( stream: Http2Stream, files: Array<File>,
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Jan 08 01:13:22 UTC 2024 - 6.1K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/UnmodifiableTableRowTest.java
import java.util.Map; @GwtCompatible @ElementTypesAreNonnullByDefault public class UnmodifiableTableRowTest extends RowTests { public UnmodifiableTableRowTest() { super(false, false, false, false, false); } @Override Table<Character, String, Integer> makeTable() { Table<Character, String, Integer> table = HashBasedTable.create(); return unmodifiableTable(table); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 30 16:15:19 UTC 2024 - 1.5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ImmutableMultimapAsMapImplementsMapTest.java
@GwtCompatible @ElementTypesAreNonnullByDefault public class ImmutableMultimapAsMapImplementsMapTest extends AbstractMultimapAsMapImplementsMapTest { public ImmutableMultimapAsMapImplementsMapTest() { super(false, false, false); } @Override protected Map<String, Collection<Integer>> makeEmptyMap() { return ImmutableMultimap.<String, Integer>of().asMap(); } @Override
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Feb 19 20:34:55 UTC 2024 - 1.5K bytes - Viewed (0) -
src/cmd/asm/internal/arch/loong64.go
return true } return false } // IsLoong64RDTIME reports whether the op (as defined by an loong64.A* // constant) is one of the RDTIMELW/RDTIMEHW/RDTIMED instructions that // require special handling. func IsLoong64RDTIME(op obj.As) bool { switch op { case loong64.ARDTIMELW, loong64.ARDTIMEHW, loong64.ARDTIMED: return true } return false } func IsLoong64AMO(op obj.As) bool {
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Jul 29 02:47:00 UTC 2024 - 1.8K bytes - Viewed (0) -
guava-gwt/src-super/com/google/common/util/concurrent/super/com/google/common/util/concurrent/AbstractFuture.java
} }; boolean isDone() { return true; } boolean isCancelled() { return false; } void maybeThrowOnGet(@Nullable Throwable cause) throws ExecutionException {} boolean permitsPublicUserToTransitionTo(State state) { return false; } } private static final class Listener { final Runnable command; final Executor executor;
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Jan 22 19:37:41 UTC 2024 - 12.3K bytes - Viewed (0) -
compat/maven-model/src/test/java/org/apache/maven/model/merge/MavenMergerTest.java
Model merged = mavenMerger.merge(target, source, true, null); assertThat(merged.getArtifactId(), is("SOURCE")); merged = mavenMerger.merge(target, source, false, null); assertThat(merged.getArtifactId(), is("TARGET")); } @Test void mergeSameContributors() { Contributor contributor =
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 13.3K bytes - Viewed (0) -
okhttp/src/main/kotlin/okhttp3/Cookie.kt
private var value: String? = null private var expiresAt = MAX_DATE private var domain: String? = null private var path = "/" private var secure = false private var httpOnly = false private var persistent = false private var hostOnly = false private var sameSite: String? = null internal constructor(cookie: Cookie) : this() { this.name = cookie.name this.value = cookie.value
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Apr 06 04:12:05 UTC 2024 - 23.1K bytes - Viewed (0) -
internal/dsync/drwmutex.go
// blocks until either the mutex becomes available and return success or // more time has passed than the timeout value and return false. func (dm *DRWMutex) GetLock(ctx context.Context, cancel context.CancelFunc, id, source string, opts Options) (locked bool) { isReadLock := false return dm.lockBlocking(ctx, cancel, id, source, isReadLock, opts) } // RLock holds a read lock on dm. //
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Sep 09 15:49:49 UTC 2024 - 20.4K bytes - Viewed (0) -
tensorflow/c/c_test_util.cc
if (node_def.op() != "Placeholder" || node_def.name() != "feed") { return false; } bool found_dtype = false; bool found_shape = false; for (const auto& attr : node_def.attr()) { if (attr.first == "dtype") { if (attr.second.type() == tensorflow::DT_INT32) { found_dtype = true; } else { return false; } } else if (attr.first == "shape") { found_shape = true;
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Oct 15 03:16:52 UTC 2021 - 17.8K bytes - Viewed (0) -
gradle.properties
org.gradle.parallel=true android.enableJetifier=true android.useAndroidX=true kotlin.mpp.stability.nowarn=true kotlin.js.compiler=ir kotlin.incremental.js.ir=true androidBuild=false graalBuild=false loomBuild=false containerTests=false
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 20 09:58:21 UTC 2024 - 343 bytes - Viewed (0)