- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 14 for setFff (0.05 seconds)
-
build-logic/dependency-modules/src/main/kotlin/gradlebuild.dependency-modules.gradle.kts
applyRule<DependencyRemovalByNameRule>("com.amazonaws:aws-java-sdk-core", setOf("jackson-dataformat-cbor")) applyRule<DependencyRemovalByGroupRule>("org.eclipse.jgit:org.eclipse.jgit", setOf("com.googlecode.javaewah")) // We don't need the extra annotations provided by j2objc applyRule<DependencyRemovalByNameRule>("com.google.http-client:google-http-client", setOf("j2objc-annotations"))
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 26 09:04:32 GMT 2026 - 9.5K bytes - Click Count (0) -
.teamcity/src/main/kotlin/projects/SmokeTestProject.kt
companion object { /** * Specific builds shown under the "Smoke Test" subproject in Pull Request Feedback. */ val pullRequestFeedbackSmokeBuilds: Set<SpecificBuild> = setOf( SpecificBuild.SmokeTestsMaxJavaVersion, SpecificBuild.ConfigCacheAndroidProjectSmokeTests, SpecificBuild.GradleBuildSmokeTests,Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 1.5K bytes - Click Count (0) -
android-test/build.gradle.kts
} testOptions { targetSdk = 34 unitTests.isIncludeAndroidResources = true } // issue merging due to conflict with httpclient and something else packagingOptions.resources.excludes += setOf( "META-INF/DEPENDENCIES", "META-INF/LICENSE.md", "META-INF/LICENSE-notice.md", "README.txt", "org/bouncycastle/LICENSE", "META-INF/versions/9/OSGI-INF/MANIFEST.MF" ) }Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 3.8K bytes - Click Count (2) -
.gitignore
# OSX leaves these everywhere on SMB shares ._* # OSX trash .DS_Store # Developers can store local stuff in dirs named __something __* # Eclipse files .classpath .project .settings/** # Files generated by JetBrains IDEs, e.g. IntelliJ IDEA .idea/ *.iml # Vscode files .vscode # This is where the result of the go build goes /output*/ /_output*/ /_output # Emacs save files *~ \#*\#
Created: Fri Apr 03 09:05:14 GMT 2026 - Last Modified: Tue Mar 17 02:28:41 GMT 2026 - 2.2K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
* reflection, dynamic loading, etc. and understand how the library works internally. * These changes might break things in subtle ways otherwise. */ val keepPatterns = mapOf( "it.unimi.dsi:fastutil" to setOf( // For persistence cache "it.unimi.dsi.fastutil.longs.Long2IntOpenHashMap", // For Java compilation incremental analysis "it.unimi.dsi.fastutil.ints.IntOpenHashSet",
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Mar 12 18:27:10 GMT 2026 - 5.8K bytes - Click Count (0) -
regression-test/build.gradle.kts
targetCompatibility(JavaVersion.VERSION_11) sourceCompatibility(JavaVersion.VERSION_11) } // issue merging due to conflict with httpclient and something else packagingOptions.resources.excludes += setOf( "META-INF/DEPENDENCIES" ) } dependencies { val okhttpLegacyVersion = "3.12.12" implementation(libs.kotlin.reflect) implementation(libs.playservices.safetynet)
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Feb 03 22:17:59 GMT 2026 - 1.6K bytes - Click Count (0) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts
listOf("install", "installAll") .flatMap { listOf(":distributions-full:$it", "distributions-full:$it", it) } .any(gradle.startParameter.taskNames::contains) fun isRunningDocsTestTask() = setOf(":docs:docsTest", "docs:docsTest") .any(gradle.startParameter.taskNames::contains) /** * Returns a new provider that takes its value from at most one
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:46:35 GMT 2026 - 5.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/projects/StageProject.kt
} }, ), ) } } private val TestCoverage.isCrossVersionTest get() = testType in setOf(TestType.ALL_VERSIONS_CROSS_VERSION, TestType.QUICK_FEEDBACK_CROSS_VERSION) private fun createPerformanceTests( model: CIBuildModel, performanceTestBucketProvider: PerformanceTestBucketProvider,Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Mon Mar 30 04:44:29 GMT 2026 - 12.5K bytes - Click Count (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/runtimes/CheckTargetRuntimes.kt
} else { val extraDetails = if (shouldPrintDetails) { computeExtraDetails(declaredComputed, actualComputed) } else { setOf() } val lines = listOf("Invalid target runtimes for $path. Expected: ${actualComputed.keys} Declared: $declaredComputed") + extraDetailsCreated: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 11 22:40:18 GMT 2026 - 13.8K bytes - Click Count (0) -
android/guava/src/com/google/common/io/Closer.java
* * {@snippet : * Closer closer = Closer.create(); * try { * InputStream in = closer.register(openInputStream()); * OutputStream out = closer.register(openOutputStream()); * // do stuff * } catch (Throwable e) { * // ensure that any checked exception types other than IOException that could be thrown are * // provided here, e.g. throw closer.rethrow(e, CheckedException.class); * throw closer.rethrow(e);Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 10.3K bytes - Click Count (0)