Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 52 for archInits (0.14 sec)

  1. src/vendor/golang.org/x/sys/cpu/cpu_linux.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !386 && !amd64 && !amd64p32 && !arm64
    
    package cpu
    
    func archInit() {
    	if err := readHWCAP(); err != nil {
    		return
    	}
    	doinit()
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 322 bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/test/kotlin/org/gradle/kotlin/dsl/architecture/PackageDependencyRulesTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.kotlin.dsl.architecture
    
    import com.tngtech.archunit.core.importer.ClassFileImporter
    import com.tngtech.archunit.lang.syntax.ArchRuleDefinition.noClasses
    
    
    import org.junit.Test
    
    
    class PackageDependencyRulesTest {
    
        @Test
        fun `execution should not depend on provider`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. src/cmd/link/internal/amd64/obj.go

    		Dwarfreglr: dwarfRegLR,
    		// 0xCC is INT $3 - breakpoint instruction
    		CodePad: []byte{0xCC},
    
    		Plan9Magic:  uint32(4*26*26 + 7),
    		Plan9_64Bit: true,
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    		MachorelocSize:   8,
    		PEreloc1:         pereloc1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  4. src/cmd/link/internal/arm64/obj.go

    		Minalign:   minAlign,
    		Dwarfregsp: dwarfRegSP,
    		Dwarfreglr: dwarfRegLR,
    		TrampLimit: 0x7c00000, // 26-bit signed offset * 4, leave room for PLT etc.
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Extreloc:         extreloc,
    		Gentext:          gentext,
    		GenSymsLate:      gensymlate,
    		Machoreloc1:      machoreloc1,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/sys/cpu/cpu_other_riscv64.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && riscv64
    
    package cpu
    
    func archInit() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 243 bytes
    - Viewed (0)
  6. src/vendor/golang.org/x/sys/cpu/cpu_other_arm.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && arm
    
    package cpu
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 218 bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_other_mips64x.go

    // Copyright 2020 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !linux && (mips64 || mips64le)
    
    package cpu
    
    func archInit() {
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 256 bytes
    - Viewed (0)
  8. src/vendor/golang.org/x/sys/cpu/cpu_other_ppc64x.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    //go:build !aix && !linux && (ppc64 || ppc64le)
    
    package cpu
    
    func archInit() {
    	PPC64.IsPOWER8 = true
    	Initialized = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 285 bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu_wasm.go

    // Make CacheLinePad an empty struct and hope that the usual struct alignment
    // rules are good enough.
    
    const cacheLineSize = 0
    
    func initOptions() {}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 439 bytes
    - Viewed (0)
  10. src/vendor/golang.org/x/sys/cpu/cpu_aix.go

    // license that can be found in the LICENSE file.
    
    //go:build aix
    
    package cpu
    
    const (
    	// getsystemcfg constants
    	_SC_IMPL     = 2
    	_IMPL_POWER8 = 0x10000
    	_IMPL_POWER9 = 0x20000
    )
    
    func archInit() {
    	impl := getsystemcfg(_SC_IMPL)
    	if impl&_IMPL_POWER8 != 0 {
    		PPC64.IsPOWER8 = true
    	}
    	if impl&_IMPL_POWER9 != 0 {
    		PPC64.IsPOWER8 = true
    		PPC64.IsPOWER9 = true
    	}
    
    	Initialized = true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 605 bytes
    - Viewed (0)
Back to top