Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

                    // For some reason some extra files are invalidated between builds apart from the changed files.
                    // We assert here that not too many files are invalidated.
                    assert expectedNumberOfRetainedFiles * 0.98 <= retainedFilesAtTheBeginningOfTheCurrentBuild
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SuggestionsMessages.groovy

     */
    
    package org.gradle.integtests.fixtures
    
    /**
     * A collection of suggestions to be displayed to the user when a build fails.
     * These where repeated all over the test code, so they are now centralized here.
     */
    
    class SuggestionsMessages {
    
        public static final String INFO_DEBUG = "Run with --info or --debug option to get more log output."
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/ProguardSmokeTest.groovy

                }
    
                dependencies {
                    implementation 'com.guardsquare:proguard-gradle:${TestedVersions.proguardGradle}'
                }
    
                // Configure the validation task here, since there is no ProGuard plugin
                def validationTask = tasks.register('validatePluginWithId_proguard', ValidatePlugins) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top