Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for flist (4.79 sec)

  1. src/runtime/proc.go

    // popList takes all Gs in q and returns them as a gList.
    func (q *gQueue) popList() gList {
    	stack := gList{q.head}
    	*q = gQueue{}
    	return stack
    }
    
    // A gList is a list of Gs linked through g.schedlink. A G can only be
    // on one gQueue or gList at a time.
    type gList struct {
    	head guintptr
    }
    
    // empty reports whether l is empty.
    func (l *gList) empty() bool {
    	return l.head == 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            break;
          case tensorflow::AttrValue::kList:
            if (attr.list().s_size() > 0) {
              auto start = flex_builder->StartVector(key);
              for (const std::string& v : attr.list().s()) {
                flex_builder->Add(v);
              }
              flex_builder->EndVector(start, /*typed=*/true, /*fixed=*/false);
            } else if (attr.list().i_size() > 0) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
Back to top