- Sort Score
- Result 10 results
- Languages All
Results 831 - 840 of 2,303 for Map$ (0.02 sec)
-
android/guava/src/com/google/common/cache/RemovalCause.java
* result from the user invoking {@link Cache#put}, {@link LoadingCache#refresh}, {@link Map#put}, * {@link Map#putAll}, {@link ConcurrentMap#replace(Object, Object)}, or {@link * ConcurrentMap#replace(Object, Object, Object)}. */ REPLACED { @Override boolean wasEvicted() { return false; } }, /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 15 18:00:07 UTC 2021 - 2.7K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/AbstractDirectedNetworkConnections.java
/** Keys are edges incoming to the origin node, values are the source node. */ final Map<E, N> inEdgeMap; /** Keys are edges outgoing from the origin node, values are the target node. */ final Map<E, N> outEdgeMap; private int selfLoopCount; AbstractDirectedNetworkConnections(Map<E, N> inEdgeMap, Map<E, N> outEdgeMap, int selfLoopCount) { this.inEdgeMap = checkNotNull(inEdgeMap);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Mon Apr 26 17:43:39 UTC 2021 - 4.5K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/service/impl/DataServiceImpl.java
*/ @Override public void iterate(final String sessionId, final AccessResultCallback<AccessResultImpl<Long>> accessResultCallback) { final Map<String, AccessResultImpl<Long>> arMap = dataHelper.getAccessResultMap(sessionId); for (final Map.Entry<String, AccessResultImpl<Long>> entry : arMap.entrySet()) { accessResultCallback.iterate(entry.getValue()); } } /*
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:47:32 UTC 2024 - 5.5K bytes - Viewed (0) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild.code-quality.gradle.kts
annotationProcessorConfigurationName, extension.enabled.filter { it }.map { "com.google.errorprone:error_prone_core:2.29.0" } ) project.tasks.named<JavaCompile>(this.compileJavaTaskName) { options.errorprone { isEnabled = extension.enabled checks.set(errorproneExtension.disabledChecks.map { it.associateWith { CheckSeverity.OFF } })
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 6.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebAuthenticationDbm.java
// Map Communication // ================= @Override public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { } @Override public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 13K bytes - Viewed (0) -
cmd/post-policy_test.go
expectedStatus int secretKey string formData map[string]string }{ {http.StatusForbidden, credentials.SecretKey, map[string]string{"AWSAccessKeyId": "invalidaccesskey"}}, {http.StatusForbidden, "invalidsecretkey", map[string]string{"AWSAccessKeyId": credentials.AccessKey}}, {http.StatusNoContent, credentials.SecretKey, map[string]string{"AWSAccessKeyId": credentials.AccessKey}},
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed May 22 23:07:14 UTC 2024 - 30.2K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/JavadocConverter.java
final LinkedList<HtmlElementHandler> handlerStack = new LinkedList<HtmlElementHandler>(); final LinkedList<String> tagStack = new LinkedList<String>(); final Map<String, String> attributes = new HashMap<String, String>(); StringBuilder tagValue; final Document document; public HtmlGeneratingTokenHandler(DocBookBuilder nodes, Document document) {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Dec 09 08:14:05 UTC 2020 - 29.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/BsCrawlingInfo.java
// Source // ====== @Override public Map<String, Object> toSource() { Map<String, Object> sourceMap = new HashMap<>(); if (createdTime != null) { addFieldToSource(sourceMap, "createdTime", createdTime); } if (expiredTime != null) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 5.3K bytes - Viewed (0) -
guava/src/com/google/common/graph/UndirectedGraphConnections.java
*/ @ElementTypesAreNonnullByDefault final class UndirectedGraphConnections<N, V> implements GraphConnections<N, V> { private final Map<N, V> adjacentNodeValues; private UndirectedGraphConnections(Map<N, V> adjacentNodeValues) { this.adjacentNodeValues = checkNotNull(adjacentNodeValues); } static <N, V> UndirectedGraphConnections<N, V> of(ElementOrder<N> incidentEdgeOrder) { switch (incidentEdgeOrder.type()) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Oct 06 00:47:57 UTC 2021 - 3.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/JobLogDbm.java
// Map Communication // ================= @Override public void acceptPrimaryKeyMap(Entity entity, Map<String, ? extends Object> primaryKeyMap) { } @Override public void acceptAllColumnMap(Entity entity, Map<String, ? extends Object> allColumnMap) { } @Override
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 11K bytes - Viewed (0)