Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for Sizes (0.08 sec)

  1. misc/cgo/gmp/pi.go

    			d = extractDigit()
    		}
    		eliminateDigit(d)
    		fmt.Printf("%c", d+'0')
    
    		if i++; i%50 == 0 {
    			fmt.Printf("\n")
    			if i >= 1000 {
    				break
    			}
    		}
    	}
    
    	fmt.Printf("\n%d calls; bit sizes: %d %d %d\n", runtime.NumCgoCall(), numer.Len(), accum.Len(), denom.Len())
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 10 22:32:35 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/test/groovy/org/gradle/integtests/tooling/fixture/ToolingApiModelCheckerTest.groovy

            error.message.contains("       'one'  |       |  |")
            error.message.contains("              |       |  'notOne'")
        }
    
        def "fails with not equal #type sizes"() {
            when:
            ToolingApiModelChecker.checkModel(
                createModel([dummyModel("one")]),
                createModel([dummyModel("one"), dummyModel("two")]),
                [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 10:26:50 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/stablehlo/cc/permutation.h

    #include "mlir/Support/LLVM.h"  // from @llvm-project
    
    namespace mlir::quant {
    
    // Permutes `values` with `permutation`. Returns the permuted values. Sizes of
    // `values` and `permutation` must be equal, and the elements of `permutation`
    // should be less than `values.size()`.
    template <typename T,
              typename = std::enable_if_t<std::is_default_constructible_v<T>, void>>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 00:14:00 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/telemetry/internal/mmap/mmap_windows.go

    		munmapFile(*previous)
    	}
    	st, err := f.Stat()
    	if err != nil {
    		return Data{}, err
    	}
    	size := st.Size()
    	if size == 0 {
    		return Data{f, nil, nil}, nil
    	}
    	// set the min and max sizes to zero to map the whole file, as described in
    	// https://learn.microsoft.com/en-us/windows/win32/memory/creating-a-file-mapping-object#file-mapping-size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:10:54 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  5. src/runtime/memmove_386.s

    TEXT runtime·memmove(SB), NOSPLIT, $0-12
    	MOVL	to+0(FP), DI
    	MOVL	from+4(FP), SI
    	MOVL	n+8(FP), BX
    
    	// REP instructions have a high startup cost, so we handle small sizes
    	// with some straightline code. The REP MOVSL instruction is really fast
    	// for large sizes. The cutover is approximately 1K.  We implement up to
    	// 128 because that is the maximum SSE register load (loading all data
    	// into registers lets us ignore copy direction).
    tail:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 4.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. test/ken/chan.go

    	test3(c)
    	wait()
    
    	test4(c)
    	wait()
    
    	test5(c)
    	wait()
    
    	test6(c)
    	wait()
    }
    
    // run all test with 4 buffser sizes
    func main() {
    
    	tests(0)
    	tests(1)
    	tests(10)
    	tests(100)
    
    	t := 4 * // buffer sizes
    		(4*4 + // tests 1,2,3,4 channels
    			8 + // test 5 channels
    			12) * // test 6 channels
    		76 // sends/recvs on a channel
    
    	if tots != t || totr != t {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 05:24:24 UTC 2012
    - 4.7K bytes
    - Viewed (0)
Back to top