Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 228 for alignUp (0.25 sec)

  1. src/runtime/mpallocbits_test.go

    		want[PallocChunkPages/64-1] = 1 << 63
    		test(t, PallocChunkPages-1, 1, want)
    	})
    	t.Run("Inner", func(t *testing.T) {
    		want := new(PallocBits)
    		want[2] = 0x3e
    		test(t, 129, 5, want)
    	})
    	t.Run("Aligned", func(t *testing.T) {
    		want := new(PallocBits)
    		want[2] = ^uint64(0)
    		want[3] = ^uint64(0)
    		test(t, 128, 128, want)
    	})
    	t.Run("Begin", func(t *testing.T) {
    		want := new(PallocBits)
    		want[0] = ^uint64(0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/resolution/failure/ResolutionCandidateAssessor.java

    import java.util.stream.Collectors;
    
    /**
     * A utility class used by {@link ResolutionFailureHandler} to assess and classify
     * how the attributes of candidate variants during a single attempt at dependency resolution
     * align with the requested attributes.
     */
    public final class ResolutionCandidateAssessor {
        private final ImmutableAttributes requestedAttributes;
        private final AttributeMatcher attributeMatcher;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/plugin/devel/variants/TargetJVMVersionOnPluginTooNewFailureDescriberIntegrationTest.groovy

                    id "application"
                    id "org.springframework.boot" version "3.2.1"           // Any version of Spring Boot >= 3
                    id "io.spring.dependency-management" version "1.1.4"    // Align this with the Spring Boot version (see TestedVersions)
                }
    
                ${mavenCentralRepository()}
    
                application {
                    applicationDefaultJvmArgs = ['-DFOO=42']
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 20:48:53 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  4. JavadocStyleGuide.md

    Some HTML element types allow authors to omit end tags: `<p>` and `<li>`.
    
    ### 1.1.3 Paragraphs
    
    One blank line—that is, a line containing only the aligned leading asterisk (`*`)—appears between the last paragraph and before the group of block tags if present:
    
    ```java
    /**
     * that draw the image will incrementally paint on the screen.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/wasm/wasmobj.go

    			}
    			writeUleb128(w, align(p.As))
    			writeUleb128(w, uint64(p.From.Offset))
    
    		case AI32Store, AI64Store, AF32Store, AF64Store, AI32Store8, AI32Store16, AI64Store8, AI64Store16, AI64Store32:
    			if p.To.Offset < 0 {
    				panic("negative offset")
    			}
    			if p.From.Offset > math.MaxUint32 {
    				ctxt.Diag("bad offset in %v", p)
    			}
    			writeUleb128(w, align(p.As))
    			writeUleb128(w, uint64(p.To.Offset))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  6. src/runtime/asm_ppc64x.s

    	MOVD	g, R3			// arg 0: G
    	// C functions expect 32 (48 for AIX) bytes of space on caller
    	// stack frame and a 16-byte aligned R1
    	MOVD	R1, R14			// save current stack
    	SUB	$cgoCalleeStackSize, R1	// reserve the callee area
    	RLDCR	$0, R1, $~15, R1	// 16-byte align
    	BL	(CTR)			// may clobber R0, R3-R12
    	MOVD	R14, R1			// restore stack
    #ifndef GOOS_aix
    	MOVD	24(R1), R2
    #endif
    	XOR	R0, R0			// fix R0
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 45.4K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/typecheck/_builtin/runtime.go

    func closechan(hchan chan<- any)
    func chanlen(hchan any) int
    func chancap(hchan any) int
    
    var writeBarrier struct {
    	enabled bool
    	pad     [3]byte
    	cgo     bool
    	alignme uint64
    }
    
    // *byte is really *runtime.Type
    func typedmemmove(typ *byte, dst *any, src *any)
    func typedmemclr(typ *byte, dst *any)
    func typedslicecopy(typ *byte, dstPtr *any, dstLen int, srcPtr *any, srcLen int) int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 21:08:03 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	"fmt"
    )
    
    // An Inst is a single instruction.
    type Inst struct {
    	Prefix   Prefixes // Prefixes applied to the instruction.
    	Op       Op       // Opcode mnemonic
    	Opcode   uint32   // Encoded opcode bits, left aligned (first byte is Opcode>>24, etc)
    	Args     Args     // Instruction arguments, in Intel order
    	Mode     int      // processor mode in bits: 16, 32, or 64
    	AddrSize int      // address size in bits: 16, 32, or 64
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. src/syscall/mksyscall.pl

    			$n++;
    		} elsif($type eq "int64" && ($openbsd || $netbsd)) {
    			if (!$libc) {
    				push @args, "0";
    			}
    			if($libc && $arm && @args % 2) {
    				# arm abi specifies 64 bit argument must be 64 bit aligned.
    				push @args, "0"
    			}
    			if($_32bit eq "big-endian") {
    				push @args, "uintptr($name>>32)", "uintptr($name)";
    			} elsif($_32bit eq "little-endian") {
    				push @args, "uintptr($name)", "uintptr($name>>32)";
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:15:02 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. src/main/java/jcifs/pac/PacLogonInfo.java

                    }
                    groups = new PacGroup[groupCount];
                    for ( int i = 0; i < groupCount; i++ ) {
                        pacStream.align(4);
                        SID id = pacStream.readId();
                        int attributes = pacStream.readInt();
                        groups[ i ] = new PacGroup(id, attributes);
                    }
                }
    
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 11.4K bytes
    - Viewed (0)
Back to top