Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 61 for power9 (0.3 sec)

  1. src/runtime/mprof.go

    func (c *mProfCycleHolder) increment() {
    	// We explicitly wrap mProfCycle rather than depending on
    	// uint wraparound because the memRecord.future ring does not
    	// itself wrap at a power of two.
    	for {
    		prev := c.value.Load()
    		cycle := prev >> 1
    		cycle = (cycle + 1) % mProfCycleWrap
    		next := cycle << 1
    		if c.value.CompareAndSwap(prev, next) {
    			break
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    The native software plugins make use of the Gradle software model.
    
    
    [[sec:native_features]]
    == Features
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
  3. src/main/webapp/css/admin/font-awesome.min.css

    e"}.fa-poll:before{content:"\f681"}.fa-poll-h:before{content:"\f682"}.fa-poo:before{content:"\f2fe"}.fa-poo-storm:before{content:"\f75a"}.fa-poop:before{content:"\f619"}.fa-portrait:before{content:"\f3e0"}.fa-pound-sign:before{content:"\f154"}.fa-power-off:before{content:"\f011"}.fa-pray:before{content:"\f683"}.fa-praying-hands:before{content:"\f684"}.fa-prescription:before{content:"\f5b1"}.fa-prescription-bottle:before{content:"\f485"}.fa-prescription-bottle-alt:before{content:"\f486"}.fa-print...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Dec 14 21:22:25 UTC 2019
    - 55.8K bytes
    - Viewed (0)
  4. src/runtime/mgcpacer.go

    	// and the end of a GC (heapLive == heapGoal).
    	//
    	// The constants are obscured in this way for efficiency. The denominator
    	// of the fraction is always a power-of-two for a quick division, so that
    	// the numerator is a single constant integer multiplication.
    	triggerRatioDen = 64
    
    	// The minimum trigger constant was chosen empirically: given a sufficiently
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      let description = [{
    The generated values are uniform integers in the range `[minval, maxval)`.
    The lower bound `minval` is included in the range, while the upper bound
    `maxval` is excluded.
    
    The random integers are slightly biased unless `maxval - minval` is an exact
    power of two.  The bias is small for values of `maxval - minval` significantly
    smaller than the range of the output (either `2^32` or `2^64`).
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  6. CHANGELOG/CHANGELOG-1.3.md

    * Add a client flag to delete "--now" for grace period 0 ([#23756](https://github.com/kubernetes/kubernetes/pull/23756), [@smarterclayton](https://github.com/smarterclayton))
    * add act-as powers ([#23549](https://github.com/kubernetes/kubernetes/pull/23549), [@deads2k](https://github.com/deads2k))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=create-archive-example]"]
    include::sample[dir="snippets/files/copy/groovy",files="build.gradle[tags=create-archive-example]"]
    ====
    
    The full power of copy specifications is available to you when creating archives, which means you can do content filtering, file renaming, or anything else covered in the previous section.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  8. src/sync/atomic/atomic_test.go

    // (Does the function work as advertised?)
    //
    // Test that the Add functions add correctly.
    // Test that the CompareAndSwap functions actually
    // do the comparison and the swap correctly.
    //
    // The loop over power-of-two values is meant to
    // ensure that the operations apply to the full word size.
    // The struct fields x.before and x.after check that the
    // operations do not extend past the full word size.
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 71.4K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/riscv/obj.go

    			}
    
    		case obj.APCALIGN:
    			alignedValue := p.From.Offset
    			if (alignedValue&(alignedValue-1) != 0) || 4 > alignedValue || alignedValue > 2048 {
    				ctxt.Diag("alignment value of an instruction must be a power of two and in the range [4, 2048], got %d\n", alignedValue)
    			}
    			// Update the current text symbol alignment value.
    			if int32(alignedValue) > cursym.Func().Align {
    				cursym.Func().Align = int32(alignedValue)
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  10. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    // maxLengthMask is a mask for the maxLength value.
    const maxLengthMask = 0x1f << maxLengthShift
    
    // MaxLength returns an Option that limits the maximum length of a
    // demangled string. The maximum length is expressed as a power of 2,
    // so a value of 1 limits the returned string to 2 characters, and
    // a value of 16 limits the returned string to 65,536 characters.
    // The value must be between 1 and 30.
    func MaxLength(pow int) Option {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
Back to top