Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 61 for Implementation (0.27 sec)

  1. android/guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                  @Override
                  public String pendingToString() {
                    throw new RuntimeException("I'm a misbehaving implementation");
                  }
                }.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, info=\\[Exception thrown from implementation: "
                    + "class java.lang.RuntimeException\\]\\]");
      }
    
      public void testCompletionFinishesWithDone() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/plugin/software/internal/SoftwareTypeImplementation.java

    import org.gradle.api.Plugin;
    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    
    import java.util.List;
    
    /**
     * Represents a resolved software type implementation including the public model type and the plugin that exposes it.
     */
    public interface SoftwareTypeImplementation<T> {
        String getSoftwareType();
    
        Class<? extends T> getModelPublicType();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:34 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  3. guava/src/com/google/common/hash/LittleEndianByteArray.java

      }
    
      /**
       * Indicates that the loading of Unsafe was successful and the load and store operations will be
       * very efficient. May be useful for calling code to fall back on an alternative implementation
       * that is slower than Unsafe.get/store but faster than the pure-Java mask-and-shift.
       */
      static boolean usingUnsafe() {
        return (byteArray instanceof UnsafeByteArray);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  4. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/DefaultSoftwareTypeImplementation.java

    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Objects;
    
    /**
     * Represents a resolved software type implementation.  Used by declarative DSL to understand which model types should be exposed for
     * which software types.
     */
    public class DefaultSoftwareTypeImplementation<T> implements SoftwareTypeImplementation<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ModuleDependency.java

         *
         * <pre class='autoTested'>
         * plugins {
         *     id 'java' // so that I can declare 'implementation' dependencies
         * }
         *
         * dependencies {
         *   implementation('org.hibernate:hibernate:3.1') {
         *     //excluding a particular transitive dependency:
         *     exclude module: 'cglib' //by artifact name
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 16:14:52 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  6. platforms/core-runtime/build-process-services/src/main/java/org/gradle/api/internal/DefaultClassPathProvider.java

            this.moduleRegistry = moduleRegistry;
        }
    
        @Override
        public ClassPath findClassPath(String name) {
            if (name.equals("GRADLE_RUNTIME")) {
                // Use everything reachable from the daemon implementation
                return moduleRegistry.getModule("gradle-daemon-server").getAllRequiredModulesClasspath();
            }
            if (name.equals("GRADLE_INSTALLATION_BEACON")) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/transfer/SimplexTransferListener.java

    import org.eclipse.aether.transfer.TransferListener;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import static java.util.Objects.requireNonNull;
    
    /**
     * A {@link TransferListener} implementation that wraps another delegate {@link TransferListener} but makes it run
     * on single thread, keeping the listener logic simple. This listener also blocks on last transfer event to allow
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 20:50:56 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                  @Override
                  public String pendingToString() {
                    throw new RuntimeException("I'm a misbehaving implementation");
                  }
                }.toString())
            .matches(
                "[^\\[]+\\[status=PENDING, info=\\[Exception thrown from implementation: "
                    + "class java.lang.RuntimeException\\]\\]");
      }
    
      public void testCompletionFinishesWithDone() {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/functional/src/main/java/org/gradle/internal/collect/PersistentList.java

    import javax.annotation.Nullable;
    import java.util.Collections;
    import java.util.Iterator;
    import java.util.Objects;
    import java.util.function.Consumer;
    
    /**
     * A simple persistent List implementation.
     * <p>
     * The main use-case is to create new lists with added elements creating the minimal amount of garbage.
     * Uses Cons/Nil as building blocks.
     */
    public abstract class PersistentList<T> implements Iterable<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  10. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/DefaultSoftwareTypeRegistry.java

    import java.util.HashMap;
    import java.util.LinkedHashMap;
    import java.util.LinkedHashSet;
    import java.util.Map;
    import java.util.Set;
    
    /**
     * Default implementation of {@link SoftwareTypeRegistry} that registers software types.
     */
    public class DefaultSoftwareTypeRegistry implements SoftwareTypeRegistry {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:31 UTC 2024
    - 6.3K bytes
    - Viewed (0)
Back to top