Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,141 for get2s (0.13 sec)

  1. cmd/kubeadm/app/phases/upgrade/versiongetter.go

    }
    
    // NewKubeVersionGetter returns a new instance of KubeVersionGetter
    func NewKubeVersionGetter(client clientset.Interface) VersionGetter {
    	return &KubeVersionGetter{
    		client: client,
    	}
    }
    
    // ClusterVersion gets API server version
    func (g *KubeVersionGetter) ClusterVersion() (string, *versionutil.Version, error) {
    	var (
    		clusterVersionInfo *pkgversion.Info
    		err                error
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/time/zoneinfo_read.go

    		//	42	off[4]
    		//	46	name[namelen]
    		//	46+namelen+xlen+fclen - next header
    		//
    		if get4(buf) != zcheader {
    			break
    		}
    		meth := get2(buf[10:])
    		size := get4(buf[24:])
    		namelen := get2(buf[28:])
    		xlen := get2(buf[30:])
    		fclen := get2(buf[32:])
    		off := get4(buf[42:])
    		zname := buf[46 : 46+namelen]
    		buf = buf[46+namelen+xlen+fclen:]
    		if string(zname) != name {
    			continue
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  3. maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java

            this.artifactId = artifactId;
            this.version = version;
        }
    
        /**
         * Gets the group id of the unresolvable model.
         *
         * @return The group id of the unresolvable model, can be empty but never {@code null}.
         */
        public String getGroupId() {
            return groupId;
        }
    
        /**
         * Gets the artifact id of the unresolvable model.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  4. 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)
  5. maven-compat/src/main/java/org/apache/maven/profiles/activation/OperatingSystemProfileActivator.java

            Activation activation = profile.getActivation();
            return activation != null && activation.getOs() != null;
        }
    
        public boolean isActive(Profile profile) {
            Activation activation = profile.getActivation();
            ActivationOS os = activation.getOs();
    
            boolean result = ensureAtLeastOneNonNull(os);
    
            if (result && os.getFamily() != null) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Sep 22 06:01:36 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top