Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 224 for content_es (0.12 sec)

  1. testing/performance/src/templates/archivePerformanceProject/build.gradle

                }
            }
        }
    }
    
    tasks.register("zip", Zip) {
        from "archive-contents"
        archiveFileName = "archive.zip"
    }
    
    tasks.register("tar", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar"
    }
    
    tasks.register("tarGz", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar.gz"
        compression = 'gzip'
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheInitScriptsIntegrationTest.groovy

            then:
            outputDoesNotContain 'bar!'
            configurationCache.assertStateLoaded()
        }
    
        def "init script names do not matter, their contents do"() {
    
            given:
            def initScript1 = file('initscript1.gradle.kts').tap {
                text = 'println("initscript1!")'
            }
            def initScript2 = file('initscript2.gradle').tap {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/FileWatcherUpdater.java

    import javax.annotation.CheckReturnValue;
    import java.io.File;
    import java.util.Collection;
    import java.util.List;
    
    /**
     * <p>
     * Responsible for updating the file watchers based on changes to the contents of the virtual file system,
     * and changes to the file system hierarchies we are allowed to watch.</p>
     *
     * <p>
     * The following terms are worth distinguishing between:
     * </p>
     *
     * <dl>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/integtests/fixtures/UrlValidator.groovy

        static void assertUrlContentContains(URL url, String contents) {
            assert url.text.contains(contents)
        }
    
        /**
         * Asserts that the content at the specified url matches the content in the provided String
         */
        static void assertUrlContent(URL url, String contents) {
            assert TextUtil.normaliseLineSeparators(url.text) == TextUtil.normaliseLineSeparators(contents)
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. 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)
  6. subprojects/core/src/test/groovy/org/gradle/execution/DryRunBuildExecutionActionTest.groovy

            def task2 = Mock(TaskInternal.class)
            def category = DryRunBuildExecutionAction.class.name
            def contents = Mock(QueryableExecutionPlan)
    
            given:
            startParameter.isDryRun() >> true
            executionPlan.contents >> contents
            contents.tasks >> toList(task1, task2)
    
            when:
            action.execute(gradle, executionPlan)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Aug 26 20:13:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  7. 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)
  8. platforms/jvm/normalization-java/src/test/groovy/org/gradle/api/internal/changedetection/state/LineEndingNormalizingInputStreamHasherTest.groovy

            '\n'    | 'LF'
        }
    
        def "does not normalize content for binary files with #description"() {
            def file = file('foo') << contents
    
            expect:
            !hasher.hashContent(file).isPresent()
    
            where:
            description               | contents
            "png content"             | content.PNG_CONTENT
            "jpg content"             | content.JPG_CONTENT
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/api/UndefinedBuildExecutionIntegrationTest.groovy

        private void printFileTree(File dir) {
            def list = []
            if (dir.exists()) {
                dir.eachFileRecurse { file ->
                    list << file
                }
            }
    
            println "Contents of $dir.absolutePath:"
            list.each {
                println it.path
            }
        }
    
        def "fails when user home directory is used and Gradle has not been run before"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 09:18:31 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  10. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

            }
        }
    
        @Nonnull
        private TestFile fromFile(URL resource) throws URISyntaxException {
            return new TestFile(resource.toURI());
        }
    
        /**
         * Extracts the contents of the jar file containing the given resource so that an (unzipped) file pointing to the
         * requested resources within the resource jar can be returned.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top