Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 33 for respective (0.3 sec)

  1. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          const Iterator* typed_other =
              CheckedDowncastToActualType<const Iterator>(&other);
          // We must report iterators equal if they both point beyond their
          // respective ranges. That can happen in a variety of fashions,
          // so we have to consult AtEnd().
          return (AtEnd() && typed_other->AtEnd()) ||
             (
              current1_ == typed_other->current1_ &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 187.7K bytes
    - Viewed (0)
  2. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util-generated.h

          const Iterator* typed_other =
              CheckedDowncastToActualType<const Iterator>(&other);
          // We must report iterators equal if they both point beyond their
          // respective ranges. That can happen in a variety of fashions,
          // so we have to consult AtEnd().
          return (AtEnd() && typed_other->AtEnd()) ||
             (
              current1_ == typed_other->current1_ &&
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 187.7K bytes
    - Viewed (0)
  3. doc/go1.17_spec.html

    <p>
    The iteration values are assigned to the respective
    iteration variables as in an <a href="#Assignments">assignment statement</a>.
    </p>
    
    <p>
    The iteration variables may be declared by the "range" clause using a form of
    <a href="#Short_variable_declarations">short variable declaration</a>
    (<code>:=</code>).
    In this case their types are set to the types of the respective iteration values
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    	healDisks := make(map[string]struct{}, len(healing.HealDisks))
    	for _, disk := range healing.HealDisks {
    		healDisks[disk] = struct{}{}
    	}
    
    	// find all disks which belong to each respective endpoints
    	for i, disk := range storageInfo.Disks {
    		if _, ok := healDisks[disk.Endpoint]; ok {
    			storageInfo.Disks[i].Healing = true
    		}
    	}
    
    	// Marshal API response
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * run.
       *
       * <p>If successful, causes the objects captured by this step (if already started) and its input
       * step(s) for later closing to be closed on their respective {@link Executor}s. If any such calls
       * specified {@link MoreExecutors#directExecutor()}, those objects will be closed synchronously.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/util/concurrent/ClosingFuture.java

       * run.
       *
       * <p>If successful, causes the objects captured by this step (if already started) and its input
       * step(s) for later closing to be closed on their respective {@link Executor}s. If any such calls
       * specified {@link MoreExecutors#directExecutor()}, those objects will be closed synchronously.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    	// as normal symbols, and give them a little size.
    	//
    	// On AIX, as all DATA sections are merged together, ld might not put
    	// these symbols at the beginning of their respective section if there
    	// aren't real symbols, their alignment might not match the
    	// first symbol alignment. Therefore, there are explicitly put at the
    	// beginning of their section with the same alignment.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/cache/LocalCache.java

       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
       * strong entries store the key reference directly while soft and weak entries delegate to their
       * respective superclasses.
       */
    
      /** Used for strongly-referenced keys. */
      static class StrongEntry<K, V> extends AbstractReferenceEntry<K, V> {
        final K key;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  9. guava/src/com/google/common/cache/LocalCache.java

       * replace "Strong" with "Soft" or "Weak" within the pasted text. The primary difference is that
       * strong entries store the key reference directly while soft and weak entries delegate to their
       * respective superclasses.
       */
    
      /** Used for strongly-referenced keys. */
      static class StrongEntry<K, V> extends AbstractReferenceEntry<K, V> {
        final K key;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    }  // namespace
    
    // Returns true when the given type lists contain a single element of shaped
    // type with compatible shapes (unranked shape is compatible with any ranked
    // shape, ranked shapes are compatible if their respective dimensions are
    // compatible, dynamic dimensions are compatible with any size, static
    // dimensions must be equal to be compatible) and identical element types.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
Back to top