Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for TestTypes (0.26 sec)

  1. src/cmd/compile/internal/ssa/export_test.go

    func testConfigArch(tb testing.TB, arch string) *Conf {
    	ctxt, ok := testCtxts[arch]
    	if !ok {
    		tb.Fatalf("unknown arch %s", arch)
    	}
    	if ctxt.Arch.PtrSize != 8 {
    		tb.Fatal("testTypes is 64-bit only")
    	}
    	c := &Conf{
    		config: NewConfig(arch, testTypes, ctxt, true, false),
    		tb:     tb,
    	}
    	return c
    }
    
    type Conf struct {
    	config *Config
    	tb     testing.TB
    	fe     Frontend
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 21:19:39 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. .teamcity/src/main/kotlin/configurations/DocsTest.kt

        model: CIBuildModel,
        stage: Stage,
        val os: Os,
        testJava: JvmCategory,
        testTypes: List<DocsTestType>
    ) : Project({
        id(asDocsTestId(model, os))
        name = "Docs Test - ${testJava.version.name.toCapitalized()} ${os.asName()}"
    }) {
        val docsTests: List<BaseGradleBuildType>
    
        init {
            docsTests = testTypes.flatMap {
                listOf(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. pkg/api/testing/defaulting_test.go

    		},
    	)
    
    	scheme := legacyscheme.Scheme
    	var testTypes orderedGroupVersionKinds
    	for gvk := range scheme.AllKnownTypes() {
    		if gvk.Version == runtime.APIVersionInternal {
    			continue
    		}
    		testTypes = append(testTypes, gvk)
    	}
    	sort.Sort(testTypes)
    
    	for _, gvk := range testTypes {
    		_, expectedChanged := typesWithDefaulting[gvk]
    		iter := 0
    		changedOnce := false
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. src/go/types/typestring_test.go

    	dup("chan<- <-chan int"),
    	dup("<-chan <-chan int"),
    	dup("chan (<-chan int)"),
    	dup("chan<- func()"),
    	dup("<-chan []func() int"),
    }
    
    // types that depend on other type declarations (src in TestTypes)
    var dependentTestTypes = []testEntry{
    	// interfaces
    	dup(`interface{io.Reader; io.Writer}`),
    	dup(`interface{m() int; io.Writer}`),
    	{`interface{m() interface{T}}`, `interface{m() interface{p.T}}`},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/typestring_test.go

    	dup("chan<- <-chan int"),
    	dup("<-chan <-chan int"),
    	dup("chan (<-chan int)"),
    	dup("chan<- func()"),
    	dup("<-chan []func() int"),
    }
    
    // types that depend on other type declarations (src in TestTypes)
    var dependentTestTypes = []testEntry{
    	// interfaces
    	dup(`interface{io.Reader; io.Writer}`),
    	dup(`interface{m() int; io.Writer}`),
    	{`interface{m() interface{T}}`, `interface{m() interface{generic_p.T}}`},
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 28 17:58:07 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/runtime/serializer/codec_test.go

    		t.Errorf("2: %v: %v", name, err)
    		return
    	}
    	if !semantic.DeepEqual(source, obj3) {
    		t.Errorf("3: %v: diff: %v", name, cmp.Diff(source, obj3))
    		return
    	}
    }
    
    func TestTypes(t *testing.T) {
    	table := []interface{}{
    		&runtimetesting.TestType1{},
    		&runtimetesting.ExternalInternalSame{},
    	}
    	for _, item := range table {
    		// Try a few times, since runTest uses random values.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  7. src/internal/reflectlite/all_test.go

    	}
    }
    
    func testReflectType(t *testing.T, i int, typ Type, want string) {
    	s := TypeString(typ)
    	if s != want {
    		t.Errorf("#%d: have %#q, want %#q", i, s, want)
    	}
    }
    
    func TestTypes(t *testing.T) {
    	for i, tt := range typeTests {
    		testReflectType(t, i, Field(ValueOf(tt.i), 0).Type(), tt.s)
    	}
    }
    
    func TestSetValue(t *testing.T) {
    	for i, tt := range valueTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 16 19:26:08 UTC 2023
    - 24.2K bytes
    - Viewed (0)
  8. src/main/assemblies/extension/kibana/fess_log.ndjson

    se},{\"name\":\"_source\",\"type\":\"_source\",\"esTypes\":[\"_source\"],\"count\":0,\"scripted\":false,\"searchable\":false,\"aggregatable\":false,\"readFromDocValues\":false},{\"name\":\"_type\",\"type\":\"string\",\"esTypes\":[\"_type\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDocValues\":false},{\"name\":\"accessType\",\"type\":\"string\",\"esTypes\":[\"keyword\"],\"count\":0,\"scripted\":false,\"searchable\":true,\"aggregatable\":true,\"readFromDoc...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Aug 12 01:26:21 UTC 2019
    - 18.2K bytes
    - Viewed (0)
  9. src/reflect/all_test.go

    	},
    }
    
    func testType(t *testing.T, i int, typ Type, want string) {
    	s := typ.String()
    	if s != want {
    		t.Errorf("#%d: have %#q, want %#q", i, s, want)
    	}
    }
    
    func TestTypes(t *testing.T) {
    	for i, tt := range typeTests {
    		testType(t, i, ValueOf(tt.i).Field(0).Type(), tt.s)
    	}
    }
    
    func TestSet(t *testing.T) {
    	for i, tt := range valueTests {
    		v := ValueOf(tt.i)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
Back to top