Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 252 for Implementation (0.31 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/service/scopes/GradleUserHomeScopeServiceRegistry.java

     *
     * <p>A plugin can contribute shared services to this scope by providing an implementation of {@link GradleModuleServices}.
     */
    @ThreadSafe
    @ServiceScope(Scope.Global.class)
    public interface GradleUserHomeScopeServiceRegistry {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/toolchain/DaemonJvmCriteria.java

                return false;
            }
            return isCompatibleWith(JavaLanguageVersion.of(javaVersionMajor));
        }
    
        @Override
        public String toString() {
            // TODO: Include vendor and implementation
            return String.format("JVM version '%s'", getJavaVersion());
        }
    
        public boolean isCompatibleWith(JavaLanguageVersion javaVersion) {
            // TODO: Implement comparisons for vendorSpec and jvmImplementation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:16:16 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNgTestClassProcessorFactory.java

    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    
    import java.io.File;
    import java.io.Serializable;
    import java.util.List;
    
    /**
     * Implementation of {@link WorkerTestClassProcessorFactory} which instantiates a {@link TestNGTestClassProcessor}.
     * This class is loaded on test workers themselves and acts as the entry-point to running TestNG tests on a test worker.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:59:04 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableFileCollection.java

     * <p>You can obtain an instance of {@code ConfigurableFileCollection} by calling {@link org.gradle.api.Project#files(Object...)} or {@link ObjectFactory#fileCollection()}.</p>
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.</p>
     */
    @SupportsKotlinAssignmentOverloading
    public interface ConfigurableFileCollection extends FileCollection, HasConfigurableValue, SupportsConvention {
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  5. maven-compat/src/test/java/org/apache/maven/artifact/resolver/TestFileWagon.java

    import org.apache.maven.wagon.providers.file.FileWagon;
    import org.apache.maven.wagon.resource.Resource;
    
    /**
     * Wagon used for test cases that annotate some methods. Note that this is not a thread-safe implementation.
     */
    public class TestFileWagon extends FileWagon {
        private TestTransferListener testTransferListener;
        private boolean insideGet;
    
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 05:46:50 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/Ordering.java

        // TODO(kevinb): if we change this implementation, add full unit tests.
        return this.<E>reverse().leastOf(iterable, k);
      }
    
      /**
       * Returns the {@code k} greatest elements from the given iterator according to this ordering, in
       * order from greatest to least. If there are fewer than {@code k} elements present, all will be
       * included.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilder.java

                forcedDependencies.add(rawDependency.forced());
            }
            return forcedDependencies.build();
        }
    
        /**
         * {@link VariantResolveMetadata.Identifier} implementation for non-implicit sub-variants of a configuration.
         */
        private static class NestedVariantIdentifier implements VariantResolveMetadata.Identifier {
            private final VariantResolveMetadata.Identifier parent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. platforms/extensibility/plugin-use/src/main/java/org/gradle/plugin/software/internal/DefaultSoftwareTypeImplementation.java

    import org.gradle.api.Project;
    import org.gradle.api.initialization.Settings;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Objects;
    
    /**
     * Represents a resolved software type implementation.  Used by declarative DSL to understand which model types should be exposed for
     * which software types.
     */
    public class DefaultSoftwareTypeImplementation<T> implements SoftwareTypeImplementation<T> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 16:02:34 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/provider/SetProperty.java

     *
     * <p>
     * You can create a {@link SetProperty} instance using factory method {@link org.gradle.api.model.ObjectFactory#setProperty(Class)}.
     * </p>
     *
     * <p><b>Note:</b> This interface is not intended for implementation by build script or plugin authors.
     *
     * @param <T> the type of elements.
     * @since 4.5
     */
    public interface SetProperty<T> extends Provider<Set<T>>, HasMultipleValues<T> {
        /**
         * {@inheritDoc}
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 16:06:55 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/SystemProperties.java

         * Creates an instance for a Factory implementation with a system property set to a given value.  Sets the system property back to the original value (or
         * clears it if it was never set) after the operation.
         *
         * @param propertyName The name of the property to set
         * @param value The value to temporarily set the property to
         * @param factory Instance created by the Factory implementation
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top