Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 78 for IsExported (0.28 sec)

  1. src/encoding/asn1/marshal.go

    	case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64:
    		return int64Encoder(v.Int()), nil
    	case reflect.Struct:
    		t := v.Type()
    
    		for i := 0; i < t.NumField(); i++ {
    			if !t.Field(i).IsExported() {
    				return nil, StructuralError{"struct contains unexported fields"}
    			}
    		}
    
    		startingField := 0
    
    		n := t.NumField()
    		if n == 0 {
    			return bytesEncoder(nil), nil
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

      // In the absence of any other information, use this name as the symbol table
      // name for this node.
      std::string GetDefaultSymbolTableName(int node_id) const;
      // Determines if a name is exported.
      bool IsExported(const std::string& name);
      // Main object graph traversal function.
      void RecursivelyVisitObjectGraph(int node_id);
      // Gets a stable StringRef from a std::string.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/runtime/iface.go

    			tname := rtyp.nameOff(t.Name)
    			if rtyp.typeOff(t.Mtyp) == itype && tname.Name() == iname {
    				pkgPath := pkgPath(tname)
    				if pkgPath == "" {
    					pkgPath = rtyp.nameOff(x.PkgPath).Name()
    				}
    				if tname.IsExported() || pkgPath == ipkg {
    					ifn := rtyp.textOff(t.Ifn)
    					if k == 0 {
    						fun0 = ifn // we'll set m.Fun[0] at the end
    					} else if firstTime {
    						methods[k] = ifn
    					}
    					continue imethods
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/typecheck/expr.go

    				// function is compiled as if in the source
    				// package of the generic function.
    				if !(ir.CurFunc != nil && strings.Contains(ir.CurFunc.Nname.Sym().Name, "[")) {
    					if s != nil && !types.IsExported(s.Name) && s.Pkg != types.LocalPkg {
    						base.Errorf("implicit assignment of unexported field '%s' in %v literal", s.Name, t)
    					}
    				}
    				// No pushtype allowed here. Must name fields for that.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  5. src/net/http/response_test.go

    	if hv.Type() != wv.Type() {
    		t.Errorf("%s: type mismatch %v want %v", prefix, hv.Type(), wv.Type())
    	}
    	for i := 0; i < hv.NumField(); i++ {
    		name := hv.Type().Field(i).Name
    		if !token.IsExported(name) {
    			continue
    		}
    		hf := hv.Field(i).Interface()
    		wf := wv.Field(i).Interface()
    		if !reflect.DeepEqual(hf, wf) {
    			t.Errorf("%s: %s = %v want %v", prefix, name, hf, wf)
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 19:01:29 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types2/named.go

    		}
    		n.underlying = u
    	}
    
    	return u
    }
    
    func (n *Named) lookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	n.resolve()
    	if samePkg(n.obj.pkg, pkg) || isExported(name) || foldCase {
    		// If n is an instance, we may not have yet instantiated all of its methods.
    		// Look up the method index in orig, and only instantiate method at the
    		// matching index (if any).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/resolver.go

    						// Note: Avoid eager resolve(name, obj) here, so we only
    						// resolve dot-imported objects as needed.
    
    						// A package scope may contain non-exported objects,
    						// do not import them!
    						if isExported(name) {
    							// declare dot-imported object
    							// (Do not use check.declare because it modifies the object
    							// via Object.setScopePos, which leads to a race condition;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 14:10:44 UTC 2024
    - 26.3K bytes
    - Viewed (0)
  8. src/go/types/named.go

    		}
    		n.underlying = u
    	}
    
    	return u
    }
    
    func (n *Named) lookupMethod(pkg *Package, name string, foldCase bool) (int, *Func) {
    	n.resolve()
    	if samePkg(n.obj.pkg, pkg) || isExported(name) || foldCase {
    		// If n is an instance, we may not have yet instantiated all of its methods.
    		// Look up the method index in orig, and only instantiate method at the
    		// matching index (if any).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 20:03:31 UTC 2024
    - 24K bytes
    - Viewed (0)
  9. src/go/types/resolver.go

    						// Note: Avoid eager resolve(name, obj) here, so we only
    						// resolve dot-imported objects as needed.
    
    						// A package scope may contain non-exported objects,
    						// do not import them!
    						if token.IsExported(name) {
    							// declare dot-imported object
    							// (Do not use check.declare because it modifies the object
    							// via Object.setScopePos, which leads to a race condition;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:22:59 UTC 2024
    - 26.1K bytes
    - Viewed (0)
  10. src/encoding/asn1/asn1.go

    		}
    		return
    	// TODO(dfc) Add support for the remaining integer types
    	case reflect.Struct:
    		structType := fieldType
    
    		for i := 0; i < structType.NumField(); i++ {
    			if !structType.Field(i).IsExported() {
    				err = StructuralError{"struct contains unexported fields"}
    				return
    			}
    		}
    
    		if structType.NumField() > 0 &&
    			structType.Field(0).Type == rawContentsType {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 31.8K bytes
    - Viewed (0)
Back to top