Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 6,717 for noodle (0.2 sec)

  1. pkg/test/loadbalancersim/mesh/node.go

    	return &Node{
    		locality:        l,
    		helper:          network.NewConnectionHelper(name),
    		q:               timer.NewQueue(),
    		serviceTime:     serviceTime,
    		qLatencyEnabled: enableQueueLatency,
    	}
    }
    
    func (n *Node) Name() string {
    	return n.helper.Name()
    }
    
    func (n *Node) QueueLength() *timeseries.Instance {
    	return &n.qLength
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 03 18:19:25 UTC 2022
    - 3.7K bytes
    - Viewed (0)
  2. api/maven-api-core/src/main/java/org/apache/maven/api/Node.java

         */
        @Nullable
        Dependency getDependency();
    
        /**
         * Gets the child nodes of this node.
         *
         * @return the child nodes of this node, never {@code null}
         */
        @Nonnull
        List<Node> getChildren();
    
        /**
         * @return repositories of this node
         */
        @Nonnull
        List<RemoteRepository> getRemoteRepositories();
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. 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)
  4. src/text/template/parse/node.go

    // The periods are dropped from each ident.
    type ChainNode struct {
    	NodeType
    	Pos
    	tr    *Tree
    	Node  Node
    	Field []string // The identifiers in lexical order.
    }
    
    func (t *Tree) newChain(pos Pos, node Node) *ChainNode {
    	return &ChainNode{tr: t, NodeType: NodeChain, Pos: pos, Node: node}
    }
    
    // Add adds the named field (which should start with a period) to the end of the chain.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:57:51 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  5. 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)
  6. pkg/registry/registrytest/node.go

    func (r *NodeRegistry) CreateNode(ctx context.Context, node *api.Node) error {
    	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)
  7. releasenotes/notes/noble-base.yaml

    John Howard <******@****.***> 1715194251 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 18:50:51 UTC 2024
    - 194 bytes
    - Viewed (0)
  8. pkg/util/node/node.go

    // node in a single-stack cluster, or a dual-stack pair of IPs in a dual-stack cluster
    // (for nodes that actually have dual-stack IPs). Among other things, the IPs returned
    // from this function are used as the `.status.PodIPs` values for host-network pods on the
    // node, and the first IP is used as the `.status.HostIP` for all pods on the node.
    func GetNodeHostIPs(node *v1.Node) ([]net.IP, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 27 23:24:38 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  9. cluster/gce/windows/k8s-node-setup.psm1

    [INPUT]
        Name             tail
        Alias            node-problem-detector
        Tag              node-problem-detector
        Mem_Buf_Limit    5MB
        Skip_Long_Lines  On
        Refresh_Interval 5
        Path             C:\etc\kubernetes\logs\node-problem-detector\*.log.INFO*
        DB               /var/run/google-fluentbit/pos-files/node-problem-detector.db
        Multiline        On
        Parser_Firstline glog
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  10. guava-tests/test/com/google/common/base/EnumsTest.java

     */
    
    package com.google.common.base;
    
    import static com.google.common.base.StandardSystemProperty.JAVA_CLASS_PATH;
    import static com.google.common.base.StandardSystemProperty.PATH_SEPARATOR;
    import static com.google.common.truth.Truth.assertThat;
    import static org.junit.Assert.assertThrows;
    
    import com.google.common.annotations.GwtIncompatible;
    import com.google.common.annotations.J2ktIncompatible;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 8.7K bytes
    - Viewed (0)
Back to top