- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 1,026 for implementation (0.08 sec)
-
guava/src/com/google/common/collect/ForwardingList.java
* #listIterator(int)}. If you override {@link #listIterator(int)}, you may wish to override * {@link #lastIndexOf} to forward to this implementation. * * @since 7.0 */ protected int standardLastIndexOf(@CheckForNull Object element) { return Lists.lastIndexOfImpl(this, element); } /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Fri May 12 15:26:39 UTC 2023 - 7.9K bytes - Viewed (0) -
build-logic/buildquality/build.gradle.kts
dependencies { implementation("gradlebuild:basics") implementation(projects.cleanup) implementation(projects.documentation) implementation(projects.integrationTesting) implementation(projects.performanceTesting) implementation(projects.profiling) implementation(projects.binaryCompatibility) implementation("org.codenarc:CodeNarc") {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Sep 11 14:21:47 UTC 2024 - 1.1K bytes - Viewed (0) -
compat/maven-plugin-api/src/main/java/org/apache/maven/plugin/descriptor/Parameter.java
this.requirement = requirement; } public String getImplementation() { return implementation; } public void setImplementation(String implementation) { this.implementation = implementation; } public String getSince() { return since; } public void setSince(String since) {
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.1K bytes - Viewed (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
If the nested type is a managed type (Gradle can generate its implementation), you can define a nested property with: ``` interface NestedType { Property<String> getSomeProperty() } class Example { @Nested NestedType getNestedProperty() } ``` Otherwise, if the nested type requires an implementation class, you'll need to manage the lifecycle of it: ``` interface NestedType {
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 20:00:57 UTC 2024 - 10K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java
.build(); /** * type → implementation. Inherently mutable interfaces and abstract classes are mapped to their * default implementations and are "new"d upon get(). */ private static final ConcurrentMap<Class<?>, Class<?>> implementations = Maps.newConcurrentMap(); private static <T> void setImplementation(Class<T> type, Class<? extends T> implementation) {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Sat Oct 19 00:26:48 UTC 2024 - 20.8K bytes - Viewed (0) -
native-image-tests/build.gradle.kts
implementation(projects.okhttpTls) implementation(projects.mockwebserver3) implementation(projects.mockwebserver) implementation(projects.okhttpJavaNetCookiejar) implementation(projects.mockwebserver3Junit4) implementation(projects.mockwebserver3Junit5) implementation(libs.aqute.resolve) implementation(libs.junit.jupiter.api) implementation(libs.junit.jupiter.params) implementation(libs.assertk)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 1.6K bytes - Viewed (0) -
build-logic/cleanup/build.gradle.kts
"CatchAndPrintStackTrace", // 1 occurrences "DefaultCharset", // 3 occurrences "JavaTimeDefaultTimeZone", // 1 occurrences ) } dependencies { implementation("gradlebuild:basics") implementation("gradlebuild:module-identity")
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 507 bytes - Viewed (0) -
doc/next/6-stdlib/99-minor/os/user/68312.md
On Windows, [Current] has been made considerably faster when the current user is joined to a slow domain, which is the usual case for many corporate users. The new implementation performance is now in the order of milliseconds, compared to the previous implementation which could take several seconds,
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Wed Aug 21 19:59:22 UTC 2024 - 332 bytes - Viewed (0) -
okhttp-testing-support/build.gradle.kts
id("ru.vyarus.animalsniffer") } dependencies { api(libs.squareup.okio) api(projects.okhttp) api(projects.okhttpTls) api(libs.assertk) api(libs.bouncycastle.bcprov) implementation(libs.bouncycastle.bcpkix) implementation(libs.bouncycastle.bctls) api(libs.conscrypt.openjdk) api(libs.openjsse) api(variantOf(libs.amazonCorretto) { classifier("linux-x86_64") }) api(libs.hamcrestLibrary)
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sat Jan 06 05:31:00 UTC 2024 - 750 bytes - Viewed (0) -
README.md
```kotlin dependencies { // define a BOM and its version implementation(platform("com.squareup.okhttp3:okhttp-bom:4.12.0")) // define any required OkHttp artifacts without version implementation("com.squareup.okhttp3:okhttp") implementation("com.squareup.okhttp3:logging-interceptor") } ``` MockWebServer -------------
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Wed Dec 20 23:27:07 UTC 2023 - 6.2K bytes - Viewed (0)