- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 170 for associated (1.77 sec)
-
api/maven-api-core/src/main/java/org/apache/maven/api/SessionData.java
/** * Gets the session data associated with the specified key. * * @param key the key for which to retrieve the session data, must not be {@code null} * @return the session data associated with the key or {@code null} if none */ @Nullable <T> T get(@Nonnull Key<T> key); /** * Retrieve of compute the data associated with the specified key. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Wed Feb 28 23:31:09 UTC 2024 - 4.7K bytes - Viewed (0) -
api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Logger.java
* Logs a message at the specified level with an associated exception. * * @param level the severity level of the message * @param message the message to be logged * @param error the associated exception, or null if not applicable */ void log(@Nonnull Level level, @Nonnull String message, @Nullable Throwable error); /** * Logs a debug message without an associated exception. *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jan 31 20:56:58 UTC 2025 - 4.9K bytes - Viewed (0) -
android/guava/src/com/google/common/graph/GraphConnections.java
* also becomes a successor. Associates {@code value} with the edge connecting the two nodes. */ void addPredecessor(N node, V value); /** * Add {@code node} as a successor to the origin node. In the case of an undirected graph, it also * becomes a predecessor. Associates {@code value} with the edge connecting the two nodes. Returns * the value previously associated with the edge connecting the two nodes. */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.4K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/persistent/HandleInfo.java
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 23 02:21:31 UTC 2025 - 5.9K bytes - Viewed (0) -
src/main/java/jcifs/pac/PacSidAttributes.java
* * @param id the Security Identifier * @param attributes the attribute flags associated with the SID */ public PacSidAttributes(final SID id, final int attributes) { this.id = id; this.attributes = attributes; } /** * Gets the Security Identifier. * * @return the SID associated with this instance */ public SID getId() { return this.id; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
guava/src/com/google/common/cache/Cache.java
@GwtCompatible public interface Cache<K, V> { /** * Returns the value associated with {@code key} in this cache, or {@code null} if there is no * cached value for {@code key}. * * @since 11.0 */ @CanIgnoreReturnValue // TODO(b/27479612): consider removing this? @Nullable V getIfPresent(@CompatibleWith("K") Object key); /** * Returns the value associated with {@code key} in this cache, obtaining that value from {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 7.9K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/ExtensibleEnums.java
* * @param id the identifier for the path scope * @param projectScope the project scope associated with this path scope * @param dependencyScopes the dependency scopes associated with this path scope * @return a new PathScope instance */ static PathScope pathScope(String id, ProjectScope projectScope, DependencyScope... dependencyScopes) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.8K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/package-info.java
* {@linkplain SetMultimap#get collection of values} associated with a given key fulfills the * {@link java.util.Set} contract. * <dt>{@link SortedSetMultimap} * <dd>An extension of {@link SetMultimap} for which the {@linkplain SortedSetMultimap#get * collection values} associated with a given key is a {@link java.util.SortedSet}. * <dt>{@link BiMap}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 5K bytes - Viewed (0) -
guava/src/com/google/common/collect/package-info.java
* {@linkplain SetMultimap#get collection of values} associated with a given key fulfills the * {@link java.util.Set} contract. * <dt>{@link SortedSetMultimap} * <dd>An extension of {@link SetMultimap} for which the {@linkplain SortedSetMultimap#get * collection values} associated with a given key is a {@link java.util.SortedSet}. * <dt>{@link BiMap}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 14:50:24 UTC 2024 - 5K bytes - Viewed (0) -
guava/src/com/google/common/graph/MutableValueGraph.java
* <p>If {@code nodeU} and {@code nodeV} are not already present in this graph, this method will * silently {@link #addNode(Object) add} {@code nodeU} and {@code nodeV} to the graph. * * @return the value previously associated with the edge connecting {@code nodeU} to {@code * nodeV}, or null if there was no such edge. * @throws IllegalArgumentException if the introduction of the edge would violate {@link * #allowsSelfLoops()} */
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 4.3K bytes - Viewed (0)