Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 58 for Shift4 (0.15 sec)

  1. src/runtime/mgcpacer.go

    // the two assist ratio values being exact reciprocals of one another, since
    // the two values are used to convert values from different sources.
    //
    // The worst case result of this raciness is that we may miss a larger shift
    // in the ratio (say, if we decide to pace more aggressively against the
    // hard heap goal) but even this "hard goal" is best-effort (see #40460).
    // The dedicated GC should ensure we don't exceed the hard goal by too much
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/cmd/asm/internal/asm/testdata/arm.s

    	SLL	R5, R6, R7           // 1675a0e1
    	SLL.S	R5, R6, R7           // 1675b0e1
    	SLL	R5, R7               // 1775a0e1
    	SLL.S	R5, R7               // 1775b0e1
    
    // Ops with zero shifts should encode as left shifts
    	ADD	R0<<0, R1, R2	     // 002081e0
    	ADD	R0>>0, R1, R2	     // 002081e0
    	ADD	R0->0, R1, R2	     // 002081e0
    	ADD	R0@>0, R1, R2	     // 002081e0
    	MOVW	R0<<0(R1), R2        // 002091e7
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 15 20:51:01 UTC 2023
    - 69K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

            ExcludeSpec resolutionFilter = computeModuleResolutionFilter(incomingEdges);
    
            // Virtual platforms require their constraints to be recomputed each time as each module addition can cause a shift in versions
            if (!isVirtualPlatformNeedsRefresh()) {
                // Check if node was previously traversed with the same net exclusion when not a virtual platform
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  4. src/runtime/map.go

    	B           uint8
    	i           uint8
    	bucket      uintptr
    	checkBucket uintptr
    }
    
    // bucketShift returns 1<<b, optimized for code generation.
    func bucketShift(b uint8) uintptr {
    	// Masking the shift amount allows overflow checks to be elided.
    	return uintptr(1) << (b & (goarch.PtrSize*8 - 1))
    }
    
    // bucketMask returns 1<<b - 1, optimized for code generation.
    func bucketMask(b uint8) uintptr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/main/resources/org/gradle/api/tasks/diagnostics/htmldependencyreport/jquery.jstree.js

    				'.jstree li a ins { height:16px; width:16px; margin-right:3px; } ' +
    				'.jstree-rtl li a ins { margin-right:0px; margin-left:3px; } ';
    		}
    		// Correct IE 7 (shifts anchor nodes onhover)
    		if(/msie/.test(u) && parseInt(v, 10) == 7) {
    			is_ie7 = true;
    			css_string += '.jstree li a { border-width:0 !important; padding:0px 2px !important; } ';
    		}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 09:03:42 UTC 2021
    - 49.5K bytes
    - Viewed (0)
  6. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

            if (typeof options.startDate...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 13 04:21:06 UTC 2020
    - 65.7K bytes
    - Viewed (0)
  7. src/time/format.go

    		// importing fmt or strconv
    		// - try to use FixedZone, which would also require escaping the name
    		// and would represent e.g. "America/Los_Angeles" daylight saving time
    		// shifts inaccurately
    		// - use the pointer format, which is no worse than you'd get with the
    		// old fmt.Sprintf("%#v", t) format.
    		//
    		// Of these, Location(loc.name) is the least disruptive. This is an edge
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/prove.go

    			bits := 8 * v.Type.Size()
    			if v.Args[1].isGenericIntConst() && v.Args[1].AuxInt >= bits-1 && ft.isNonNegative(v.Args[0]) {
    				if b.Func.pass.debug > 0 {
    					b.Func.Warnl(v.Pos, "Proved %v shifts to zero", v.Op)
    				}
    				switch bits {
    				case 64:
    					v.reset(OpConst64)
    				case 32:
    					v.reset(OpConst32)
    				case 16:
    					v.reset(OpConst16)
    				case 8:
    					v.reset(OpConst8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  9. src/cmd/internal/testdir/testdir_test.go

    // the 1.18 compiler using the new types2 type checker, or pass with sub-optimal
    // error(s).
    
    // List of files that the compiler cannot errorcheck with the new typechecker (types2).
    var types2Failures = setOf(
    	"shift1.go",               // types2 reports two new errors which are probably not right
    	"fixedbugs/issue10700.go", // types2 should give hint about ptr to interface
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  10. src/runtime/malloc.go

    	// large. 48 bits leads to 32MB arena index allocations, which
    	// is about the practical threshold.
    	arenaL2Bits = heapAddrBits - logHeapArenaBytes - arenaL1Bits
    
    	// arenaL1Shift is the number of bits to shift an arena frame
    	// number by to compute an index into the first level arena map.
    	arenaL1Shift = arenaL2Bits
    
    	// arenaBits is the total bits in a combined arena map index.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top