Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 143 for nlist (0.04 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. src/runtime/netpoll.go

    //
    // func netpoll(delta int64) (gList, int32)
    //     Poll the network. If delta < 0, block indefinitely. If delta == 0,
    //     poll without blocking. If delta > 0, block for up to delta nanoseconds.
    //     Return a list of goroutines built by calling netpollready,
    //     and a delta to add to netpollWaiters when all goroutines are ready.
    //     This will never return an empty list with a non-zero delta.
    //
    // func netpollBreak()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. tensorflow/c/kernels.cc

        SINGLE_CASE(kTensor, TF_ATTR_TENSOR, -1);
    #undef SINGLE_CASE
    
        case tensorflow::AttrValue::kList:
          *list_size = 0;
          *total_size = -1;
    #define LIST_CASE(field, attr_type, ...)      \
      if (attr->list().field##_size() > 0) {      \
        *list_size = attr->list().field##_size(); \
        __VA_ARGS__;                              \
        break;                                    \
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 22:53:47 UTC 2024
    - 36K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/tests/lower-static-tensor-list-enable-dynamic-update-slice.mlir

    // RUN: tf-opt "-tfl-lower-static-tensor-list=allow-tensorlist-pass-through default-to-single-batch enable-dynamic-update-slice" -split-input-file %s | FileCheck %s
    
    // -----
    
    // CHECK-LABEL: tensorlistSetItem
    func.func @tensorlistSetItem(%arg0: tensor<3x10xf32>, %arg1: tensor<1xi32>, %arg2: tensor<i32>, %arg3: tensor<10xf32>) -> tensor<3x10xf32> {
      %0 = "tf.TensorListFromTensor"(%arg0, %arg1) : (tensor<3x10xf32>, tensor<1xi32>) -> tensor<!tf_type.variant<tensor<10xf32>>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 28 14:24:59 UTC 2022
    - 2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/css/manual.css

    dl dd:last-child> :last-child {
    	margin-bottom: 0;
    }
    
    ol>li p,
    ul>li p,
    ul dd,
    ol dd,
    .olist .olist,
    .ulist .ulist,
    .ulist .olist,
    .olist .ulist {
    	margin-bottom: 0.625em;
    }
    
    ul.unstyled,
    ol.unnumbered,
    ul.checklist,
    ul.none {
    	list-style-type: none;
    }
    
    ul.unstyled,
    ol.unnumbered,
    ul.checklist {
    	margin-left: 0.625em;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  6. tensorflow/c/c_api.cc

      if (attr->value_case() != tensorflow::AttrValue::kList) {
        status->status =
            InvalidArgument("Value for '", attr_name, "' is not a list");
        return;
      }
      const auto len = std::min(max_values, attr->list().s_size());
      char* p = static_cast<char*>(storage);
      for (int i = 0; i < len; ++i) {
        const string& s = attr->list().s(i);
        values[i] = p;
        lengths[i] = s.size();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_cluster_util.cc

        if (attr_value.value_case() == AttrValue::kFunc) {
          result.push_back(attr_value.func());
        } else if (attr_value.value_case() == AttrValue::kList) {
          result.insert(result.end(), attr_value.list().func().begin(),
                        attr_value.list().func().end());
        }
      }
    
      return result;
    }
    
    enum class Direction { kForward, kBackward };
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. src/runtime/runtime2.go

    	success bool
    
    	// waiters is a count of semaRoot waiting list other than head of list,
    	// clamped to a uint16 to fit in unused space.
    	// Only meaningful at the head of the list.
    	// (If we wanted to be overly clever, we could store a high 16 bits
    	// in the second entry in the list.)
    	waiters uint16
    
    	parent   *sudog // semaRoot binary tree
    	waitlink *sudog // g.waiting list or semaRoot
    	waittail *sudog // semaRoot
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  9. pkg/kube/inject/webhook_test.go

    		"ReplicationController", "CronJob", "Pod":
    		return [][]byte{[]byte(yamlDoc)}
    	case "List":
    		// Split apart the list into separate yaml documents.
    		out := make([][]byte, 0)
    		list := metav1.List{}
    		if err := yaml.Unmarshal([]byte(yamlDoc), &list); err != nil {
    			t.Fatal(err)
    		}
    		for _, i := range list.Items {
    			iout, err := yaml.Marshal(i)
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 17 20:25:52 UTC 2023
    - 39K bytes
    - Viewed (1)
  10. src/cmd/link/internal/loader/symbolbuilder.go

    func (sb *SymbolBuilder) Align() int32           { return sb.l.SymAlign(sb.symIdx) }
    func (sb *SymbolBuilder) Localentry() uint8      { return sb.l.SymLocalentry(sb.symIdx) }
    func (sb *SymbolBuilder) OnList() bool           { return sb.l.AttrOnList(sb.symIdx) }
    func (sb *SymbolBuilder) External() bool         { return sb.l.AttrExternal(sb.symIdx) }
    func (sb *SymbolBuilder) Extname() string        { return sb.l.SymExtname(sb.symIdx) }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 15:25:19 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top