Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 755 for nodeIPs (0.14 sec)

  1. pkg/proxy/iptables/proxier_test.go

    }
    
    // newIPTablesTracer creates an iptablesTracer. nodeIPs are the IPs to treat as local
    // node IPs (for determining whether rules with "--src-type LOCAL" or "--dst-type LOCAL"
    // match).
    func newIPTablesTracer(t *testing.T, ipt *iptablestest.FakeIPTables, nodeIPs []string) *iptablesTracer {
    	localIPs := sets.New("127.0.0.1", "::1")
    	localIPs.Insert(nodeIPs...)
    
    	return &iptablesTracer{
    		ipt:      ipt,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet_pods.go

    func (kl *Kubelet) sortPodIPs(podIPs []string) []string {
    	ips := make([]string, 0, 2)
    	var validPrimaryIP, validSecondaryIP func(ip string) bool
    	if len(kl.nodeIPs) == 0 || utilnet.IsIPv4(kl.nodeIPs[0]) {
    		validPrimaryIP = utilnet.IsIPv4String
    		validSecondaryIP = utilnet.IsIPv6String
    	} else {
    		validPrimaryIP = utilnet.IsIPv6String
    		validSecondaryIP = utilnet.IsIPv4String
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  3. CHANGELOG/CHANGELOG-1.29.md

    ## Changelog since v1.29.5
    
    ## Changes by Kind
    
    ### API Change
    
    - Improved scheduling performance when many nodes, and prefilter returns 1-2 nodes (e.g. daemonset)
      
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  4. plugin/pkg/auth/authorizer/node/node_authorizer_test.go

    	nodes := make([]*corev1.Node, 0, opts.nodes)
    	pods := make([]*corev1.Pod, 0, opts.nodes*opts.podsPerNode)
    	pvs := make([]*corev1.PersistentVolume, 0, (opts.nodes*opts.podsPerNode*opts.uniquePVCsPerPod)+(opts.sharedPVCsPerPod*opts.namespaces))
    	attachments := make([]*storagev1.VolumeAttachment, 0, opts.nodes*opts.attachmentsPerNode)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 40.5K bytes
    - Viewed (0)
  5. pkg/scheduler/testing/framework/fake_extender.go

    func ErrorPrioritizerExtender(pod *v1.Pod, nodes []*framework.NodeInfo) (*framework.NodeScoreList, error) {
    	return &framework.NodeScoreList{}, fmt.Errorf("some error")
    }
    
    // Node1PrioritizerExtender implements PriorityFunc function to give score 10
    // if the given node's name is "node1"; otherwise score 1.
    func Node1PrioritizerExtender(pod *v1.Pod, nodes []*framework.NodeInfo) (*framework.NodeScoreList, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 19:07:19 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_util.h

    // Attribute indicating that some ops in this node's XLA computation has control
    // dependency on this node. Attribute value will always be "true".
    extern const char kXlaConnectedToXlaComputationAttrName[];
    
    // Attribute indicating that this node has control dependency on some ops in
    // this node's XLA computation. Attribute value will always be "true".
    extern const char kXlaConnectedFromXlaComputationAttrName[];
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	if !volumeExists || len(volumeObj.nodesAttachedTo) == 0 {
    		return []types.NodeName{}
    	}
    
    	nodes := []types.NodeName{}
    	for nodeName, nodesAttached := range volumeObj.nodesAttachedTo {
    		if nodesAttached.attachedConfirmed {
    			nodes = append(nodes, nodeName)
    		}
    	}
    	return nodes
    }
    
    func (asw *actualStateOfWorld) GetVolumesToReportAttached(logger klog.Logger) map[types.NodeName][]v1.AttachedVolume {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/TreeTraverser.java

      public abstract Iterable<T> children(T root);
    
      /**
       * Returns an unmodifiable iterable over the nodes in a tree structure, using pre-order traversal.
       * That is, each node's subtrees are traversed after the node itself is returned.
       *
       * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration
       * is in progress or when the iterators generated by {@link #children} are advanced.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/TreeTraverser.java

      public abstract Iterable<T> children(T root);
    
      /**
       * Returns an unmodifiable iterable over the nodes in a tree structure, using pre-order traversal.
       * That is, each node's subtrees are traversed after the node itself is returned.
       *
       * <p>No guarantees are made about the behavior of the traversal when nodes change while iteration
       * is in progress or when the iterators generated by {@link #children} are advanced.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  10. pkg/registry/core/node/strategy.go

    )
    
    // nodeStrategy implements behavior for nodes
    type nodeStrategy struct {
    	runtime.ObjectTyper
    	names.NameGenerator
    }
    
    // Nodes is the default logic that applies when creating and updating Node
    // objects.
    var Strategy = nodeStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
    
    // NamespaceScoped is false for nodes.
    func (nodeStrategy) NamespaceScoped() bool {
    	return false
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 13 23:06:39 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top