Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 62 for content_es (0.1 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/test/fixtures/server/http/BlockingHttpServer.java

             *
             * @return this
             */
            BuildableExpectedRequest broken();
    
            /**
             * Sends a 200 response with the contents of the given file as the response body.
             *
             * @return this
             */
            BuildableExpectedRequest sendFile(File file);
    
            /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/kotlin-dsl-provider-plugins/src/main/kotlin/org/gradle/kotlin/dsl/provider/plugins/precompiled/tasks/GeneratePrecompiledScriptPluginAccessors.kt

         * hash code.
         * 5. For each group, for each script plugin in the group, write the generated package name to a file named
         * after the contents of the script plugin file. This is so the file can be easily found by
         * [PrecompiledScriptDependenciesResolver].
         */
        @TaskAction
        fun generate() {
    
            recreateTaskDirectories()
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:10:49 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/integTest/groovy/org/gradle/api/plugins/ApplicationPluginIntegrationTest.groovy

        def "distribution not in root directory has correct permissions set"() {
            given:
            buildFile << """
                distributions {
                    main {
                        contents {
                            into "/not-the-root"
                        }
                    }
                }
            """
    
            when:
            succeeds("installDist")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 12 10:33:12 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/jvm/toolchains.adoc

         | Is JDK:             true
         | Detected by:        environment variable 'JDK16'
    
     + Oracle JDK 1.7.0_80
         | Location:           /Library/Java/JavaVirtualMachines/jdk1.7.0_80.jdk/Contents/Home/jre
         | Language Version:   7
         | Vendor:             Oracle
         | Architecture:       x86_64
         | Is JDK:             false
         | Detected by:        MacOS java_home
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:37:54 UTC 2024
    - 24.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/Task.java

        /**
         * <p>Returns a directory which this task can use to write temporary files to. Each task instance is provided with a
         * separate temporary directory. There are no guarantees that the contents of this directory will be kept beyond the
         * execution of the task.</p>
         *
         * @return The directory. Never returns null. The directory will already exist.
         */
        @Internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/implementing_custom_tasks.adoc

    |`@PathSensitive`
    |Property is one or more files and only the given part of the file path is important
    
    |`@IgnoreEmptyDirectories`
    |Used with `@InputFiles` or `@InputDirectory` to instruct Gradle to track only changes to the contents of directories and not differences in the directories themselves.
    
    |`@NormalizeLineEndings`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 05:34:54 UTC 2024
    - 37.2K bytes
    - Viewed (0)
Back to top