Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,156 for abstract (0.17 sec)

  1. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-classworlds/1.2-alpha-10/plexus-classworlds-1.2-alpha-10.jar

    org/codehaus/classworlds/ClassRealm.class package org.codehaus.classworlds; public abstract interface ClassRealm { public abstract String getId(); public abstract ClassWorld getWorld(); public abstract void importFrom(String, String) throws NoSuchRealmException; public abstract void addConstituent(java.net.URL); public abstract ClassRealm locateSourceRealm(String); public abstract void setParent(ClassRealm); public abstract ClassRealm createChildRealm(String) throws DuplicateRealmExcept; public abstract...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 41.5K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

     */
    @CacheableTask
    public abstract class GradleKotlinDslRuntimeGeneratedSources extends DefaultTask {
    
        @Classpath
        public abstract ConfigurableFileCollection getInputClasspath();
    
        @OutputDirectory
        public abstract DirectoryProperty getGeneratedSources();
    
        @OutputDirectory
        public abstract DirectoryProperty getGeneratedClasses();
    
        @Inject
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Sun Mar 19 17:15:23 GMT 2023
    - 3.9K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/Javadocs.java

    import java.net.URI;
    
    /**
     * Configuration for generating Javadocs
     */
    public abstract class Javadocs {
        /**
         * Link to Java API to use when generating Javadoc
         */
        public abstract Property<URI> getJavaApi();
    
        /**
         * Link to Groovy API to use when generating Javadoc
         */
        public abstract Property<URI> getGroovyApi();
    
        /**
         * The CSS file to style Javadocs with
         */
    Java
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Mar 17 08:08:46 GMT 2023
    - 1.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractMapEntry.java

     * Entry}.
     *
     * @author Jared Levy
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class AbstractMapEntry<K extends @Nullable Object, V extends @Nullable Object>
        implements Entry<K, V> {
    
      @Override
      @ParametricNullness
      public abstract K getKey();
    
      @Override
      @ParametricNullness
      public abstract V getValue();
    
      @Override
      @ParametricNullness
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Aug 05 00:40:25 GMT 2021
    - 2K bytes
    - Viewed (0)
  5. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/AbstractAcceptedApiChangesMaintenanceTask.kt

    import org.gradle.api.tasks.PathSensitivity
    
    
    /**
     * Abstract base class for [Task][org.gradle.api.Task]s that verify and manipulate the given accepted API changes file.
     */
    @CacheableTask
    abstract class AbstractAcceptedApiChangesMaintenanceTask : DefaultTask() {
        @get:InputFile
        @get:PathSensitive(PathSensitivity.NONE)
        abstract val apiChangesFile: RegularFileProperty
    
        protected
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Tue Feb 07 20:38:43 GMT 2023
    - 2.3K bytes
    - Viewed (0)
  6. 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;
    
        public final void run() {
          try {
            realRun();
          } catch (Throwable t) {
            threadUnexpectedException(t);
          }
        }
      }
    
      public abstract class RunnableShouldThrow implements Runnable {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Feb 22 17:15:24 GMT 2024
    - 37.2K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    abstract int getColumnNumber(); public abstract boolean isWhitespace() throws XmlPullParserExcepti; public abstract String getText(); public abstract char[] getTextCharacters(int[]); public abstract String getNamespace(); public abstract String getName(); public abstract String getPrefix(); public abstract boolean isEmptyElementTag() throws XmlPullParserExcepti; public abstract int getAttributeCount(); public abstract String getAttributeNamespac(int); public abstract String getAttributeName(int); public...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 200.2K bytes
    - Viewed (0)
  8. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/UpdateAgpVersions.kt

     */
    @UntrackedTask(because = "Not worth tracking")
    abstract class UpdateAgpVersions : DefaultTask() {
    
        @get:Internal
        abstract val comment: Property<String>
    
        @get:Internal
        abstract val minimumSupportedMinor: Property<String>
    
        @get:Internal
        abstract val propertiesFile: RegularFileProperty
    
        @get:Internal
        abstract val compatibilityDocFile: RegularFileProperty
    
        @TaskAction
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Fri Jun 02 09:17:07 GMT 2023
    - 5.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/graph/AbstractGraphTest.java

      /** Creates and returns an instance of the graph to be tested. */
      abstract Graph<Integer> createGraph();
    
      /**
       * A proxy method that adds the node {@code n} to the graph being tested. In case of Immutable
       * graph implementations, this method should replace {@link #graph} with a new graph that includes
       * this node.
       */
      abstract void addNode(Integer n);
    
      /**
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jan 22 17:29:38 GMT 2024
    - 16.6K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild/integrationtests/tasks/GenerateLanguageAnnotations.kt

    import javax.inject.Inject
    
    
    @CacheableTask
    abstract class GenerateLanguageAnnotations : DefaultTask() {
        @get:Inject
        abstract val workerExecutor: WorkerExecutor
    
        @get:CompileClasspath
        abstract val classpath: ConfigurableFileCollection
    
        @get:Input
        abstract val packageName: Property<String>
    
        @get:OutputDirectory
        abstract val destDir: DirectoryProperty
    
        @TaskAction
    Plain Text
    - Registered: Wed Mar 27 11:36:08 GMT 2024
    - Last Modified: Fri Apr 07 08:27:12 GMT 2023
    - 2K bytes
    - Viewed (0)
Back to top