- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 641 for abstract (0.05 sec)
-
okhttp/api/okhttp.api
} public abstract interface class okhttp3/Call : java/lang/Cloneable { public abstract fun cancel ()V public abstract fun clone ()Lokhttp3/Call; public abstract fun enqueue (Lokhttp3/Callback;)V public abstract fun execute ()Lokhttp3/Response; public abstract fun isCanceled ()Z public abstract fun isExecuted ()Z public abstract fun request ()Lokhttp3/Request;
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Mon Apr 15 13:41:01 UTC 2024 - 70.2K bytes - Viewed (0) -
architecture/standards/0006-use-of-provider-apis-in-gradle.md
This is acceptable: ```groovy public interface NewThing { Property<String> getSomeProperty() } abstract class DefaultNewThing implements NewThing { // special logic to integrate with something existing } ``` or ```groovy public abstract class NewThing { public abstract Property<String> getSomeProperty() // special logic to integrate with something existing } ```
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Oct 15 20:00:57 UTC 2024 - 10K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/ModifierUtil.java
} /** * <code>abstract</code>かどうか返します。 * * @param clazz * クラス。{@literal null}であってはいけません * @return <code>abstract</code>なら{@literal true} */ public static boolean isAbstract(final Class<?> clazz) { assertArgumentNotNull("clazz", clazz); return isAbstract(clazz.getModifiers()); } /**
Registered: Fri Nov 01 20:58:10 UTC 2024 - Last Modified: Thu Mar 07 01:59:08 UTC 2024 - 5.5K bytes - Viewed (0) -
build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt
""" package com.example; import org.gradle.api.provider.Property; public abstract class Task { public abstract Property<String> getSourceCompatibility(); } """ ) } ) { assertHasErrors(
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Wed Oct 02 14:20:08 UTC 2024 - 26.1K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalController.java
throw new CrawlerSystemException("Could not stop a process.", e); } } } protected abstract void delayBeforeProcessing(); protected abstract void delayAfterProcessing(); protected abstract void delayAtNoUrlInQueue(); protected abstract void delayForWaitingNewUrl(); public boolean isIgnoreException() { return ignoreException; }
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 2.3K bytes - Viewed (0) -
build-logic-commons/basics/src/main/kotlin/gradlebuild/basics/tasks/ClasspathManifest.kt
import java.util.Properties @CacheableTask abstract class ClasspathManifest : DefaultTask() { @get:Input abstract val optionalProjects: ListProperty<String> @get:Internal abstract val projectDependencies: ConfigurableFileCollection @Input val runtime = externalDependencies.elements.map { it.map { it.asFile.name }.sorted() } @get:Internal abstract val externalDependencies: ConfigurableFileCollection
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Thu Mar 28 20:26:58 UTC 2024 - 2.4K bytes - Viewed (0) -
android/guava/src/com/google/common/base/Optional.java
*/ @Override public abstract boolean equals(@CheckForNull Object object); /** * Returns a hash code for this instance. * * <p><b>Comparison to {@code java.util.Optional}:</b> this class leaves the specific choice of * hash code unspecified, unlike the Java 8+ equivalent. */ @Override public abstract int hashCode(); /**
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 31 14:20:11 UTC 2024 - 15.4K bytes - Viewed (0) -
android/guava/src/com/google/common/collect/ContiguousSet.java
abstract ContiguousSet<C> headSetImpl(C toElement, boolean inclusive); @SuppressWarnings("MissingOverride") // Supermethod does not exist under GWT. abstract ContiguousSet<C> subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive); @SuppressWarnings("MissingOverride") // Supermethod does not exist under GWT.
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Nov 30 21:54:06 UTC 2023 - 9.9K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/testers/AbstractListIndexOfTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public abstract class AbstractListIndexOfTester<E> extends AbstractListTester<E> { /** Override to call {@code indexOf()} or {@code lastIndexOf()}. */ protected abstract int find(@Nullable Object o); /** Override to return "indexOf" or "lastIndexOf()" for use in failure messages. */ protected abstract String getMethodName(); @CollectionSize.Require(absent = ZERO)
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 20:12:35 UTC 2024 - 3.3K bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleDocumentationExtension.java
*/ public abstract DirectoryProperty getSourceRoot(); /** * Collection of CSS files to include in generated documentation. */ public abstract ConfigurableFileCollection getCssFiles(); /** * The source code to be documented. This should be the "public" APIs. */ public abstract ConfigurableFileCollection getDocumentedSource(); /**
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Aug 20 14:11:17 UTC 2024 - 4.4K bytes - Viewed (0)