Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 150 for Sizes (0.13 sec)

  1. tensorflow/compiler/aot/BUILD

        visibility = ["//visibility:public"],
        deps = [
            # The purpose of the benchmark library is to support building an aot
            # binary with minimal dependencies, to demonstrate small binary sizes.
            #
            # KEEP THE DEPENDENCIES MINIMAL.
            "//tensorflow/core:framework_lite",
        ],
    )
    
    cc_library(
        name = "benchmark_extra_android",
        tags = [
            "manual",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 11 16:13:05 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. docs/metrics/prometheus/list.md

    | `minio_bucket_objects_size_distribution`    | Distribution of object sizes in the bucket, includes label for the bucket name. |
    | `minio_bucket_objects_version_distribution` | Distribution of object sizes in a bucket, by number of versions                 |
    
    ## Replication Metrics
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 43.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/github.com/google/pprof/internal/graph/dotgraph.go

    		}
    		cumValue = b.config.FormatValue(cum)
    		label = label + fmt.Sprintf(`of %s (%s)`,
    			cumValue,
    			strings.TrimSpace(measurement.Percentage(cum, b.config.Total)))
    	}
    
    	// Scale font sizes from 8 to 24 based on percentage of flat frequency.
    	// Use non linear growth to emphasize the size difference.
    	baseFontSize, maxFontGrowth := 8, 16.0
    	fontSize := baseFontSize
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 09 20:51:42 UTC 2022
    - 14.8K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/elfexec/elfexec.go

    				// segment other than the last one includes uninitialized data, or
    				// if the debug binary used for symbolization is stripped of some
    				// sections, so segment file sizes are smaller than memory sizes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. src/encoding/base64/base64_test.go

    	}
    }
    
    func BenchmarkDecodeString(b *testing.B) {
    	sizes := []int{2, 4, 8, 64, 8192}
    	benchFunc := func(b *testing.B, benchSize int) {
    		data := StdEncoding.EncodeToString(make([]byte, benchSize))
    		b.SetBytes(int64(len(data)))
    		b.ResetTimer()
    		for i := 0; i < b.N; i++ {
    			StdEncoding.DecodeString(data)
    		}
    	}
    	for _, size := range sizes {
    		b.Run(fmt.Sprintf("%d", size), func(b *testing.B) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Sep 03 18:57:29 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/internal/http/CancelTest.kt

          platform.assumeHttp2Support()
        }
    
        // Sockets on some platforms can have large buffers that mean writes do not block when
        // required. These socket factories explicitly set the buffer sizes on sockets created.
        server = MockWebServer()
        server.serverSocketFactory =
          object : DelegatingServerSocketFactory(ServerSocketFactory.getDefault()) {
            @Throws(IOException::class)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  7. src/crypto/tls/conn_test.go

    	go func() {
    		// This goroutine performs a TLS handshake over clientConn and
    		// then reads TLS records until EOF. It writes a slice that
    		// contains all the record sizes to recordSizesChan.
    		defer close(recordSizesChan)
    		defer clientConn.Close()
    
    		tlsConn := Client(clientConn, config)
    		if err := tlsConn.Handshake(); err != nil {
    			t.Errorf("Error from client handshake: %v", err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 21:35:01 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  8. test/codegen/slices.go

    	// ppc64x:-`.*runtime\.makeslice`
    	// ppc64x:-`.*runtime\.panicmakeslicelen`
    	return append(s, make([]int, uint(1<<2))...)
    }
    
    // On ppc64x continue to use memclrNoHeapPointers
    // for sizes >= 512.
    func SliceExtensionConst512(s []int) []int {
    	// amd64:-`.*runtime\.memclrNoHeapPointers`
    	// ppc64x:`.*runtime\.memclrNoHeapPointers`
    	return append(s, make([]int, 1<<9)...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 23 18:57:27 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. guava-testlib/src/com/google/common/collect/testing/SpliteratorTester.java

                    trySplit.estimateSize(), originalSize));
          }
        }
        if (subsized) {
          if (trySplit != null) {
            assertEquals(
                "sum of estimated sizes of trySplit and original spliterator after trySplit",
                originalSize,
                trySplit.estimateSize() + spliterator.estimateSize());
          } else {
            assertEquals(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 22 18:19:31 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. pkg/controller/deployment/sync_test.go

    			if err := dc.scale(ctx, test.deployment, test.newRS, test.oldRSs); err != nil {
    				t.Errorf("%s: unexpected error: %v", test.name, err)
    				return
    			}
    
    			// Construct the nameToSize map that will hold all the sizes we got our of tests
    			// Skip updating the map if the replica set wasn't updated since there will be
    			// no update action for it.
    			nameToSize := make(map[string]int32)
    			if test.newRS != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 21.1K bytes
    - Viewed (0)
Back to top