Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for content_es (0.8 sec)

  1. platforms/documentation/docs/src/docs/userguide/troubleshooting/validation_problems.adoc

    If you use the `@Input` annotation on a file-based property, Gradle wouldn't consider the file contents, or the directory contents, as inputs, as you might expect.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 21.8K bytes
    - Viewed (0)
  2. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

            where:
            type                      | creationCommand
            "empty directory"         | { TestFile output -> output.createDir() }
            "directory with contents" | { TestFile output ->
                output.create {
                    file("first-file").text = "leftover file"
                    file("second-file").text = "leftover file"
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/AbstractCollectionProperty.java

     *     the collecting supplier will wrap a {@link Collector} that lazily represents the yet-to-be realized contents of the collection - see below for details</li>
     * </ul>
     *
     * <h3>Collectors</h3>
     * <p>
     *     While a collection property's contents are being built up, its value is represented by a {@link CollectingSupplier}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/integTest/groovy/org/gradle/java/compile/incremental/AbstractCrossTaskIncrementalCompilationIntegrationTest.groovy

            )
    
            when:
            run("${language.compileTaskName}")
            impl.recompiledClasses("Base", "Dependant")
    
            impl.snapshot()
    
            // Change the contents of Dependant to force recompile. Compile will only
            // pass if compiling against impl's Base
            file("impl/src/main/${language.name}/Dependant.${language.name}") << "// Recompile me please"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:55:46 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/wrapper-main/src/executable/resources/META-INF/LICENSE

              documentation, if provided along with the Derivative Works; or,
              within a display generated by the Derivative Works, if and
              wherever such third-party notices normally appear. The contents
              of the NOTICE file are for informational purposes only and
              do not modify the License. You may add Your own attribution
              notices within Derivative Works that You distribute, alongside
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheMavenPublishIntegrationTest.groovy

            if (fileName.startsWith('maven-metadata.xml')) {
                if (fileName == 'maven-metadata.xml') {
                    return clearLastUpdatedElementOf(repositoryFile.text)
                }
                // Ignore contents of maven-metadata.xml.sha256, etc, because hashes will most likely
                // change between runs due to <lastUpdated /> differences.
                return ''
            }
            return repositoryFile.text
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            outputContains("result = [lib-1.3.jar]")
        }
    
        // This documents current behaviour, rather than desired behaviour. The contents of the artifact does not affect the contents of the task graph and so should not be treated as an input
        def "reports changes to artifact in file repository"() {
            repo.setup(this)
            taskTypeLogsInputFileCollectionContent()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  8. platforms/jvm/toolchains-jvm-shared/src/main/java/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectory.java

         */
        @VisibleForTesting
        static final String LEGACY_MARKER_FILE = "provisioned.ok";
        @VisibleForTesting
        static final String MARKER_FILE = ".ready";
        private static final String MAC_OS_JAVA_HOME_FOLDER = "Contents/Home";
    
        private static final class UnpackedRoot {
            private final File dir;
            private final JvmInstallationMetadata metadata;
    
            private UnpackedRoot(File dir, JvmInstallationMetadata metadata) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 23:47:49 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/file/FileCollectionSymlinkIntegrationTest.groovy

            executer.requireIsolatedDaemons()
        }
    
        def "#desc can handle symlinks"() {
            def buildScript = file("build.gradle")
            def baseDir = file('build')
            baseDir.file('file').text = 'some contents'
            def symlinked = baseDir.file('symlinked')
            symlinked.text = 'target of symlink'
            baseDir.file('symlink').createLink(symlinked)
    
            buildScript << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/NestedConfigureDslIntegrationTest.groovy

    plugins {
        id 'distribution'
    }
    ${mavenCentralRepository()}
    
    configurations {
        conf.incoming.afterResolve {
            distributions {
                myDist {
                    contents {}
                }
            }
        }
    }
    
    task resolve {
        dependsOn configurations.conf
        doFirst {
            configurations.conf.files // Trigger `afterResolve`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 12.1K bytes
    - Viewed (0)
Back to top