Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,015 for typeSet (0.31 sec)

  1. src/go/types/expr.go

    			return Typ[UntypedNil], nil, 0
    		default:
    			return nil, nil, InvalidUntypedConversion
    		}
    	case *Interface:
    		if isTypeParam(target) {
    			if !u.typeSet().underIs(func(u Type) bool {
    				if u == nil {
    					return false
    				}
    				t, _, _ := check.implicitTypeAndValue(x, u)
    				return t != nil
    			}) {
    				return nil, nil, InvalidUntypedConversion
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/expr.go

    			if !isString(target) {
    				return nil, nil, InvalidUntypedConversion
    			}
    		default:
    			return nil, nil, InvalidUntypedConversion
    		}
    	case *Interface:
    		if isTypeParam(target) {
    			if !u.typeSet().underIs(func(u Type) bool {
    				if u == nil {
    					return false
    				}
    				t, _, _ := check.implicitTypeAndValue(x, u)
    				return t != nil
    			}) {
    				return nil, nil, InvalidUntypedConversion
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/mutation/unstructured/typeref.go

    )
    
    // TypeRef is the implementation of TypeRef for an unstructured object.
    // This is especially usefully when the schema is not known or available.
    type TypeRef struct {
    	celObjectType *types.Type
    	celTypeType   *types.Type
    }
    
    func (r *TypeRef) HasTrait(trait int) bool {
    	return common.ObjectTraits|trait != 0
    }
    
    // TypeName returns the name of this TypeRef.
    func (r *TypeRef) TypeName() string {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 24 00:01:35 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. src/debug/dwarf/testdata/typedef.elf4

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 9.3K bytes
    - Viewed (0)
  5. src/internal/types/testdata/examples/typesets.go

    Robert Griesemer <******@****.***> 1670545237 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  6. src/debug/dwarf/testdata/typedef.elf5

    Than McIntosh <******@****.***> 1643121275 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jan 28 20:07:54 UTC 2022
    - 5.9K bytes
    - Viewed (0)
  7. src/debug/dwarf/testdata/typedef.macho

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 4.9K bytes
    - Viewed (0)
  8. src/go/parser/parser.go

    			f.name = nil
    
    		case token.TILDE:
    			if typeSetsOK {
    				f.typ = p.embeddedElem(nil)
    				return
    			}
    
    		case token.OR:
    			if typeSetsOK {
    				// name "|" typeset
    				f.typ = p.embeddedElem(f.name)
    				f.name = nil
    				return
    			}
    		}
    
    	case token.MUL, token.ARROW, token.FUNC, token.LBRACK, token.CHAN, token.MAP, token.STRUCT, token.INTERFACE, token.LPAREN:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  9. src/debug/dwarf/testdata/typedef.elf

    Russ Cox <******@****.***> 1410149331 -0400
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 12.2K bytes
    - Viewed (0)
  10. src/debug/dwarf/testdata/typedef.macho4

    Joe Sylve <******@****.***> 1630609755 +0000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 02 19:56:24 UTC 2021
    - 6.1K bytes
    - Viewed (0)
Back to top