Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 98 for raceinit (0.16 sec)

  1. okhttp/src/test/java/okhttp3/CipherSuiteTest.kt

        assertArrayEquals(arrayOf("TLSv1.1", "TLSv1.2"), socket.enabledProtocols)
      }
    
      internal class FakeSslSocket : DelegatingSSLSocket(null) {
        private lateinit var enabledProtocols: Array<String>
        private lateinit var supportedCipherSuites: Array<String>
        private lateinit var enabledCipherSuites: Array<String>
    
        override fun getEnabledProtocols(): Array<String> {
          return enabledProtocols
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtModuleProviderBuilder.kt

    ) {
        private val mainModules: MutableList<KtModule> = mutableListOf()
    
        public fun <M : KtModule> addModule(module: M): M {
            mainModules.add(module)
            return module
        }
    
        public lateinit var platform: TargetPlatform
    
        public fun build(): KtStaticProjectStructureProvider {
            return KtStandaloneProjectStructureProvider(
                platform,
                kotlinCoreProjectEnvironment.project,
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jan 05 16:04:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtScriptModuleBuilder.kt

    import kotlin.contracts.contract
    
    @KtModuleBuilderDsl
    public class KtScriptModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment
    ) : KtModuleBuilder() {
        public lateinit var file: KtFile
    
        public var languageVersionSettings: LanguageVersionSettings =
            LanguageVersionSettingsImpl(LanguageVersion.LATEST_STABLE, ApiVersion.LATEST)
    
        override fun build(): KtScriptModule {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/ConfigurationCacheBuildTreeModelSideEffectExecutor.kt

    import org.gradle.internal.buildtree.BuildTreeModelSideEffectExecutor
    
    
    internal
    class ConfigurationCacheBuildTreeModelSideEffectExecutor : BuildTreeModelSideEffectExecutor {
    
        lateinit var sideEffectStore: BuildTreeModelSideEffectStore
    
        override fun runIsolatableSideEffect(sideEffect: BuildTreeModelSideEffect) {
            sideEffect.runSideEffect()
            sideEffectStore.write(sideEffect)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. .idea/dictionaries/Nikolay_Krasko.xml

          <w>codeowners</w>
          <w>coroutines</w>
          <w>crossinline</w>
          <w>fqname</w>
          <w>goto</w>
          <w>gradle</w>
          <w>infos</w>
          <w>intrinsics</w>
          <w>kdoc</w>
          <w>lateinit</w>
          <w>memoize</w>
          <w>memoized</w>
          <w>multiline</w>
          <w>navigatable</w>
          <w>preload</w>
          <w>preloader</w>
          <w>preloading</w>
          <w>preprocess</w>
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue May 23 16:52:40 UTC 2023
    - 756 bytes
    - Viewed (0)
  6. okhttp-testing-support/src/test/kotlin/okhttp3/OkHttpClientTestRuleTest.kt

    import org.junit.jupiter.api.extension.BeforeEachCallback
    import org.junit.jupiter.api.extension.ExtensionContext
    import org.junit.jupiter.api.extension.RegisterExtension
    
    class OkHttpClientTestRuleTest {
      lateinit var extensionContext: ExtensionContext
    
      @RegisterExtension @JvmField
      val beforeEachCallback =
        BeforeEachCallback { context ->
          ******@****.***ionContext = context
        }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. platforms/software/build-init/src/main/resources/org/gradle/buildinit/tasks/templates/plugin/kotlin/kotlintest/PluginFunctionalTest.kt.template

    import org.gradle.testkit.runner.GradleRunner
    import org.junit.jupiter.api.io.TempDir
    
    /**
     * A simple functional test for the '${pluginId.value}' plugin.
     */
    class ${className.javaIdentifier} {
    
        @field:TempDir
        lateinit var projectDir: File
    
        private val buildFile by lazy { projectDir.resolve("build.gradle") }
        private val settingsFile by lazy { projectDir.resolve("settings.gradle") }
    
        @Test fun `can run task`() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 26 19:39:09 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/BouncyCastleTest.kt

    class BouncyCastleTest {
      @JvmField @RegisterExtension
      var platform = PlatformRule()
    
      @JvmField @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
      var client = clientTestRule.newClient()
      private lateinit var server: MockWebServer
    
      @BeforeEach
      fun setUp(server: MockWebServer) {
        this.server = server
        OkHttpDebugLogging.enable("org.bouncycastle.jsse")
        platform.assumeBouncyCastle()
      }
    
      @Test
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  9. analysis/analysis-api-standalone/analysis-api-standalone-native/tests/org/jetbrains/kotlin/analysis/api/standalone/konan/fir/test/cases/session/builder/NativeStandaloneSessionBuilderTest.kt

    import org.junit.jupiter.api.Test
    
    @OptIn(KaAnalysisApiInternals::class)
    class NativeStandaloneSessionBuilderTest {
        @Test
        fun testResolveAgainstCommonKlib() {
            lateinit var sourceModule: KtSourceModule
            val currentArchitectureTarget = HostManager.host
            val nativePlatform = NativePlatforms.nativePlatformByTargets(listOf(currentArchitectureTarget))
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon May 27 17:22:24 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  10. analysis/analysis-api-standalone/src/org/jetbrains/kotlin/analysis/project/structure/builder/KtLibraryModuleBuilder.kt

    import kotlin.contracts.contract
    
    @KtModuleBuilderDsl
    public class KtLibraryModuleBuilder(
        private val kotlinCoreProjectEnvironment: KotlinCoreProjectEnvironment
    ) : KtBinaryModuleBuilder() {
        public lateinit var libraryName: String
        public var librarySources: KtLibrarySourceModule? = null
    
        override fun build(): KtLibraryModule {
            val binaryRoots = getBinaryRoots()
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Sep 06 07:36:11 UTC 2023
    - 1.9K bytes
    - Viewed (0)
Back to top