Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for foo_1_1 (0.2 sec)

  1. test/escape2n.go

    var save151 *int
    
    func foo151(x *int) { // ERROR "leaking param: x$"
    	save151 = x
    }
    
    func bar151() {
    	var a [64]int // ERROR "moved to heap: a$"
    	a[4] = 101
    	foo151(&(&a)[4:8][0])
    }
    
    func bar151b() {
    	var a [10]int // ERROR "moved to heap: a$"
    	b := a[:]
    	foo151(&b[4:8][0])
    }
    
    func bar151c() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  2. test/escape2.go

    var save151 *int
    
    func foo151(x *int) { // ERROR "leaking param: x$"
    	save151 = x
    }
    
    func bar151() {
    	var a [64]int // ERROR "moved to heap: a$"
    	a[4] = 101
    	foo151(&(&a)[4:8][0])
    }
    
    func bar151b() {
    	var a [10]int // ERROR "moved to heap: a$"
    	b := a[:]
    	foo151(&b[4:8][0])
    }
    
    func bar151c() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  3. pkg/util/taints/taints_test.go

    			taintToFind:    &v1.Taint{Key: "foo_1", Value: "bar_1", Effect: v1.TaintEffectNoExecute},
    			expectedResult: true,
    		},
    		{
    			name:           "different key",
    			taintToFind:    &v1.Taint{Key: "no_such_key", Value: "bar_1", Effect: v1.TaintEffectNoExecute},
    			expectedResult: false,
    		},
    		{
    			name:           "different effect",
    			taintToFind:    &v1.Taint{Key: "foo_1", Value: "bar_1", Effect: v1.TaintEffectNoSchedule},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 16 09:23:35 UTC 2022
    - 22.6K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/platforms/PlatformResolveIntegrationTest.groovy

            """
            checkConfiguration("compileClasspath")
    
            when:
            platform.pom.expectGet()
            platform.moduleMetadata.expectGet()
            foo11.pom.expectGet()
            foo11.moduleMetadata.expectGet()
            foo10.pom.expectGet()
            foo10.moduleMetadata.expectGet()
            foo10.artifact.expectGet()
    
            run ":checkDeps"
    
            then:
            resolve.expectGraph {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            given:
            def foo11 = mavenRepo.module("org", "foo", '1.0').artifact(classifier: 'shaded').publish()
            mavenRepo.module("org", "foo", '1.1').artifact(classifier: 'shaded').publish()
            mavenRepo.module("org", "bar", '1.0').dependsOn(classifier: 'shaded', foo11).publish()
            writeSpec {
                rootProject {
                    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    			"apiVersion": crd.Spec.Group + "/" + versions[0],
    			"kind":       crd.Spec.Names.Kind,
    			"metadata": map[string]interface{}{
    				"namespace": ns,
    				"name":      instanceName,
    			},
    			"alpha":   "foo_123",
    			"beta":    10,
    			"gamma":   "bar",
    			"delta":   "hello",
    			"epsilon": "foobar",
    			"spec":    map[string]interface{}{},
    		},
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
Back to top