Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 101 for raceinit (0.41 sec)

  1. 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)
  2. okhttp/src/test/java/okhttp3/CacheCorruptionTest.kt

      private val handshakeCertificates = platform.localhostHandshakeCertificates()
      private lateinit var client: OkHttpClient
      private lateinit var cache: Cache
      private val nullHostnameVerifier = HostnameVerifier { _: String?, _: SSLSession? -> true }
      private val cookieManager = CookieManager()
      private lateinit var server: MockWebServer
    
      @BeforeEach
      fun setUp(server: MockWebServer) {
        this.server = server
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 6K bytes
    - Viewed (0)
  3. build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts

                    addCapability("org.gradle.internal.capability", name, version)
                }
            }
        }
    }
    
    
    class CapabilitySpec {
        lateinit var name: String
    
        private
        lateinit var providedBy: Set<String>
    
        private
        lateinit var selected: String
    
        private
        var upgrade: String? = null
    
        internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 20:15:18 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. src/cmd/link/internal/s390x/obj.go

    	theArch := ld.Arch{
    		Funcalign:  funcAlign,
    		Maxalign:   maxAlign,
    		Minalign:   minAlign,
    		Dwarfregsp: dwarfRegSP,
    		Dwarfreglr: dwarfRegLR,
    
    		Adddynrel:        adddynrel,
    		Archinit:         archinit,
    		Archreloc:        archreloc,
    		Archrelocvariant: archrelocvariant,
    		Gentext:          gentext,
    		Machoreloc1:      machoreloc1,
    
    		ELF: ld.ELFArch{
    			Linuxdynld:     "/lib64/ld64.so.1",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  5. src/runtime/rand.go

    	lock  mutex
    	seed  [32]byte
    	state chacha8rand.State
    	init  bool
    }
    
    var readRandomFailed bool
    
    // randinit initializes the global random state.
    // It must be called before any use of grand.
    func randinit() {
    	lock(&globalRand.lock)
    	if globalRand.init {
    		fatal("randinit twice")
    	}
    
    	seed := &globalRand.seed
    	if startupRand != nil {
    		for i, c := range startupRand {
    			seed[i%len(seed)] ^= c
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 14:32:47 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. testing/smoke-test/src/smokeTest/resources/org/gradle/smoketests/android-kotlin-example-kotlin-dsl/app/src/test/kotlin/org/gradle/smoketest/kotlin/android/StringPrinterTest.kt

    package org.gradle.smoketest.kotlin.android
    
    import org.junit.Before
    import org.junit.Test
    
    class StringPrinterTest {
    
        lateinit private var stringPrinter: StringPrinterFragment
    
        @Before fun setUp() {
            stringPrinter = StringPrinterFragment()
        }
    
        @Test fun shouldPrintStringLength() {
            stringPrinter.printStringLength("Hello world!")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 369 bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/analysis/TestSchema.kt

    package org.gradle.internal.declarativedsl.analysis
    
    import org.gradle.declarative.dsl.model.annotations.Adding
    import org.gradle.declarative.dsl.model.annotations.Restricted
    
    
    class MyClass {
        @get:Restricted
        lateinit var my: MyClass
    }
    
    
    class TopLevel {
        @Adding
        fun my1(): MyClass = MyClass()
    
        @Adding
        fun my2(): MyClass = MyClass()
    
        @Adding
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 443 bytes
    - Viewed (0)
Back to top