Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 454 for small8 (0.52 sec)

  1. src/math/big/ratconv_test.go

    	"1e-305",
    	"1e-306",
    	"1e-307",
    	"1e-308",
    	"1e-309",
    	"1e-310",
    	"1e-322",
    	// smallest denormal
    	"5e-324",
    	"4e-324",
    	"3e-324",
    	// too small
    	"2e-324",
    	// way too small
    	"1e-350",
    	"long:1e-400000",
    	// way too small, negative
    	"-1e-350",
    	"long:-1e-400000",
    
    	// try to overflow exponent
    	// [Disabled: too slow and memory-hungry with rationals.]
    	// "1e-4294967296",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 15 22:16:34 UTC 2023
    - 19.3K bytes
    - Viewed (0)
  2. tensorflow/cc/BUILD

            "//tensorflow/core:test",
            "//tensorflow/core:test_main",
            "//tensorflow/core:testlib",
        ],
    )
    
    tf_cc_test(
        name = "framework_while_gradients_test",
        size = "small",
        srcs = ["framework/while_gradients_test.cc"],
        deps = [
            ":cc_ops",
            ":client_session",
            ":grad_op_registry",
            ":grad_ops",
            ":gradients",
            ":testutil",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  3. gradle/wrapper/gradle-wrapper.jar

    http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 24 09:00:26 UTC 2023
    - 42.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/nilcheck.go

    				ptrs = append(ptrs, v.Args[1])
    			}
    
    			for _, ptr := range ptrs {
    				// Check to make sure the offset is small.
    				switch opcodeTable[v.Op].auxType {
    				case auxSym:
    					if v.Aux != nil {
    						continue
    					}
    				case auxSymOff:
    					if v.Aux != nil || v.AuxInt < 0 || v.AuxInt >= minZeroPage {
    						continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 31 20:45:54 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  5. cmd/metacache-walk.go

    		return err
    	}
    
    	if !skipAccessChecks(opts.Bucket) {
    		// Stat a volume entry.
    		if err = Access(volumeDir); err != nil {
    			return convertAccessError(err, errVolumeAccessDenied)
    		}
    	}
    
    	// Use a small block size to start sending quickly
    	w := newMetacacheWriter(wr, 16<<10)
    	w.reuseBlocks = true // We are not sharing results, so reuse buffers.
    	defer w.Close()
    	out, err := w.stream()
    	if err != nil {
    		return err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  6. test/inline_big.go

    // license that can be found in the LICENSE file.
    
    // Test that we restrict inlining into very large functions.
    // See issue #26546.
    
    package foo
    
    func small(a []int) int { // ERROR "can inline small with cost .* as:.*" "a does not escape"
    	// Cost 16 body (need cost < 20).
    	// See cmd/compile/internal/gc/inl.go:inlineBigFunction*
    	return a[0] + a[1] + a[2] + a[3]
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore.go

    	return lo >= sr.lo() && hi <= sr.hi()
    }
    
    // merge returns the union of sr and [lo:hi].
    // merge is allowed to return something smaller than the union.
    func (sr shadowRange) merge(lo, hi int64) shadowRange {
    	if lo < 0 || hi > 0xffff {
    		// Ignore offsets that are too large or small.
    		return sr
    	}
    	if sr.lo() == sr.hi() {
    		// Old range is empty - use new one.
    		return shadowRange(lo + hi<<16)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/basics/intro_multi_project_builds.adoc

    [[intro_multi_project_builds]]
    = Multi-Project Build Basics
    
    Gradle supports multi-project builds.
    
    image::gradle-basic-9.png[]
    
    While some small projects and monolithic applications may contain a single build file and source tree, it is often more common for a project to have been split into smaller, interdependent modules.
    The word "interdependent" is vital, as you typically want to link the many modules together through a single build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. src/math/big/arith_arm64.s

    // if 'x' and 'z' happen to share the same underlying storage.
    // The overhead of the checking and branching is visible when 'z' are small (~5%),
    // so set a threshold of 32, and remain the small-sized part entirely untouched.
    TEXT ·addVW(SB),NOSPLIT,$0
    	MOVD	z+0(FP), R3
    	MOVD	z_len+8(FP), R0
    	MOVD	x+24(FP), R1
    	MOVD	y+48(FP), R2
    	CMP	$32, R0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/go/parser/parser_test.go

    		t.Skip("test requires significant memory")
    	}
    	for _, tt := range parseDepthTests {
    		for _, size := range []string{"small", "big"} {
    			t.Run(tt.name+"/"+size, func(t *testing.T) {
    				n := maxNestLev + 1
    				if tt.parseMultiplier > 0 {
    					n /= tt.parseMultiplier
    				}
    				if size == "small" {
    					// Decrease the number of statements by 10, in order to check
    					// that we do not fail when under the limit. 10 is used to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 31 20:26:14 UTC 2024
    - 24.6K bytes
    - Viewed (0)
Back to top