- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 150 for of (0.02 seconds)
-
guava/src/com/google/common/base/Preconditions.java
* <p>It is of course possible to use the methods of this class to check for invalid conditions * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is * misleading to future readers of the code and of stack traces. See <a * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures * explained</a> in the Guava User Guide for more advice. Notably, {@link Verify} offers assertions
Created: 2026-04-03 12:43 - Last Modified: 2026-01-08 18:10 - 53.5K bytes - Click Count (0) -
android/guava/src/com/google/common/reflect/TypeToken.java
// if 'this' is wildcard, it's a suptype of to 'supertype' if any of its "extends" // bounds is a subtype of 'supertype'. if (runtimeType instanceof WildcardType) { // <? super Base> is of no use in checking 'from' being a subtype of 'to'. return any(((WildcardType) runtimeType).getUpperBounds()).isSubtypeOf(supertype); } // if 'this' is type variable, it's a subtype if any of its "extends"
Created: 2026-04-03 12:43 - Last Modified: 2026-01-29 22:14 - 53.8K bytes - Click Count (0) -
guava/src/com/google/common/collect/ImmutableSortedMap.java
// TODO(kevinb): evaluate whether or not of().comparator() should return null public static <K, V> ImmutableSortedMap<K, V> of() { return (ImmutableSortedMap<K, V>) NATURAL_EMPTY_MAP; } /** Returns an immutable map containing a single entry. */ public static <K extends Comparable<? super K>, V> ImmutableSortedMap<K, V> of(K k1, V v1) { return of(Ordering.natural(), k1, v1); }
Created: 2026-04-03 12:43 - Last Modified: 2026-01-08 18:10 - 52.1K bytes - Click Count (0) -
guava/src/com/google/common/collect/Sets.java
* <ul> * <li>{@code ImmutableList.of(1, "A")} * <li>{@code ImmutableList.of(1, "B")} * <li>{@code ImmutableList.of(1, "C")} * <li>{@code ImmutableList.of(2, "A")} * <li>{@code ImmutableList.of(2, "B")} * <li>{@code ImmutableList.of(2, "C")} * </ul> * * <p>The result is guaranteed to be in the "traditional", lexicographical order for Cartesian
Created: 2026-04-03 12:43 - Last Modified: 2026-02-23 19:19 - 83K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/ldap/LdapManager.java
if (!attrList.isEmpty()) { consumer.accept(attrList.get(0)); } } /** * Gets a list of attribute values from search results. * * @param result the list of search results * @param name the attribute name * @return a list of attribute values */ protected List<Object> getAttributeValueList(final List<SearchResult> result, final String name) { try {
Created: 2026-03-31 13:07 - Last Modified: 2026-01-02 08:06 - 85.2K bytes - Click Count (0) -
tensorflow/c/c_api.h
// Get the number of current consumers of a specific output of an // operation. Note that this number can change when new operations // are added to the graph. TF_CAPI_EXPORT extern int TF_OperationOutputNumConsumers(TF_Output oper_out); // Get list of all current consumers of a specific output of an // operation. `consumers` must point to an array of length at least // `max_consumers` (ideally set to
Created: 2026-04-07 12:39 - Last Modified: 2023-10-26 21:08 - 82.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/CollectionsUtil.java
* @return a new instance of {@link ArrayList} * @see ArrayList#ArrayList() */ public static <E> ArrayList<E> newArrayList() { return new ArrayList<>(); } /** * Creates and returns a new instance of {@link ArrayList}. * * @param <E> the element type of {@link ArrayList} * @param c the collection of elements to be placed in the listCreated: 2026-04-03 20:58 - Last Modified: 2025-07-31 08:16 - 49.9K bytes - Click Count (0) -
cmd/test-utils_test.go
// Copyright (c) 2015-2021 MinIO, Inc. // // This file is part of MinIO Object Storage stack // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // // This program is distributed in the hope that it will be useful
Created: 2026-04-05 19:28 - Last Modified: 2025-08-29 02:39 - 77K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/Futures.java
* successful input futures. The list of results is in the same order as the input list, and if * any of the provided futures fails or is canceled, its corresponding position will contain * {@code null} (which is indistinguishable from the future having a successful value of {@code * null}). * * <p>The list of results is in the same order as the input list. *Created: 2026-04-03 12:43 - Last Modified: 2026-03-17 19:26 - 64.2K bytes - Click Count (0) -
android/guava/src/com/google/common/base/Preconditions.java
* <p>It is of course possible to use the methods of this class to check for invalid conditions * which are <i>not the caller's fault</i>. Doing so is <b>not recommended</b> because it is * misleading to future readers of the code and of stack traces. See <a * href="https://github.com/google/guava/wiki/ConditionalFailuresExplained">Conditional failures * explained</a> in the Guava User Guide for more advice. Notably, {@link Verify} offers assertions
Created: 2026-04-03 12:43 - Last Modified: 2026-01-08 18:10 - 53.5K bytes - Click Count (0)