Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 566 for Size (0.07 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test_base.py

            Args:
              weight_shape: Shape of the weight tensor.
            """
            self.filters = np.random.uniform(low=-1.0, high=1.0, size=weight_shape)
    
            if bias_fn is not None:
              self.bias = np.random.uniform(
                  low=-1.0, high=1.0, size=weight_shape[-1]
              )
    
          def has_reshape(self) -> bool:
            return self.bias_fn() and self.bias_size != self.filters.shape[-1]
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelConfigurationIntegrationTest.groovy

            when:
            executer.withArguments(ENABLE_CLI)
            def model = runBuildAction(new FetchCustomModelForEachProjectInParallel())
    
            then:
            model.size() == 3
            model[0].message == "It works from project :"
            model[1].message == "It works from project :a"
            model[2].message == "It works from project :b"
    
            and:
            fixture.assertStateStored {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. cmd/object-multipart-handlers.go

    	hashReader, err := hash.NewReaderWithOpts(ctx, reader, hash.Options{
    		Size:       size,
    		MD5Hex:     md5hex,
    		SHA256Hex:  sha256hex,
    		ActualSize: actualSize,
    		DisableMD5: false,
    		ForceMD5:   forceMD5,
    	})
    	if err != nil {
    		writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    		return
    	}
    
    	if err := hashReader.AddChecksum(r, size < 0); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 38.8K bytes
    - Viewed (0)
  4. pkg/kubelet/images/image_gc_manager_test.go

    func makeImage(id int, size int64) container.Image {
    	return container.Image{
    		ID:   imageID(id),
    		Size: size,
    	}
    }
    
    // Make an image with the specified ID.
    func makeImageWithRuntimeHandler(id int, size int64, runtimeHandler string) container.Image {
    	if runtimeHandler == "" {
    		return container.Image{
    			ID:   imageID(id),
    			Size: size,
    		}
    	} else {
    		return container.Image{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 15:38:20 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  5. src/runtime/race_arm64.s

    // func runtime·racereadrange(addr, size uintptr)
    // Called from instrumented code.
    // Defined as ABIInternal so as to avoid introducing a wrapper,
    // which would make caller's PC ineffective.
    TEXT	runtime·racereadrange<ABIInternal>(SB), NOSPLIT, $0-16
    	MOVD	R1, R2	// size
    	MOVD	R0, R1	// addr
    	MOVD	LR, R3
    	// void __tsan_read_range(ThreadState *thr, void *addr, uintptr size, void *pc);
    	MOVD	$__tsan_read_range(SB), R9
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  6. cmd/erasure-metadata.go

    	for i, part := range fi.Parts {
    		partIndex = i
    		// Offset is smaller than size we have reached the proper part offset.
    		if partOffset < part.Size {
    			return partIndex, partOffset, nil
    		}
    		// Continue to towards the next part.
    		partOffset -= part.Size
    	}
    	internalLogIf(ctx, InvalidRange{})
    	// Offset beyond the size of the object return InvalidRange.
    	return 0, 0, InvalidRange{}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  7. src/runtime/mpallocbits.go

    		}
    		if size == 0 {
    			size = uint(sys.LeadingZeros64(x))
    			start = i*64 + 64 - size
    			continue
    		}
    		s := uint(sys.TrailingZeros64(x))
    		if s+size >= uint(npages) {
    			return start, newSearchIdx
    		}
    		if s < 64 {
    			size = uint(sys.LeadingZeros64(x))
    			start = i*64 + 64 - size
    			continue
    		}
    		size += 64
    	}
    	if size < uint(npages) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 15:13:43 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  8. android/guava-testlib/src/com/google/common/collect/testing/Helpers.java

       * size() as a hint only.
       *
       * @param delta the difference between the true size of the collection and the values returned by
       *     the size method
       */
      public static <T extends @Nullable Object> Collection<T> misleadingSizeCollection(int delta) {
        // It would be nice to be able to return a real concurrent
        // collection like ConcurrentLinkedQueue, so that e.g. concurrent
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  9. src/crypto/ed25519/ed25519.go

    	"io"
    	"strconv"
    )
    
    const (
    	// PublicKeySize is the size, in bytes, of public keys as used in this package.
    	PublicKeySize = 32
    	// PrivateKeySize is the size, in bytes, of private keys as used in this package.
    	PrivateKeySize = 64
    	// SignatureSize is the size, in bytes, of signatures generated and verified by this package.
    	SignatureSize = 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:11:18 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. src/runtime/race.go

    func racefuncenterfp(fp uintptr)
    func racefuncexit()
    func raceread(addr uintptr)
    func racewrite(addr uintptr)
    func racereadrange(addr, size uintptr)
    func racewriterange(addr, size uintptr)
    func racereadrangepc1(addr, size, pc uintptr)
    func racewriterangepc1(addr, size, pc uintptr)
    func racecallbackthunk(uintptr)
    
    // racecall allows calling an arbitrary function fn from C race runtime
    // with up to 4 uintptr arguments.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
Back to top