- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 17 for workaround (0.1 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
build-logic/buildquality/src/main/kotlin/gradlebuild.arch-test.gradle.kts
classpath += sourceSets["main"].output.classesDirs val excludePatterns = packageCyclesExtension.excludePatterns doFirst { // workaround for https://github.com/gradle/gradle/issues/12247 systemProperty("package.cycle.exclude.patterns", excludePatterns.get().joinToString(",")) }
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 10 08:11:56 GMT 2026 - 3.4K bytes - Click Count (0) -
build-logic/src/main/kotlin/okhttp.publish-conventions.gradle.kts
ignoredPackages += "okhttp3.brotli.internal" ignoredPackages += "okhttp3.sse.internal" ignoredPackages += "okhttp3.tls.internal" } if (project.name == "okhttp") { // Workaround for https://github.com/Kotlin/binary-compatibility-validator/issues/312 val apiBuild = tasks.register<KotlinApiBuildTask>("androidApiBuild") { outputApiFile = project.layout.buildDirectory.file("${this.name}/okhttp.api")
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Sun Mar 15 09:00:38 GMT 2026 - 2.6K bytes - Click Count (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild.minify.gradle.kts
} afterEvaluate { // Without afterEvaluate, configurations.all runs before the configurations' roles are set. // This is yet another reason we need configuration factory methods. // workaround for https://github.com/gradle/gradle/issues/12459 // note: constraints can't be used here because they end up in gradle module metadata val attributesFactory = gradle.serviceOf<AttributesFactory>()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) -
build-logic-commons/module-identity/src/main/kotlin/gradlebuild/identity/tasks/BuildReceipt.kt
import org.gradle.api.provider.Provider import org.gradle.api.tasks.Input import org.gradle.api.tasks.Optional import org.gradle.api.tasks.OutputDirectory import org.gradle.api.tasks.TaskAction // Using star import to workaround https://youtrack.jetbrains.com/issue/KTIJ-24390 import org.gradle.kotlin.dsl.* import org.gradle.work.DisableCachingByDefault import java.text.SimpleDateFormat import java.util.Date import java.util.Properties
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Wed Mar 25 08:51:12 GMT 2026 - 4.1K bytes - Click Count (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
fun run(vararg args: String) = GradleRunner.create() .withProjectDir(projectDir) .withTestKitDir(testKitDir) .withPluginClasspath() .forwardOutput() /* This is a workaround to use `--no-daemon` with TestKit. Without this, daemon may keep writing to project dir after the test finishes, resulting in errors like:
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 10 00:16:44 GMT 2026 - 11.6K bytes - Click Count (0) -
android/guava/src/com/google/common/util/concurrent/ListenableFuture.java
* * <p>Occasionally, an API will return a plain {@code Future} and it will be impossible to change * the return type. For this case, we provide a more expensive workaround in {@code * JdkFutureAdapters}. However, when possible, it is more efficient and reliable to create a {@code * ListenableFuture} directly. * * @author Sven Mawson * @author Nishant Thakkar * @since 1.0Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 8K bytes - Click Count (0) -
build-logic-commons/publishing/src/main/kotlin/gradlebuild.kotlin-dsl-plugin-bundle.gradle.kts
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Fri Mar 13 11:01:20 GMT 2026 - 6.2K bytes - Click Count (0) -
futures/listenablefuture1/src/com/google/common/util/concurrent/ListenableFuture.java
* * <p>Occasionally, an API will return a plain {@code Future} and it will be impossible to change * the return type. For this case, we provide a more expensive workaround in {@code * JdkFutureAdapters}. However, when possible, it is more efficient and reliable to create a {@code * ListenableFuture} directly. * * @author Sven Mawson * @author Nishant Thakkar * @since 1.0Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Jan 29 22:14:05 GMT 2026 - 8K bytes - Click Count (0) -
docs/en/docs/tutorial/schema-extra-example.md
Nevertheless, at the <dfn title="2023-08-26">time of writing this</dfn>, Swagger UI, the tool in charge of showing the docs UI, doesn't support showing multiple examples for the data in **JSON Schema**. But read below for a workaround. ### OpenAPI-specific `examples` { #openapi-specific-examples } Since before **JSON Schema** supported `examples` OpenAPI had support for a different field also called `examples`.
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Mar 05 18:13:19 GMT 2026 - 8.7K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/base/OptionalTest.java
return FluentIterable.from(ImmutableList.<Number>of()); } /* * The following tests demonstrate the shortcomings of or() and test that the casting workaround * mentioned in the method Javadoc does in fact compile. */ @SuppressWarnings("unused") // compilation test public void testSampleCodeError1() { Optional<Integer> optionalInt = getSomeOptionalInt();
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Mon Mar 16 15:59:55 GMT 2026 - 10.6K bytes - Click Count (0)