- Sort Score
- Result 10 results
- Languages All
Results 261 - 270 of 2,471 for boolean (0.64 sec)
-
android/guava/src/com/google/common/graph/StandardNetwork.java
* @author Omar Darwish * @param <N> Node parameter type * @param <E> Edge parameter type */ class StandardNetwork<N, E> extends AbstractNetwork<N, E> { private final boolean isDirected; private final boolean allowsParallelEdges; private final boolean allowsSelfLoops; private final ElementOrder<N> nodeOrder; private final ElementOrder<E> edgeOrder; final MapIteratorCache<N, NetworkConnections<N, E>> nodeConnections;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 6.9K bytes - Viewed (0) -
guava/src/com/google/common/graph/StandardNetwork.java
* @author Omar Darwish * @param <N> Node parameter type * @param <E> Edge parameter type */ class StandardNetwork<N, E> extends AbstractNetwork<N, E> { private final boolean isDirected; private final boolean allowsParallelEdges; private final boolean allowsSelfLoops; private final ElementOrder<N> nodeOrder; private final ElementOrder<E> edgeOrder; final MapIteratorCache<N, NetworkConnections<N, E>> nodeConnections;
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 6.9K bytes - Viewed (0) -
compat/maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java
} catch (TransferCancelledException e) { ongoing.put(new TransferResourceIdentifier(transferEvent.getResource()), Boolean.FALSE); } }); } } private void put(TransferEvent event, boolean last) { try { Exchange exchange; if (blockOnLastEvent && last) { exchange = new BlockingExchange(event);
Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Nov 08 08:49:11 UTC 2024 - 8.4K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractGradleViolationRule.groovy
} private static boolean isAnnotatedWithDeprecated(JApiHasAnnotations member) { member.annotations*.fullyQualifiedName.any { it == Deprecated.name || it == kotlin.Deprecated.name } } private static boolean isAnnotatedWithInject(JApiHasAnnotations member) { member.annotations*.fullyQualifiedName.any { it == Inject.name } } protected static boolean isInject(JApiHasAnnotations member) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Tue Dec 30 10:14:25 UTC 2025 - 10.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/RegexRule.java
* responseData.setContentType("text/html"); * * boolean matches = rule.match(responseData); // Returns true * } * </pre> * */ public class RegexRule extends AbstractRule { /** Serial version UID for serialization. */ private static final long serialVersionUID = 1L; /** Whether this rule should match all responses by default. */ protected boolean defaultRule = false;
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.2K bytes - Viewed (0) -
guava/src/com/google/common/collect/AbstractTable.java
R extends @Nullable Object, C extends @Nullable Object, V extends @Nullable Object> implements Table<R, C, V> { @Override public boolean containsRow(@Nullable Object rowKey) { return Maps.safeContainsKey(rowMap(), rowKey); } @Override public boolean containsColumn(@Nullable Object columnKey) { return Maps.safeContainsKey(columnMap(), columnKey); } @Override public Set<R> rowKeySet() {
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Mon Nov 17 22:50:48 UTC 2025 - 6.7K bytes - Viewed (0) -
src/main/resources/fess_indices/fess_config.scheduled_job/scheduled_job.json
"scriptType": { "type": "keyword" }, "scriptData": { "type": "keyword" }, "crawler": { "type": "boolean" }, "jobLogging": { "type": "boolean" }, "available": { "type": "boolean" }, "sortOrder": { "type": "integer" }, "createdBy": { "type": "keyword" }, "createdTime": {
Registered: Sat Dec 20 09:19:18 UTC 2025 - Last Modified: Thu Dec 02 13:14:56 UTC 2021 - 753 bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http/HttpMethod.kt
fun permitsRequestBody(method: String): Boolean = !(method == "GET" || method == "HEAD") fun redirectsWithBody(method: String): Boolean = method == "PROPFIND" fun redirectsToGet(method: String): Boolean = method != "PROPFIND" fun isCacheable(requestMethod: String): Boolean = requestMethod == "GET" || requestMethod == "QUERY"
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Fri Oct 03 17:41:45 UTC 2025 - 1.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/ForwardingNavigableSetTest.java
} @Override public boolean contains(Object object) { return standardContains(object); } @Override public boolean containsAll(Collection<?> collection) { return standardContainsAll(collection); } @Override public boolean remove(Object object) { return standardRemove(object); } @Override public boolean removeAll(Collection<?> collection) {Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 7K bytes - Viewed (0) -
impl/maven-core/src/main/java/org/apache/maven/project/artifact/PluginArtifact.java
@Override public String getPackaging() { return "maven-plugin"; } @Override @Deprecated public boolean isAddedToClasspath() { return true; } @Override public boolean isIncludesDependencies() { return false; } }Registered: Sun Dec 28 03:35:09 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 2.7K bytes - Viewed (0)