Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 100 for Adjustment (0.45 sec)

  1. src/cmd/internal/obj/riscv/obj.go

    			//
    			// This is to avoid confusing pctospadj, which sums
    			// Spadj from function entry to each PC, and shouldn't
    			// count adjustments from earlier epilogues, since they
    			// won't affect later PCs.
    			p.Spadj = int32(stacksize)
    
    		case AADDI:
    			// Refine Spadjs account for adjustment via ADDI instruction.
    			if p.To.Type == obj.TYPE_REG && p.To.Reg == REG_SP && p.From.Type == obj.TYPE_CONST {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  2. src/runtime/runtime2.go

    //
    // The argp and link fields are stack pointers, but don't need special
    // handling during stack growth: because they are pointer-typed and
    // _panic values only live on the stack, regular stack pointer
    // adjustment takes care of them.
    type _panic struct {
    	argp unsafe.Pointer // pointer to arguments of deferred call run during panic; cannot move - known to liblink
    	arg  any            // argument to panic
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 47.9K bytes
    - Viewed (0)
  3. src/runtime/mgcpacer.go

    	// terms of heap objects, but it takes more than X bytes (e.g. due to fragmentation) to store
    	// X bytes worth of objects.
    	//
    	// The final adjustment (marker 3) reduces the maximum possible memory limit heap goal by
    	// memoryLimitHeapGoalPercent. As the name implies, this is to provide additional headroom in
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  4. src/math/big/float.go

    				// mantissa overflow => adjust exponent
    				if z.exp >= MaxExp {
    					// exponent overflow
    					z.form = inf
    					return
    				}
    				z.exp++
    				// adjust mantissa: divide by 2 to compensate for exponent adjustment
    				shrVU(z.mant, z.mant, 1)
    				// set msb == carry == 1 from the mantissa overflow above
    				const msb = 1 << (_W - 1)
    				z.mant[n-1] |= msb
    			}
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  5. src/time/time.go

    // Go's division (like most hardware division instructions) rounds to
    // zero. We can still do those computations and then adjust the result
    // for a negative numerator, but it's annoying to write the adjustment
    // over and over. Instead, we can change to a different epoch so long
    // ago that all the times we care about will be positive, and then round
    // to zero and round down coincide. These presentation routines already
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.26.md

        - `apiserver_flowcontrol_demand_seats_high_watermark`: High watermark, over last adjustment period, of demand_seats
        - `apiserver_flowcontrol_demand_seats_average`: Time-weighted average, over last adjustment period, of demand_seats
        - `apiserver_flowcontrol_demand_seats_stdev`: Time-weighted standard deviation, over last adjustment period, of demand_seats
        - `apiserver_flowcontrol_demand_seats_smoothed`: Smoothed seat demands
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 16:24:51 UTC 2024
    - 425.7K bytes
    - Viewed (0)
  7. cluster/gce/windows/k8s-node-setup.psm1

      max_retry_wait 30
      # Disable the limit on the number of retries (retry forever).
      disable_retry_limit
      # Use multiple threads for processing.
      num_threads 2
      use_grpc true
      # Skip timestamp adjustment as this is in a controlled environment with
      # known timestamp format. This helps with CPU usage.
      adjust_invalid_timestamps false
    </match>
    # Attach local_resource_id for 'k8s_node' monitored resource.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/s390x/asmz.go

    			zRIL(_b, op_STHRL, uint32(p.From.Reg), 0, asm)
    		case AMOVB, AMOVBZ: // The zero extension doesn't affect store instructions
    			zRIL(_b, op_LARL, regtmp(p), 0, asm)
    			adj := uint32(0) // adjustment needed for odd addresses
    			if i2&1 != 0 {
    				i2 -= 1
    				adj = 1
    			}
    			zRX(op_STC, uint32(p.From.Reg), 0, regtmp(p), adj, asm)
    		case AFMOVD:
    			zRIL(_b, op_LARL, regtmp(p), 0, asm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 17:46:09 UTC 2024
    - 176.7K bytes
    - Viewed (0)
  9. dbflute_fess/dfprop/_readme.txt

    o outsideSqlMap.dfprop
    o sequenceMap.dfprop
    
    Properties for ReplaceSchema:
    o replaceSchemaMap.dfprop
    
    Properties for documents:
    o documentMap.dfprop
    
    Properties for non-functional adjustments:
    o sourceCopyright.dfprop
    o infraMap.dfprop (manual making)
    
    Properties for plug-ins:
    o freeGenMap.dfprop (manual making)
    o lastafluteMap.dfprop (manual making)
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 29 07:34:32 UTC 2018
    - 930 bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/test/issue42018_windows.go

    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    	// stack and checking for pointer adjustments. Trick from
    	// test/fixedbugs/issue40954.go.
    	var i int
    	handle := C.HANDLE(unsafe.Pointer(uintptr(unsafe.Pointer(&i))))
    	recurseHANDLE(100, handle, uintptr(unsafe.Pointer(&i)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top