Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 681 for nodeIPs (0.24 sec)

  1. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/testdata/cluster-roles.yaml

      rules:
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - get
        - list
        - watch
      - apiGroups:
        - ""
        resources:
        - nodes
        verbs:
        - proxy
      - apiGroups:
        - ""
        resources:
        - nodes/log
        - nodes/metrics
        - nodes/proxy
        - nodes/stats
        verbs:
        - '*'
    - apiVersion: rbac.authorization.k8s.io/v1
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 18 08:11:08 UTC 2023
    - 24.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/extract_outside_compilation_pass_test.cc

      // Verify step 1: add key placeholder node.
      Node *key_placeholder = node_name_image["cluster_key_placeholder"];
      EXPECT_NE(key_placeholder, nullptr);
      // Verify step 2: replace _Arg nodes with XlaRecvAtHost.
      for (Node *n : g->nodes()) {
        EXPECT_NE(n->type_string(), "_Arg");
      }
      Node *recv_at_host = node_name_image["outside_compilation_cluster__0_recv"];
      EXPECT_NE(recv_at_host, nullptr);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 41K bytes
    - Viewed (0)
  3. guava/src/com/google/common/graph/Network.java

    /**
     * An interface for <a
     * href="https://en.wikipedia.org/wiki/Graph_(discrete_mathematics)">graph</a>-structured data,
     * whose edges are unique objects.
     *
     * <p>A graph is composed of a set of nodes and a set of edges connecting pairs of nodes.
     *
     * <p>There are three primary interfaces provided to represent graphs. In order of increasing
     * complexity they are: {@link Graph}, {@link ValueGraph}, and {@link Network}. You should generally
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jan 22 17:29:38 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/noder/noder.go

    	noders := make([]*noder, len(filenames))
    	for i := range noders {
    		p := noder{
    			err: make(chan syntax.Error),
    		}
    		noders[i] = &p
    	}
    
    	// Move the entire syntax processing logic into a separate goroutine to avoid blocking on the "sem".
    	go func() {
    		for i, filename := range filenames {
    			filename := filename
    			p := noders[i]
    			sem <- struct{}{}
    			go func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. android/guava-tests/test/com/google/common/graph/AbstractStandardUndirectedNetworkTest.java

        }
      }
    
      @Override
      @Test
      public void nodes_checkReturnedSetMutability() {
        Set<Integer> nodes = network.nodes();
        UnsupportedOperationException e =
            assertThrows(UnsupportedOperationException.class, () -> nodes.add(N2));
        addNode(N1);
        assertThat(network.nodes()).containsExactlyElementsIn(nodes);
      }
    
      @Override
      @Test
      public void edges_checkReturnedSetMutability() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    	if err = sysctl(mib, nil, &olen, qp, sz); err != nil {
    		return nil, err
    	}
    
    	// Now that we know the size, get the actual nodes.
    	nodes = make([]Sysctlnode, olen/sz)
    	np := (*byte)(unsafe.Pointer(&nodes[0]))
    	if err = sysctl(mib, np, &olen, qp, sz); err != nil {
    		return nil, err
    	}
    
    	return nodes, nil
    }
    
    func nametomib(name string) (mib []_C_int, err error) {
    	// Split name into components.
    	var parts []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  10. 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)
Back to top