Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,052 for Implementation (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/process/internal/worker/request/WorkerAction.java

    import java.io.Serializable;
    import java.util.Collections;
    import java.util.concurrent.Callable;
    import java.util.concurrent.CountDownLatch;
    
    /**
     * Worker-side implementation of {@link RequestProtocol} executing actions.
     */
    public class WorkerAction implements Action<WorkerProcessContext>, Serializable, RequestProtocol, StreamFailureHandler, Stoppable, StreamCompletion {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 27 08:22:48 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/JavaToolchainInput.java

        private final String vendor;
        private final String implementation;
    
        public JavaToolchainInput(JavaToolchainSpec spec) {
            this.javaLanguageVersion = spec.getLanguageVersion().getOrNull();
            this.vendor = spec.getVendor().get().toString();
            this.implementation = spec.getImplementation().get().toString();
        }
    
        @Optional
        @Input
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 16:57:19 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/ForwardingMapEntry.java

     * should override {@code equals} as well, either providing your own implementation, or delegating
     * to the provided {@code standardEquals} method.
     *
     * <p>Each of the {@code standard} methods, where appropriate, use {@link Objects#equal} to test
     * equality for both keys and values. This may not be the desired behavior for map implementations
     * that use non-standard notions of key equality, such as the entry of a {@code SortedMap} whose
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Mar 19 19:28:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top