- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 34 for fiction (0.07 sec)
-
guava/src/com/google/common/collect/Maps.java
* {@link java.util.stream.Collectors#toMap(java.util.function.Function, * java.util.function.Function) Collectors.toMap(Function, Function)}, which throws an {@code * IllegalStateException}.) * * @since 21.0 */ public static <T extends @Nullable Object, K extends Enum<K>, V> Collector<T, ?, ImmutableMap<K, V>> toImmutableEnumMap( java.util.function.Function<? super T, ? extends K> keyFunction,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:05:46 UTC 2024 - 167.4K bytes - Viewed (0) -
okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat
asda // associates : 2014-03-06 Binky Moon, LLC associates // athleta : 2015-07-30 The Gap, Inc. athleta // attorney : 2014-03-20 Dog Beach, LLC attorney // auction : 2014-03-20 Dog Beach, LLC auction // audi : 2015-05-21 AUDI Aktiengesellschaft audi // audible : 2015-06-25 Amazon Registry Services, Inc. audible // audio : 2014-03-20 XYZ.COM LLC audio
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 240.3K bytes - Viewed (0) -
guava/src/com/google/common/cache/LocalCache.java
checkNotNull(key); checkNotNull(function); int hash = hash(key); return segmentFor(hash).compute(key, hash, function); } @Override public V computeIfAbsent(K key, Function<? super K, ? extends V> function) { checkNotNull(key); checkNotNull(function);
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri Oct 18 19:07:49 UTC 2024 - 149.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java
} /** * Add the created action message for the key 'constraints.Digits.message' with parameters. * <pre> * message: {item} is numeric value out of bounds (<{integer} digits>.<{fraction} digits> expected). * </pre> * @param property The property name for the message. (NotNull) * @param fraction The parameter fraction for message. (NotNull)
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 119.9K bytes - Viewed (0) -
doc/go1.17_spec.html
</p> <pre> math.Atan2(x, y) // function call var pt *Point pt.Scale(3.5) // method call with receiver pt </pre> <p> In a function call, the function value and arguments are evaluated in <a href="#Order_of_evaluation">the usual order</a>. After they are evaluated, the parameters of the call are passed by value to the function and the called function begins execution.
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Oct 10 18:25:45 UTC 2024 - 211.6K bytes - Viewed (0) -
cmd/admin-handlers.go
} type serviceResult struct { Action madmin.ServiceAction `json:"action"` DryRun bool `json:"dryRun"` Results []servicePeerResult `json:"results,omitempty"` } // ServiceV2Handler - POST /minio/admin/v3/service?action={action}&type=2 // ---------- // Supports following actions: // - restart (restarts all the MinIO instances in a setup)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 11:32:32 UTC 2024 - 99.7K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.5.md
- [Action Required](#action-required) - [Other notable changes](#other-notable-changes-10) - [v1.5.0-alpha.2](#v150-alpha2) - [Downloads for v1.5.0-alpha.2](#downloads-for-v150-alpha2) - [Client Binaries](#client-binaries-12) - [Server Binaries](#server-binaries-12) - [Changelog since v1.5.0-alpha.1](#changelog-since-v150-alpha1) - [Action Required](#action-required-1)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 136.4K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.4.md
- [Changelog since v1.4.0-alpha.3](#changelog-since-v140-alpha3) - [Action Required](#action-required) - [Other notable changes](#other-notable-changes-16) - [v1.4.0-alpha.3](#v140-alpha3) - [Downloads](#downloads-15) - [Changelog since v1.4.0-alpha.2](#changelog-since-v140-alpha2) - [Action Required](#action-required-1) - [Other notable changes](#other-notable-changes-17)
Registered: Fri Nov 01 09:05:11 UTC 2024 - Last Modified: Thu Dec 24 02:28:26 UTC 2020 - 133.5K bytes - Viewed (0) -
cmd/bucket-replication.go
serr := ErrorRespToObjectError(cerr, bucket, object, objInfo.VersionID) switch { case isErrMethodNotAllowed(serr): rAction = replicateAll case isErrObjectNotFound(serr), isErrVersionNotFound(serr): rAction = replicateAll case isErrReadQuorum(serr), isErrWriteQuorum(serr): rAction = replicateAll default: rinfo.Err = cerr
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Thu Oct 10 06:49:55 UTC 2024 - 116.1K bytes - Viewed (0) -
android/guava/src/com/google/common/util/concurrent/ClosingFuture.java
} /** * A function from an input to a result. * * @param <T> the type of the input to the function * @param <U> the type of the result of the function */ public interface ClosingFunction<T extends @Nullable Object, U extends @Nullable Object> { /** * Applies this function to an input, or throws an exception if unable to do so. *
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Oct 08 19:36:35 UTC 2024 - 98.5K bytes - Viewed (0)