Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for gotype (0.09 sec)

  1. src/cmd/link/internal/ld/data.go

    func addstrdata(arch *sys.Arch, l *loader.Loader, name, value string) {
    	s := l.Lookup(name, 0)
    	if s == 0 {
    		return
    	}
    	if goType := l.SymGoType(s); goType == 0 {
    		return
    	} else if typeName := l.SymName(goType); typeName != "type:string" {
    		Errorf(nil, "%s: cannot set with -X: not a var of type string (%s)", name, typeName)
    		return
    	}
    	if !l.AttrReachable(s) {
    		return // don't bother setting unreachable variable
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/types/KtType.kt

    import org.jetbrains.kotlin.name.Name
    
    public sealed interface KaType : KaLifetimeOwner, KaAnnotated {
        public val nullability: KaTypeNullability
    
        /**
         * The abbreviated type for this expanded [KaType], or `null` if this type has not been expanded from an abbreviated type or the
         * abbreviated type cannot be resolved.
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Jun 10 20:18:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. pkg/workloadapi/workload.pb.go

    }
    
    func (m *Address) GetType() isAddress_Type {
    	if m != nil {
    		return m.Type
    	}
    	return nil
    }
    
    func (x *Address) GetWorkload() *Workload {
    	if x, ok := x.GetType().(*Address_Workload); ok {
    		return x.Workload
    	}
    	return nil
    }
    
    func (x *Address) GetService() *Service {
    	if x, ok := x.GetType().(*Address_Service); ok {
    		return x.Service
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssagen/ssa.go

    	if !ptr.Type.IsPtr() || !types.Identical(n.Type(), ptr.Type.Elem()) {
    		base.FatalfAt(n.Pos(), "setHeapaddr %L with type %v", n, ptr.Type)
    	}
    
    	// Declare variable to hold address.
    	sym := &types.Sym{Name: "&" + n.Sym().Name, Pkg: types.LocalPkg}
    	addr := s.curfn.NewLocal(pos, sym, types.NewPtr(n.Type()))
    	addr.SetUsed(true)
    	types.CalcSize(addr.Type())
    
    	if n.Class == ir.PPARAMOUT {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
Back to top