Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 530 for Here (0.03 sec)

  1. platforms/core-runtime/process-services/src/main/java/org/gradle/process/internal/health/memory/WindowsOsMemoryInfo.java

                    // for us to not force the user's OS to allocate more page file space, so we'll use the commit limit here.
                    windowsMemoryInfo.getCommitLimit(), availableCommitMemory(windowsMemoryInfo)
                );
            } else {
                return new OsMemoryStatusSnapshot(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 20 23:56:19 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. subprojects/core-api/src/main/java/org/gradle/api/attributes/TestSuiteType.java

     * <p>
     * This attribute is usually found on variants that have the {@link Category} attribute valued at {@link Category#VERIFICATION verification}.
     * <p>
     * The constant values present here are not exhaustive.  Any value is allowed, so long as that value
     * is only used to categorize a single test suite within each project.
     *
     * @since 7.4
     */
    @Incubating
    public interface TestSuiteType extends Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 30 17:15:17 UTC 2021
    - 1.6K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top