Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 204 for Equivalent (0.22 sec)

  1. android/guava/src/com/google/common/primitives/ImmutableDoubleArray.java

        return array[start + index];
      }
    
      /**
       * Returns the smallest index for which {@link #get} returns {@code target}, or {@code -1} if no
       * such index exists. Values are compared as if by {@link Double#equals}. Equivalent to {@code
       * asList().indexOf(target)}.
       */
      public int indexOf(double target) {
        for (int i = start; i < end; i++) {
          if (areEqual(array[i], target)) {
            return i - start;
          }
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri May 12 16:34:24 GMT 2023
    - 19.6K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/net/InternetDomainName.java

     * be reflected in the result of {@link #equals(Object)}.
     *
     * <p><a href="http://en.wikipedia.org/wiki/Internationalized_domain_name">Internationalized domain
     * names</a> such as {@code 网络.cn} are supported, as are the equivalent <a
     * href="http://en.wikipedia.org/wiki/Internationalized_domain_name">IDNA Punycode-encoded</a>
     * versions.
     *
     * @author Catherine Berry
     * @since 5.0
     */
    @GwtCompatible(emulated = true)
    @Immutable
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Feb 05 20:47:23 GMT 2024
    - 28K bytes
    - Viewed (0)
  3. guava/src/com/google/common/collect/ImmutableBiMap.java

        Entry<K, V>[] entries2 = (Entry<K, V>[]) entries;
        return RegularImmutableBiMap.fromEntries(entries2);
      }
    
      /**
       * Returns a new builder. The generated builder is equivalent to the builder created by the {@link
       * Builder} constructor.
       */
      public static <K, V> Builder<K, V> builder() {
        return new Builder<>();
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Oct 31 16:03:42 GMT 2023
    - 22.6K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableTable.java

        for (Cell<? extends R, ? extends C, ? extends V> cell : cells) {
          builder.put(cell);
        }
        return builder.build();
      }
    
      /**
       * Returns a new builder. The generated builder is equivalent to the builder created by the {@link
       * Builder#Builder() ImmutableTable.Builder()} constructor.
       */
      public static <R, C, V> Builder<R, C, V> builder() {
        return new Builder<>();
      }
    
      /**
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 17.3K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/math/IntMath.java

      @VisibleForTesting static final int MAX_SIGNED_POWER_OF_TWO = 1 << (Integer.SIZE - 2);
    
      /**
       * Returns the smallest power of two greater than or equal to {@code x}. This is equivalent to
       * {@code checkedPow(2, log2(x, CEILING))}.
       *
       * @throws IllegalArgumentException if {@code x <= 0}
       * @throws ArithmeticException of the next-higher power of two is not representable as an {@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Feb 07 17:50:39 GMT 2024
    - 23.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/NtlmPasswordAuthenticator.java

         */
        public String getPassword () {
            return this.password;
        }
    
    
        /**
         * Return the domain and username in the format:
         * <tt>domain\\username</tt>. This is equivalent to <tt>toString()</tt>.
         */
        @Override
        public String getName () {
            boolean d = this.domain != null && this.domain.length() > 0;
            return d ? this.domain + "\\" + this.username : this.username;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Tue Jul 07 12:07:20 GMT 2020
    - 18.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/ComparisonChain.java

       * Compares two {@code boolean} values, considering {@code true} to be less than {@code false},
       * <i>if</i> the result of this comparison chain has not already been determined.
       *
       * <p>Java 8+ users: you can get the equivalent from {@link Booleans#trueFirst()}. For example:
       *
       * <pre>
       * Comparator.comparing(Foo::isBar, {@link Booleans#trueFirst()})
       * </pre>
       *
       * @since 12.0
       */
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Wed Sep 21 17:28:11 GMT 2022
    - 11.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/util/concurrent/CycleDetectingLockFactory.java

     *
     * <p><strong>ReadWriteLocks</strong>
     *
     * <p>While {@code ReadWriteLock} instances have different properties and can form cycles without
     * potential deadlock, this class treats {@code ReadWriteLock} instances as equivalent to
     * traditional exclusive locks. Although this increases the false positives that the locks detect
     * (i.e. cycles that will not actually result in deadlock), it simplifies the algorithm and
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 35.9K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // +optional
      optional string failurePolicy = 4;
    
      // matchPolicy defines how the "rules" list is used to match incoming requests.
      // Allowed values are "Exact" or "Equivalent".
      //
      // - Exact: match a request only if it exactly matches a specified rule.
      // For example, if deployments can be modified via apps/v1, apps/v1beta1, and extensions/v1beta1,
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 22.6K bytes
    - Viewed (0)
  10. src/builtin/builtin.go

    // any pointer.
    type uintptr uintptr
    
    // byte is an alias for uint8 and is equivalent to uint8 in all ways. It is
    // used, by convention, to distinguish byte values from 8-bit unsigned
    // integer values.
    type byte = uint8
    
    // rune is an alias for int32 and is equivalent to int32 in all ways. It is
    // used, by convention, to distinguish character values from integer values.
    type rune = int32
    
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 12.7K bytes
    - Viewed (0)
Back to top