Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 876 for Nodes (0.13 sec)

  1. cluster/gce/gci/audit_policy_test.go

    	)
    
    	// Resources for test cases
    	var (
    		nodes           = resource("nodes")
    		nodeStatus      = resource("nodes", "", "", "status")
    		endpoints       = resource("endpoints", "default")
    		sysEndpoints    = resource("endpoints", "kube-system")
    		services        = resource("services", "default")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 30 06:23:50 UTC 2021
    - 9.8K bytes
    - Viewed (0)
  2. cmd/kubeadm/app/phases/upgrade/compute.go

    		return upgrades, err
    	}
    	if len(kubeAPIServerVersions) > 1 {
    		verMsg := []string{}
    		for version, nodes := range kubeAPIServerVersions {
    			verMsg = append(verMsg, fmt.Sprintf("%s on nodes %v", version, nodes))
    		}
    		klog.Warningf("Different API server versions in the cluster were discovered: %v. Please upgrade your control plane"+
    			" nodes to the same version of Kubernetes", strings.Join(verMsg, ", "))
    	}
    
    	// Get the lastest cluster version
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/compilability_check_util_test.cc

      TF_CHECK_OK(GraphDefBuilderToGraph(builder, graph.get()));
    
      auto while_node_it = std::find_if(
          graph->nodes().begin(), graph->nodes().end(),
          [&](const Node* n) { return n->name() == kFunctionalWhileNodeName; });
      EXPECT_NE(while_node_it, graph->nodes().end());
    
      auto* flib_runtime = GetFunctionLibraryRuntime();
    
      EXPECT_FALSE(checker_->IsCompilableNode(**while_node_it, flib_runtime));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jun 10 12:32:39 UTC 2022
    - 22.3K bytes
    - Viewed (0)
  4. pkg/test/loadbalancersim/lb_test.go

    	clientLatency := clientLatencies[0]
    
    	nodesSameZone := s.mesh.Nodes().Select(locality.MatchZone(clientLocality))
    	nodesSameRegion := s.mesh.Nodes().Select(locality.MatchOtherZoneInSameRegion(clientLocality))
    	nodesOtherRegion := s.mesh.Nodes().Select(locality.Not(locality.MatchRegion(clientLocality)))
    
    	// Store in the output.
    	qLatency := s.mesh.Nodes().QueueLatency().Data()
    	tm.qLatencyMin = qLatency.Min()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 19 23:29:30 UTC 2022
    - 11K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/tainttoleration/taint_toleration_test.go

    			snapshot := cache.NewSnapshot(nil, test.nodes)
    			fh, _ := runtime.NewFramework(ctx, nil, nil, runtime.WithSnapshotSharedLister(snapshot))
    
    			p, err := New(ctx, nil, fh, feature.Features{})
    			if err != nil {
    				t.Fatalf("creating plugin: %v", err)
    			}
    			status := p.(framework.PreScorePlugin).PreScore(ctx, state, test.pod, tf.BuildNodeInfos(test.nodes))
    			if !status.IsSuccess() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    	builder.start()
    	defer builder.finish()
    	builder.addLegend()
    
    	if len(g.Nodes) == 0 {
    		return
    	}
    
    	// Preprocess graph to get id map and find max flat.
    	nodeIDMap := make(map[*Node]int)
    	hasNodelets := make(map[*Node]bool)
    
    	maxFlat := float64(abs64(g.Nodes[0].FlatValue()))
    	for i, n := range g.Nodes {
    		nodeIDMap[n] = i + 1
    		if float64(abs64(n.FlatValue())) > maxFlat {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

        /**
         * The root node of the dependency graph.
         */
        private final Node root;
    
        /**
         * The ordered list of the flattened dependency nodes.
         */
        private final List<Node> nodes;
    
        /**
         * The file paths of all dependencies, regardless on which Java tool option those paths should be placed.
         */
        private final List<Path> paths;
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  8. pkg/scheduler/framework/plugins/nodeaffinity/node_affinity_test.go

    	}
    
    	tests := []struct {
    		name               string
    		pod                *v1.Pod
    		nodes              []*v1.Node
    		expectedList       framework.NodeScoreList
    		args               config.NodeAffinityArgs
    		runPreScore        bool
    		wantPreScoreStatus *framework.Status
    	}{
    		{
    			name: "all nodes are same priority as NodeAffinity is nil",
    			pod: &v1.Pod{
    				ObjectMeta: metav1.ObjectMeta{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 18 12:00:10 UTC 2023
    - 38.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.js

        selected.forEach(function(v, n) {
          if (!match(nodes[n])) {
            unselect(n);
          }
        })
    
        // add matching items that are not currently selected.
        if (nodes) {
          for (let n = 0; n < nodes.length; n++) {
            if (!selected.has(n) && match(nodes[n])) {
              select(n);
            }
          }
        }
    
        updateButtons();
      }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/node/graph_test.go

    			// Note: We assert on substructures (graph.Nodes(), graph.Edges()) because the graph tracks
    			// freed IDs for reuse, which results in an irrelevant inequality between start and expect.
    
    			// sort the nodes by ID
    			// (the slices we get back are from map iteration, where order is not guaranteed)
    			expectNodes := c.expect.graph.Nodes()
    			sort.Slice(expectNodes, func(i, j int) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:14:19 UTC 2022
    - 12.3K bytes
    - Viewed (0)
Back to top