- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 179 for let (0.01 sec)
-
build-logic/kotlin-dsl-shared-runtime/src/main/kotlin/org/gradle/kotlin/dsl/internal/sharedruntime/support/ClassBytesRepository.kt
openJarFile(jar).run { getJarEntry(classFilePath)?.let { jarEntry -> { getInputStream(jarEntry).use { jarInput -> jarInput.readBytes() } } } } } private fun directoryClassBytesIndexFor(dir: File): ClassBytesIndex = { classFilePath -> dir.resolve(classFilePath).takeIf { it.isFile }?.let { classFile -> { classFile.readBytes() } } } private
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jun 28 08:29:28 UTC 2024 - 6.3K bytes - Viewed (0) -
docs/en/docs/js/custom.js
const termynalActivateClass = "termy"; let termynals = []; function createTermynals() { document .querySelectorAll(`.${termynalActivateClass} .highlight code`) .forEach(node => { const text = node.textContent; const lines = text.split("\n"); const useLines = []; let buffer = []; function saveBuffer() {
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Mon Sep 22 15:11:52 UTC 2025 - 6.3K bytes - Viewed (2) -
docs/en/docs/js/termynal.js
Registered: Sun Dec 28 07:19:09 UTC 2025 - Last Modified: Sun Aug 31 10:32:57 UTC 2025 - 9.3K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/BinaryCompatibilityRepository.kt
} } private fun apiSourceFileFor(member: JApiCompatibility): ApiSourceFile = member.jApiClass.let { declaringClass -> sources.sourceFileAndSourceRootFor(declaringClass.sourceFilePath).let { (sourceFile, sourceRoot) -> if (declaringClass.isKotlin) ApiSourceFile.Kotlin(sourceFile, sourceRoot) else ApiSourceFile.Java(sourceFile, sourceRoot) } }Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Wed Dec 24 14:15:15 UTC 2025 - 3.8K bytes - Viewed (0) -
okcurl/src/main/kotlin/okhttp3/curl/internal/-MainCommon.kt
return request.build() } private fun Main.mediaType(): MediaType? { val mimeType = headers?.let { for (header in it) { val parts = header.split(':', limit = 2) if ("Content-Type".equals(parts[0], ignoreCase = true)) { return@let parts[1].trim() } } return@let null } ?: "application/x-www-form-urlencoded" return mimeType.toMediaTypeOrNull() }
Registered: Fri Dec 26 11:42:13 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.7K bytes - Viewed (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/provider/BuildTimestampFromBuildReceiptValueSource.kt
buildReceiptString() ?.let(BuildReceipt::readBuildReceiptFromString) ?.let { buildReceipt -> buildReceipt["buildTimestamp"] as String } } override fun getDisplayName(): String = "the build timestamp extracted from the build receipt".let { when {
Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Sat Sep 30 16:17:28 UTC 2023 - 1.9K bytes - Viewed (0) -
build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/KotlinMetadataQueries.kt
ctClass.metadata ?.let { KotlinClassMetadata.readStrict(it) } ?.let { query(it) } ?: false private val CtClass.metadata: Metadata? get() = ctAnnotation<Metadata>()?.let { annotation -> Metadata( kind = annotation.getMemberValue("k")?.intValue ?: 1,Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Fri Jul 04 09:21:38 UTC 2025 - 4.8K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/PopulatedCachesTest.java
// don't let the entries get GCed List<Entry<Object, Object>> unused = warmUp(cache); assertThat(cache.size()).isEqualTo(WARMUP_SIZE); assertMapSize(cache.asMap(), WARMUP_SIZE); checkValidState(cache); } } public void testContainsKey_found() { for (LoadingCache<Object, Object> cache : caches()) { // don't let the entries get GCed
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 30 22:03:28 UTC 2025 - 15.7K bytes - Viewed (0) -
guava-tests/test/com/google/common/cache/PopulatedCachesTest.java
// don't let the entries get GCed List<Entry<Object, Object>> unused = warmUp(cache); assertThat(cache.size()).isEqualTo(WARMUP_SIZE); assertMapSize(cache.asMap(), WARMUP_SIZE); checkValidState(cache); } } public void testContainsKey_found() { for (LoadingCache<Object, Object> cache : caches()) { // don't let the entries get GCed
Registered: Fri Dec 26 12:43:10 UTC 2025 - Last Modified: Tue Sep 30 22:03:28 UTC 2025 - 15.7K bytes - Viewed (0) -
build-logic/integration-testing-kotlin/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle-integ-tests.gradle.kts
plugins { id("gradlebuild.integration-tests") } tasks.withType<IntegrationTest>().configureEach { // See AbstractKotlinIntegrationTest "kotlinDslTestsExtraRepo".let { propName -> System.getProperty(propName)?.let { systemProperty(propName, it) } } } dependencies { integTestRuntimeOnly(project(":kotlin-dsl-plugins")) {Registered: Wed Dec 31 11:36:14 UTC 2025 - Last Modified: Mon Dec 30 14:53:14 UTC 2024 - 756 bytes - Viewed (0)