Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,918 for Nodes (0.11 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/build/PlannedNodeGraph.java

                }
    
                throw new IllegalStateException("Unknown detail level for node types: " + nodeTypes);
            }
        }
    
        /**
         * {@link #collectNodes(Collection) Collects} and converts nodes to planned nodes
         * resolving their dependencies with the highest available {@link DetailLevel detail level}.
         */
        public static class Collector {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 22 15:46:00 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/endpoint_builder_test.go

    					label.TopologySubzone.Name: loc.SubZone,
    				}},
    				Spec:   v1.NodeSpec{},
    				Status: v1.NodeStatus{},
    			})
    			nodes := kclient.New[*v1.Node](fc)
    			fc.RunAndWait(test.NewStop(t))
    			cc := &Controller{
    				nodes:       nodes,
    				meshWatcher: mesh.NewFixedWatcher(mesh.DefaultMeshConfig()),
    				networkManager: &networkManager{
    					clusterID: c.ctl.cluster,
    					network:   c.ctl.network,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

    import org.gradle.api.tasks.diagnostics.internal.graph.nodes.DefaultSection;
    import org.gradle.api.tasks.diagnostics.internal.graph.nodes.DependencyEdge;
    import org.gradle.api.tasks.diagnostics.internal.graph.nodes.DependencyReportHeader;
    import org.gradle.api.tasks.diagnostics.internal.graph.nodes.RenderableDependency;
    import org.gradle.api.tasks.diagnostics.internal.graph.nodes.RequestedVersion;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ir/copy.go

    func Copy(n Node) Node {
    	return n.copy()
    }
    
    // DeepCopy returns a “deep” copy of n, with its entire structure copied
    // (except for shared nodes like ONAME, ONONAME, OLITERAL, and OTYPE).
    // If pos.IsKnown(), it sets the source position of newly allocated Nodes to pos.
    func DeepCopy(pos src.XPos, n Node) Node {
    	var edit func(Node) Node
    	edit = func(x Node) Node {
    		switch x.Op() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:57:57 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. pkg/controller/ttl/ttl_controller.go

    	"k8s.io/kubernetes/pkg/controller"
    
    	"k8s.io/klog/v2"
    )
    
    // Controller sets ttl annotations on nodes, based on cluster size.
    type Controller struct {
    	kubeClient clientset.Interface
    
    	// nodeStore is a local cache of nodes.
    	nodeStore listers.NodeLister
    
    	// Nodes that need to be synced.
    	queue workqueue.TypedRateLimitingInterface[string]
    
    	// Returns true if all underlying informers are synced.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/cache/node_tree_test.go

    		},
    		{
    			name:       "mix of nodes with and without proper labels",
    			nodesToAdd: allNodes[:4],
    			expectedTree: map[string][]string{
    				"":                     {"node-0"},
    				"region-1:\x00:":       {"node-1"},
    				":\x00:zone-2":         {"node-2"},
    				"region-1:\x00:zone-2": {"node-3"},
    			},
    		},
    		{
    			name:       "mix of nodes with and without proper labels and some zones with multiple nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 05 08:00:25 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  7. releasenotes/notes/cni-no-sh.yaml

    releaseNotes:
      - |
        **Fixed** an issue causing Istio CNI to stop functioning on minimal/locked down nodes (such as no `sh` binary).
        The new logic runs with no external dependencies, and will attempt to continue if errors are encountered (which could be caused by things like SELinux rules).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 21:29:52 UTC 2024
    - 445 bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelPredicate.java

        }
    
        /**
         * Returns the parent path of the nodes to select, or null if parent is not relevant.
         *
         * <p>A node will be selected if its parent's path equals the specified path.
         */
        @Nullable
        public ModelPath getParent() {
            return null;
        }
    
        /**
         * Return the path of the scope of the nodes to select, or null if ancestor is not relevant.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. pkg/controller/podgc/gc_controller.go

    }
    
    // gcOrphaned deletes pods that are bound to nodes that don't exist.
    func (gcc *PodGCController) gcOrphaned(ctx context.Context, pods []*v1.Pod, nodes []*v1.Node) {
    	logger := klog.FromContext(ctx)
    	logger.V(4).Info("GC'ing orphaned")
    	existingNodeNames := sets.NewString()
    	for _, node := range nodes {
    		existingNodeNames.Insert(node.Name)
    	}
    	// Add newly found unknown nodes to quarantine
    	for _, pod := range pods {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. pkg/client/tests/listwatch_test.go

    			desc: "node without rv",
    			location: buildLocation(
    				"/api/v1/nodes",
    				buildQueryValues(url.Values{"watch": []string{"true"}})),
    			rv:            "",
    			resource:      "nodes",
    			namespace:     metav1.NamespaceAll,
    			fieldSelector: parseSelectorOrDie(""),
    		},
    		{
    			desc: "node with rv",
    			location: buildLocation(
    				"/api/v1/nodes",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 02 17:08:23 UTC 2022
    - 5.6K bytes
    - Viewed (0)
Back to top