Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 247 for nodev1 (0.26 sec)

  1. plugin/pkg/admission/runtimeclass/admission.go

    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes"
    	nodev1client "k8s.io/client-go/kubernetes/typed/node/v1"
    	nodev1listers "k8s.io/client-go/listers/node/v1"
    	api "k8s.io/kubernetes/pkg/apis/core"
    	node "k8s.io/kubernetes/pkg/apis/node"
    	apinodev1 "k8s.io/kubernetes/pkg/apis/node/v1"
    	"k8s.io/kubernetes/pkg/util/tolerations"
    )
    
    // PluginName indicates name of admission plugin.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 05 05:53:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/roundtrip_test.go

    	networkingv1 "k8s.io/api/networking/v1"
    	networkingv1alpha1 "k8s.io/api/networking/v1alpha1"
    	networkingv1beta1 "k8s.io/api/networking/v1beta1"
    	nodev1 "k8s.io/api/node/v1"
    	nodev1alpha1 "k8s.io/api/node/v1alpha1"
    	nodev1beta1 "k8s.io/api/node/v1beta1"
    	policyv1 "k8s.io/api/policy/v1"
    	policyv1beta1 "k8s.io/api/policy/v1beta1"
    	rbacv1 "k8s.io/api/rbac/v1"
    	rbacv1alpha1 "k8s.io/api/rbac/v1alpha1"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  3. hack/.import-aliases

      "k8s.io/api/networking/v1": "networkingv1",
      "k8s.io/api/networking/v1beta1": "networkingv1beta1",
      "k8s.io/api/networking/v1alpha1": "networkingv1alpha1",
      "k8s.io/api/node/v1alpha1": "nodev1alpha1",
      "k8s.io/api/node/v1beta1": "nodev1beta1",
      "k8s.io/api/node/v1": "nodev1",
      "k8s.io/api/policy/v1": "policyv1",
      "k8s.io/api/policy/v1beta1": "policyv1beta1",
      "k8s.io/api/rbac/v1": "rbacv1",
      "k8s.io/api/rbac/v1alpha1": "rbacv1alpha1",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 17 05:27:21 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  4. pilot/pkg/controllers/untaint/nodeuntainter_test.go

    	t.Helper()
    	for _, node := range nodes {
    		node := generateNode(node, nil)
    		// add our special taint
    		node.Spec.Taints = append(node.Spec.Taints, corev1.Taint{
    			Key:    TaintName,
    			Value:  "true",
    			Effect: corev1.TaintEffectNoSchedule,
    		})
    		s.nc.Create(node)
    	}
    }
    
    func (s *nodeTainterTestServer) addCniPod(t *testing.T, node string, markReady bool) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 00:50:31 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/cluster_scoping_pass.cc

    // ensures Node_X and Node_Y are put into different clusters.  Without the
    // heuristic, they may be put into the same cluster and it can introduce
    // artificial dependencies and incur great performance loss.  In this example,
    // Node_Y becomes dependent on IteratorGetNext and the latencies add up if
    // Node_X and Node_Y are in the same cluster.
    //
    // IteratorGetNext -> Node_X -> Stage
    //
    // Unstage -> Node_Y
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  6. pkg/proxy/node.go

    			"node", klog.KObj(node), "newPodCIDRs", podCIDRs, "oldPODCIDRs", n.podCIDRs)
    		klog.FlushAndExit(klog.ExitFlushTimeout, 1)
    	}
    }
    
    // OnNodeDelete is a handler for Node deletes.
    func (n *NodePodCIDRHandler) OnNodeDelete(node *v1.Node) {
    	n.logger.Error(nil, "Current Node is being deleted", "node", klog.KObj(node))
    }
    
    // OnNodeSynced is a handler for Node syncs.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/endpointslice_test.go

    	node := generateNode("node1", map[string]string{
    		NodeZoneLabel:              "zone1",
    		NodeRegionLabel:            "region1",
    		label.TopologySubzone.Name: "subzone1",
    	})
    	addNodes(t, controller, node)
    
    	pod := generatePod("128.0.0.1", "pod1", ns, "svcaccount", "node1",
    		map[string]string{"app": appName}, map[string]string{})
    	pods := []*corev1.Pod{pod}
    	addPods(t, controller, fx, pods...)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 14 18:50:38 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/syntax/nodes.go

    // ----------------------------------------------------------------------------
    // Nodes
    
    type Node interface {
    	// Pos() returns the position associated with the node as follows:
    	// 1) The position of a node representing a terminal syntax production
    	//    (Name, BasicLit, etc.) is the position of the respective production
    	//    in the source.
    	// 2) The position of a node representing a non-terminal production
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 14:52:38 UTC 2023
    - 9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/graph/AbstractBaseGraph.java

        checkNotNull(nodeU);
        checkNotNull(nodeV);
        return nodes().contains(nodeU) && successors(nodeU).contains(nodeV);
      }
    
      @Override
      public boolean hasEdgeConnecting(EndpointPair<N> endpoints) {
        checkNotNull(endpoints);
        if (!isOrderingCompatible(endpoints)) {
          return false;
        }
        N nodeU = endpoints.nodeU();
        N nodeV = endpoints.nodeV();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. android/guava/src/com/google/common/graph/StandardMutableValueGraph.java

        }
    
        GraphConnections<N, V> connectionsU = nodeConnections.get(nodeU);
        if (connectionsU == null) {
          connectionsU = addNodeInternal(nodeU);
        }
        V previousValue = connectionsU.addSuccessor(nodeV, value);
        GraphConnections<N, V> connectionsV = nodeConnections.get(nodeV);
        if (connectionsV == null) {
          connectionsV = addNodeInternal(nodeV);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat Oct 21 01:50:30 UTC 2023
    - 6.4K bytes
    - Viewed (0)
Back to top