Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,513 for Implementation (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. guava/src/com/google/common/collect/ForwardingMultiset.java

     * this case, you should override {@code add(Object)} as well, 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 ForwardingMultiset}.
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 15:26:39 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/result/ComponentSelectorSerializer.java

                throw new IllegalArgumentException("Provided component selector may not be null");
            }
    
            Implementation implementation = resolveImplementation(value);
    
            encoder.writeByte(implementation.getId());
    
            if (implementation == Implementation.MODULE) {
                ModuleComponentSelector moduleComponentSelector = (ModuleComponentSelector) value;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top