Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 56 for archInits (0.25 sec)

  1. 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)
  2. 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)
  3. 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)
  4. testing/architecture-test/build.gradle.kts

        group = "verification"
        description = "Sort the accepted api changes file alphabetically"
        apiChangesDirectory = acceptedApiChangesDirectory
    }
    
    val ruleStoreDir = layout.projectDirectory.dir("src/changes/archunit-store")
    
    tasks {
        val reorderRuleStore by registering(ReorderArchUnitRulesTask::class) {
            ruleFile = ruleStoreDir.file("stored.rules").asFile
        }
    
        test {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. src/cmd/link/main.go

    //
    // Then control flow passes to ld.Main, which parses flags, makes
    // some configuration decisions, and then gives the architecture
    // packages a second chance to modify the linker's configuration
    // via the ld.Arch.Archinit function.
    
    func main() {
    	var arch *sys.Arch
    	var theArch ld.Arch
    
    	buildcfg.Check()
    	switch buildcfg.GOARCH {
    	default:
    		fmt.Fprintf(os.Stderr, "link: unknown architecture %q\n", buildcfg.GOARCH)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 17 17:54:33 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl/build.gradle.kts

        testImplementation(testFixtures(project(":core")))
        testImplementation(libs.ant)
        testImplementation(libs.mockitoKotlin)
        testImplementation(libs.jacksonKotlin)
        testImplementation(libs.archunit)
        testImplementation(libs.kotlinCoroutines)
        testImplementation(libs.awaitility)
    
        integTestImplementation(project(":build-option")) {
            because("KotlinSettingsScriptIntegrationTest makes uses of FeatureFlag")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 22:44:42 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/sys/cpu/cpu_arm64.go

    		{Name: "fcma", Feature: &ARM64.HasFCMA},
    		{Name: "dcpop", Feature: &ARM64.HasDCPOP},
    		{Name: "asimddp", Feature: &ARM64.HasASIMDDP},
    		{Name: "asimdfhm", Feature: &ARM64.HasASIMDFHM},
    	}
    }
    
    func archInit() {
    	switch runtime.GOOS {
    	case "freebsd":
    		readARM64Registers()
    	case "linux", "netbsd", "openbsd":
    		doinit()
    	default:
    		// Many platforms don't seem to allow reading these registers.
    		setMinimalFeatures()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. .idea/misc.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <project version="4">
      <component name="EntryPointsManager">
        <list size="2">
          <item index="0" class="java.lang.String" itemvalue="com.tngtech.archunit.junit.ArchTest" />
          <item index="1" class="java.lang.String" itemvalue="org.gradle.internal.service.Provides" />
        </list>
      </component>
      <component name="ExternalStorageConfigurationManager" enabled="true" />
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 19:23:39 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. src/vendor/golang.org/x/sys/cpu/cpu_x86.go

    		{Name: "ssse3", Feature: &X86.HasSSSE3},
    
    		// These capabilities should always be enabled on amd64:
    		{Name: "sse2", Feature: &X86.HasSSE2, Required: runtime.GOARCH == "amd64"},
    	}
    }
    
    func archInit() {
    
    	Initialized = true
    
    	maxID, _, _, _ := cpuid(0, 0)
    
    	if maxID < 1 {
    		return
    	}
    
    	_, _, ecx1, edx1 := cpuid(1, 0)
    	X86.HasSSE2 = isSet(26, edx1)
    
    	X86.HasSSE3 = isSet(0, ecx1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/main.go

    			usage()
    		}
    	}
    
    	bench.Start("libinit")
    	libinit(ctxt) // creates outfile
    	bench.Start("computeTLSOffset")
    	ctxt.computeTLSOffset()
    	bench.Start("Archinit")
    	thearch.Archinit(ctxt)
    
    	if ctxt.linkShared && !ctxt.IsELF {
    		Exitf("-linkshared can only be used on elf systems")
    	}
    
    	if ctxt.Debugvlog != 0 {
    		onOff := func(b bool) string {
    			if b {
    				return "on"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
Back to top