Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 224 for content_es (0.15 sec)

  1. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/collections/GeneratedSingletonFileTreeSpec.groovy

                assert !generatedFile.exists()
                assert details.file == generatedFile
                assert generatedFile.text == "contents!"
            }
            1 * generationListener.execute(generatedFile)
            1 * contentWriter.execute(_) >> { OutputStream outputStream ->
                outputStream << "contents!"
            }
            0 * _
        }
    
        def "visiting does not create file if visitor does not query the file location"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  2. platforms/core-runtime/build-process-services/src/test/groovy/org/gradle/internal/installation/CurrentGradleInstallationLocatorTest.groovy

            installation == null
    
            where:
            jarDirectory << ['other', 'other/plugins']
        }
    
        private void createJarFile(TestFile jar) {
            TestFile contents = tmpDir.createDir('contents')
            TestFile classFile = contents.createFile('org/gradle/MyClass.class')
    
            ClassNode classNode = new ClassNode()
            classNode.version = Opcodes.V1_6
            classNode.access = Opcodes.ACC_PUBLIC
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. platforms/native/testing-native/src/main/java/org/gradle/nativeplatform/test/xctest/tasks/InstallXCTestBundle.java

                        "--destination", new File(bundleDir, "Contents/Frameworks").getAbsolutePath(),
                        "--platform", "macosx",
                        "--resource-destination", new File(bundleDir, "Contents/Resources").getAbsolutePath(),
                        "--scan-folder", new File(bundleDir, "Contents/Frameworks").getAbsolutePath()
                    );
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/normalization/ConfigureRuntimeClasspathNormalizationIntegrationTest.groovy

            def archive = file("archive.${extension}")
            def contents = file("archiveContents").createDir()
            def ignoredFile = contents.file("ignored.txt")
            ignoredFile << "this file is ignored"
            def nonIgnoredFile = contents.file("not-ignored.txt")
            nonIgnoredFile << "this file is not ignored"
            contents.zipTo(archive)
            buildFile << """
                normalization {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 01 03:07:53 UTC 2023
    - 37.2K bytes
    - Viewed (0)
  5. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingFileSystemLocationSnapshotHasherTest.groovy

    class LineEndingNormalizingFileSystemLocationSnapshotHasherTest extends Specification {
        @TempDir
        File tempDir
    
        def "calculates hash for text file with #description"() {
            def file = file('foo') << contents
            def delegate = Mock(LineEndingNormalizingFileSystemLocationSnapshotHasher)
            def hasher = LineEndingNormalizingFileSystemLocationSnapshotHasher.wrap(delegate, LineEndingSensitivity.NORMALIZE_LINE_ENDINGS)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/integTest/groovy/org/gradle/internal/execution/IncrementalExecutionIntegrationTest.groovy

            !result.reusedOutputOriginMetadata.present
            result.executionReasons == ["Output property 'dir' file ${outputDirFile.absolutePath} has changed."]
        }
    
        def "out of date when any output file has changed contents"() {
            given:
            execute(unitOfWork)
    
            when:
            outputFile << "new content"
            def result = execute(unitOfWork)
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_concepts.adoc

    As input normalization is declared by the task _consuming_ the data as input, different tasks can define different ways to normalize the same data.
    
    When it comes to file inputs, Gradle can normalize the path of the files as well as their contents.
    
    [[relocatability]]
    === Path sensitivity and relocatability
    
    When sharing cached results between computers, it's rare that everyone runs the build from the exact same location on their computers.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 29 17:38:38 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_attributes.adoc

    | link:{javadocPath}/org/gradle/api/attributes/LibraryElements.html#LIBRARY_ELEMENTS_ATTRIBUTE[`org.gradle.libraryelements`]
    | Indicates the contents of a `org.gradle.category=library` variant
    | `LibraryElements` values built from constants defined in link:{javadocPath}/org/gradle/api/attributes/LibraryElements.html[LibraryElements]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 18:51:23 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/tasks/Input.java

     * This annotation cannot be used on a {@link java.io.File} object. If you want to refer to the file path,
     * independently of its contents, return a {@link java.lang.String String} instead which returns the absolute
     * path.
     * If, instead, you want to refer to the contents and path of a file or a directory, use
     * {@link org.gradle.api.tasks.InputFile} or {@link org.gradle.api.tasks.InputDirectory} respectively.
     */
    @Documented
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/main/java/org/gradle/plugins/ear/Ear.java

                        action(file -> outputChangeListener.invalidateCachesFor(singleton(file.getAbsolutePath()))),
                        action(outputStream ->
                            // delay obtaining contents to account for descriptor changes
                            // (for instance, due to modules discovered)
                            descriptor.writeTo(new OutputStreamWriter(outputStream))
                        )
                    );
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top