Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for foo4444 (0.17 sec)

  1. src/cmd/compile/internal/test/switch_test.go

    		"foo",
    		"foo1",
    		"foo22",
    		"foo333",
    		"foo4444",
    		"foo55555",
    		"foo666666",
    		"foo7777777",
    	}
    	n := 0
    	rng := newRNG()
    	for i := 0; i < b.N; i++ {
    		rng = rng.next(predictable)
    		switch a[rng.value()&7] {
    		case "foo":
    			n += 1
    		case "foo1":
    			n += 2
    		case "foo22":
    			n += 3
    		case "foo333":
    			n += 4
    		case "foo4444":
    			n += 5
    		case "foo55555":
    			n += 6
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 06 15:42:30 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  2. test/codegen/issue22703.go

    	foo431()
    	foo432()
    	foo433()
    	foo434()
    	foo435()
    	foo436()
    	foo437()
    	foo438()
    	foo439()
    	foo440()
    	foo441()
    	foo442()
    	foo443()
    	foo444()
    	foo445()
    	foo446()
    	foo447()
    	foo448()
    	foo449()
    	foo450()
    	foo451()
    	foo452()
    	foo453()
    	foo454()
    	foo455()
    	foo456()
    	foo457()
    	foo458()
    	foo459()
    	foo460()
    	foo461()
    	foo462()
    	foo463()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 03 20:20:54 UTC 2018
    - 5.4K bytes
    - Viewed (0)
  3. test/escape2n.go

    // are before or after the use in the source code.
    
    //go:noescape
    
    func foo144a(*int)
    
    func foo144() {
    	var x int
    	foo144a(&x)
    	var y int
    	foo144b(&y)
    }
    
    //go:noescape
    
    func foo144b(*int)
    
    // issue 7313: for loop init should not be treated as "in loop"
    
    type List struct {
    	Next *List
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  4. test/escape2.go

    // are before or after the use in the source code.
    
    //go:noescape
    
    func foo144a(*int)
    
    func foo144() {
    	var x int
    	foo144a(&x)
    	var y int
    	foo144b(&y)
    }
    
    //go:noescape
    
    func foo144b(*int)
    
    // issue 7313: for loop init should not be treated as "in loop"
    
    type List struct {
    	Next *List
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

            def foo133 = mavenRepo.module("org", "foo", '1.3.3').publish()
            def foo144 = mavenRepo.module("org", "foo", '1.4.4').publish()
            mavenRepo.module("org", "bar", "1.0").dependsOn(foo133).publish()
            mavenRepo.module("org", "baz", "1.0").dependsOn(foo144).publish()
    
            buildFile << """
    apply plugin: 'java'
    group = 'org'
    version = '1.0'
    repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
Back to top