- Sort Score
- Num 10 results
- Language All
Results 81 - 90 of 189 for listafp (0.05 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
okhttp/src/commonJvmAndroid/kotlin/okhttp3/Handshake.kt
@get:JvmName("peerCertificates") val peerCertificates: List<Certificate> by lazy { try { peerCertificatesFn() } catch (spue: SSLPeerUnverifiedException) { listOf() } } @JvmName("-deprecated_tlsVersion") @Deprecated( message = "moved to val", replaceWith = ReplaceWith(expression = "tlsVersion"), level = DeprecationLevel.ERROR, )Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat Apr 05 09:48:10 GMT 2025 - 6.6K bytes - Click Count (1) -
okhttp/src/jvmTest/kotlin/okhttp3/EventListenerTest.kt
emptyBody -> listOf( ResponseBodyStart::class, ResponseBodyEnd::class, FollowUpDecision::class, ) else -> listOf( FollowUpDecision::class, ResponseBodyStart::class, ResponseBodyEnd::class, ) } expectedEventTypes += listOf( ConnectionReleased::class,Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Nov 05 18:28:35 GMT 2025 - 70.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/BuildLogicTest.kt
publishBuildStatusToGithub(model) } applyDefaults( model, this, "checkBuildLogic", extraParameters = listOf( stage.getBuildScanCustomValueParam(), buildScanTagParam("BuildLogicTest"), "-Dorg.gradle.java.installations.auto-download=false",
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Dec 30 04:30:54 GMT 2025 - 1.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/MergeReleaseIntoMaster.kt
val vcsBranch = VersionedSettingsBranch.fromDslContext() steps { gradleWrapper { name = "Merge Release into Master" tasks = listOf( "updateReleaseVersionsOnMaster", "gitMergeReleaseToMaster", "createPreTestCommitPullRequestMergeReleaseIntoMaster",Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 10 10:38:00 GMT 2025 - 2.3K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/SanityCheck.kt
features { publishBuildStatusToGithub(model) } applyDefaults( model, this, "sanityCheck", extraParameters = listOf( stage.getBuildScanCustomValueParam(), buildScanTagParam("SanityCheck"), "-Dorg.gradle.java.installations.auto-download=false",Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Mon Aug 25 20:21:47 GMT 2025 - 1.1K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/SmokeIdeTests.kt
} applyTestDefaults( model = model, buildType = this, gradleTasks = ":smoke-ide-test:smokeIdeTest", extraParameters = listOf( stage.getBuildScanCustomValueParam(), buildScanTagParam("SmokeIdeTests"), "-PflakyTests=$flakyTestStrategy", ).joinToString(" "), )Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 09 05:26:45 GMT 2025 - 1.9K bytes - Click Count (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/sources/KotlinSourceQueries.kt
val propertyNames = if (hasIsGetterName) listOf(method.name) else { val prefixRemoved = method.name.drop(3) if (hasSetterName && isBoolean) listOf("is$prefixRemoved", prefixRemoved.decapitalize()) else listOf(prefixRemoved.decapitalize()) } val propertyQualifiedNames =Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jul 08 07:02:19 GMT 2025 - 13.2K bytes - Click Count (0) -
build.gradle.kts
toolVersion = rootProject.libs.versions.checkStyle.get() sourceSets = listOf(project.sourceSets["main"]) } // Animal Sniffer confirms we generally don't use APIs not on Java 8. configure<AnimalSnifferExtension> { annotation = "okhttp3.internal.SuppressSignatureCheck" sourceSets = listOf(project.sourceSets["main"]) signatures = androidSignature + jvmSignature
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Sat Nov 01 12:18:11 GMT 2025 - 11.5K bytes - Click Count (1) -
.teamcity/src/main/kotlin/common/BuildScanUtils.kt
.map { it.uuid } fun Stage.getBuildScanCustomValueParam(testCoverage: TestCoverage? = null): String { val customValues = if (testCoverage != null) { listOf(testCoverage.asBuildScanCustomValue()) + getBuildScanCustomValues() } else { getBuildScanCustomValues() } return "-DbuildScan.PartOf=${customValues.joinToString(",")}"Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Tue Jun 10 05:45:46 GMT 2025 - 1.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/configurations/GradleBuildConfigurationDefaults.kt
val extraBuildScanTags: List<String> = if (isRetry) listOf("RetriedBuild") else emptyList() val buildScanTags = model.buildScanTags + listOfNotNull(stage?.id) + extraBuildScanTags val parameters = ( buildToolGradleParameters(maxParallelForks = maxParallelForks) + listOf(extraParameters) + buildScanTags.map { buildScanTagParam(it) } +
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Nov 20 07:29:52 GMT 2025 - 8.6K bytes - Click Count (0)