Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for NODE_NAME (0.12 sec)

  1. tensorflow/compiler/aot/compile.cc

      TF_RETURN_IF_ERROR(ValidateConfig(config));
      if (flags.dump_fetch_nodes) {
        std::set<string> nodes;
        for (const tf2xla::Fetch& fetch : config.fetch()) {
          nodes.insert(fetch.id().node_name());
        }
        std::cout << absl::StrJoin(nodes, ",");
        return absl::OkStatus();
      }
    
      // Read and initialize the graph.
      if (flags.graph.empty()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  2. manifests/charts/gateways/istio-ingress/templates/deployment.yaml

              {{- else }}
                value: istiod{{- if not (eq .Values.revision "") }}-{{ .Values.revision }}{{- end }}.{{ .Values.global.istioNamespace }}.svc:15012
              {{- end }}
              - name: NODE_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: spec.nodeName
              - name: POD_NAME
                valueFrom:
                  fieldRef:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 18:16:49 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  3. tensorflow/cc/framework/ops.h

      Input(const std::string& name, int32_t i, DataType dt)
          : node_name_(name), index_(i), data_type_(dt) {}
    
      Node* node() const { return output_.node(); }
      std::string node_name() const { return node_name_; }
      int32 index() const { return node_name_.empty() ? output_.index() : index_; }
      DataType data_type() const { return data_type_; }
      Status status() const { return status_; }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 05:57:22 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.py

          raise ValueError(
              'UnitWiseQuantizationSpec must contain at least one unit.'
          )
    
        for unit in unitwise_spec.unit:
          if not unit.op_type and not unit.node_name:
            raise ValueError('Either `op_type` or `node_name` must be specified.')
    
        _populate_quantization_component_spec(unitwise_spec.quantization_method)
    
        component_specs = (
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. cni/pkg/plugin/plugin_test.go

        "cni_event_address": "%s",
        "ambient_enabled": %t,
        "kubernetes": {
            "k8s_api_root": "APIRoot",
            "kubeconfig": "testK8sConfig",
    		"intercept_type": "%s",
            "node_name": "testNodeName",
            "exclude_namespaces": ["testExcludeNS"],
            "cni_bin_dir": "/testDirectory"
        }
    }`
    
    type mockInterceptRuleMgr struct {
    	lastRedirect []*Redirect
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. cluster/addons/fluentd-gcp/fluentd-gcp-configmap.yaml

        <filter **>
          @type record_transformer
          enable_ruby true
          <record>
            "logging.googleapis.com/local_resource_id" ${"k8s_node.#{ENV['NODE_NAME']}"}
          </record>
        </filter>
    
        # This section is exclusive for 'k8s_node' logs. These logs come with tags
        # that are neither 'stderr' or 'stdout'.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 26 07:09:07 UTC 2018
    - 18.3K bytes
    - Viewed (0)
  7. pkg/model/proxy.go

    	Namespace string `json:"NAMESPACE,omitempty"`
    
    	// NodeName is the name of the kubernetes node on which the workload instance is running.
    	NodeName string `json:"NODE_NAME,omitempty"`
    
    	// WorkloadName specifies the name of the workload represented by this node.
    	WorkloadName string `json:"WORKLOAD_NAME,omitempty"`
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 17:18:17 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  8. pkg/kubelet/metrics/metrics.go

    const (
    	FirstNetworkPodStartSLIDurationKey = "first_network_pod_start_sli_duration_seconds"
    	KubeletSubsystem                   = "kubelet"
    	NodeNameKey                        = "node_name"
    	NodeLabelKey                       = "node"
    	NodeStartupPreKubeletKey           = "node_startup_pre_kubelet_duration_seconds"
    	NodeStartupPreRegistrationKey      = "node_startup_pre_registration_duration_seconds"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 15:13:25 UTC 2024
    - 45.6K bytes
    - Viewed (0)
Back to top