Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 110 for Sizes (0.04 sec)

  1. pilot/pkg/xds/monitoring.go

    	configSizeBytes = monitoring.NewDistribution(
    		"pilot_xds_config_size_bytes",
    		"Distribution of configuration sizes pushed to clients",
    		// Important boundaries: 10K, 1M, 4M, 10M, 40M
    		// 4M default limit for gRPC, 10M config will start to strain system,
    		// 40M is likely upper-bound on config sizes supported.
    		[]float64{1, 10000, 1000000, 4000000, 10000000, 40000000},
    		monitoring.WithUnit(monitoring.Bytes),
    	)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. src/hash/maphash/maphash_test.go

    		b.SetBytes(int64(size))
    		seed := h.Seed()
    		for i := 0; i < b.N; i++ {
    			String(seed, s)
    		}
    	})
    }
    
    func BenchmarkHash(b *testing.B) {
    	sizes := []int{4, 8, 16, 32, 64, 256, 320, 1024, 4096, 16384}
    	for _, size := range sizes {
    		b.Run(fmt.Sprint("n=", size), func(b *testing.B) {
    			benchmarkSize(b, size)
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/go/parser/testdata/typeset.go2

            _[_ ~t|struct{}] t
            _[_ t|~struct{}] t
            _[_ ~t|~struct{}] t
    )
    
    // Single-expression type parameter lists and those that don't start
    // with a (type parameter) name are considered array sizes.
    // The term must be a valid expression (it could be a type incl. a
    // tilde term) but the type-checker will complain.
    type (
            _[t] t
            _[t|t] t
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/utils/string_utils.h

      // Max length in number of characters that we permit the total
      // buffer containing the concatenation of all added strings to be.
      // For historical reasons this is limited to 32bit length. At this files
      // inception, sizes were represented using 32bit which forced an implicit cap
      // on the size of the buffer. When this was refactored to use size_t (which
      // could be 64bit) we enforce that the buffer remains at most 32bit length to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/runtime/memclr_amd64.s

    	MOVOU	X15, 240(DI)
    	SUBQ	$256, BX
    	ADDQ	$256, DI
    	CMPQ	BX, $256
    	JAE	loop
    	JMP	tail
    #endif
    
    loop_preheader_avx2:
    	VPXOR X0, X0, X0
    	// For smaller sizes MOVNTDQ may be faster or slower depending on hardware.
    	// For larger sizes it is always faster, even on dual Xeons with 30M cache.
    	// TODO take into account actual LLC size. E. g. glibc uses LLC size/2.
    	CMPQ    BX, $0x2000000
    	JAE	loop_preheader_avx2_huge
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 10 20:52:34 UTC 2022
    - 4.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow_to_stablehlo/tf_to_stablehlo.h

    //    Ignored for MLIR input.
    //  input_arg_shapes_str:  A string representation of input argument shapes for
    //    'main' entry-point, separating tensors with ':', dimension with ',', and
    //    using '?' for unknown sizes. For example, 'input-arg-shapes=1,2::1,?'
    //    expresses argument shapes [1,2], [] and [1,?].
    //  is_input_mlir_module: If true, `input_path` is treated as an MLIR
    //    module instead of a SavedModel.
    //
    // Returns:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 22:58:42 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/text/StyledTableTest.groovy

                | foo       | bar         |
                | very long | short       |
                | tiny      | even longer |
            """.stripIndent(true).trim()
        }
    
        def "fails when header and row sizes differ"() {
            given:
            def header = ["a"]
            def rows = [
                new StyledTable.Row(["b"], StyledTextOutput.Style.Normal),
                new StyledTable.Row(["c"], StyledTextOutput.Style.Normal),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 25 00:22:38 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/stackcheck_test.go

    func TestStackCheckOutput(t *testing.T) {
    	testenv.MustHaveGoBuild(t)
    	t.Parallel()
    
    	cmd := testenv.Command(t, testenv.GoToolPath(t), "build", "-o", os.DevNull, "./testdata/stackcheck")
    	// The rules for computing frame sizes on all of the
    	// architectures are complicated, so just do this on amd64.
    	cmd.Env = append(os.Environ(), "GOARCH=amd64", "GOOS=linux")
    	outB, err := cmd.CombinedOutput()
    
    	if err == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:14 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  9. src/runtime/tracetype.go

    	maxBytes := 1 + 5*traceBytesPerNumber + len(typName)
    
    	// Estimate the size of this record. This
    	// bound is pretty loose, but avoids counting
    	// lots of varint sizes.
    	//
    	// Add 1 because we might also write a traceAllocFreeTypesBatch byte.
    	var flushed bool
    	w, flushed = w.ensure(1 + maxBytes)
    	if flushed {
    		// Annotate the batch as containing types.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:31:27 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/runtime/allocator.go

    //	memoryAllocator := runtime.AllocatorPool.Get().(*runtime.Allocator)
    //	defer runtime.AllocatorPool.Put(memoryAllocator)
    //
    // A note for future:
    //
    //	consider introducing multiple pools for storing buffers of different sizes
    //	perhaps this could allow us to be more efficient.
    var AllocatorPool = sync.Pool{
    	New: func() interface{} {
    		return &Allocator{}
    	},
    }
    
    // Allocator knows how to allocate memory
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 27 03:17:50 UTC 2022
    - 2.2K bytes
    - Viewed (0)
Back to top