- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 111 for associated (0.2 sec)
-
guava/src/com/google/common/util/concurrent/AtomicLongMap.java
} @Override public String toString() { return map.toString(); } /** * If {@code key} is not already associated with a value or if {@code key} is associated with * zero, associate it with {@code newValue}. Returns the previous value associated with {@code * key}, or zero if there was no mapping for {@code key}. */ long putIfAbsent(K key, long newValue) {
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 11.7K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/Table.java
void clear(); /** * Associates the specified value with the specified keys. If the table already contained a * mapping for those keys, the old value is replaced with the specified value. * * @param rowKey row key that the value should be associated with * @param columnKey column key that the value should be associated with * @param value value to be associated with the specified keys
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue Jul 08 18:32:10 UTC 2025 - 10.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/RequestParameter.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.entity; import java.util.Arrays; /** * Entity class representing a request parameter with a name and associated values. * This class encapsulates HTTP request parameters that can have multiple values, * such as query parameters, form parameters, or other request-related data. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/BiMap.java
* discarded and not returned. * * @param key the key with which the specified value is to be associated * @param value the value to be associated with the specified key * @return the value that was previously associated with the key, or {@code null} if there was no * previous entry. (If the bimap contains null values, then {@code forcePut}, like {@code
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 17:32:30 UTC 2025 - 4.2K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java
public void testPut_nullKeySupportedPresent() { Entry<K, V> newEntry = entry(null, v3()); initMapWithNullKey(); assertEquals( "put(present, value) should return the associated value", getValueForNullKey(), put(newEntry)); Entry<K, V>[] expected = createArrayWithNullKey(); expected[getNullLocation()] = newEntry; expectContents(expected); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.1K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/testers/MapPutTester.java
public void testPut_nullKeySupportedPresent() { Entry<K, V> newEntry = entry(null, v3()); initMapWithNullKey(); assertEquals( "put(present, value) should return the associated value", getValueForNullKey(), put(newEntry)); Entry<K, V>[] expected = createArrayWithNullKey(); expected[getNullLocation()] = newEntry; expectContents(expected); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/DocMap.java
* @param value the value to be associated with the specified key * @return the previous value associated with key, or null if no mapping existed */ @Override public Object put(final String key, final Object value) { return parent.put(key, value); } /** * Removes the mapping for a key from this map if it is present. *
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/TagForm.java
import jakarta.validation.constraints.Size; /** * Form class for handling tag operations in storage management. * This form represents tag data including path, name, and associated metadata. */ public class TagForm { /** * The file or directory path associated with this tag. */ @Required public String path; /** * The name of the tag with a maximum length of 100 characters. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/exception/WebApiException.java
public class WebApiException extends FessSystemException { private static final long serialVersionUID = 1L; /** * The HTTP status code associated with this exception. */ private final int statusCode; /** * Gets the HTTP status code associated with this exception. * * @return The HTTP status code */ public int getStatusCode() { return statusCode; }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/FailureUrlService.java
import jakarta.annotation.Resource; /** * Service class for managing failure URLs that occur during web crawling. * Provides functionality to store, retrieve, and manage failed crawling attempts * with their associated error information. */ public class FailureUrlService { /** Logger instance for this class */ private static final Logger logger = LogManager.getLogger(FailureUrlService.class); /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.2K bytes - Viewed (0)