Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ToNodes (0.15 sec)

  1. tensorflow/cc/ops/while_loop.cc

      }
      TF_RETURN_IF_ERROR(scope.status());
    
      if (create_while_ctx) {
        WhileContext* while_ctx;
        TF_RETURN_IF_ERROR(scope.graph()->AddWhileContext(
            frame_name, ToNodes(enter_outputs), ToNodes(*outputs),
            ToOutputTensor(cond_out), ToOutputTensors(switch_trues),
            ToOutputTensors(body_outputs), &while_ctx));
    
        // Set while_ctx for all exit nodes. We currently don't require knowing the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 01:01:21 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ir/func.go

    	return fn
    }
    
    func (f *Func) isStmt() {}
    
    func (n *Func) copy() Node                                  { panic(n.no("copy")) }
    func (n *Func) doChildren(do func(Node) bool) bool          { return doNodes(n.Body, do) }
    func (n *Func) editChildren(edit func(Node) Node)           { editNodes(n.Body, edit) }
    func (n *Func) editChildrenWithHidden(edit func(Node) Node) { editNodes(n.Body, edit) }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:05:44 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. plugin/pkg/admission/noderestriction/admission_test.go

    	unexpectedNode := corev1lister.NewNodeLister(unexpectedNodeIndex)
    
    	noNodesIndex := cache.NewIndexer(cache.MetaNamespaceKeyFunc, nil)
    	noNodes := corev1lister.NewNodeLister(noNodesIndex)
    
    	noExistingPodsIndex := cache.NewIndexer(cache.MetaNamespaceKeyFunc, nil)
    	noExistingPods := corev1lister.NewPodLister(noExistingPodsIndex)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 73.2K bytes
    - Viewed (0)
Back to top