Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SetList (0.2 sec)

  1. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    }
    
    type storageWithCounter struct {
    	storage.Interface
    
    	listCounter int64
    }
    
    func (s *storageWithCounter) GetList(ctx context.Context, key string, opts storage.ListOptions, listObj runtime.Object) error {
    	atomic.AddInt64(&s.listCounter, 1)
    	return s.Interface.GetList(ctx, key, opts, listObj)
    }
    
    func TestStoreDeleteCollection(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      // index in the subgraph list.
      int subgraph_index = 0;
      for (const auto& signature_def_data : signature_defs) {
        auto inputs = GetList(subgraph_index, signature_def_data.inputs);
        auto outputs = GetList(subgraph_index, signature_def_data.outputs);
        auto inputs_buf = builder_.CreateVector(inputs);
        auto outputs_buf = builder_.CreateVector(outputs);
        auto signature_key_buf =
    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