Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 281 for Alignment (0.27 sec)

  1. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClassFromLibrary.kt

    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public class RClass {}
    }
    
    // MODULE: main(lib)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon().RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 361 bytes
    - Viewed (0)
  2. src/runtime/runtime_mmap_test.go

    	if err == 0 {
    		t.Errorf("Mmap should have failed with half-page alignment %d, but succeeded: %v", ps/2, err)
    	}
    
    	// Mmap should succeed at a full page into the buffer.
    	_, err = runtime.Mmap(unsafe.Pointer(uintptr(b)+ps), ps, 0, runtime.MAP_ANON|runtime.MAP_PRIVATE|runtime.MAP_FIXED, -1, 0)
    	if err != 0 {
    		t.Errorf("Mmap at full-page alignment %d failed: %v", ps, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignment/groovy/settings.gradle

    rootProject.name = "dependency-alignment"...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 42 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/dependencyManagement/managingTransitiveDependencies-dependencyAlignmentWithPlatform/kotlin/settings.gradle.kts

    rootProject.name = "dependency-alignment-with-platform"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 101 bytes
    - Viewed (0)
  5. src/runtime/vdso_elf64.go

    	p_vaddr  uint64 /* Segment virtual address */
    	p_paddr  uint64 /* Segment physical address */
    	p_filesz uint64 /* Segment size in file */
    	p_memsz  uint64 /* Segment size in memory */
    	p_align  uint64 /* Segment alignment */
    }
    
    type elfShdr struct {
    	sh_name      uint32 /* Section name (string tbl index) */
    	sh_type      uint32 /* Section type */
    	sh_flags     uint64 /* Section flags */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  6. src/runtime/vdso_elf32.go

    	p_paddr  uint32 /* Segment physical address */
    	p_filesz uint32 /* Segment size in file */
    	p_memsz  uint32 /* Segment size in memory */
    	p_flags  uint32 /* Segment flags */
    	p_align  uint32 /* Segment alignment */
    }
    
    type elfShdr struct {
    	sh_name      uint32 /* Section name (string tbl index) */
    	sh_type      uint32 /* Section type */
    	sh_flags     uint32 /* Section flags */
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 28 18:17:57 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. src/runtime/pprof/defs_darwin_amd64.go

    	Max_protection   int32
    	Inheritance      uint32
    	Shared           uint32
    	Reserved         uint32
    	Offset           [8]byte // This is hand-edited since godefs generates: Pad_cgo_0 [8]byte. Cannot use uint64 due to alignment.
    	Behavior         int32
    	User_wired_count uint16
    	Pad_cgo_1        [2]byte
    }
    
    const (
    	_VM_PROT_READ    = 0x1
    	_VM_PROT_WRITE   = 0x2
    	_VM_PROT_EXECUTE = 0x4
    
    	_MACH_SEND_INVALID_DEST = 0x10000003
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 04 23:35:39 UTC 2023
    - 609 bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaNestedClass.kt

    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public static class RClass {}
    }
    
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon.RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 285 bytes
    - Viewed (0)
  9. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/javaInnerClassFromAnotherModule.kt

    // MODULE: dep
    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public class RClass {}
    }
    
    // MODULE: main(dep)
    // FILE: usage.kt
    package usage
    
    fun testJavaNestedClass(alignment: issue.pack.RowIcon.RClass) {
    }
    
    fun checkIt() {
        testJavaNestedClass(issue.pack.RowIcon().RClass())
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jan 03 21:35:12 UTC 2024
    - 316 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types/size.go

    		panic("bad package prefix")
    	}
    	return p.Prefix == "sync/atomic" || p.Prefix == "internal/runtime/atomic"
    }
    
    // CalcSize calculates and stores the size, alignment, eq/hash algorithm,
    // and ptrBytes for t.
    // If CalcSizeDisabled is set, and the size/alignment
    // have not already been calculated, it calls Fatal.
    // This is used to prevent data races in the back end.
    func CalcSize(t *Type) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 15K bytes
    - Viewed (0)
Back to top