Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 339 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/cmd/compile/internal/types2/check_test.go

    	src := fmt.Sprintf(format, strings.Repeat("1", 9999), strings.Repeat("1", 10001))
    	testFiles(t, []string{"longconst.go"}, [][]byte{[]byte(src)}, 0, false)
    }
    
    func withSizes(sizes Sizes) func(*Config) {
    	return func(cfg *Config) {
    		cfg.Sizes = sizes
    	}
    }
    
    // TestIndexRepresentability tests that constant index operands must
    // be representable as int even if they already have a type that can
    // represent larger values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/go/types/check_test.go

    	src := fmt.Sprintf(format, strings.Repeat("1", 9999), strings.Repeat("1", 10001))
    	testFiles(t, []string{"longconst.go"}, [][]byte{[]byte(src)}, false)
    }
    
    func withSizes(sizes Sizes) func(*Config) {
    	return func(cfg *Config) {
    		cfg.Sizes = sizes
    	}
    }
    
    // TestIndexRepresentability tests that constant index operands must
    // be representable as int even if they already have a type that can
    // represent larger values.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 19:45:33 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top