Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 336 for Implementation (0.18 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/isolated/IsolationScheme.java

    import java.util.Queue;
    import java.util.concurrent.atomic.AtomicReference;
    
    public class IsolationScheme<IMPLEMENTATION, PARAMS> {
        private final Class<IMPLEMENTATION> interfaceType;
        private final Class<PARAMS> paramsType;
        private final Class<? extends PARAMS> noParamsType;
    
        public IsolationScheme(Class<IMPLEMENTATION> interfaceType, Class<PARAMS> paramsType, Class<? extends PARAMS> noParamsType) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ValidateStep.java

                @Override
                public void visitImplementation(Class<?> implementation) {
                    workClass.set(GeneratedSubclasses.unpack(implementation));
                }
    
                @Override
                public void visitImplementation(ImplementationSnapshot implementation) {
                }
            });
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/InstrumentingClassLoader.java

         * @param classfileBuffer the buffer that contains class implementation bytes in class file format - must not be modified
         * @return new class implementation bytes in class file format or {@code null} to continue loading the original implementation
         */
        @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/DefaultToolchainSpec.java

            private final JvmVendorSpec vendor;
            private final JvmImplementation implementation;
    
            public Key(@Nullable JavaLanguageVersion languageVersion, @Nullable JvmVendorSpec vendor, @Nullable JvmImplementation implementation) {
                this.languageVersion = languageVersion;
                this.vendor = vendor;
                this.implementation = implementation;
            }
    
            @Override
            public boolean equals(Object o) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 18:07:00 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/detection/ForkedTestClasspathFactory.java

    import java.util.ArrayList;
    import java.util.Iterator;
    import java.util.List;
    import java.util.function.Function;
    
    /**
     * Constructs the application and implementation classpaths for a test process,
     * while also optionally loading test framework implementation dependencies from
     * the distribution.
     *
     * @see ForkedTestClasspath
     */
    public class ForkedTestClasspathFactory {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 14:28:48 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidator.java

            return String.format(
                "The service implementation '%s' is registered in the '%s' scope but does not declare it explicitly.\n" +
                    "The implementation appears to serve %s.\n" +
                    "Try the following:\n" +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:17 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/testing/ArbitraryInstances.java

              .build();
    
      /**
       * type → implementation. Inherently mutable interfaces and abstract classes are mapped to their
       * default implementations and are "new"d upon get().
       */
      private static final ConcurrentMap<Class<?>, Class<?>> implementations = Maps.newConcurrentMap();
    
      private static <T> void setImplementation(Class<T> type, Class<? extends T> implementation) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 17 16:33:44 UTC 2024
    - 20.5K bytes
    - Viewed (0)
Back to top