Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,203 for Implementation (0.13 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AbstractCaptureStateBeforeExecutionStep.java

            public void visitImplementation(Class<?> implementation) {
                visitImplementation(ImplementationSnapshot.of(implementation, classLoaderHierarchyHasher));
            }
    
            @Override
            public void visitImplementation(ImplementationSnapshot implementation) {
                if (this.implementation == null) {
                    this.implementation = implementation;
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/JvmImplementation.java

    
    /**
     * Represents a filter for a implementation of a Java Virtual Machine.
     *
     * @since 6.8
     */
    public final class JvmImplementation {
    
        /**
         * Vendor-specific virtual machine implementation.
         *
         * Acts as a placeholder and matches any implementation from any vendor.
         * Usually used to override specific implementation requests.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 17:40:02 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/internal/DefaultComponentDependencies.java

        private final Configuration implementation;
    
        @Inject
        public DefaultComponentDependencies(RoleBasedConfigurationContainerInternal configurations, String implementationName) {
            implementation = configurations.dependencyScopeUnlocked(implementationName);
        }
    
        public Configuration getImplementationDependencies() {
            return implementation;
        }
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2K bytes
    - Viewed (0)
  4. platforms/software/platform-base/src/main/java/org/gradle/platform/base/internal/registry/DefaultTypeBuilder.java

            }
            if (this.implementation != null) {
                throw new InvalidModelException(String.format("Method annotated with @%s cannot set default implementation multiple times.", markerAnnotation.getSimpleName()));
            }
            this.implementation = implementation;
            return this;
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  5. platforms/core-runtime/service-provider/src/main/java/org/gradle/internal/service/ServiceRegistration.java

         * @param serviceInstance The service implementation.
         */
        <T> void add(Class<T> serviceType, T serviceInstance);
    
        /**
         * Adds a service to this registry. The implementation class should have a single public constructor, and this constructor can take services to be injected as parameters.
         *
         * @param serviceType The service implementation to make visible.
         */
        void add(Class<?> serviceType);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/provider/ValueSource.java

     * </ul>
     *
     * <p>
     * A value source implementation will most likely take parameters. To do this create a
     * subtype of {@link ValueSourceParameters} and declare this type as the type parameter
     * to the value source implementation.
     * </p>
     *
     * <p>
     * A value source implementation doesn't have to be thread-safe, as the single call
     * to {@link #obtain()} is synchronized.
     * </p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 13:02:13 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top