Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for cutoff (0.3 sec)

  1. src/go/printer/nodes.go

    //     is 5 (use spaces to distinguish precedence) in Normal mode
    //     and 4 (never use spaces) in Compact mode.
    //
    //  3. If there are no level 4 operators or no level 5 operators, then the
    //     cutoff is 6 (always use spaces) in Normal mode
    //     and 4 (never use spaces) in Compact mode.
    func (p *printer) binaryExpr(x *ast.BinaryExpr, prec1, cutoff, depth int) {
    	prec := x.Op.Precedence()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 17 18:53:17 UTC 2023
    - 52.6K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal.go

    	maxRecommendation := prenormalizedDesiredReplicas
    	foundOldSample := false
    	oldSampleIndex := 0
    	cutoff := time.Now().Add(-a.downscaleStabilisationWindow)
    
    	a.recommendationsLock.Lock()
    	defer a.recommendationsLock.Unlock()
    	for i, rec := range a.recommendations[key] {
    		if rec.timestamp.Before(cutoff) {
    			foundOldSample = true
    			oldSampleIndex = i
    		} else if rec.recommendation > maxRecommendation {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/runtime/mbitmap.go

    		// into a register and use that register for the entire loop
    		// instead of repeatedly reading from memory.
    		// Handling fewer than 8 bits here makes the general loop simpler.
    		// The cutoff is goarch.PtrSize*8 - 7 to guarantee that when we add
    		// the pattern to a bit buffer holding at most 7 bits (a partial byte)
    		// it will not overflow.
    		src := dst
    		const maxBits = goarch.PtrSize*8 - 7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/net/dns/dnsmessage/message.go

    			name = append(name, '.')
    			currOff = endOff
    		case 0xC0: // Pointer
    			if currOff >= len(msg) {
    				return off, errInvalidPtr
    			}
    			c1 := msg[currOff]
    			currOff++
    			if ptr == 0 {
    				newOff = currOff
    			}
    			// Don't follow too many pointers, maybe there's a loop.
    			if ptr++; ptr > 10 {
    				return off, errTooManyPtr
    			}
    			currOff = (c^0xC0)<<8 | int(c1)
    		default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 69K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/xcoff.go

    	Listlen  uint32 // Length of import file ID string table
    	Lnimpid  int32  // Number of import file IDs
    	Lstlen   uint32 // Length of string table
    	Limpoff  uint64 // Offset to start of import file IDs
    	Lstoff   uint64 // Offset to start of string table
    	Lsymoff  uint64 // Offset to start of symbol table
    	Lrldoff  uint64 // Offset to start of relocation entries
    }
    
    // Loader Symbol
    type XcoffLdSym64 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 01 19:58:23 UTC 2023
    - 51.8K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ppc64/asm.go

    		toctramp := ldr.CreateSymForUpdate("TOC."+ldr.SymName(tramp.Sym()), 0)
    		toctramp.SetType(sym.SXCOFFTOC)
    		toctramp.AddAddrPlus(ctxt.Arch, target, offset)
    
    		r, _ := tramp.AddRel(objabi.R_ADDRPOWER_TOCREL_DS)
    		r.SetOff(0)
    		r.SetSiz(8) // generates 2 relocations: HA + LO
    		r.SetSym(toctramp.Sym())
    	} else if hasPCrel {
    		// pla r12, addr (PCrel). This works for static or PIC, with or without a valid TOC pointer.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/AMD64.rules

    (MOVQload [off] {sym} (SB) _) && symIsRO(sym) => (MOVQconst [int64(read64(sym, int64(off), config.ctxt.Arch.ByteOrder))])
    (MOVOstore [dstOff] {dstSym} ptr (MOVOload [srcOff] {srcSym} (SB) _) mem) && symIsRO(srcSym) =>
      (MOVQstore [dstOff+8] {dstSym} ptr (MOVQconst [int64(read64(srcSym, int64(srcOff)+8, config.ctxt.Arch.ByteOrder))])
        (MOVQstore [dstOff] {dstSym} ptr (MOVQconst [int64(read64(srcSym, int64(srcOff), config.ctxt.Arch.ByteOrder))]) mem))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 12 19:38:41 UTC 2024
    - 93.9K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    	ctxt.loader.SetSymValue(s, v)
    	return s
    }
    
    func datoff(ldr *loader.Loader, s loader.Sym, addr int64) int64 {
    	if uint64(addr) >= Segdata.Vaddr {
    		return int64(uint64(addr) - Segdata.Vaddr + Segdata.Fileoff)
    	}
    	if uint64(addr) >= Segtext.Vaddr {
    		return int64(uint64(addr) - Segtext.Vaddr + Segtext.Fileoff)
    	}
    	ldr.Errorf(s, "invalid datoff %#x", addr)
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. src/cmd/link/internal/ld/elf.go

    	if s == 0 {
    		panic("bad symbol in shsym2")
    	}
    	addr := ldr.SymValue(s)
    	if sh.Flags&uint64(elf.SHF_ALLOC) != 0 {
    		sh.Addr = uint64(addr)
    	}
    	sh.Off = uint64(datoff(ldr, s, addr))
    	sh.Size = uint64(ldr.SymSize(s))
    }
    
    func phsh(ph *ElfPhdr, sh *ElfShdr) {
    	ph.Vaddr = sh.Addr
    	ph.Paddr = ph.Vaddr
    	ph.Off = sh.Off
    	ph.Filesz = sh.Size
    	ph.Memsz = sh.Size
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/regalloc.go

    		// Walk down the dominator tree looking for a good place to
    		// put the spill of v.  At the start "best" is the best place
    		// we have found so far.
    		// TODO: find a way to make this O(1) without arbitrary cutoffs.
    		if v == nil {
    			panic(fmt.Errorf("nil v, s.orig[%d], vi = %v, spill = %s", i, vi, spill.LongString()))
    		}
    		best := v.Block
    		bestArg := v
    		var bestDepth int16
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:56 UTC 2023
    - 87.2K bytes
    - Viewed (0)
Back to top