Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 79 for content_es (0.11 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/util/GFileUtils.java

            } catch (IOException e) {
                throw new UncheckedIOException(e);
            }
        }
    
        /**
         * Reads and returns file contents. If some exception is triggered the method returns information about this exception.
         * Useful for including file contents in debug trace / exception messages.
         *
         * @param file to read
         * @return content of the file or the problem description in case file cannot be read.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 10:50:51 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  2. platforms/ide/ide-plugins/src/integTest/groovy/org/gradle/plugins/ide/eclipse/EclipseWtpModelIntegrationTest.groovy

            classpath.lib('commons-io-1.4.jar').assertIsDeployedTo('/WEB-INF/lib')
            classpath.lib('myFoo.jar').assertIsDeployedTo('/WEB-INF/lib')
        }
    
        protected def contains(String ... contents) {
            contents.each { assert component.contains(it)}
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/css/base.css

    a strong {
        color: inherit;
    }
    
    img {
        max-width: 100%;
    }
    
    table {
        width: 100%;
        font-size: 85%;
        border: 1px solid #e5e5e5;
        border-collapse: collapse;
    }
    
    .table-contents {
        overflow-x: auto;
        padding-left: 0.6rem;
        margin-bottom: 1rem;
    }
    
    td,
    th {
        padding: .25rem .5rem;
        border: 1px solid #e5e5e5;
    }
    
    th {
        text-align: left;
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.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/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)
  6. 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)
  7. 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)
  8. 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)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/jvm/JvmTest.groovy

            System.properties['java.home'] = software.file('Contents/Home').absolutePath
            System.properties['java.version'] = '1.9'
            Jvm java9Vm = new Jvm(macOs)
    
            then:
            java9Vm.javaHome == software.file('Contents/Home')
            java9Vm.javaExecutable == software.file('Contents/Home/bin/java')
            java9Vm.javacExecutable == software.file('Contents/Home/bin/javac')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 00:09:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/test/groovy/org/gradle/api/tasks/testing/TestTest.groovy

            classFiles.visitStructure(new FileCollectionStructureVisitor() {
                @Override
                void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                    throw new IllegalArgumentException()
                }
    
    
                @Override
                void visitFileTree(File root, PatternSet patterns, FileTreeInternal fileTree) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 11.1K bytes
    - Viewed (0)
Back to top