Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 536 for dAtA (0.04 sec)

  1. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

        return new AbstractList<T>() {
          ArrayList<T> data = new ArrayList<>();
    
          @Override
          public int size() {
            return Math.max(0, data.size() + delta);
          }
    
          @Override
          public T get(int index) {
            return data.get(index);
          }
    
          @Override
          public T set(int index, T element) {
            return data.set(index, element);
          }
    
          @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/xla_device_context.cc

        done(absl::OkStatus());
        return;
      }
    
      VLOG(2) << "CopyCPUTensorToDevice " << this << " "
              << reinterpret_cast<const void*>(cpu_tensor->tensor_data().data())
              << " "
              << reinterpret_cast<const void*>(device_tensor->tensor_data().data())
              << " " << cpu_tensor->NumElements() << " "
              << cpu_tensor->shape().DebugString() << " "
              << device_tensor->shape().DebugString();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 00:36:08 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  3. src/cmd/internal/goobj/objfile.go

    }
    
    // Data returns the i-th symbol's data.
    func (r *Reader) Data(i uint32) []byte {
    	dataIdxOff := r.h.Offsets[BlkDataIdx] + i*4
    	base := r.h.Offsets[BlkData]
    	off := r.uint32At(dataIdxOff)
    	end := r.uint32At(dataIdxOff + 4)
    	return r.BytesAt(base+off, int(end-off))
    }
    
    // DataString returns the i-th symbol's data as a string.
    func (r *Reader) DataString(i uint32) string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_plugin.go

    	dir := unmounter.GetPath()
    	dataDir := filepath.Dir(dir) // dropoff /mount at end
    	data, err := loadVolumeData(dataDir, volDataFileName)
    	if err != nil {
    		return nil, errors.New(log("unmounter failed to load volume data file [%s]: %v", dir, err))
    	}
    	unmounter.driverName = csiDriverName(data[volDataKey.driverName])
    	unmounter.volumeID = data[volDataKey.volHandle]
    	unmounter.csiClientGetter.driverName = unmounter.driverName
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/flatbuffer_operator.cc

        } else {
          std::vector<int64_t> data(op->input_spatial_dimensions.size(), 1);
          std::vector<int64_t> shape;
          shape.push_back(static_cast<int64_t>(data.size()));
          attributes.emplace_back(builder.getNamedAttr(
              "window_strides", BuildVhloTensorV1Attr(shape, data, builder)));
        }
        if (!(op->padding.empty())) {
          std::vector<int64_t> shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 38K bytes
    - Viewed (0)
  6. tests/associations_has_many_test.go

    	}
    	AssertAssociationCount(t, user2, "Pets", 1, "after delete non-existing data")
    
    	if err := DB.Model(&user2).Association("Pets").Delete(&pet2); err != nil {
    		t.Fatalf("Error happened when delete Pets, got %v", err)
    	}
    	AssertAssociationCount(t, user2, "Pets", 0, "after delete")
    
    	// Prepare Data for Clear
    	if err := DB.Model(&user2).Association("Pets").Append(&pet); err != nil {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. platforms/ide/problems-api/src/integTest/groovy/org/gradle/api/problems/ProblemsServiceIntegrationTest.groovy

            when:
            run('reportProblem')
    
            then:
            verifyAll(receivedProblem) {
                definition.id.fqid == 'problems-api:unsupported-additional-data'
                definition.id.displayName == 'Unsupported additional data type'
                with(oneLocation(LineInFileLocation)) {
                    length == -1
                    column == -1
                    line == 11
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. cmd/encryption-v1.go

    	data := o.Checksum
    	if len(data) == 0 {
    		return
    	}
    	if _, encrypted := crypto.IsEncrypted(o.UserDefined); encrypted {
    		decrypted, err := o.metadataDecrypter(h)("object-checksum", data)
    		if err != nil {
    			encLogIf(GlobalContext, err)
    			return
    		}
    		data = decrypted
    	}
    	cs := hash.ReadPartCheckSums(data)
    	if len(cs) == len(o.Parts) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  9. security/pkg/k8s/chiron/utils_test.go

    		"cert not exist": {
    			certPath:   "./invalid-path/invalid-file",
    			shouldFail: true,
    		},
    		"cert valid": {
    			certPath:     "./test-data/example-ca-cert.pem",
    			shouldFail:   false,
    			expectedCert: []byte(exampleCACert),
    		},
    		"cert invalid": {
    			certPath:   "./test-data/example-invalid-ca-cert.pem",
    			shouldFail: true,
    		},
    	}
    
    	for _, tc := range testCases {
    		t.Run(tc.certPath, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/telemetry/internal/counter/counter.go

    // New can be called in global initializers and will be compiled down to
    // linker-initialized data. That is, calling New to initialize a global
    // has no cost at program startup.
    func New(name string) *Counter {
    	// Note: not calling defaultFile.New in order to keep this
    	// function something the compiler can inline and convert
    	// into static data initializations, with no init-time footprint.
    	return &Counter{name: name, file: &defaultFile}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 10.3K bytes
    - Viewed (0)
Back to top