Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for _typ (0.04 sec)

  1. src/runtime/mfinal.go

    		return
    	}
    	e := efaceOf(&obj)
    	etyp := e._type
    	if etyp == nil {
    		throw("runtime.SetFinalizer: first argument is nil")
    	}
    	if etyp.Kind_&abi.KindMask != abi.Pointer {
    		throw("runtime.SetFinalizer: first argument is " + toRType(etyp).string() + ", not pointer")
    	}
    	ot := (*ptrtype)(unsafe.Pointer(etyp))
    	if ot.Elem == nil {
    		throw("nil elem type!")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 01:56:56 UTC 2024
    - 19K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/copylock/copylock.go

    				}
    				return append(subpath, typ.String())
    			}
    		}
    		return nil
    	}
    
    	for {
    		atyp, ok := typ.Underlying().(*types.Array)
    		if !ok {
    			break
    		}
    		typ = atyp.Elem()
    	}
    
    	ttyp, ok := typ.Underlying().(*types.Tuple)
    	if ok {
    		for i := 0; i < ttyp.Len(); i++ {
    			subpath := lockPath(tpkg, ttyp.At(i).Type(), seen)
    			if subpath != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/deadcode.go

    // methodsig is a typed method signature (name + type).
    type methodsig struct {
    	name string
    	typ  loader.Sym // type descriptor symbol of the function
    }
    
    // methodref holds the relocations from a receiver type symbol to its
    // method. There are three relocations, one for each of the fields in
    // the reflect.method struct: mtyp, ifn, and tfn.
    type methodref struct {
    	m   methodsig
    	src loader.Sym // receiver type symbol
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 14:52:41 UTC 2024
    - 19K bytes
    - Viewed (0)
  4. build/common.sh

      # are hidden from rsync so they will be deleted in the target container if
      # they exist. This will allow them to be re-created in the container if
      # necessary.
      kube::build::rsync \
        --delete \
        --filter='- /_tmp/' \
        --filter='- /_output/' \
        --filter='- /' \
        "${KUBE_ROOT}/" "rsync://k8s@${KUBE_RSYNC_ADDR}/k8s/"
    
      kube::build::stop_rsyncd_container
    }
    
    # Copy all build results back out.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 16:13:15 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    // in more detail.
    type rangeType struct {
    	typ  event.Type // "Begin" event.
    	desc stringID   // Optional subtype.
    }
    
    // makeRangeType constructs a new rangeType.
    func makeRangeType(typ event.Type, desc stringID) rangeType {
    	if styp := go122.Specs()[typ].StartEv; styp != go122.EvNone {
    		typ = styp
    	}
    	return rangeType{typ, desc}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssagen/ssa.go

    }
    
    // newObject returns an SSA value denoting new(typ).
    func (s *state) newObject(typ *types.Type, rtype *ssa.Value) *ssa.Value {
    	if typ.Size() == 0 {
    		return s.newValue1A(ssa.OpAddr, types.NewPtr(typ), ir.Syms.Zerobase, s.sb)
    	}
    	if rtype == nil {
    		rtype = s.reflectType(typ)
    	}
    	return s.rtcall(ir.Syms.Newobject, true, []*types.Type{types.NewPtr(typ)}, rtype)[0]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/rewrite.go

    // a register. It assumes float64 values will always fit into registers
    // even if that isn't strictly true.
    func registerizable(b *Block, typ *types.Type) bool {
    	if typ.IsPtrShaped() || typ.IsFloat() || typ.IsBoolean() {
    		return true
    	}
    	if typ.IsInteger() {
    		return typ.Size() <= b.Func.Config.RegSize
    	}
    	return false
    }
    
    // needRaceCleanup reports whether this call to racefuncenter/exit isn't needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top