Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of about 10,000 for Returns (0.46 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. 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)
  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/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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. pkg/scheduler/testing/framework/fake_plugins.go

    		return &FakeFilterPlugin{
    			FailedNodeReturnCodeMap: failedNodeReturnCodeMap,
    		}, nil
    	}
    }
    
    // MatchFilterPlugin is a filter plugin which return Success when the evaluated pod and node
    // have the same name; otherwise return Unschedulable.
    type MatchFilterPlugin struct{}
    
    // Name returns name of the plugin.
    func (pl *MatchFilterPlugin) Name() string {
    	return "MatchFilter"
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/lists.go

    // Returns the sum of the elements of the provided list. Supports CEL number (int, uint, double) and duration types.
    //
    //	<list<T>>.sum() <T>, T must be a numeric type or a duration
    //
    // Examples:
    //
    //	[1, 3].sum() // returns 4
    //	[1.0, 3.0].sum() // returns 4.0
    //	['1m', '1s'].sum() // returns '1m1s'
    //	emptyIntList.sum() // returns 0
    //	emptyDoubleList.sum() // returns 0.0
    //	[].sum() // returns 0
    //
    // min / max
    //
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 23 21:31:27 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top