Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 706 for _nodes (0.12 sec)

  1. CHANGELOG/CHANGELOG-1.2.md

      * More expressive node affinity syntax, and support for “soft” node affinity.
    Node selectors (to constrain pods to schedule on a subset of nodes) now support
    the operators {<code>In, NotIn, Exists, DoesNotExist, Gt, Lt</code>}  instead of just conjunction of exact match on node label values. In
    addition, we’ve introduced a new “soft” kind of node selector that is just a
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/Node.java

        }
    
        /**
         * Visits the "post-execution" nodes of this node. These nodes should be treated as though they also produce the outputs or
         * results of this node. That is, all nodes that depend on this node should also depend on these nodes. This method is called when
         * this node has executed successfully and before any of its dependents are started, allowing some work of this node to be dynamically split
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Aug 24 13:30:48 UTC 2023
    - 22.7K bytes
    - Viewed (0)
  3. src/text/template/parse/node.go

    )
    
    // Nodes.
    
    // ListNode holds a sequence of nodes.
    type ListNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Nodes []Node // The element nodes in lexical order.
    }
    
    func (t *Tree) newList(pos Pos) *ListNode {
    	return &ListNode{tr: t, NodeType: NodeList, Pos: pos}
    }
    
    func (l *ListNode) append(n Node) {
    	l.Nodes = append(l.Nodes, n)
    }
    
    func (l *ListNode) tree() *Tree {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. docs/metrics/prometheus/grafana/node/minio-node.json

              "interval": "",
              "legendFormat": "[{{drive}}]",
              "refId": "B"
            }
          ],
          "title": "Free Inodes",
          "type": "timeseries"
        },
        {
          "datasource": {
            "type": "prometheus",
            "uid": "${DS_PROMETHEUS}"
          },
          "description": "",
          "fieldConfig": {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 13:24:37 UTC 2024
    - 22.4K bytes
    - Viewed (0)
  5. src/internal/profile/graph.go

    		}
    		nodes := make(Nodes, len(lines))
    		for ln := range lines {
    			nodes[ln] = nm.findOrInsertLine(l, lines[ln], o)
    		}
    		locations.add(l.ID, nodes)
    	}
    	return nm.nodes(), locations
    }
    
    func (nm NodeMap) nodes() Nodes {
    	nodes := make(Nodes, 0, len(nm))
    	for _, n := range nm {
    		nodes = append(nodes, n)
    	}
    	return nodes
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 20:59:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/fieldmanager/node.yaml

        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/graph/graph.go

    		}
    		locations[l.ID] = nodes
    	}
    	return nm.nodes(), locations
    }
    
    func (nm NodeMap) nodes() Nodes {
    	nodes := make(Nodes, 0, len(nm))
    	for _, n := range nm {
    		nodes = append(nodes, n)
    	}
    	return nodes
    }
    
    func (nm NodeMap) findOrInsertLine(l *profile.Location, li profile.Line, o *Options) *Node {
    	var objfile string
    	if m := l.Mapping; m != nil && m.File != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 31K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/util/managedfields/node.yaml

        topology.kubernetes.io/region: us-central1
        topology.kubernetes.io/zone: us-central1-b
        kubernetes.io/hostname: node-default-pool-something
      name: node-default-pool-something
      resourceVersion: "211582541"
      selfLink: /api/v1/nodes/node-default-pool-something
      uid: 0c24d0e1-a265-11e9-abe4-42010a80026b
    spec:
      podCIDR: 10.0.0.1/24
      providerID: some-provider-id-of-some-sort
    status:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 20:22:50 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/noder/noder.go

    	noders := make([]*noder, len(filenames))
    	for i := range noders {
    		p := noder{
    			err: make(chan syntax.Error),
    		}
    		noders[i] = &p
    	}
    
    	// Move the entire syntax processing logic into a separate goroutine to avoid blocking on the "sem".
    	go func() {
    		for i, filename := range filenames {
    			filename := filename
    			p := noders[i]
    			sem <- struct{}{}
    			go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  10. src/internal/types/errors/codes.go

    //go:generate go run golang.org/x/tools/cmd/stringer@latest -type Code codes.go
    
    type Code int
    
    // This file defines the error codes that can be produced during type-checking.
    // Collectively, these codes provide an identifier that may be used to
    // implement special handling for certain types of errors.
    //
    // Error code values should not be changed: add new codes at the end.
    //
    // Error codes should be fine-grained enough that the exact nature of the error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 22:50:48 UTC 2024
    - 33.7K bytes
    - Viewed (0)
Back to top