Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 522 for Here (0.04 sec)

  1. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/resolver/DefaultIdeDependencyResolver.java

    import org.gradle.api.specs.Spec;
    import org.gradle.plugins.ide.internal.resolver.model.IdeExtendedRepoFileDependency;
    
    import java.util.ArrayList;
    import java.util.List;
    import java.util.Set;
    
    /**
     * TODO only here because Kotlin DSL uses this. Please remove once that is fixed.
     */
    public class DefaultIdeDependencyResolver {
    
        private static final Spec<ComponentIdentifier> IS_A_MODULE_ID = new Spec<ComponentIdentifier>() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  2. platforms/ide/problems-api/src/main/java/org/gradle/problems/buildtree/ProblemStream.java

    import javax.annotation.Nullable;
    import java.util.List;
    
    public interface ProblemStream {
        /**
         * Returns diagnostics based on the state of the calling thread.
         *
         * <p>This method is here because stack trace sanitizing is currently performed by the caller.
         * However, each caller does this in a different way and they all do this in a different way
         * to the services used by this type.
         * </p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 06:37:14 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProjectLayoutIntegrationTest.groovy

                    dirName = layout.buildDirectory.file('dirName.txt')
                }
    
                tasks.register('answer', Consumer) {
                    // TODO:configuration should this `dependsOn` be necessary here?
                    dependsOn 'producer'
    
                    Provider<String> computedDirName = computeDirName.flatMap { it.dirName }.map { it.asFile.text }
                    def file = layout.buildDirectory.$provider
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/tasks/WorkNodeAction.java

            return false;
        }
    
        /**
         * Returns the project which the action belongs to. This is used to determine the services to expose to {@link #run(NodeExecutionContext)} via the context.
         * Returning non-null here does not imply any kind of exclusive access to the project, unless {@link #usesMutableProjectState()} returns true.
         */
        @Nullable
        default Project getOwningProject() {
            return null;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/samples/java/modules-multi-project-with-integration-tests/README.adoc

    Here, we add an additional source set _integrationTest_ with a `module-info.java`.
    
    ```
    src
    └── integrationTest
        └── java
            └── module-info.java
    ```
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/JavaHomeBasedJavaCompilerFactory.java

    public class JavaHomeBasedJavaCompilerFactory implements Factory<ContextAwareJavaCompiler>, Serializable {
        private final List<File> compilerPluginsClasspath;
        // We use a static cache here because we want to reuse classloaders in compiler workers as
        // it has a huge impact on performance. Previously there was a single, JdkTools.current()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 13:00:39 UTC 2024
    - 2K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/TestFrameworkDistributionModule.java

     * which implements the module and an example class name, which if loaded, signals the existence of the module.
     *
     * <p>The complexity here is necessary to determine if test framework dependencies are already present on the
     * application classpath, and thus do not need to be loaded from the Gradle distribution. The behavior of loading
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  8. subprojects/diagnostics/src/testFixtures/groovy/org/gradle/api/reporting/components/AbstractComponentReportIntegrationTest.groovy

    Root project 'test'
    ------------------------------------------------------------
    """ + normalised + """
    Note: currently not all plugins register their components, so some components may not be visible here."""
            return formatter.transform(raw).readLines().findAll { !it.isEmpty() }.join('\n')
        }
    
        AvailableToolChains.InstalledToolChain getToolChain() {
            return AvailableToolChains.defaultToolChain
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 15 23:29:03 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/collections/DomainObjectCollectionFactory.java

    public interface DomainObjectCollectionFactory {
        /**
         * Creates a {@link NamedDomainObjectContainer} for managing named objects of the specified type.
         *
         * Note that this method is here because {@link org.gradle.api.Project#container(Class)} cannot decorate the elements because of backwards compatibility.
         */
        <T> NamedDomainObjectContainer<T> newNamedDomainObjectContainerUndecorated(Class<T> elementType);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 00:47:05 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  10. testing/integ-test/src/integTest/groovy/org/gradle/integtests/DependencyResolutionFromTaskContextIntegrationTest.groovy

            settingsFile << """
                include 'a', 'b'
            """
    
            expect:
            fails("a:foo", "b:foo", "--parallel")
    
            // We just need to assert that the build fails with the right error message here, it doesn't matter which task is the first to fail,
            // allowing either failure to pass the test should reduce flakiness on CI.
    
            def docLinkMessage = getDocLinkMessage()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top