Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 876 for Nodes (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. src/cmd/compile/internal/walk/convert.go

    func walkRuneToString(n *ir.ConvExpr, init *ir.Nodes) ir.Node {
    	a := typecheck.NodNil()
    	if n.Esc() == ir.EscNone {
    		a = stackBufAddr(4, types.Types[types.TUINT8])
    	}
    	// intstring(*[4]byte, rune)
    	return mkcall("intstring", n.Type(), init, a, typecheck.Conv(n.X, types.Types[types.TINT64]))
    }
    
    // walkStringToBytes walks an OSTR2BYTES node.
    func walkStringToBytes(n *ir.ConvExpr, init *ir.Nodes) ir.Node {
    	s := n.X
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 17:28:22 UTC 2023
    - 18.2K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top