Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 36 for IsExported (0.48 sec)

  1. src/cmd/compile/internal/types2/typestring.go

    	defer delete(w.seen, typ)
    
    	switch t := typ.(type) {
    	case nil:
    		w.error("nil")
    
    	case *Basic:
    		// exported basic types go into package unsafe
    		// (currently this is just unsafe.Pointer)
    		if isExported(t.name) {
    			if obj, _ := Unsafe.scope.Lookup(t.name).(*TypeName); obj != nil {
    				w.typeName(obj)
    				break
    			}
    		}
    		w.string(t.name)
    
    	case *Array:
    		w.byte('[')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/insert_main_function.cc

      }
    
      StringRef getDescription() const override {
        return "Inserts the main function to the module.";
      }
    
      void runOnOperation() override;
    };
    
    // Checks if a FuncOp is exported.
    bool IsExported(func::FuncOp op) {
      auto exported_names =
          op->getAttrOfType<ArrayAttr>(kTfSavedModelExportedNamesAttr);
      return exported_names && !exported_names.empty();
    }
    
    // Check if a function is an entry function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  3. src/net/rpc/server.go

    	for t.Kind() == reflect.Pointer {
    		t = t.Elem()
    	}
    	// PkgPath will be non-empty even for an exported type,
    	// so we need to check the type name as well.
    	return token.IsExported(t.Name()) || t.PkgPath() == ""
    }
    
    // Register publishes in the server the set of methods of the
    // receiver value that satisfy the following conditions:
    //   - exported method of exported type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  4. src/go/types/typestring.go

    	defer delete(w.seen, typ)
    
    	switch t := typ.(type) {
    	case nil:
    		w.error("nil")
    
    	case *Basic:
    		// exported basic types go into package unsafe
    		// (currently this is just unsafe.Pointer)
    		if isExported(t.name) {
    			if obj, _ := Unsafe.scope.Lookup(t.name).(*TypeName); obj != nil {
    				w.typeName(obj)
    				break
    			}
    		}
    		w.string(t.name)
    
    	case *Array:
    		w.byte('[')
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:01:18 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. src/cmd/vendor/rsc.io/markdown/parse.go

    	v := reflect.ValueOf(b)
    	v = reflect.Indirect(v)
    	if v.Kind() != reflect.Struct {
    		fmt.Fprintf(buf, " %v", b)
    	}
    	t := v.Type()
    	for i := 0; i < t.NumField(); i++ {
    		tf := t.Field(i)
    		if !tf.IsExported() {
    			continue
    		}
    		if tf.Type == inlinesType {
    			printis(buf, v.Field(i).Interface().([]Inline))
    		} else if tf.Type.Kind() == reflect.Slice && tf.Type.Elem().Kind() == reflect.String {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top