Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 14 of 14 for Multiplication (0.32 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue.go

    func (p *PriorityQueue) calculateBackoffDuration(podInfo *framework.QueuedPodInfo) time.Duration {
    	duration := p.podInitialBackoffDuration
    	for i := 1; i < podInfo.Attempts; i++ {
    		// Use subtraction instead of addition or multiplication to avoid overflow.
    		if duration > p.podMaxBackoffDuration-duration {
    			return p.podMaxBackoffDuration
    		}
    		duration += duration
    	}
    	return duration
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  2. src/runtime/mgcscavenge.go

    	// looks strange but the purpose is to arrive at an integer division
    	// (e.g. if retainExtraPercent = 12.5, then we get a divisor of 8)
    	// that also avoids the overflow from a multiplication.
    	gcPercentGoal += gcPercentGoal / (1.0 / (retainExtraPercent / 100.0))
    	// Align it to a physical page boundary to make the following calculations
    	// a bit more exact.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    	dwarf.Uleb128put(d, fsd, 1)                         // code_alignment_factor
    	dwarf.Sleb128put(d, fsd, dataAlignmentFactor)       // all CFI offset calculations include multiplication with this factor
    	dwarf.Uleb128put(d, fsd, int64(thearch.Dwarfreglr)) // return_address_register
    
    	fsu.AddUint8(dwarf.DW_CFA_def_cfa)                  // Set the current frame address..
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/riscv/obj.go

    	ASUBW & obj.AMask:  rIIIEncoding,
    	ASRAW & obj.AMask:  rIIIEncoding,
    
    	// 5.3: Load and Store Instructions (RV64I)
    	ALD & obj.AMask: iIEncoding,
    	ASD & obj.AMask: sIEncoding,
    
    	// 7.1: Multiplication Operations
    	AMUL & obj.AMask:    rIIIEncoding,
    	AMULH & obj.AMask:   rIIIEncoding,
    	AMULHU & obj.AMask:  rIIIEncoding,
    	AMULHSU & obj.AMask: rIIIEncoding,
    	AMULW & obj.AMask:   rIIIEncoding,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
Back to top