Search Options

Results per page
Sort
Preferred Languages
Advance

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

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

    // MODULE: dep
    // FILE: issue/pack/RowIcon.java
    package issue.pack;
    
    public class RowIcon {
        public static 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
    - 321 bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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. pkg/kubelet/cm/cpumanager/policy.go

    	// and is consulted to achieve NUMA aware resource alignment among this
    	// and other resource controllers.
    	GetTopologyHints(s state.State, pod *v1.Pod, container *v1.Container) map[string][]topologymanager.TopologyHint
    	// GetPodTopologyHints implements the topologymanager.HintProvider Interface
    	// and is consulted to achieve NUMA aware resource alignment per Pod
    	// among this and other resource controllers.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 03 16:26:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top