- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 421 for listFn (0.04 seconds)
-
okhttp/src/jvmTest/kotlin/okhttp3/TestTls13Request.kt
*/ package okhttp3 import java.io.IOException import java.security.Security import okhttp3.internal.platform.Platform import org.conscrypt.Conscrypt // TLS 1.3 private val TLS13_CIPHER_SUITES = listOf( CipherSuite.TLS_AES_128_GCM_SHA256, CipherSuite.TLS_AES_256_GCM_SHA384, CipherSuite.TLS_CHACHA20_POLY1305_SHA256, CipherSuite.TLS_AES_128_CCM_SHA256, CipherSuite.TLS_AES_128_CCM_8_SHA256, )Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Thu May 22 14:39:30 GMT 2025 - 3.6K bytes - Click Count (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
}) { val specificBuildTypes: List<OsAwareBaseGradleBuildType> val performanceTests: List<PerformanceTestsPass> val functionalTests: List<OsAwareBaseGradleBuildType> val crossVersionTests: List<OsAwareBaseGradleBuildType> val docsTestTriggers: List<OsAwareBaseGradleBuildType> val flakyTestQuarantineTriggers: List<OsAwareBaseGradleBuildType> init { features {Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 16 00:34:25 GMT 2025 - 12.1K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/HandshakeTest.kt
val handshake = Handshake.get( tlsVersion = TlsVersion.TLS_1_3, cipherSuite = CipherSuite.TLS_AES_128_GCM_SHA256, peerCertificates = listOf(serverCertificate.certificate, serverIntermediate.certificate), localCertificates = listOf(), ) assertThat(handshake.tlsVersion).isEqualTo(TlsVersion.TLS_1_3) assertThat(handshake.cipherSuite).isEqualTo(CipherSuite.TLS_AES_128_GCM_SHA256)Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 4.2K bytes - Click Count (0) -
build-logic/build-init-samples/src/main/kotlin/gradlebuild/generate-samples.gradle.kts
id("org.gradle.samples") id("gradlebuild.jvm-compile") } jvmCompile { addCompilationFrom(sourceSets.docsTest) } val singleProjectSampleLanguages = listOf(JAVA, GROOVY, SCALA, KOTLIN, SWIFT, CPP) val multiProjectApplicationSampleLanguages = listOf(JAVA, GROOVY, SCALA, KOTLIN) singleProjectSampleLanguages.forEach { language -> setupGeneratorTask(language, "library", ModularizationOption.SINGLE_PROJECT)
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 24 13:46:12 GMT 2025 - 3.4K bytes - Click Count (0) -
build-logic/cleanup/src/main/kotlin/gradlebuild/cleanup/Cleanup.kt
delete { delete(transformDir) } } } } private val scriptCacheDirNames = // TODO Remove gradle-kotlin-dsl* after a while listOf("scripts", "scripts-remapped", "gradle-kotlin-dsl", "gradle-kotlin-dsl-accessors", "kotlin-dsl") private fun scriptsCacheDirsUnder(cacheDir: File) = scriptCacheDirNames .map { File(cacheDir, it) }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Jun 28 08:29:28 GMT 2024 - 4.4K bytes - Click Count (0) -
.teamcity/src/main/kotlin/common/CommonExtensions.kt
doesNotEqual("skip.build", "true") } } } fun buildToolGradleParameters( isContinue: Boolean = true, maxParallelForks: String = "%maxParallelForks%", ): List<String> = listOf( // We pass the 'maxParallelForks' setting as 'workers.max' to limit the maximum number of executers even
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Dec 22 07:15:16 GMT 2025 - 15.6K bytes - Click Count (0) -
src/main/java/jcifs/smb/SmbFileDirectoryLeasingExtension.java
} /** * List files using directory leasing */ private static SmbFile[] listFilesWithDirectoryLeasing(SmbFile smbFile, DirectoryLeaseManager dirManager) throws SmbException { String directoryPath = smbFile.getPath(); // Check if we can use cached directory listing if (dirManager.canCacheDirectoryListing(directoryPath)) {Created: Sat Dec 20 13:44:44 GMT 2025 - Last Modified: Sat Aug 23 02:21:31 GMT 2025 - 7.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/Gradleception.kt
val buildScanTagForGroovyMajor = buildScanTagParam("Groovy$bundleGroovyMajor") val buildScanTags = if (bundleGroovyMajor != null) listOf(buildScanTagForType, buildScanTagForGroovyMajor) else listOf(buildScanTagForType) val extraSysProp = mutableListOf<String>() val extraTasks = mutableListOf<String>() if (bundleGroovyMajor != null) {
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 09 05:26:45 GMT 2025 - 7.3K bytes - Click Count (0) -
build-logic/jvm/src/main/kotlin/gradlebuild.unittest-and-compile.gradle.kts
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Fri Dec 19 06:44:41 GMT 2025 - 18.9K bytes - Click Count (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/AbstractBinaryCompatibilityTest.kt
fun added(thing: String, desc: String): List<String> = listOf( "$thing ${describe(thing, desc)}: Is not annotated with @Incubating.", "$thing ${describe(thing, desc)}: Is not annotated with @since 2.0." ) fun addedWithInvalidSince(thing: String, desc: String): List<String> = listOf(Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 30 10:14:25 GMT 2025 - 18K bytes - Click Count (0)