Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for TestRegistration (0.24 sec)

  1. native-image-tests/src/main/kotlin/okhttp3/TestRegistration.kt

    import org.graalvm.nativeimage.hosted.Feature
    import org.graalvm.nativeimage.hosted.RuntimeClassInitialization
    import org.graalvm.nativeimage.hosted.RuntimeReflection
    
    @AutomaticFeature
    class TestRegistration : Feature {
      override fun beforeAnalysis(access: Feature.BeforeAnalysisAccess) {
        // Presumably needed for parsing the testlist.txt file.
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  2. pilot/pkg/xds/vm_test.go

    	"istio.io/istio/pkg/test"
    	"istio.io/istio/pkg/test/util/assert"
    	"istio.io/istio/pkg/test/util/retry"
    )
    
    // TestRegistration is an e2e test for registration. Most tests are in autoregister package, but this
    // exercises the full XDS flow.
    func TestRegistration(t *testing.T) {
    	// TODO: allow fake XDS to be "authenticated"
    	test.SetForTest(t, &features.ValidateWorkloadEntryIdentity, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. src/encoding/gob/type_test.go

    		t.Errorf("struct printed as %q; expected %q", str, expected)
    	}
    }
    
    // Should be OK to register the same type multiple times, as long as they're
    // at the same level of indirection.
    func TestRegistration(t *testing.T) {
    	type T struct{ a int }
    	Register(new(T))
    	Register(new(T))
    }
    
    type N1 struct{}
    type N2 struct{}
    
    // See comment in type.go/Register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 01 14:26:13 UTC 2023
    - 6.1K bytes
    - Viewed (0)
Back to top