Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 342 for overloads (0.18 sec)

  1. tensorflow/cc/experimental/libtf/impl/tensor_spec.h

    struct TensorSpec {
      tensorflow::PartialTensorShape shape;
      tensorflow::DataType dtype;
    
      bool operator==(const TensorSpec& o) const {
        return dtype == o.dtype && shape.IsIdenticalTo(o.shape);
      }
    
      /// Overload AbslHashValue to make TensorSpec hashable.
      template <typename H>
      friend H AbslHashValue(H h, const TensorSpec& t) {
        return H::combine(std::move(h), t.shape.DebugString(), t.dtype);
      }
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 09 21:11:15 UTC 2021
    - 1.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            lastArgs = [first, second, action]
            action.execute(subject)
        }
    
        void overloaded(Integer i, Action action) {
            lastMethod = "overloaded"
            lastArgs = [i, action]
            action.execute(subject)
        }
    
        void overloaded(String s, Action action) {
            lastMethod = "overloaded"
            lastArgs = [s, action]
            action.execute(subject)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  3. src/net/http/pattern.go

    	switch r1 {
    	case equivalent:
    		return r2
    	case disjoint:
    		return disjoint
    	case overlaps:
    		if r2 == disjoint {
    			return disjoint
    		}
    		return overlaps
    	case moreGeneral, moreSpecific:
    		switch r2 {
    		case equivalent:
    			return r1
    		case inverseRelationship(r1):
    			return overlaps
    		default:
    			return r2
    		}
    	default:
    		panic(fmt.Sprintf("unknown relationship %q", r1))
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 16:36:30 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  4. tensorflow/cc/experimental/libtf/impl/none.h

      /// Retrieves the `None` instance.
      ///
      /// @return Returns the `None` singleton.
      static None& GetInstance();
    
      /// Equality operator.
      bool operator==(const None& other) const { return true; }
    
      /// Overload AbslHashValue.
      template <typename H>
      friend H AbslHashValue(H h, const None& n) {
        return H::combine(std::move(h), 34559);
      }
    
     private:
      // Private contructor.
      None() {}
    };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 03 20:03:31 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  5. src/slices/slices.go

    	y := len(v) - (j - i) // length of y portion
    
    	if !overlaps(r[i:j], v) {
    		copy(r[i:j], v[y:])
    		copy(r[len(s):], v[:y])
    		rotateRight(r[i:], y)
    		return r
    	}
    	if !overlaps(r[len(s):], v) {
    		copy(r[len(s):], v[:y])
    		copy(r[i:j], v[y:])
    		rotateRight(r[i:], y)
    		return r
    	}
    
    	// Now we know that v overlaps both x and y.
    	// That means that the entirety of b is *inside* v.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 29 14:01:59 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  6. tensorflow/cc/saved_model/loader.h

    /// the set of tags used at SavedModel build time. Stores a SavedModel bundle in
    /// *bundle with a session and the requested MetaGraphDef, if found.
    ///
    /// NOTE: Prefer the overload that takes a SavedModelBundleLite* in new code.
    Status LoadSavedModel(const SessionOptions& session_options,
                          const RunOptions& run_options, const string& export_dir,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 05 18:28:37 UTC 2023
    - 6K bytes
    - Viewed (0)
  7. src/crypto/internal/nistec/p256_asm_ppc64le.s

    #define ADD2  V5 // Overloaded with T1
    #define ADD3H V7 // Overloaded with ADD1H
    #define ADD4H V8 // Overloaded with ADD2H
    #define ZER   V28 // Overloaded with TMP1
    #define CAR1  V6 // Overloaded with YDIG
    #define CAR2  V11 // Overloaded with RED1
    // Constant Selects
    #define SEL1  V13 // Overloaded with RED3
    #define SEL2  V9 // Overloaded with ADD3,SEL5
    #define SEL3  V10 // Overloaded with ADD4,SEL6
    #define SEL4  V6 // Overloaded with YDIG,CAR1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:29:44 UTC 2024
    - 56.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/translate/tf_mlir_translate.h

        const std::vector<std::string>& control_output_arrays,
        const GraphdefToMlirOptions& import_options, mlir::MLIRContext* context);
    
    ABSL_DEPRECATED(
        "Please use the other overload of this function which accepts structured "
        "inputs instead of strings")
    // Converts a TensorFlow GraphDef contained in `input` param into a MLIR module.
    // Creates MLIR entities into the given MLIR `context`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/util/concurrent/TestPlatform.java

      }
    
      static void clearInterrupt() {
        Thread.interrupted();
      }
    
      /**
       * Retrieves the result of a {@code Future} known to be done but uses the {@code get(long,
       * TimeUnit)} overload in order to test that method.
       */
      static <V> V getDoneFromTimeoutOverload(Future<V> future) throws ExecutionException {
        checkState(future.isDone(), "Future was expected to be done: %s", future);
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/io/Closer.java

       * in a {@code RuntimeException}. <b>Note:</b> Be sure to declare all of the checked exception
       * types your try block can throw when calling an overload of this method so as to avoid losing
       * the original exception type.
       *
       * <p>This method always throws, and as such should be called as {@code throw closer.rethrow(e);}
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 15:26:58 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top