Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 469 for node2 (0.06 sec)

  1. src/go/printer/nodes.go

    	if px, strip := x.(*ast.ParenExpr); strip {
    		// parentheses must not be stripped if there are any
    		// unparenthesized composite literals starting with
    		// a type name
    		ast.Inspect(px.X, func(node ast.Node) bool {
    			switch x := node.(type) {
    			case *ast.ParenExpr:
    				// parentheses protect enclosed composite literals
    				return false
    			case *ast.CompositeLit:
    				if isTypeName(x.Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. pkg/test/loadbalancersim/mesh/node.go

    func (nodes Nodes) Latency() *timeseries.Instance {
    	var out timeseries.Instance
    	for _, n := range nodes {
    		out.AddAll(n.Latency())
    	}
    	return &out
    }
    
    func (nodes Nodes) QueueLatency() *timeseries.Instance {
    	var out timeseries.Instance
    	for _, n := range nodes {
    		out.AddAll(n.QueueLatency())
    	}
    	return &out
    }
    
    func (nodes Nodes) TotalRequests() uint64 {
    	var out uint64
    	for _, n := range nodes {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  3. 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)
  4. staging/src/k8s.io/client-go/applyconfigurations/core/v1/node.go

    }
    
    func extractNode(node *apicorev1.Node, fieldManager string, subresource string) (*NodeApplyConfiguration, error) {
    	b := &NodeApplyConfiguration{}
    	err := managedfields.ExtractInto(node, internal.Parser().Type("io.k8s.api.core.v1.Node"), fieldManager, b, subresource)
    	if err != nil {
    		return nil, err
    	}
    	b.WithName(node.Name)
    
    	b.WithKind("Node")
    	b.WithAPIVersion("v1")
    	return b, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 23 17:59:55 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  5. guava/src/com/google/common/graph/ForwardingValueGraph.java

      public Optional<V> edgeValue(N nodeU, N nodeV) {
        return delegate().edgeValue(nodeU, nodeV);
      }
    
      @Override
      public Optional<V> edgeValue(EndpointPair<N> endpoints) {
        return delegate().edgeValue(endpoints);
      }
    
      @Override
      @CheckForNull
      public V edgeValueOrDefault(N nodeU, N nodeV, @CheckForNull V defaultValue) {
        return delegate().edgeValueOrDefault(nodeU, nodeV, defaultValue);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.1K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_xla_computations_pass.h

      // the xla_launch_node's immediate downstream nodes would be attached to the
      // generated xla node. For example, if the original graph is
      // StatefulPartitionedCall{_xla_compile_id=1} -> XlaClusterOutput -> NodeA
      // The output graph of this function would look like the following when
      // add_edges_to_output_of_downstream_nodes is true:
      // XlaLaunch -> NodeA
      static Status BuildXlaLaunchOps(
          Graph* graph,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/ForwardingNetwork.java

        return delegate().degree(node);
      }
    
      @Override
      public int inDegree(N node) {
        return delegate().inDegree(node);
      }
    
      @Override
      public int outDegree(N node) {
        return delegate().outDegree(node);
      }
    
      @Override
      public Set<E> edgesConnecting(N nodeU, N nodeV) {
        return delegate().edgesConnecting(nodeU, nodeV);
      }
    
      @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  8. 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)
  9. cmd/kubeadm/app/cmd/upgrade/node.go

    	}
    
    	// Fetches the cluster configuration
    	// NB in case of control-plane node, we are reading all the info for the node; in case of NOT control-plane node
    	//    (worker node), we are not reading local API address and the CRI socket from the node object
    	initCfg, err := configutil.FetchInitConfigurationFromCluster(client, nil, "upgrade", !isControlPlaneNode, false)
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. pkg/registry/registrytest/node.go

    	r.Lock()
    	defer r.Unlock()
    	r.Node = node.Name
    	r.Nodes.Items = append(r.Nodes.Items, *node)
    	return r.Err
    }
    
    func (r *NodeRegistry) UpdateNode(ctx context.Context, node *api.Node) error {
    	r.Lock()
    	defer r.Unlock()
    	for i, item := range r.Nodes.Items {
    		if item.Name == node.Name {
    			r.Nodes.Items[i] = *node
    			return r.Err
    		}
    	}
    	return r.Err
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 23:13:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
Back to top