Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getHits (0.14 sec)

  1. cmd/object-handlers.go

    			return true
    		}
    		return checkCopyObjectPreconditions(ctx, w, r, o)
    	}
    	getOpts.CheckPrecondFn = checkCopyPrecondFn
    	if cpSrcDstSame {
    		getOpts.NoLock = true
    	}
    
    	var rs *HTTPRangeSpec
    	gr, err := getObjectNInfo(ctx, srcBucket, srcObject, rs, r.Header, getOpts)
    	if err != nil {
    		if isErrPreconditionFailed(err) {
    			return
    		}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.api.artifacts.repositories.FlatDirectoryArtifactRepository.getDirs()> does not have raw return type assignable to org.gradle.api.provider.Property in (FlatDirectoryArtifactRepository.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        ShapedTypeComponents inferred = std::get<1>(result);
        TensorType inferred_type;
        if (inferred.hasRank()) {
          inferred_type =
              RankedTensorType::get(inferred.getDims(), inferred.getElementType());
    
        } else {
          inferred_type = UnrankedTensorType::get(inferred.getElementType());
        }
        inferred_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
Back to top