Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,052 for Implementation (0.16 sec)

  1. android/guava/src/com/google/common/collect/ForwardingSortedSet.java

     * override {@code addAll} as well, either providing your own implementation, or delegating to the
     * provided {@code standardAddAll} method.
     *
     * <p><b>{@code default} method warning:</b> This class does <i>not</i> forward calls to {@code
     * default} methods. Instead, it inherits their default implementations. When those implementations
     * invoke methods, they invoke methods on the {@code ForwardingSortedSet}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  2. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/reflect/Instantiator.java

     * a number of capabilities. Some examples:
     *
     * <ul>
     * <li>An implementation may decorate the instances in some fashion, for example to mix in the Groovy DSL, and so may return a subclass of the requested type.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  3. platforms/software/platform-base/src/main/java/org/gradle/platform/base/TypeBuilder.java

     */
    @Incubating
    @HasInternalProtocol
    public interface TypeBuilder<T> {
    
        /**
         * Allows the plugin to register the implementation type.
         * @param implementation the implementation class.
         */
        TypeBuilder<T> defaultImplementation(Class<?> implementation);
    
        /**
         * Allows type registration rules to add internal views to the registered type.
         * @param internalView the internal view class
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/AbstractIterator.java

    import javax.annotation.CheckForNull;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * This class provides a skeletal implementation of the {@code Iterator} interface, to make this
     * interface easier to implement for certain types of data sources.
     *
     * <p>{@code Iterator} requires its implementations to support querying the end-of-data status
     * without changing the iterator's state, using the {@link #hasNext} method. But many data sources,
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Mar 18 02:04:10 UTC 2022
    - 6.4K bytes
    - Viewed (0)
  5. platforms/native/platform-native/src/testFixtures/groovy/org/gradle/nativeplatform/fixtures/ToolChainRequirement.java

        VISUALCPP_2019,
        // Any available Visual Studio >= 2019
        VISUALCPP_2019_OR_NEWER,
        // Any windows GCC compatible implementation (mingw, cygwin)
        WINDOWS_GCC,
        // Any available GCC implementation (including mingw, cygwin, but not clang)
        GCC,
        // Any available GCC compatible implementation (including mingw, cygwin, and clang)
        GCC_COMPATIBLE,
        // Any available Clang
        CLANG,
        // Any Swift compiler
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/core-runtime/serialization/src/main/java/org/gradle/internal/serialize/Encoder.java

        /**
         * Writes a signed 64 bit long value. The implementation may encode the value as a variable number of bytes, not necessarily as 8 bytes.
         */
        void writeLong(long value) throws IOException;
    
        /**
         * Writes a signed 64 bit long value whose value is likely to be small and positive but may not be. The implementation may encode the value in a way that is more efficient for small positive
         * values.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 16:06:56 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  7. platforms/jvm/language-jvm/src/main/java/org/gradle/api/plugins/jvm/JvmComponentDependencies.java

        /**
         * Returns a {@link DependencyCollector} that collects the set of implementation dependencies.
         * <p>
         * <code>implementation</code> dependencies are used at compilation and runtime.
         *
         * @return a {@link DependencyCollector} that collects the set of implementation dependencies
         * @since 7.6
         */
        DependencyCollector getImplementation();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceLocator.java

                            throw new RuntimeException(String.format("No implementation class for service '%s' specified.", serviceType.getName()));
                        }
                    } catch (Throwable e) {
                        throw new ServiceLookupException(String.format("Could not determine implementation class for service '%s' specified in resource '%s'.", serviceType.getName(), resource), e);
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/toolchain-management/groovy/buildSrc/src/main/java/org/myorg/JavaToolchainResolverImplementation.java

    // tag::java-toolchain-resolver-implementation[]
    public abstract class JavaToolchainResolverImplementation
            implements JavaToolchainResolver { // <1>
    
        public Optional<JavaToolchainDownload> resolve(JavaToolchainRequest request) { // <2>
            return Optional.empty(); // custom mapping logic goes here instead
        }
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 613 bytes
    - Viewed (0)
  10. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JavaToolchainSpec.java

         *
         * @since 6.8
         */
        Property<JvmVendorSpec> getVendor();
    
        /**
         * The virtual machine implementation of the toolchain.
         * <p>
         * By default, any implementation (hotspot, j9, ...) is eligible.
         * <p>
         * Note that the implementation can only be configured if the {@link #getLanguageVersion() language version} is configured as well.
         *
         * @since 6.8
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top