Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for augPos (0.29 sec)

  1. cmd/sftp-server.go

    			sshPrivateKey = tokens[1]
    		case "pub-key-algos":
    			allowPubKeys = filterAlgos(arg, strings.Split(tokens[1], ","), supportedPubKeyAuthAlgos)
    		case "kex-algos":
    			allowKexAlgos = filterAlgos(arg, strings.Split(tokens[1], ","), supportedKexAlgos)
    		case "cipher-algos":
    			allowCiphers = filterAlgos(arg, strings.Split(tokens[1], ","), supportedCiphers)
    		case "mac-algos":
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jun 05 07:51:13 UTC 2024
    - 16K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/func.go

    	lssk := LocalSlotSplitKey{name, offset, t}
    	if als, ok := f.CanonicalLocalSplits[lssk]; ok {
    		return als
    	}
    	// Note: the _ field may appear several times.  But
    	// have no fear, identically-named but distinct Autos are
    	// ok, albeit maybe confusing for a debugger.
    	ls := f.fe.SplitSlot(name, sfx, offset, t)
    	f.CanonicalLocalSplits[lssk] = &ls
    	return &ls
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/ssagen/ssa.go

    	var lo, hi int64
    
    	// Opaque state for backend to use. Current backends use it to
    	// keep track of which helper registers have been zeroed.
    	var state uint32
    
    	// Iterate through declarations. Autos are sorted in decreasing
    	// frame offset order.
    	for _, n := range e.curfn.Dcl {
    		if !n.Needzero() {
    			continue
    		}
    		if n.Class != ir.PAUTO {
    			e.Fatalf(n.Pos(), "needzero class %d", n.Class)
    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