Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for typInternal (0.14 sec)

  1. src/go/types/typexpr.go

    func goTypeName(typ Type) string {
    	return strings.ReplaceAll(fmt.Sprintf("%T", typ), "types.", "")
    }
    
    // typInternal drives type checking of types.
    // Must only be called by definedType or genericType.
    func (check *Checker) typInternal(e0 ast.Expr, def *TypeName) (T Type) {
    	if check.conf._Trace {
    		check.trace(e0.Pos(), "-- type %s", e0)
    		check.indent++
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/typexpr.go

    func goTypeName(typ Type) string {
    	return strings.ReplaceAll(fmt.Sprintf("%T", typ), "types2.", "")
    }
    
    // typInternal drives type checking of types.
    // Must only be called by definedType or genericType.
    func (check *Checker) typInternal(e0 syntax.Expr, def *TypeName) (T Type) {
    	if check.conf.Trace {
    		check.trace(e0.Pos(), "-- type %s", e0)
    		check.indent++
    		defer func() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion_test.go

    		GroupVersionKind:  gvk.ServiceEntry,
    		Name:              "tcpNoneInternal",
    		Namespace:         "tcpNoneInternal",
    		CreationTimestamp: GlobalTime,
    	},
    	Spec: &networking.ServiceEntry{
    		Hosts:     []string{"tcpinternal.com"},
    		Addresses: []string{"172.217.0.0/16"},
    		Ports: []*networking.ServicePort{
    			{Number: 444, Name: "tcp-444", Protocol: "tcp"},
    		},
    		Location:   networking.ServiceEntry_MESH_INTERNAL,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 39K bytes
    - Viewed (0)
Back to top