Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 78 for foo124 (0.08 sec)

  1. test/fixedbugs/issue63489a.go

    //go:build go1.4
    
    package p
    
    const c = 0o123 // ERROR "file declares //go:build go1.4"
    
    // ERROR "file declares //go:build go1.4"
    
    //line issue63489a.go:13:1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:56:10 UTC 2023
    - 362 bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/internal/xml/XmlValidationTest.groovy

            XmlValidation.isValidXmlName(name)
    
            where:
            name             | _
            'foo'            | _
            'FOO'            | _
            'foo-dash'       | _
            'foo.dot'        | _
            'foo123'         | _
            'ns:foo'         | _
            'foo_underscore' | _
            ':foo'           | _
            '_foo'           | _
            '\u00c0foo'      | _
            '\u00d8foo'      | _
            '\u00f8foo'      | _
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 22 14:56:07 UTC 2019
    - 3.5K bytes
    - Viewed (0)
  3. test/escape_indir.go

    	return p
    }
    
    func foo(p **int) { // ERROR "p does not escape"
    	i := 0 // ERROR "moved to heap: i"
    	y := p
    	*y = &i
    }
    
    func foo1(p *int) { // ERROR "p does not escape"
    	i := 0 // ERROR "moved to heap: i"
    	y := &p
    	*y = &i
    }
    
    func foo2() {
    	type Z struct {
    		f **int
    	}
    	x := new(int) // ERROR "moved to heap: x" "new\(int\) escapes to heap"
    	sink = &x
    	var z Z
    	z.f = &x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  4. pkg/kubelet/util/sliceutils/sliceutils_test.go

    func buildPodsByCreationTime() PodsByCreationTime {
    	return []*v1.Pod{
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "foo1",
    				Namespace: v1.NamespaceDefault,
    				CreationTimestamp: metav1.Time{
    					Time: time.Now(),
    				},
    			},
    		},
    		{
    			ObjectMeta: metav1.ObjectMeta{
    				Name:      "foo2",
    				Namespace: v1.NamespaceDefault,
    				CreationTimestamp: metav1.Time{
    					Time: time.Now().Add(time.Hour * 1),
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue39634.go

    type G15[X any] s /* ERROR "undefined" */
    func (G15 /* ERRORx `generic type .* without instantiation` */ ) p()
    
    // crash 16
    type Foo16[T any] r16 /* ERROR "not a type" */
    func r16[T any]() Foo16[Foo16[T]] { panic(0) }
    
    // crash 17
    type Y17 interface{ c() }
    type Z17 interface {
    	c() Y17
    	Y17 /* ERROR "duplicate method" */
    }
    func F17[T Z17](T) {}
    
    // crash 18
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/lookup2.go

    	_ = x.foo1 // ERROR "x.foo1 undefined (type S has no field or method foo1, but does have field Foo1)"
    	_ = x.foo2 // ERROR "x.foo2 undefined (type S has no field or method foo2, but does have field FoO2)"
    	_ = x.foo3 // OK
    	_ = x.foo4 // ERROR "x.foo4 undefined (type S has no field or method foo4, but does have field foO4)"
    }
    
    func _() {
    	_ = S{Foo1: 0} // OK
    	_ = S{Foo2 /* ERROR "unknown field Foo2 in struct literal of type S, but does have FoO2" */ : 0}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 07 16:41:56 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    				ObjectMeta: metav1.ObjectMeta{Name: "foo1"},
    				Status:     api.NodeStatus{Conditions: []api.NodeCondition{{Type: api.NodeReady, Status: api.ConditionTrue}}},
    			},
    			// Columns: Name, Status, Roles, Age, KubeletVersion
    			expected: []metav1.TableRow{{Cells: []interface{}{"foo1", "Ready", "<none>", "<unknown>", ""}}},
    		},
    		{
    			node: api.Node{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo2"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. pkg/adsc/adsc_test.go

    				constructResource("foo1", "foo1.bar.com", "192.1.1.1", "1"),
    				constructResource("foo2", "foo2.bar.com", "192.1.1.2", "1"),
    			},
    			expectedResources: [][]string{
    				{"foo1", "foo1.bar.com", "192.1.1.1"},
    				{"foo2", "foo2.bar.com", "192.1.1.2"},
    			},
    		},
    		{
    			desc: "create-resources-rev-1",
    			resources: []*anypb.Any{
    				constructResource("foo1", "foo1.bar.com", "192.1.1.1", "1"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. src/cmd/go/internal/fsys/fsys_test.go

    		}
    	}
    }
    
    func TestWalkSkipAll(t *testing.T) {
    	initOverlay(t, `
    {
    	"Replace": {
    		"dir/subdir1/foo1": "dummy.txt",
    		"dir/subdir1/foo2": "dummy.txt",
    		"dir/subdir1/foo3": "dummy.txt",
    		"dir/subdir2/foo4": "dummy.txt",
    		"dir/zzlast": "dummy.txt"
    	}
    }
    -- dummy.txt --
    `)
    
    	var seen []string
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:52:11 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  10. 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)
Back to top