Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 65 for raceinit (0.18 sec)

  1. src/runtime/mklockrank.go

    NONE < panic;
    # deadlock is not acquired while holding panic, but it also needs to be
    # below all other locks.
    panic < deadlock;
    # raceFini is only held while exiting.
    panic < raceFini;
    
    # RWMutex internal read lock
    
    allocmR,
      allocmW
    < allocmRInternal;
    
    execR,
      execW
    < execRInternal;
    
    testR,
      testW
    < testRInternal;
    `
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  2. okhttp-dnsoverhttps/src/test/java/okhttp3/dnsoverhttps/DnsOverHttpsTest.kt

    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Tag("Slowish")
    class DnsOverHttpsTest {
      @RegisterExtension
      val platform = PlatformRule()
      private lateinit var server: MockWebServer
      private lateinit var dns: Dns
      private val cacheFs = FakeFileSystem()
      private val bootstrapClient =
        OkHttpClient.Builder()
          .protocols(listOf(Protocol.HTTP_2, Protocol.HTTP_1_1))
          .build()
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    @ExtendWith(MockKExtension::class)
    class ApplyDefaultConfigurationTest {
        @MockK(relaxed = true)
        lateinit var buildType: BaseGradleBuildType
    
        private
        val steps = BuildSteps()
    
        private
        val buildModel = CIBuildModel(
            projectId = "Gradle_Check",
            branch = VersionedSettingsBranch("master"),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. 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)
  5. okhttp/src/main/kotlin/okhttp3/internal/http2/Http2Connection.kt

        internal var client: Boolean,
        internal val taskRunner: TaskRunner,
      ) {
        internal lateinit var socket: Socket
        internal lateinit var connectionName: String
        internal lateinit var source: BufferedSource
        internal lateinit var sink: BufferedSink
        internal var listener = Listener.REFUSE_INCOMING_STREAMS
        internal var pushObserver = PushObserver.CANCEL
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 32.6K bytes
    - Viewed (0)
  6. okhttp-coroutines/src/test/kotlin/okhttp3/coroutines/ExecuteAsyncTest.kt

    import org.junit.jupiter.api.fail
    
    class ExecuteAsyncTest {
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    
      private var client = clientTestRule.newClientBuilder().build()
    
      private lateinit var server: MockWebServer
    
      val request by lazy { Request(server.url("/")) }
    
      @BeforeEach
      fun setup(server: MockWebServer) {
        this.server = server
      }
    
      @Test
      fun suspendCall() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:24:38 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  7. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/NestedInputKotlinImplementationTrackingIntegrationTest.groovy

                    import org.gradle.api.tasks.TaskAction
                    import java.io.File
    
                    open class TaskWithNestedAction : DefaultTask() {
                        @get: Nested
                        lateinit var action: ${actionType}
    
                        @get: OutputFile
                        var outputFile: File = File(temporaryDir, "output.txt")
    
                        @TaskAction
                        fun generate() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 10 06:52:58 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/test/kotlin/org/gradle/internal/cc/impl/isolation/IsolatedActionSerializerTest.kt

        private
        inline fun <reified T> newInstance() =
            objectFactory().newInstance(T::class.java)
    
        private
        fun <T : Any> valueCarriedBy(isolatedAction: TestableIsolatedAction<T>): T {
            lateinit var value: T
            isolatedAction.execute {
                value = it
            }
            return value
        }
    
        private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  9. okhttp-tls/src/test/java/okhttp3/tls/HandshakeCertificatesTest.kt

    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    class HandshakeCertificatesTest {
      @RegisterExtension
      var platform = PlatformRule()
    
      private lateinit var executorService: ExecutorService
    
      private var serverSocket: ServerSocket? = null
    
      @BeforeEach fun setUp() {
        executorService = Executors.newCachedThreadPool(threadFactory("HandshakeCertificatesTest"))
      }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/Contexts.kt

        override val sharedIdentities = ReadIdentities()
    
        private
        var singletonProperty: Any? = null
    
        override lateinit var classLoader: ClassLoader
    
        override fun onFinish(action: () -> Unit) {
            pendingOperations.add(action)
        }
    
        fun finish() {
            for (op in pendingOperations) {
                op()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top