Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for node_ (0.06 sec)

  1. tensorflow/compiler/mlir/tf2xla/internal/mlir_bridge_pass_util.cc

      const std::string attrKey = "T";
      for (const Node* node : graph.nodes()) {
        if (node->type_string() == nodeType) {
          auto device_name = node->assigned_device_name();
          DeviceNameUtils::ParsedName device;
          if (DeviceNameUtils::ParseFullName(device_name, &device) &&
              device.has_job && device.job == jobType) {
            for (const auto& attr : node->attrs()) {
              auto attr_key = attr.first;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 12:22:33 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. platforms/jvm/jvm-services/src/main/java/org/gradle/jvm/toolchain/internal/MavenToolchainsInstallationSupplier.java

                    NodeList nodes = (NodeList) expression.evaluate(documentBuilder.parse(toolchain), XPathConstants.NODESET);
                    Set<String> locations = new HashSet<>();
                    for (int i = 0; i < nodes.getLength(); i++) {
                        Node item = nodes.item(i);
                        if (item != null && item.getNodeType() == Node.TEXT_NODE) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 22:17:53 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  3. cluster/addons/metrics-server/metrics-server-deployment.yaml

              - --poll-period=30000
              - --estimator=exponential
              # Specifies the smallest cluster (defined in number of nodes)
              # resources will be scaled to.
              - --minClusterSize={{ metrics_server_min_cluster_size }}
              # Use kube-apiserver metrics to avoid periodically listing nodes.
              - --use-metrics=true
          volumes:
          - name: metrics-server-config-volume
            configMap:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 07:50:56 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/syntax/positions.go

    package syntax
    
    // StartPos returns the start position of n.
    func StartPos(n Node) Pos {
    	// Cases for nodes which don't need a correction are commented out.
    	for m := n; ; {
    		switch n := m.(type) {
    		case nil:
    			panic("nil node")
    
    		// packages
    		case *File:
    			// file block starts at the beginning of the file
    			return MakePos(n.Pos().Base(), 1, 1)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 17:49:19 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/ingress/status.go

    	for _, pod := range igPods {
    		// only Running pods are valid
    		if pod.Status.Phase != corev1.PodRunning {
    			continue
    		}
    
    		// Find node external IP
    		node := s.nodes.Get(pod.Spec.NodeName, "")
    		if node == nil {
    			continue
    		}
    
    		for _, address := range node.Status.Addresses {
    			if address.Type == corev1.NodeExternalIP {
    				if address.Address != "" && !addressInSlice(address.Address, addrs) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/device_util.h

    // - Let BuildXlaOpsPass successfully infer a compilation device for a cluster
    //   that contains nodes placed on both the CPU and on unknown devices.  In this
    //   case it is the responsibility of the optimization pass that injected the
    //   CPU nodes into the cluster to ensure that these nodes can be compiled by
    //   the unknown XLA backend.
    absl::StatusOr<jit::DeviceId> PickDeviceForXla(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. cluster/addons/kube-network-policies/kube-network-policies-rbac.yaml

    metadata:
      name: system:network-policies
      namespace: kube-system
      labels:
        addonmanager.kubernetes.io/mode: Reconcile
    rules:
      - apiGroups: [""]
        resources:
          - pods
          - nodes
          - namespaces
        verbs:
          - get
          - watch
          - list
      # Watch for changes to Kubernetes NetworkPolicies.
      - apiGroups: ["networking.k8s.io"]
        resources:
          - networkpolicies
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 10:01:31 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. manifests/charts/istio-control/istio-discovery/templates/clusterrole.yaml

      # discovery and routing
      - apiGroups: [""]
        resources: ["pods", "nodes", "services", "namespaces", "endpoints"]
        verbs: ["get", "list", "watch"]
      - apiGroups: ["discovery.k8s.io"]
        resources: ["endpointslices"]
        verbs: ["get", "list", "watch"]
    
    {{- if .Values.pilot.taint.enabled }}
      - apiGroups: [""]
        resources: ["nodes"]
        verbs: ["patch"]
    {{- end }}
    
      # ingress controller
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  9. pkg/scheduler/apis/config/testing/defaults/defaults.go

    		},
    	},
    	Score: config.PluginSet{
    		Enabled: []config.Plugin{
    			// Weight is tripled because:
    			// - This is a score coming from user preference.
    			// - Usage of node tainting to group nodes in the cluster is increasing becoming a use-case
    			// for many user workloads
    			{Name: names.TaintToleration, Weight: 3},
    			// Weight is doubled because:
    			// - This is a score coming from user preference.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 06:27:01 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/translate/upgrade_graph.cc

      if (library) {
        // Upgrade nodes in the functions.
        for (FunctionDef& fdef : *library->mutable_function()) {
          auto func_name = fdef.signature().name();
          for (auto& node_def : *fdef.mutable_node_def()) {
            const OpDef* op_def = nullptr;
            // With lazy loading, some functions might not be executed, thus we skip
            // the node if the op is not registered.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 14:33:47 UTC 2024
    - 6.2K bytes
    - Viewed (0)
Back to top