Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 174 for foo4 (0.04 sec)

  1. test/fixedbugs/bug441.go

    // in inlined functions.  Issue 3593.
    
    package main
    
    var did int
    
    func main() {
    	foo(side())
    	foo2(side(), side())
    	foo3(side(), side())
    	T.m1(T(side()))
    	T(1).m2(side())
    	const want = 7
    	if did != want {
    		println("BUG: missing", want-did, "calls")
    	}
    }
    
    func foo(_ int) {}
    func foo2(_, _ int) {}
    func foo3(int, int) {}
    type T int
    func (_ T) m1() {}
    func (t T) m2(_ int) {}
    
    func side() int {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 641 bytes
    - Viewed (0)
  2. src/internal/types/testdata/fixedbugs/issue47747.go

    // 	var b Bar[t]
    // 	f.Foo(&b)
    // 	return t(b)
    // }
    
    // Test case 2 from issue
    
    // For now, a lone type parameter is not permitted as RHS in a type declaration (issue #45639).
    // type Fooer2[t any] interface {
    // 	Foo()
    // }
    // 
    // type Foo2[t any] t
    // 
    // func (f *Foo2[t]) Foo() {}
    // 
    // func _[t any](v t) {
    // 	var f = Foo2[t](v)
    // 	_ = Fooer2[t](&f)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  3. pkg/kubelet/token/token_manager_test.go

    				{
    					name:      "foo-sa",
    					namespace: "foo-ns",
    					tr: &authenticationv1.TokenRequest{
    						Spec: authenticationv1.TokenRequestSpec{
    							Audiences:         []string{"foo1", "foo2"},
    							ExpirationSeconds: getInt64Point(2000),
    							BoundObjectRef: &authenticationv1.BoundObjectReference{
    								Kind: "pod",
    								Name: "foo-pod",
    								UID:  "foo-uid",
    							},
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 04 00:16:47 UTC 2022
    - 16.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/attributes/DefaultAttributeSelectionSchemaTest.groovy

            def foo1 = Attribute.of("foo", String)
            def foo2 = Attribute.of("foo", String)
            def attr3 = Attribute.of("baz", String)
    
            given:
    
            ImmutableAttributes[] candidates = [candidate(ImmutableMap.of(attr3, "v2", foo1, "v2"))]
            AttributeContainer requested = attribute(attr3, "v3")
            attributesSchema.getAttributeByName("foo") >> foo2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 20:17:51 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. pkg/kubelet/util/sliceutils/sliceutils_test.go

    			Size:        2,
    		},
    		{
    			ID:          "3",
    			RepoTags:    []string{"foo-tag31", "foo-tag32"},
    			RepoDigests: []string{"foo-rd31", "foo-rd32"},
    			Size:        3,
    		},
    		{
    			ID:          "4",
    			RepoTags:    []string{"foo-tag41", "foo-tag42"},
    			RepoDigests: []string{"foo-rd41", "foo-rd42"},
    			Size:        3,
    		},
    	}
    }
    
    func TestByImageSizeLen(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 13 08:27:42 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  6. src/runtime/mfinal_test.go

    func TestFinalizerOnGlobal(t *testing.T) {
    	runtime.SetFinalizer(Foo1, func(p *Object1) {})
    	runtime.SetFinalizer(Foo2, func(p *Object2) {})
    	runtime.SetFinalizer(Foo1, nil)
    	runtime.SetFinalizer(Foo2, nil)
    }
    
    type Object1 struct {
    	Something []byte
    }
    
    type Object2 struct {
    	Something byte
    }
    
    var (
    	Foo2 = &Object2{}
    	Foo1 = &Object1{}
    )
    
    func TestDeferKeepAlive(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 19 20:45:58 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  7. src/internal/types/testdata/fixedbugs/issue39634.go

    // crash 7
    type foo7 interface { bar() }
    type x7[A any] struct{ foo7 }
    func main7() { var _ foo7 = x7[int]{} }
    
    // crash 8
    type foo8[A any] interface { ~A /* ERROR "cannot be a type parameter" */ }
    func bar8[A foo8[A]](a A) {}
    
    // crash 9
    type foo9[A any] interface { foo9 /* ERROR "invalid recursive type" */ [A] }
    func _() { var _ = new(foo9[int]) }
    
    // crash 12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 05 18:13:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/StronglyTypedConfigurationAttributesResolveIntegrationTest.groovy

      - foo2
      - foo3
    All of them match the consumer attributes:
      - Variant 'foo2' capability test:b:unspecified declares attribute 'buildType' with value 'debug', attribute 'flavor' with value 'ONE'
      - Variant 'foo3' capability test:b:unspecified declares attribute 'buildType' with value 'debug', attribute 'flavor' with value 'ONE'"""
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 48.1K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolvedConfigurationIntegrationTest.groovy

            def foo1 = mavenHttpRepo.module('org', 'foo', '1').publish()
            def foo2 = mavenHttpRepo.module('org', 'foo', '2').publish()
            def foo3 = mavenHttpRepo.module('org', 'foo', '3').publish()
            def bar1 = mavenHttpRepo.module('org', 'bar', '1')
                .dependsOn(foo2).publish()
    
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. pkg/controller/endpointslicemirroring/reconciler_helpers_test.go

    				simpleEndpointSlice("foo1", "10.1.2.3", discovery.AddressTypeIPv4),
    				simpleEndpointSlice("foo2", "10.3.4.5", discovery.AddressTypeIPv4),
    			},
    			toDelete: []*discovery.EndpointSlice{simpleEndpointSlice("bar", "10.2.3.4", discovery.AddressTypeIPv4)},
    		},
    		expectedSlices: &slicesByAction{
    			toCreate: []*discovery.EndpointSlice{simpleEndpointSlice("foo2", "10.3.4.5", discovery.AddressTypeIPv4)},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 06 23:58:47 UTC 2021
    - 7K bytes
    - Viewed (0)
Back to top