- Sort Score
- Result 10 results
- Languages All
Results 41 - 50 of 924 for abstract (0.07 sec)
-
src/main/java/org/codelibs/fess/dict/DictionaryFile.java
out.write(inputStream); } } public abstract String getType(); public abstract PagingList<T> selectList(int offset, int size); public abstract OptionalEntity<T> get(long id); public abstract void insert(T item); public abstract void update(T item); public abstract void delete(T item); public static class PagingList<E> implements List<E> {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 11 21:11:58 UTC 2024 - 6.8K bytes - Viewed (0) -
okhttp-sse/api/okhttp-sse.api
public abstract interface class okhttp3/sse/EventSource { public abstract fun cancel ()V public abstract fun request ()Lokhttp3/Request; } public abstract interface class okhttp3/sse/EventSource$Factory { public abstract fun newEventSource (Lokhttp3/Request;Lokhttp3/sse/EventSourceListener;)Lokhttp3/sse/EventSource; } public abstract class okhttp3/sse/EventSourceListener { public fun <init> ()V public fun onClosed (Lokhttp3/sse/EventSource;)V
Registered: Fri Nov 01 11:42:11 UTC 2024 - Last Modified: Sun Dec 17 14:39:59 UTC 2023 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/entity/SearchRequestParams.java
public abstract int getStartPosition(); public abstract int getPageSize(); public abstract int getOffset(); public abstract String[] getExtraQueries(); public abstract Object getAttribute(String name); public abstract Locale getLocale(); public abstract SearchRequestType getType(); public abstract String getSimilarDocHash(); public String getTrackTotalHits() {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 4.8K bytes - Viewed (0) -
impl/maven-cli/src/main/java/org/apache/maven/cling/ClingSupport.java
return 1; } finally { if (classWorldManaged) { classWorld.close(); } } } protected abstract Invoker<R> createInvoker(); protected abstract R parseArguments(String[] args) throws ParserException, IOException;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 2.7K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java
} // Some convenient Runnable classes public abstract class CheckedRunnable implements Runnable { protected abstract void realRun() throws Throwable; @Override public final void run() { try { realRun(); } catch (Throwable t) { threadUnexpectedException(t); } } } public abstract class RunnableShouldThrow implements Runnable {
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Thu Oct 17 02:42:09 UTC 2024 - 37.9K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingObject.java
* @since 2.0 */ @GwtCompatible @ElementTypesAreNonnullByDefault public abstract class ForwardingObject { /** Constructor for use by subclasses. */ protected ForwardingObject() {} /** * Returns the backing delegate instance that methods are forwarded to. Abstract subclasses * generally override this method with an abstract method that has a more specific return type,
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Tue Jun 29 19:42:21 UTC 2021 - 3K bytes - Viewed (0) -
build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateKotlinVersions.kt
*/ @UntrackedTask(because = "Not worth tracking") abstract class UpdateKotlinVersions : DefaultTask() { @get:Internal abstract val comment: Property<String> @get:Internal abstract val minimumSupported: Property<String> @get:Internal abstract val propertiesFile: RegularFileProperty @get:Internal abstract val compatibilityDocFile: RegularFileProperty @TaskAction
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Tue Jul 23 18:27:26 UTC 2024 - 5.2K bytes - Viewed (0) -
build-logic/buildquality/src/main/kotlin/gradlebuild/archtest/PackageCyclesExtension.kt
* See the License for the specific language governing permissions and * limitations under the License. */ package gradlebuild.archtest import org.gradle.api.provider.ListProperty abstract class PackageCyclesExtension { abstract val excludePatterns: ListProperty<String>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Fri Jul 08 16:07:53 UTC 2022 - 790 bytes - Viewed (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/UserGuideTransformTask.groovy
* </ul> * */ @CacheableTask abstract class UserGuideTransformTask extends DefaultTask { @PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getSourceFile(); @PathSensitive(PathSensitivity.NONE) @InputFile abstract RegularFileProperty getLinksFile(); @OutputFile abstract RegularFileProperty getDestFile(); @Input
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 19 15:07:24 UTC 2024 - 5.6K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/AbstractVersionTransformation.java
import org.codehaus.plexus.logging.AbstractLogEnabled; /** * Describes a version transformation during artifact resolution. * * TODO try and refactor to remove abstract methods - not particular happy about current design */ @Deprecated public abstract class AbstractVersionTransformation extends AbstractLogEnabled implements ArtifactTransformation { @Inject protected RepositoryMetadataManager repositoryMetadataManager;
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Fri Oct 25 12:31:46 UTC 2024 - 5.2K bytes - Viewed (0)