Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for nlist (0.07 sec)

  1. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

    together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  2. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

    together with a continue token. If the client needs a consistent list, it must restart their list without the continue field. Otherwise, the client may send another list request with the token received with the 410 error, the server will respond with a list starting from the next key, but from the latest snapshot, which is inconsistent from the previous list results - objects that are created, modified, or deleted after the first list request will be included in the response, as long as their keys...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          if (name_and_value.first == "_input_shapes") {
            auto& list = name_and_value.second.list();
            auto& signature = func_def->signature();
            // Some models have "_input_shapes" attribute, but with its value empty
            if (list.shape_size() > 0 &&
                list.shape_size() != signature.input_arg_size()) {
              return errors::FailedPrecondition(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

    #include "llvm/ADT/ArrayRef.h"
    #include "llvm/ADT/STLExtras.h"
    #include "llvm/ADT/Sequence.h"
    #include "llvm/ADT/SmallSet.h"
    #include "llvm/ADT/SmallVector.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/ADT/ilist.h"
    #include "llvm/Support/Casting.h"
    #include "mlir/Dialect/Arith/IR/Arith.h"  // from @llvm-project
    #include "mlir/Dialect/Func/IR/FuncOps.h"  // from @llvm-project
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  7. 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