Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 1,302 for SAME (0.02 sec)

  1. guava/src/com/google/common/collect/ImmutableRangeSet.java

    1. }
    2. return result;
    3. }
    4.  
    5. /**
    6. * Returns a new range set consisting of the union of this range set and {@code other}.
    7. *
    8. * <p>This is essentially the same as {@code TreeRangeSet.create(this).addAll(other)} except it
    9. * returns an {@code ImmutableRangeSet}.
    10. *
    11. * @since 21.0
    12. */
    13. public ImmutableRangeSet<C> union(RangeSet<C> other) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 27K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/math/QuantilesAlgorithmTest.java

    1. import java.util.Random;
    2. import java.util.Set;
    3. import junit.framework.TestCase;
    4.  
    5. /**
    6. * Tests that the different algorithms benchmarked in {@link QuantilesBenchmark} are actually all
    7. * returning more-or-less the same answers.
    8. */
    9. public class QuantilesAlgorithmTest extends TestCase {
    10.  
    11. private static final Random RNG = new Random(82674067L);
    12. private static final int DATASET_SIZE = 1000;
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Dec 04 17:37:03 UTC 2017
    - 3.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Dependency.java

    1. * @return {@code true} if the dependency is optional, or {@code false} if mandatory
    2. * @see DependencyCoordinates#getOptional()
    3. */
    4. boolean isOptional();
    5.  
    6. /**
    7. * {@return coordinates with the same identifiers as this dependency}
    8. */
    9. @Nonnull
    10. @Override
    11. DependencyCoordinates toCoordinates();
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Sat Sep 28 09:03:24 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/hash/BloomFilter.java

    1. * filters to be compatible, they must:
    2. *
    3. * <ul>
    4. * <li>not be the same instance
    5. * <li>have the same number of hash functions
    6. * <li>have the same bit size
    7. * <li>have the same strategy
    8. * <li>have equal funnels
    9. * </ul>
    10. *
    11. * @param that The Bloom filter to check for compatibility.
    12. * @since 15.0
    13. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 23 16:45:30 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/primitives/Doubles.java

    1. * Calling this method is as thread-safe as calling that method.
    2. *
    3. * @param collection a collection of {@code Number} instances
    4. * @return an array containing the same values as {@code collection}, in the same order, converted
    5. * to primitives
    6. * @throws NullPointerException if {@code collection} or any of its elements is null
    7. * @since 1.0 (parameter was {@code Collection<Double>} before 12.0)
    8. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 15:52:18 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/EmptyImmutableListMultimap.java

    1. private EmptyImmutableListMultimap() {
    2. super(ImmutableMap.<Object, ImmutableList<Object>>of(), 0);
    3. }
    4.  
    5. /*
    6. * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most
    7. * of common.collect a second time with the results of the first compilation on the classpath. Or
    8. * just back this out once we stop doing that (which we'll do after our internal GWT setup
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Aug 18 16:48:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/EmptyImmutableListMultimap.java

    1. private EmptyImmutableListMultimap() {
    2. super(ImmutableMap.<Object, ImmutableList<Object>>of(), 0);
    3. }
    4.  
    5. /*
    6. * TODO(b/242884182): Figure out why this helps produce the same class file when we compile most
    7. * of common.collect a second time with the results of the first compilation on the classpath. Or
    8. * just back this out once we stop doing that (which we'll do after our internal GWT setup
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Aug 18 16:48:17 UTC 2022
    - 1.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/util/concurrent/Striped.java

    1. * to lock different stripes and proceed concurrently, instead of creating contention for a single
    2. * lock.
    3. *
    4. * <p>The guarantee provided by this class is that equal keys lead to the same lock (or semaphore),
    5. * i.e. {@code if (key1.equals(key2))} then {@code striped.get(key1) == striped.get(key2)} (assuming
    6. * {@link Object#hashCode()} is correctly implemented for the keys). Note that if {@code key1} is
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Jun 26 12:58:35 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  9. tensorflow/c/eager/c_api_debug_test.cc

    1. TFE_TensorDebugInfo* debug_info = TFE_TensorHandleTensorDebugInfo(h, status);
    2. CHECK_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
    3.  
    4. ASSERT_EQ(2, TFE_TensorDebugInfoOnDeviceNumDims(debug_info));
    5. // Shape is the same for CPU tensors.
    6. EXPECT_EQ(3, TFE_TensorDebugInfoOnDeviceDim(debug_info, 0));
    7. EXPECT_EQ(2, TFE_TensorDebugInfoOnDeviceDim(debug_info, 1));
    8.  
    9. TFE_DeleteTensorDebugInfo(debug_info);
    10. TFE_DeleteTensorHandle(h);
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Mon Apr 06 22:10:09 UTC 2020
    - 2.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/NullPointerTester.java

    1. * "inherited" from superclasses of the same package.
    2. */
    3. public void testAllPublicStaticMethods(Class<?> c) {
    4. testStaticMethods(c, Visibility.PUBLIC);
    5. }
    6.  
    7. /**
    8. * Runs {@link #testMethod} on every instance method of the class of {@code instance} with at
    9. * least {@code minimalVisibility}, including those inherited from superclasses of the same
    10. * package.
    11. */
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 22.6K bytes
    - Viewed (0)
Back to top