Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for foo121 (0.1 sec)

  1. test/escape2n.go

    func foo13(yyy **int) { // ERROR "leaking param content: yyy$"
    	*xxx = *yyy
    }
    
    func foo14(yyy **int) { // ERROR "yyy does not escape$"
    	**xxx = **yyy
    }
    
    func foo15(yy *int) { // ERROR "moved to heap: yy$"
    	xxx = &yy
    }
    
    func foo16(yy *int) { // ERROR "leaking param: yy$"
    	*xxx = yy
    }
    
    func foo17(yy *int) { // ERROR "yy does not escape$"
    	**xxx = *yy
    }
    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

    func foo13(yyy **int) { // ERROR "leaking param content: yyy$"
    	*xxx = *yyy
    }
    
    func foo14(yyy **int) { // ERROR "yyy does not escape$"
    	**xxx = **yyy
    }
    
    func foo15(yy *int) { // ERROR "moved to heap: yy$"
    	xxx = &yy
    }
    
    func foo16(yy *int) { // ERROR "leaking param: yy$"
    	*xxx = yy
    }
    
    func foo17(yy *int) { // ERROR "yy does not escape$"
    	**xxx = *yy
    }
    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. src/strings/replace_test.go

    	foo1 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo3", "C",
    	)
    	foo2 := NewReplacer(
    		"foo1", "A",
    		"foo2", "B",
    		"foo31", "C",
    		"foo32", "D",
    	)
    	foo3 := NewReplacer(
    		"foo11", "A",
    		"foo12", "B",
    		"foo31", "C",
    		"foo32", "D",
    	)
    	foo4 := NewReplacer(
    		"foo12", "B",
    		"foo32", "D",
    	)
    	testCases = append(testCases,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 22:53:05 UTC 2017
    - 14.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

            def bar20 = mavenRepo.module('org', 'bar', '2.0').publish()
            def foo10 = mavenRepo.module('org', 'foo', '1.0').dependsOn(bar10).publish()
            def foo13 = mavenRepo.module('org', 'foo', '1.3').dependsOn(bar10).publish()
            def bar15 = mavenRepo.module('org', 'bar', '1.5').publish()
            def foo15 = mavenRepo.module('org', 'foo', '1.5').dependsOn(bar15).publish()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  5. 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 {
                root(":", "org.test:test:1.9") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    		Object: map[string]interface{}{
    			"apiVersion": "mygroup.example.com/v1",
    			"kind":       "Table",
    			"metadata": map[string]interface{}{
    				"name": name,
    			},
    			"spec": map[string]interface{}{
    				"alpha":   "foo_123",
    				"beta":    10,
    				"gamma":   "bar",
    				"delta":   "hello",
    				"epsilon": []int64{1, 2, 3},
    				"zeta":    5,
    			},
    		},
    	}
    }
    
    func TestTableGet(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r26/TestLauncherCrossVersionSpec.groovy

            assertTestExecuted(className: "example.MyTest", methodName: "foo", task: ":secondTest")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":test")
            assertTestExecuted(className: "example.MyTest", methodName: "foo2", task: ":secondTest")
            if (supportsEfficientClassFiltering()) {
                assert events.tests.size() == 10
                assertTestNotExecuted(className: "example2.MyOtherTest")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 06:59:43 UTC 2024
    - 22.6K bytes
    - Viewed (0)
  8. src/cmd/go/internal/fsys/fsys_test.go

    		seen = append(seen, filepath.ToSlash(path))
    		if info.Name() == "foo2" {
    			return filepath.SkipAll
    		}
    		return nil
    	})
    
    	wantSeen := []string{"dir", "dir/subdir1", "dir/subdir1/foo1", "dir/subdir1/foo2"}
    
    	if len(seen) != len(wantSeen) {
    		t.Errorf("paths seen in walk: got %v entries; want %v entries", len(seen), len(wantSeen))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  9. src/net/http/request_test.go

    		}
    	}
    }
    
    func TestMultipartReader(t *testing.T) {
    	tests := []struct {
    		shouldError bool
    		contentType string
    	}{
    		{false, `multipart/form-data; boundary="foo123"`},
    		{false, `multipart/mixed; boundary="foo123"`},
    		{true, `text/plain`},
    	}
    
    	for i, test := range tests {
    		req := &Request{
    			Method: "POST",
    			Header: Header{"Content-Type": {test.contentType}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 18:42:34 UTC 2024
    - 44K bytes
    - Viewed (0)
  10. pkg/controller/daemon/update_test.go

    	addNodes(manager.nodeStore, 0, 5, nil)
    	manager.dsStore.Add(ds)
    	expectSyncDaemonSets(t, manager, ds, podControl, 5, 0, 0)
    	markPodsReady(podControl.podStore)
    
    	ds.Spec.Template.Spec.Containers[0].Image = "foo2/bar2"
    	ds.Spec.UpdateStrategy.Type = apps.RollingUpdateDaemonSetStrategyType
    	intStr := intstr.FromInt32(int32(maxUnavailable))
    	ds.Spec.UpdateStrategy.RollingUpdate = &apps.RollingUpdateDaemonSet{MaxUnavailable: &intStr}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
Back to top