Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 390 for nodeIPs (0.12 sec)

  1. cluster/gce/windows/smoke-test.sh

          echo "kubectl get nodes -l kubernetes.io/os=windows"
          ${kubectl} get nodes -l kubernetes.io/os=windows
          exit 1
        fi
      done
      echo "Verified that all Windows nodes have status Ready"
    }
    
    function untaint_windows_nodes {
      # Untaint the windows nodes to allow test workloads without tolerations to be
      # scheduled onto them.
      WINDOWS_NODES=$(${kubectl} get nodes -l kubernetes.io/os=windows -o name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 24 07:02:51 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/ComponentState.java

            for (NodeState node : nodes) {
                if (node.isSelected()) {
                    consumer.accept(node);
                }
            }
        }
    
        @Override
        public List<ComponentState> getDependents() {
            List<ComponentState> incoming = Lists.newArrayListWithCapacity(nodes.size());
            for (NodeState node : nodes) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 02:21:08 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer_test.go

    			resources: []metav1.APIResource{
    				{
    					Name:       "nodes",
    					Namespaced: false,
    					Kind:       "Node",
    					ShortNames: []string{"no"},
    					Verbs:      []string{"create", "delete", "deletecollection", "get", "list", "patch", "update", "watch"},
    				},
    			},
    			wantAPIResourceDiscovery: []apidiscoveryv2.APIResourceDiscovery{
    				{
    					Resource: "nodes",
    					Scope:    apidiscoveryv2.ScopeCluster,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/walk/expr.go

    func walkExprList(s []ir.Node, init *ir.Nodes) {
    	for i := range s {
    		s[i] = walkExpr(s[i], init)
    	}
    }
    
    func walkExprListCheap(s []ir.Node, init *ir.Nodes) {
    	for i, n := range s {
    		s[i] = cheapExpr(n, init)
    		s[i] = walkExpr(s[i], init)
    	}
    }
    
    func walkExprListSafe(s []ir.Node, init *ir.Nodes) {
    	for i, n := range s {
    		s[i] = safeExpr(n, init)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/controller-roles.yaml

        resources:
        - persistentvolumeclaims
        - persistentvolumes
        verbs:
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes/status
        verbs:
        - patch
        - update
      - apiGroups:
        - ""
        resources:
        - pods
        verbs:
        - list
        - watch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 26.6K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/saved_model/core/tf_saved_model_api.cc

        int node_id,
        absl::flat_hash_map<std::string, ConcreteFunction*>* functions) {
      const auto& nodes = bundle_.saved_object_graph().nodes();
      if (node_id >= nodes.size()) {
        return errors::OutOfRange(
            "node_id ", node_id,
            " not found.  Maximum node ID: ", nodes.size() - 1);
      }
      const SavedObject* current_node = &nodes.Get(node_id);
      for (const auto& child : current_node->children()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Feb 27 09:34:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/walk/walk.go

    }
    
    func mkcall(name string, t *types.Type, init *ir.Nodes, args ...ir.Node) *ir.CallExpr {
    	return vmkcall(typecheck.LookupRuntime(name), t, init, args)
    }
    
    func mkcallstmt(name string, args ...ir.Node) ir.Node {
    	return mkcallstmt1(typecheck.LookupRuntime(name), args...)
    }
    
    func mkcall1(fn ir.Node, t *types.Type, init *ir.Nodes, args ...ir.Node) *ir.CallExpr {
    	return vmkcall(fn, t, init, args)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 20:56:00 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  8. samples/addons/prometheus.yaml

        app.kubernetes.io/managed-by: Helm
        app.kubernetes.io/part-of: prometheus
      name: prometheus
    rules:
      - apiGroups:
          - ""
        resources:
          - nodes
          - nodes/proxy
          - nodes/metrics
          - services
          - endpoints
          - pods
          - ingresses
          - configmaps
        verbs:
          - get
          - list
          - watch
      - apiGroups:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:57:35 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/increase_dynamism_for_auto_jit_pass_test.cc

      std::unordered_map<string, string> assigned_device_names;
      for (Node* n : s.graph()->nodes()) {
        assigned_device_names[n->name()] = n->assigned_device_name();
      }
      TF_RETURN_IF_ERROR(s.ToGraph(graph.get()));
      for (Node* n : graph->nodes()) {
        n->set_assigned_device_name(assigned_device_names[n->name()]);
      }
    
      IncreaseDynamismForAutoJitPass rewriter;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  10. 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)
Back to top