Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 1,513 for Implementation (0.19 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentIdentifierSerializer.java

            byte id = decoder.readByte();
            Implementation implementation = Implementation.valueOf(id);
            if (implementation == null) {
                throw new IllegalArgumentException("Unable to find component identifier type with id: " + id);
            }
            switch (implementation) {
                case ROOT_PROJECT: {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/ForwardingSortedMultiset.java

     * either providing your own implementation, or delegating to the provided {@code standardAdd}
     * 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 ForwardingSortedMultiset}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/services/BuildService.java

     * some state that tasks use to do their work. A service implementation might hold, for example, an in-memory cache that tasks use
     * to improve performance. Or, as another example, a service implementation might represent a web service that the build starts and
     * uses.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 21 20:09:51 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/model/InstantiatorBackedObjectFactory.java

            throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing named objects");
        }
    
        @Override
        public SourceDirectorySet sourceDirectorySet(String name, String displayName) {
            throw new UnsupportedOperationException("This ObjectFactory implementation does not support constructing source directory sets");
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 14 18:56:03 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/collect/ForwardingNavigableSet.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 ForwardingNavigableSet}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  6. 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)
  7. subprojects/core/src/main/java/org/gradle/process/internal/worker/WorkerProcessSettings.java

        /**
         * The packages which are allowed to leak from the application classpath into the implementation classpath.
         * These packages affect both classes and resources.
         * Subpackages of the provided packages are also shared with the implementation classpath.
         *
         * @return The list of packages which are shared from the application to the implementation classpath.
         */
        Set<String> getSharedPackages();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 01 18:40:53 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultTransformRegistrationFactory.java

        @Override
        public TransformRegistration create(ImmutableAttributes from, ImmutableAttributes to, Class<? extends TransformAction<?>> implementation, @Nullable TransformParameters parameterObject) {
            TypeMetadata actionMetadata = actionMetadataStore.getTypeMetadata(implementation);
            boolean cacheable = implementation.isAnnotationPresent(CacheableTransform.class);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 11:18:50 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top