Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 28 for target_name (0.21 sec)

  1. tensorflow/compiler/mlir/tensorflow/utils/cluster_util.cc

        all_clusters[target_name].push_back(nearest_cluster);
    
        // Create a new cluster to hold op alone and update nearest_clusters.
        SetVector<Operation*> new_cluster_op_set;
        new_cluster_op_set.insert(&op);
        nearest_clusters[target_name] = Cluster{new_cluster_op_set, target_name};
        op_to_cluster_map[&op] = &nearest_clusters[target_name];
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jul 28 00:32:55 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. cmd/metrics-v2.go

    						Name:      "target_total_events",
    						Help:      "Total number of events sent (or) queued to the target",
    						Type:      counterMetric,
    					},
    					VariableLabels: map[string]string{"target_id": id.ID, "target_name": id.Name},
    					Value:          float64(st.TotalEvents),
    				})
    				metrics = append(metrics, MetricV2{
    					Description: MetricDescription{
    						Namespace: minioNamespace,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/patches/patches.go

    }
    
    // patchSet defines a set of patches of a certain type that can patch a PatchTarget.
    type patchSet struct {
    	targetName string
    	patchType  types.PatchType
    	patches    []string
    }
    
    // String() is used for unit-testing.
    func (ps *patchSet) String() string {
    	return fmt.Sprintf(
    		"{%q, %q, %#v}",
    		ps.targetName,
    		ps.patchType,
    		ps.patches,
    	)
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/Type2Message.java

            int flags = getFlags();
            String targetName = getTarget();
            byte[] targetInformationBytes = getTargetInformation();
            byte[] targetBytes = new byte[0];
    
            if ( getFlag(NTLMSSP_REQUEST_TARGET) ) {
                if ( targetName != null && targetName.length() != 0 ) {
                    targetBytes = ( flags & NTLMSSP_NEGOTIATE_UNICODE ) != 0 ? targetName.getBytes(UNI_ENCODING)
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.4K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractFileSystemLocationSnapshot.java

                return Optional.empty();
            }
            String internedTargetPath = interner.intern(targetPath);
            String targetName = PathUtil.getFileName(internedTargetPath);
            String internedTargetName = targetName.equals(name)
                ? name
                : interner.intern(targetName);
            return relocateDirectAccess(internedTargetPath, internedTargetName, interner);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 13:19:32 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  6. platforms/native/language-native/src/main/java/org/gradle/swiftpm/internal/SwiftPmTarget.java

     */
    
    package org.gradle.swiftpm.internal;
    
    public class SwiftPmTarget {
        private final String targetName;
    
        public SwiftPmTarget(String targetName) {
            this.targetName = targetName;
        }
    
        public String getTargetName() {
            return targetName;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 884 bytes
    - Viewed (0)
  7. src/main/java/jcifs/ntlmssp/av/AvTargetName.java

        }
    
    
        /**
         * 
         * @param targetName
         */
        public AvTargetName ( String targetName ) {
            this(encode(targetName));
        }
    
    
        /**
         * 
         * @return the target name
         */
        public String getTargetName () {
            return new String(getRaw(), UTF16LE);
        }
    
    
        /**
         * @param targetName
         * @return
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 1.6K bytes
    - Viewed (0)
  8. tests/integration/ambient/wasm_test.go

    	kind, group, name := getTargetRefValues(targetType, targetName)
    
    	args := map[string]any{
    		"WasmPluginName":    pluginName,
    		"TestWasmModuleURL": wasmModuleURL,
    		"WasmPluginVersion": pluginVersion,
    		"TargetKind":        kind,
    		"TargetGroup":       group,
    		"TargetName":        name,
    	}
    
    	if len(imagePullPolicy) != 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 21:02:05 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/execution/BaseSelectionException.java

        private final String taskName;
        private final String targetName;
    
        public BaseSelectionException(String message, String taskName, String targetName) {
            super(message);
            this.taskName = taskName;
            this.targetName = targetName;
        }
    
        @Override
        public void appendResolutions(Context context) {
            context.appendResolution(output -> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/patches/patches_test.go

    		name             string
    		targetName       string
    		patchType        types.PatchType
    		expectedPatchSet *patchSet
    		data             string
    	}{
    		{
    
    			name:       "valid: YAML patches are separated and converted to JSON",
    			targetName: "etcd",
    			patchType:  types.StrategicMergePatchType,
    			data:       "foo: bar\n---\nfoo: baz\n",
    			expectedPatchSet: &patchSet{
    				targetName: "etcd",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 09 14:24:11 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top