Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 81 for IsExported (0.32 sec)

  1. src/encoding/gob/type.go

    		}
    		return st, nil
    
    	default:
    		return nil, errors.New("gob NewTypeObject can't handle type: " + rt.String())
    	}
    }
    
    // isExported reports whether this is an exported - upper case - name.
    func isExported(name string) bool {
    	rune, _ := utf8.DecodeRuneInString(name)
    	return unicode.IsUpper(rune)
    }
    
    // isSent reports whether this struct field is to be transmitted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 02:00:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  2. api/go1.17.txt

    pkg net/http, func AllowQuerySemicolons(Handler) Handler
    pkg net/url, method (Values) Has(string) bool
    pkg reflect, func VisibleFields(Type) []StructField
    pkg reflect, method (Method) IsExported() bool
    pkg reflect, method (StructField) IsExported() bool
    pkg reflect, method (Value) CanConvert(Type) bool
    pkg reflect, method (Value) InterfaceData //deprecated
    pkg runtime/cgo (darwin-amd64-cgo), func NewHandle(interface{}) Handle
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 20:31:46 UTC 2023
    - 18K bytes
    - Viewed (0)
  3. src/go/internal/gcimporter/gcimporter_test.go

    			imported := importPkg(t, "./testdata/"+pkgName, tmpdir)
    			checked := checkFile(t, filename, src)
    
    			seen := make(map[string]bool)
    			for _, name := range imported.Scope().Names() {
    				if !token.IsExported(name) {
    					continue // ignore synthetic names like .inittask and .dict.*
    				}
    				seen[name] = true
    
    				importedObj := imported.Scope().Lookup(name)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  4. schema/schema.go

    		// Wait for the initialization of other goroutines to complete
    		<-s.initialized
    		return s, s.err
    	}
    
    	for i := 0; i < modelType.NumField(); i++ {
    		if fieldStruct := modelType.Field(i); ast.IsExported(fieldStruct.Name) {
    			if field := schema.ParseField(fieldStruct); field.EmbeddedSchema != nil {
    				schema.Fields = append(schema.Fields, field.EmbeddedSchema.Fields...)
    			} else {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/deadcode.go

    		// as new types (with new methods) may have been discovered
    		// in the last pass.
    		rem := d.markableMethods[:0]
    		for _, m := range d.markableMethods {
    			if (d.reflectSeen && (m.isExported() || d.dynlink)) || d.ifaceMethod[m.m] || d.genericIfaceMethod[m.m.name] {
    				d.markMethod(m)
    			} else {
    				rem = append(rem, m)
    			}
    		}
    		d.markableMethods = rem
    
    		if d.wq.empty() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  6. src/encoding/xml/typeinfo.go

    		return ti.(*typeInfo), nil
    	}
    
    	tinfo := &typeInfo{}
    	if typ.Kind() == reflect.Struct && typ != nameType {
    		n := typ.NumField()
    		for i := 0; i < n; i++ {
    			f := typ.Field(i)
    			if (!f.IsExported() && !f.Anonymous) || f.Tag.Get("xml") == "-" {
    				continue // Private field
    			}
    
    			// For embedded structs, embed its fields.
    			if f.Anonymous {
    				t := f.Type
    				if t.Kind() == reflect.Pointer {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:23:29 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/internal/abi/type.go

    func (n Name) Data(off int) *byte {
    	return (*byte)(addChecked(unsafe.Pointer(n.Bytes), uintptr(off), "the runtime doesn't need to give you a reason"))
    }
    
    // IsExported returns "is n exported?"
    func (n Name) IsExported() bool {
    	return (*n.Bytes)&(1<<0) != 0
    }
    
    // HasTag returns true iff there is tag data following this name
    func (n Name) HasTag() bool {
    	return (*n.Bytes)&(1<<1) != 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 17 21:09:59 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  8. src/go/doc/reader.go

    	shadowedPredecl map[string]bool
    	fixmap          map[string][]*ast.InterfaceType
    }
    
    func (r *reader) isVisible(name string) bool {
    	return r.mode&AllDecls != 0 || token.IsExported(name)
    }
    
    // lookupType returns the base type with the given name.
    // If the base type has not been encountered yet, a new
    // type with the given name but no associated declaration
    // is added to the type map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  9. src/go/ast/filter.go

    // ----------------------------------------------------------------------------
    // Export filtering
    
    // exportFilter is a special filter function to extract exported nodes.
    func exportFilter(name string) bool {
    	return IsExported(name)
    }
    
    // FileExports trims the AST for a Go source file in place such that
    // only exported nodes remain: all top-level identifiers which are not exported
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  10. src/encoding/json/encode.go

    					if t.Kind() == reflect.Pointer {
    						t = t.Elem()
    					}
    					if !sf.IsExported() && t.Kind() != reflect.Struct {
    						// Ignore embedded fields of unexported non-struct types.
    						continue
    					}
    					// Do not ignore embedded fields of unexported struct types
    					// since they may have exported fields.
    				} else if !sf.IsExported() {
    					// Ignore unexported non-embedded fields.
    					continue
    				}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
Back to top