Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 351 for calculations (0.18 sec)

  1. src/math/big/int.go

    			if extended {
    				// Ua = u0*Ua + v0*Ub
    				// Ub = u1*Ua + v1*Ub
    				lehmerUpdate(Ua, Ub, q, r, s, t, u0, u1, v0, v1, even)
    			}
    
    		} else {
    			// Single-digit calculations failed to simulate any quotients.
    			// Do a standard Euclidean step.
    			euclidUpdate(A, B, Ua, Ub, q, r, s, t, extended)
    		}
    	}
    
    	if len(B.abs) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/_gen/genericOps.go

    	{name: "Add16", argLength: 2, commutative: true},
    	{name: "Add32", argLength: 2, commutative: true},
    	{name: "Add64", argLength: 2, commutative: true},
    	{name: "AddPtr", argLength: 2}, // For address calculations.  arg0 is a pointer and arg1 is an int.
    	{name: "Add32F", argLength: 2, commutative: true},
    	{name: "Add64F", argLength: 2, commutative: true},
    
    	{name: "Sub8", argLength: 2}, // arg0 - arg1
    	{name: "Sub16", argLength: 2},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  3. src/runtime/mpagealloc.go

    			// We're at level zero, so that means we've exhausted our search.
    			return 0, maxSearchAddr()
    		}
    
    		// We're not at level zero, and we exhausted the level we were looking in.
    		// This means that either our calculations were wrong or the level above
    		// lied to us. In either case, dump some useful state and throw.
    		print("runtime: summary[", l-1, "][", lastSumIdx, "] = ", lastSum.start(), ", ", lastSum.max(), ", ", lastSum.end(), "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 39.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // We need constant input shape to perform padding calculations later.
        DenseIntElementsAttr input_shape_attr;
        if (!matchPattern(op.getShape(), m_Constant(&input_shape_attr)))
          return failure();
    
        // We also need constant begin/end indices and strides to perform padding
        // calculations.
        // Bounded shape after performing strided slice
        SmallVector<int64_t, 4> shape;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (1)
  5. src/cmd/compile/internal/ssa/_gen/S390XOps.go

    		// R10 is reserved by the assembler.
    		gp   = buildReg("R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R11 R12 R14")
    		gpg  = gp | buildReg("g")
    		gpsp = gp | sp
    
    		// R0 is considered to contain the value 0 in address calculations.
    		ptr     = gp &^ r0
    		ptrsp   = ptr | sp
    		ptrspsb = ptrsp | sb
    
    		fp         = buildReg("F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  6. src/runtime/mgcpacer.go

    // available).
    func (c *gcControllerState) revise() {
    	gcPercent := c.gcPercent.Load()
    	if gcPercent < 0 {
    		// If GC is disabled but we're running a forced GC,
    		// act like GOGC is huge for the below calculations.
    		gcPercent = 100000
    	}
    	live := c.heapLive.Load()
    	scan := c.heapScan.Load()
    	work := c.heapScanWork.Load() + c.stackScanWork.Load() + c.globalsScanWork.Load()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.4.md

    * Fix kube vsphere.kerneltime ([#34997](https://github.com/kubernetes/kubernetes/pull/34997), [@kerneltime](https://github.com/kerneltime))
    * HPA: fixed wrong count for target replicas calculations ([#34821](https://github.com/kubernetes/kubernetes/pull/34821)). ([#34955](https://github.com/kubernetes/kubernetes/pull/34955), [@jszczepkowski](https://github.com/jszczepkowski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.5.md

    * Updated Go to 1.7 ([#28742](https://github.com/kubernetes/kubernetes/pull/28742), [@jessfraz](https://github.com/jessfraz))
    * HPA: fixed wrong count for target replicas calculations ([#34821](https://github.com/kubernetes/kubernetes/pull/34821)). ([#34955](https://github.com/kubernetes/kubernetes/pull/34955), [@jszczepkowski](https://github.com/jszczepkowski))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (1)
  9. pkg/controller/podautoscaler/replica_calculator.go

    	}
    	podList, err := c.podLister.Pods(namespace).List(selector)
    	if err != nil {
    		return 0, 0, 0, time.Time{}, fmt.Errorf("unable to get pods while calculating replica count: %v", err)
    	}
    	if len(podList) == 0 {
    		return 0, 0, 0, time.Time{}, fmt.Errorf("no pods returned by selector while calculating replica count")
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  10. pkg/controller/job/job_controller.go

    	// When adopting Pods, this operation adds an ownerRef and finalizers.
    	pods, err = cm.ClaimPods(ctx, pods)
    	if err != nil {
    		return pods, err
    	}
    	// Set finalizer on adopted pods for the remaining calculations.
    	for i, p := range pods {
    		adopted := true
    		for _, r := range p.OwnerReferences {
    			if r.UID == j.UID {
    				adopted = false
    				break
    			}
    		}
    		if adopted && !hasJobTrackingFinalizer(p) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (1)
Back to top