Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,156 for abstract (0.17 sec)

  1. guava-tests/test/com/google/common/collect/AbstractHashFloodingTest.java

    import java.util.function.Supplier;
    import junit.framework.TestCase;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Abstract superclass for tests that hash flooding a collection has controlled worst-case
     * performance.
     */
    @GwtIncompatible
    public abstract class AbstractHashFloodingTest<T> extends TestCase {
      private final List<Construction<T>> constructions;
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Tue Oct 03 21:01:39 GMT 2023
    - 8.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/base/CommonMatcher.java

     * javadoc for details.
     */
    @GwtCompatible
    @ElementTypesAreNonnullByDefault
    abstract class CommonMatcher {
      public abstract boolean matches();
    
      public abstract boolean find();
    
      public abstract boolean find(int index);
    
      public abstract String replaceAll(String replacement);
    
      public abstract int end();
    
      public abstract int start();
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Fri Apr 09 00:52:54 GMT 2021
    - 1.2K bytes
    - Viewed (0)
  3. maven-core/src/test/resources/apiv4-repo/junit/junit/4.13.1/junit-4.13.1.jar

    junit/runner/logo.gif junit/runner/TestRunListener.class package junit.runner; public abstract interface TestRunListener { public static final int STATUS_ERROR = 1; public static final int STATUS_FAILURE = 2; public abstract void testRunStarted(String, int); public abstract void testRunEnded(long); public abstract void testRunStopped(long); public abstract void testStarted(String); public abstract void testEnded(String); public abstract void testFailed(int, String, String); } junit/runner/smalllogo.gif junit...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 373.7K bytes
    - Viewed (0)
  4. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    <clinit>(); } org/codehaus/plexus/collections/ActiveCollection.class package org.codehaus.plexus.collections; public abstract interface ActiveCollection { public abstract String getRole(); public abstract boolean isEmpty(); public abstract boolean checkedIsEmpty() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public abstract int size(); public abstract int checkedSize() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; } org/codehaus/p...
    Archive
    - Registered: Sun Mar 31 03:35:09 GMT 2024
    - Last Modified: Tue Oct 16 20:15:40 GMT 2007
    - 15.6K bytes
    - Viewed (0)
  5. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-active-collections/1.0-beta-1/plexus-active-collections-1.0-beta-1.jar

    <clinit>(); } org/codehaus/plexus/collections/ActiveCollection.class package org.codehaus.plexus.collections; public abstract interface ActiveCollection { public abstract String getRole(); public abstract boolean isEmpty(); public abstract boolean checkedIsEmpty() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; public abstract int size(); public abstract int checkedSize() throws org.codehaus.plexus.component.repository.exception.ComponentLookupExcep; } org/codehaus/p...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Oct 02 08:41:25 GMT 2022
    - 15.6K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/commons-logging/commons-logging/1.0.3/commons-logging-1.0.3.jar

    org/apache/commons/logging/Log.class package org.apache.commons.logging; public abstract interface Log { public abstract boolean isDebugEnabled(); public abstract boolean isErrorEnabled(); public abstract boolean isFatalEnabled(); public abstract boolean isInfoEnabled(); public abstract boolean isTraceEnabled(); public abstract boolean isWarnEnabled(); public abstract void trace(Object); public abstract void trace(Object, Throwable); public abstract void debug(Object); public abstract void debug(Object, Throwable);...
    Archive
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Dec 19 19:08:55 GMT 2023
    - 30.9K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/AbstractMultiset.java

        @Override
        public int size() {
          return distinctElements();
        }
      }
    
      Set<Entry<E>> createEntrySet() {
        return new EntrySet();
      }
    
      abstract Iterator<Entry<E>> entryIterator();
    
      abstract int distinctElements();
    
      // Object methods
    
      /**
       * {@inheritDoc}
       *
       * <p>This implementation returns {@code true} if {@code object} is a multiset of the same size
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Tue Jun 01 22:07:10 GMT 2021
    - 6K bytes
    - Viewed (0)
  8. tensorflow/c/eager/c_api_unified_experimental_internal.h

    #include <vector>
    
    #include "tensorflow/c/c_api.h"
    #include "tensorflow/c/conversion_macros.h"
    #include "tensorflow/c/eager/abstract_context.h"
    #include "tensorflow/c/eager/abstract_operation.h"
    #include "tensorflow/c/eager/abstract_tensor_handle.h"
    #include "tensorflow/c/eager/c_api_unified_experimental.h"
    #include "tensorflow/c/tf_datatype.h"
    #include "tensorflow/c/tf_status.h"
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Fri Nov 13 22:20:40 GMT 2020
    - 5.2K bytes
    - Viewed (0)
  9. build-logic/build-init-samples/src/main/kotlin/gradlebuild/samples/tasks/GenerateSample.kt

    
    @DisableCachingByDefault(because = "Not worth caching")
    abstract class GenerateSample : DefaultTask() {
    
        @get:Input
        abstract val type: Property<String>
    
        @get:Input
        abstract val modularization: Property<ModularizationOption>
    
        @get:InputDirectory
        @get:PathSensitive(PathSensitivity.NAME_ONLY)
        abstract val readmeTemplates: DirectoryProperty
    
        @get:OutputDirectory
    Plain Text
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed Jul 07 13:12:26 GMT 2021
    - 2K bytes
    - Viewed (0)
  10. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/rules/AbstractSuperClassChangesRule.groovy

                return null
            }
    
            return checkSuperClassChanges(member, oldClass.get(), newClass.get())
        }
    
        protected abstract boolean changed(JApiCompatibility member)
    
        protected abstract Violation checkSuperClassChanges(JApiClass apiClass, CtClass oldClass, CtClass newClass)
    
        protected boolean isInternal(CtClass c) {
            if (c.name.startsWith("java.")) {
    Groovy
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Thu Oct 06 19:15:15 GMT 2022
    - 2.2K bytes
    - Viewed (0)
Back to top