Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Returns (0.25 sec)

  1. pkg/ptr/pointer.go

    	if t != nil {
    		return *t
    	}
    	return def
    }
    
    // NonEmptyOrDefault returns t if its non-empty, or else def.
    func NonEmptyOrDefault[T comparable](t T, def T) T {
    	var empty T
    	if t != empty {
    		return t
    	}
    	return def
    }
    
    // Empty returns an empty T type
    func Empty[T any]() T {
    	var empty T
    	return empty
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 07 14:56:54 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. 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)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ResolvableDependencies.java

        /**
         * Returns the name of this set.
         *
         * @return The name. Never null.
         */
        String getName();
    
        /**
         * Returns the path of this set. This is a unique identifier for this set.
         *
         * @return The path. Never null.
         */
        String getPath();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jul 11 17:30:50 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  4. 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)
  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. 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)
  7. 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)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

        /**
         * Returns the system search paths for this binary.
         */
        List<File> getSystemHeaderSearchPaths();
    
        /**
         * Returns the user search paths for this binary. This includes the header directories for the binary itself, plus any dependencies of the binary.
         */
        List<File> getUserHeaderSearchPaths();
    
        /**
         * Returns the source files for this binary.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. pkg/test/framework/components/istio/ingress/interface.go

    	DiscoveryAddresses() []netip.AddrPort
    	// AddressesForPort returns the external address of the ingress gateway (or the NodePort address,
    	// when in an environment that doesn't support LoadBalancer) for the given port.
    	AddressesForPort(port int) ([]string, []int)
    
    	// PodID returns the name of the ingress gateway pod of index i. Returns error if failed to get the pod
    	// or the index is out of boundary.
    	PodID(i int) (string, error)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 17:13:34 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

    @Experimental
    public interface Project {
    
        /**
         * Returns the project groupId.
         */
        @Nonnull
        String getGroupId();
    
        /**
         * Returns the project artifactId.
         */
        @Nonnull
        String getArtifactId();
    
        /**
         * Returns the project version.
         */
        @Nonnull
        String getVersion();
    
        /**
         * Returns the project packaging.
         * <p>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 05 09:42:51 UTC 2024
    - 7.4K bytes
    - Viewed (0)
Back to top