Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for identical (0.17 sec)

  1. android/guava/src/com/google/common/base/CharMatcher.java

       */
      public static CharMatcher inRange(final char startInclusive, final char endInclusive) {
        return new InRange(startInclusive, endInclusive);
      }
    
      /**
       * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
       * which operates on primitive {@code char} instances instead.
       */
      public static CharMatcher forPredicate(final Predicate<? super Character> predicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  2. tensorflow/cc/gradients/math_grad.cc

                        std::vector<Output>* grad_outputs) {
      // The partial derivative for any input along a "reduced" dimension
      // is 1 when it is the min (or max) and 0 everywhere else. So the
      // gradient calculation is identical for both operators.
      //
      // There's a special case for propagating gradients when there are
      // multiple minima (or maxima) - we choose to divide the gradient
      // equally among all matching inputs.
      //
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener.go

    			}
    		}
    	}
    
    	return match
    }
    
    func mergeTCPFilterChains(current *outboundListenerEntry, incoming []*filterChainOpts, opts outboundListenerOpts) {
    	// TODO(rshriram) merge multiple identical filter chains with just a single destination CIDR based
    	// filter chain match, into a single filter chain and array of destinationcidr matches
    
    	// The code below checks for TCP over TCP conflicts and merges listeners
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    As a consequence archives created from the same content, are unlikely to end up identical byte-by-byte to their older versions, created with the old library.
    
    [[kotlin_1_8.0]]
    ==== Upgrade to Kotlin 1.8.10
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    	DI_FLAGSEX_NO_CLASSLIST_NODE_MERGE  DI_FLAGSEX = 0x08000000 // Don't remove identical driver nodes from the class list
    	DI_FLAGSEX_ALTPLATFORM_DRVSEARCH    DI_FLAGSEX = 0x10000000 // Build driver list based on alternate platform information specified in associated file queue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

         * roles and deprecations without modification. Or, better yet, we will remove support
         * for copying configurations altogether.
         *
         * This means the copy created is <strong>NOT</strong> a strictly identical copy of the original, as the role
         * will be not only a different instance, but also may return different deprecation values.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    // chainNameBaseLengthMax. The hash ensures that (a) the name is still unique if we have
    // to truncate the end, and (b) it's visually distinguishable from other chains that would
    // otherwise have nearly identical names (e.g., different endpoint chains for a given
    // service that differ in only a single digit).
    func hashAndTruncate(name string) string {
    	hash := sha256.Sum256([]byte(name))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/CharMatcher.java

       */
      public static CharMatcher inRange(final char startInclusive, final char endInclusive) {
        return new InRange(startInclusive, endInclusive);
      }
    
      /**
       * Returns a matcher with identical behavior to the given {@link Character}-based predicate, but
       * which operates on primitive {@code char} instances instead.
       */
      public static CharMatcher forPredicate(final Predicate<? super Character> predicate) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  9. okhttp/src/main/kotlin/okhttp3/HttpUrl.kt

     * because unequal URLs may be equal because of how they are hosted.
     *
     * ### Equal URLs should be equal
     *
     * These two URLs are semantically identical, but `java.net.URI` disagrees:
     *
     *  * http://host:80/
     *
     *  * http://host
     *
     * Both the unnecessary port specification (`:80`) and the absent trailing slash (`/`) cause URI to
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Tue Jan 09 12:33:05 UTC 2024
    - 63.5K bytes
    - Viewed (0)
  10. tensorflow/c/experimental/filesystem/filesystem_interface.h

                     TF_Status* status);
    
      /// Returns the current write position in `*file`.
      ///
      /// Plugins should ensure that the implementation is idempotent, 2 identical
      /// calls result in the same answer.
      ///
      /// Plugins:
      ///   * Must set `status` to `TF_OK` and return current position if no error.
      ///   * Must set `status` to any other value and return -1 in case of error.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
Back to top