Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of about 10,000 for Returns (0.12 sec)

  1. tensorflow/cc/saved_model/metrics.h

    monitoring::GaugeCell<std::string>& SavedModelReadPathAndSingleprint();
    
    // Returns the fingerprint as a Json string.
    std::string MakeFingerprintJson(FingerprintDef fingerprint_def);
    
    // Returns canonical string concatenation of path and singleprint.
    absl::StatusOr<std::string> MakeSavedModelPathAndSingleprint(
        std::string path, std::string singleprint);
    
    // Returns path and singleprint as a pair, parsed canonically from the string
    // metric.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 23:43:59 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/MapDifference.java

      /**
       * Returns {@code true} if there are no differences between the two maps; that is, if the maps are
       * equal.
       */
      boolean areEqual();
    
      /**
       * Returns an unmodifiable map containing the entries from the left map whose keys are not present
       * in the right map.
       */
      Map<K, V> entriesOnlyOnLeft();
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Aug 04 13:28:27 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/initialization/dsl/ScriptHandler.java

        /**
         * Returns the file containing the source for the script, if any.
         *
         * @return The source file. Returns null if the script source is not a file.
         */
        @Nullable
        File getSourceFile();
    
        /**
         * Returns the URI for the script source, if any.
         *
         * @return The source URI. Returns null if the script source has no URI.
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 20:33:21 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/saved_model/core/tf_concrete_function_test_protos.h

    StructuredValue ThreeArgInputSignature();
    
    // Returns a StructuredValue corresponding to the serialized OutputSignature of
    // a tf.function with no return values
    StructuredValue ZeroReturnOutputSignature();
    
    // Returns a StructuredValue corresponding to the serialized OutputSignature of
    // a tf.function with a single tensor output
    StructuredValue SingleReturnOutputSignature();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Aug 30 21:44:45 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_saved_model.h

    SmallVector<StringRef, 2> GetExportedNames(Operation *op);
    
    // Returns true if `op` is exported.
    bool IsExported(Operation *op);
    
    // Returns true if `module` has tf_saved_model linkage semantics.
    bool HasTfSavedModelSemantics(ModuleOp module_op);
    
    // Returns the tf_saved_model.global_tensor op that func's arg_index'th argument
    // refers to as a bound input, or null.
    Operation *LookupBoundInput(func::FuncOp func, int arg_index,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 18 03:21:34 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/interface.go

    func (s *Status) WithError(err error) *Status {
    	s.err = err
    	return s
    }
    
    // Code returns code of the Status.
    func (s *Status) Code() Code {
    	if s == nil {
    		return Success
    	}
    	return s.code
    }
    
    // Message returns a concatenated message on reasons of the Status.
    func (s *Status) Message() string {
    	if s == nil {
    		return ""
    	}
    	return strings.Join(s.Reasons(), ", ")
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 31 15:52:16 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/compilersupport.go

    package types2
    
    // If t is a pointer, AsPointer returns that type, otherwise it returns nil.
    func AsPointer(t Type) *Pointer {
    	u, _ := t.Underlying().(*Pointer)
    	return u
    }
    
    // If t is a signature, AsSignature returns that type, otherwise it returns nil.
    func AsSignature(t Type) *Signature {
    	u, _ := t.Underlying().(*Signature)
    	return u
    }
    
    // If typ is a type parameter, CoreType returns the single underlying
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 09 22:58:35 UTC 2022
    - 1K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/util.go

    func ExprString(x syntax.Node) string { return syntax.String(x) }
    
    // startPos returns the start position of node n.
    func startPos(n syntax.Node) syntax.Pos { return syntax.StartPos(n) }
    
    // endPos returns the position of the first character immediately after node n.
    func endPos(n syntax.Node) syntax.Pos { return syntax.EndPos(n) }
    
    // makeFromLiteral returns the constant value for the given literal string and kind.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  9. src/path/filepath/path.go

    	// Therefore, if one of err and err1 isn't nil, walk will return.
    	if err != nil || err1 != nil {
    		// The caller's behavior is controlled by the return value, which is decided
    		// by walkFn. walkFn may ignore err and return nil.
    		// If walkFn returns SkipDir or SkipAll, it will be handled by the caller.
    		// So walk should return whatever walkFn returns.
    		return err1
    	}
    
    	for _, name := range names {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  10. build-logic/documentation/src/test/resources/org/gradle/test/JavaClassWithMethods.java

        }
    
        /**
         * A method that returns String.
         */
        String stringMethod(String stringParam) {
            return "value";
        }
    
        /**
         * A method that returns void.
         */
        void voidMethod() {
        }
    
        /**
         * A method that returns a reference type.
         */
        CombinedInterface refTypeMethod(JavaInterface refParam, boolean aFlag) {
            return null;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 717 bytes
    - Viewed (0)
Back to top