Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,123 for gems (0.03 sec)

  1. tensorflow/cc/tools/freeze_saved_model.cc

    #include "tensorflow/core/lib/strings/str_util.h"
    #include "tensorflow/core/platform/statusor.h"
    #include "tensorflow/core/protobuf/meta_graph.pb.h"
    
    namespace tensorflow {
    
    namespace {
    
    // Gets tensor names from tensor_info and inserts them into the set of tensor
    // names.
    void GetTensorNamesFromTensorInfo(const TensorInfo& tensor_info,
                                      std::unordered_set<string>* tensor_names) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 11 08:05:36 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelNode.java

        /**
         * The number of link this node has.
         */
        int getLinkCount();
    
        /**
         * Gets the value represented by this node.
         *
         * Calling this method may create or transition the node.
         */
        Optional<String> getValueDescription();
    
        /**
         * Gets the underlying type of this node.
         * <p>
         * Calling this method may create or transition the node.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/convert-tf-control-flow-to-scf.mlir

    // RUN: tf-opt -convert-tf-control-flow-to-scf %s | FileCheck %s
    
    // `tf.IfRegion` which returns values gets converted to `scf.if`.
    func.func private @test_if_then1(tensor<4xf32>) -> tensor<4xf32>
    func.func private @test_if_else1(tensor<4xf32>) -> tensor<4xf32>
    // CHECK-LABEL: func @test_supported_lowering_of_tf_if_region1
    // CHECK-SAME: (%[[ARG0:.*]]: tensor<i1>, %[[ARG1:.*]]: tensor<4xf32>)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. tensorflow/cc/saved_model/fingerprinting_utils.h

            field_tags,
        Message* merged_message);
    
    // Gets the field tags for `graph_def`.::tensorflow
    inline RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>
    GraphDefFieldTags();
    
    // Gets the field tags for `signature_def`.
    inline RepeatedPtrField<::tensorflow::proto_splitter::FieldIndex>
    SignatureDefFieldTags();
    
    // Gets the field tags for `saved_object_graph`.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 20 22:19:55 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. maven-model-builder/src/main/java/org/apache/maven/model/building/ModelCacheTag.java

     *
     * @param <T> The type of data associated with the tag.
     */
    interface ModelCacheTag<T> {
    
        /**
         * Gets the name of the tag.
         *
         * @return The name of the tag, must not be {@code null}.
         */
        String getName();
    
        /**
         * Gets the type of data associated with this tag.
         *
         * @return The type of data, must not be {@code null}.
         */
        Class<T> getType();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Jan 13 13:02:40 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/LenientConfiguration.java

        @Deprecated
        Set<File> getFiles(Spec<? super Dependency> dependencySpec);
    
        /**
         * Gets successfully resolved artifacts. Ignores dependencies or files that cannot be resolved.
         *
         * @return successfully resolved artifacts
         * @since 3.3
         */
        Set<ResolvedArtifact> getArtifacts();
    
        /**
         * Gets successfully resolved artifacts. Ignores dependencies or files that cannot be resolved.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. test/fixedbugs/issue16095.go

    		y[i] = 99
    	}
    	// Make sure y is heap allocated.
    	sink = y
    
    	panic(nil)
    
    	// After the recover we reach the deferreturn, which
    	// copies the heap version of x back to the stack.
    	// It gets the pointer to x from a stack slot that was
    	// not marked as live during the call to runtime.GC().
    }
    
    var sinkint int
    
    func g(p *int) (x [20]byte) {
    	// Initialize x.
    	for i := range x {
    		x[i] = byte(i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 27 16:48:48 UTC 2016
    - 1.9K bytes
    - Viewed (0)
  8. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoLimit.java

        void setValue(String value);
    
        /**
         * Gets the minimum expected value for limit. Default to null.
         */
        @Nullable
        @Optional
        @Input
        BigDecimal getMinimum();
    
        /**
         * Sets the minimum expected value for limit.
         *
         * @param minimum Minimum
         */
        void setMinimum(@Nullable BigDecimal minimum);
    
        /**
         * Gets the maximum expected value for limit. Default to null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/util/cgroups_linux.go

    	libcontainerutils "github.com/opencontainers/runc/libcontainer/utils"
    )
    
    const (
    	// CgroupRoot is the base path where cgroups are mounted
    	CgroupRoot = "/sys/fs/cgroup"
    )
    
    // GetPids gets pids of the desired cgroup
    // Forked from opencontainers/runc/libcontainer/cgroup/fs.Manager.GetPids()
    func GetPids(cgroupPath string) ([]int, error) {
    	dir := ""
    
    	if libcontainercgroups.IsCgroup2UnifiedMode() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 07:50:19 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/SettingsBuilderResult.java

    /**
     *
     * @since 4.0.0
     */
    @Experimental
    public interface SettingsBuilderResult {
    
        /**
         * Gets the assembled settings.
         *
         * @return the assembled settings, never {@code null}
         */
        @Nonnull
        Settings getEffectiveSettings();
    
        /**
         * Gets the problems that were encountered during the settings building. Note that only problems of severity
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:54:53 UTC 2024
    - 1.7K bytes
    - Viewed (0)
Back to top