Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 785 for Nodes (0.04 sec)

  1. tensorflow/c/experimental/grappler/grappler.h

    typedef enum TF_TriState {
      TF_TriState_Default = 0,
      TF_TriState_Off,
      TF_TriState_On,
    } TF_TriState;
    
    // TF_GrapplerItem represents a combination of a graph, one of more fetch nodes,
    // and potentially a set of nodes to feed.
    typedef struct TF_GrapplerItem TF_GrapplerItem;
    
    // Flags indicating whether existing optimizers should be turned off.
    // It's optional for plugin to set functions to return true/false. If not
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Aug 03 18:08:43 UTC 2022
    - 12.5K 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. tensorflow/compiler/jit/encapsulate_util.cc

      // Gather all outside compilation to outside compilation nodes.
      std::vector<Node*> placeholder_nodes;
      for (Node* n : g->nodes()) {
        if (n->type_string() == "Placeholder" &&
            HasNodeAttr(n->def(), kOutsideCompilationOriginalNodeAttrName)) {
          placeholder_nodes.push_back(n);
        }
      }
    
      // Remove the placeholder nodes, and reconnect original edge.
      auto node_name_index = g->BuildNodeNameIndex();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/controller/volume/attachdetach/cache/actual_state_of_world.go

    	if !volumeExists || len(volumeObj.nodesAttachedTo) == 0 {
    		return []types.NodeName{}
    	}
    
    	nodes := []types.NodeName{}
    	for nodeName, nodesAttached := range volumeObj.nodesAttachedTo {
    		if nodesAttached.attachedConfirmed {
    			nodes = append(nodes, nodeName)
    		}
    	}
    	return nodes
    }
    
    func (asw *actualStateOfWorld) GetVolumesToReportAttached(logger klog.Logger) map[types.NodeName][]v1.AttachedVolume {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 11 07:35:17 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. plugin/pkg/auth/authorizer/rbac/bootstrappolicy/policy.go

    				rbacv1helpers.NewRule("get", "list", "watch").Groups(legacyGroup).Resources("nodes").RuleOrDie(),
    				// Allow all API calls to the nodes
    				rbacv1helpers.NewRule("proxy").Groups(legacyGroup).Resources("nodes").RuleOrDie(),
    				rbacv1helpers.NewRule("*").Groups(legacyGroup).Resources("nodes/proxy", "nodes/metrics", "nodes/stats", "nodes/log").RuleOrDie(),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 19:25:10 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top