Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,345 for small7 (0.17 sec)

  1. test/inline_sync.go

    )
    
    var mutex *sync.Mutex
    
    func small5() { // ERROR "can inline small5"
    	// the Unlock fast path should be inlined
    	mutex.Unlock() // ERROR "inlining call to sync\.\(\*Mutex\)\.Unlock"
    }
    
    func small6() { // ERROR "can inline small6"
    	// the Lock fast path should be inlined
    	mutex.Lock() // ERROR "inlining call to sync\.\(\*Mutex\)\.Lock"
    }
    
    var once *sync.Once
    
    func small7() { // ERROR "can inline small7"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 21:01:50 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  2. test/newinline.go

    	// ERRORAUTO "inlining call to T.meth"
    }
    
    func small1() { // ERROR "can inline small1"
    	runtime.GC()
    }
    func small2() int { // ERROR "can inline small2"
    	return runtime.GOMAXPROCS(0)
    }
    func small3(t T) { // ERROR "can inline small3"
    	t.meth2(3, 5)
    }
    func small4(t T) { // ERROR "can inline small4"
    	t.meth2(runtime.GOMAXPROCS(0), 5)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 20:15:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/img/build-cache/compare-small.svg

    compare-small.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/img/build-cache/compare-small-b.svg

    compare-small-b.svg...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  5. src/cmd/internal/cov/testdata/small.go

    Than McIntosh <******@****.***> 1675886768 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:12:25 UTC 2023
    - 66 bytes
    - Viewed (0)
  6. src/archive/tar/testdata/small.txt

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 5 bytes
    - Viewed (0)
  7. src/strconv/itoa.go

    	if fastSmalls && i < nSmalls && base == 10 {
    		return append(dst, small(int(i))...)
    	}
    	dst, _ = formatBits(dst, i, base, false, true)
    	return dst
    }
    
    // small returns the string for an i with 0 <= i < nSmalls.
    func small(i int) string {
    	if i < 10 {
    		return digits[i : i+1]
    	}
    	return smallsString[i*2 : i*2+2]
    }
    
    const nSmalls = 100
    
    const smallsString = "00010203040506070809" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:28 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. test/inline.go

    	// ERRORAUTO "inlining call to T.meth"
    }
    
    func small1() { // ERROR "can inline small1"
    	runtime.GC()
    }
    func small2() int { // ERROR "can inline small2"
    	return runtime.GOMAXPROCS(0)
    }
    func small3(t T) { // ERROR "can inline small3"
    	t.meth2(3, 5)
    }
    func small4(t T) { // not inlineable - has 2 calls.
    	t.meth2(runtime.GOMAXPROCS(0), 5)
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 11.7K bytes
    - Viewed (0)
  9. src/go/printer/testdata/linebreaks.golden

    			&writerTestEntry{
    				header: &Header{
    					Name:		"small.txt",
    					Mode:		0640,
    					Uid:		73025,
    					Gid:		5000,
    					Size:		5,
    					Mtime:		1246508266,
    					Typeflag:	'0',
    					Uname:		"dsymonds",
    					Gname:		"eng",
    				},
    				contents:	"Kilts",
    			},
    			&writerTestEntry{
    				header: &Header{
    					Name:		"small2.txt",
    					Mode:		0640,
    					Uid:		73025,
    					Gid:		5000,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  10. src/go/printer/testdata/linebreaks.input

    			&writerTestEntry{
    				header: &Header{
    					Name: "small.txt",
    					Mode: 0640,
    					Uid: 73025,
    					Gid: 5000,
    					Size: 5,
    					Mtime: 1246508266,
    					Typeflag: '0',
    					Uname: "dsymonds",
    					Gname: "eng",
    				},
    				contents: "Kilts",
    			},
    			&writerTestEntry{
    				header: &Header{
    					Name: "small2.txt",
    					Mode: 0640,
    					Uid: 73025,
    					Gid: 5000,
    					Size: 11,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 11 22:03:18 UTC 2018
    - 5.1K bytes
    - Viewed (0)
Back to top