Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,009 for small7 (0.6 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/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)
  7. 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)
  8. src/runtime/mem_windows.go

    	// on all our VirtualAlloc calls, try freeing successively smaller pieces until
    	// we manage to free something, and then repeat. This ends up being O(n log n)
    	// in the worst case, but that's fast enough.
    	for n > 0 {
    		small := n
    		for small >= 4096 && stdcall3(_VirtualFree, uintptr(v), small, _MEM_DECOMMIT) == 0 {
    			small /= 2
    			small &^= 4096 - 1
    		}
    		if small < 4096 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 19:05:10 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AbstractClassGeneratorTestGroovy.groovy

     * limitations under the License.
     */
    
    package org.gradle.internal.instantiation.generator
    
    class AbstractClassGeneratorTestGroovy {
    
        public static class BeanWithGroovyBoolean {
            boolean smallB
            Boolean bigB
            Boolean mixedB
    
            boolean getMixedB() { mixedB }
    
            Boolean isMixedB() { mixedB }
    
            void setMixedB(Boolean mixedB) {
                this.mixedB = mixedB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  10. .teamcity/src/main/kotlin/model/bucket-extensions.kt

     * if some elements are too small, they will be aggregated by smallElementAggregateFunction.
     *
     * @param list the list to split, must be ordered by size desc
     * @param toIntFunction the function used to map the element to its "size"
     * @param largeElementSplitFunction the function used to further split the large element into smaller pieces
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 17 05:17:44 UTC 2022
    - 4K bytes
    - Viewed (0)
Back to top