Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 527 for listOf (0.27 sec)

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

      private lateinit var handshakeEnabledCipherSuites: List<String>
    
      /** Ciphers in order we observed on sslSocketFactory defaults. */
      private lateinit var defaultEnabledCipherSuites: List<String>
    
      /** Ciphers in order we observed on sslSocketFactory supported. */
      private lateinit var defaultSupportedCipherSuites: List<String>
    
      val expectedModernTls12CipherSuites =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/base/customExternalTask/kotlin/task/build.gradle.kts

    class AddOpensArgProvider(private val test: Test) : CommandLineArgumentProvider {
        override fun asArguments() : Iterable<String> {
            return if (test.javaVersion.isCompatibleWith(JavaVersion.VERSION_1_9)) {
                listOf("--add-opens=java.base/java.lang=ALL-UNNAMED")
            } else {
                emptyList()
            }
        }
    }
    tasks.withType<Test>().configureEach {
        jvmArgumentProviders.add(AddOpensArgProvider(this))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. .teamcity/src/main/kotlin/common/extensions.kt

            "coverageJvmVendor" to testJvmVendor,
            "coverageJvmVersion" to "java$testJvmVersion"
        )
        return (
            listOf(
                "-PtestJavaVersion=$testJvmVersion",
                "-PtestJavaVendor=$testJvmVendor"
            ) +
                listOf(buildScanTag(buildScanTag)) +
                buildScanValues.map { buildScanCustomValue(it.key, it.value) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  4. android-test-app/build.gradle.kts

      }
    
      buildTypes {
        release {
          isShrinkResources = true
          isMinifyEnabled = true
          signingConfig = signingConfigs.getByName("debug")
          setProguardFiles(listOf(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"))
          testProguardFiles("test-proguard-rules.pro")
        }
      }
    }
    
    dependencies {
      implementation(libs.playservices.safetynet)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Dec 23 14:46:51 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/FlowParametersInstantiator.kt

        private
        val inspection by lazy {
            inspectionSchemeFactory.inspectionScheme(
                listOf(
                    Input::class.java,
                    ServiceReference::class.java,
                ),
                listOf(
                    org.gradle.api.tasks.Optional::class.java
                ),
                instantiatorFactory.decorateScheme()
            )
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. analysis/analysis-api-platform-interface/src/org/jetbrains/kotlin/analysis/api/platform/declarations/KotlinFileBasedDeclarationProvider.kt

            }
    
            return listOf(kotlinFile)
        }
    
        override fun findFilesForFacade(facadeFqName: FqName): Collection<KtFile> {
            if (kotlinFile.javaFileFacadeFqName != facadeFqName) return emptyList()
    
            for (declaration in topLevelDeclarations) {
                if (declaration !is KtClassLikeDeclaration) {
                    return listOf(kotlinFile)
                }
            }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/support/KotlinCompiler.kt

    )
    
    
    fun scriptDefinitionFromTemplate(
        template: KClass<out Any>,
        implicitImports: List<String>,
        implicitReceiver: KClass<*>? = null,
        classPath: List<File> = listOf()
    ): ScriptDefinition {
        val hostConfiguration = ScriptingHostConfiguration {
            getScriptingClass(JvmGetScriptingClass())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 31 08:46:17 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/androidBuild/kotlin/app/build.gradle.kts

            }
        }
    // tag::android[]
    }
    // end::android[]
    
    dependencies {
        implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
        implementation(kotlin("stdlib-jdk7", KotlinCompilerVersion.VERSION))
        implementation("com.android.support:appcompat-v7:27.1.1")
        implementation("com.android.support.constraint:constraint-layout:1.1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/build.gradle.kts

            }
        }
    // tag::android[]
    }
    // end::android[]
    
    dependencies {
        implementation(fileTree(mapOf("dir" to "libs", "include" to listOf("*.jar"))))
        implementation(kotlin("stdlib-jdk7"))
        implementation("com.android.support:appcompat-v7:27.1.1")
        implementation("com.android.support.constraint:constraint-layout:1.1.0")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:36:42 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/KotlinSourceModernTest.kt

        builder = builder.protocols(listOf(Protocol.HTTP_1_1))
        builder = builder.connectionSpecs(listOf(ConnectionSpec.MODERN_TLS))
        val interceptors: List<Interceptor> = builder.interceptors()
        builder = builder.addInterceptor(Interceptor { TODO() })
        builder = builder.addInterceptor { it: Interceptor.Chain -> TODO() }
        val networkInterceptors: List<Interceptor> = builder.networkInterceptors()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 01 14:21:25 UTC 2024
    - 46.5K bytes
    - Viewed (0)
Back to top