Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 62 for content_es (0.14 sec)

  1. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

        )
        def "visiting zip trees"() {
            given:
            runner.tasksToRun = ['visitZip']
            runner.addBuildMutator { createArchive(it, "archive.zip") { contents, output -> contents.zipTo(output) } }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        @RunFor(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  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/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)
  6. 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)
  7. 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)
  8. 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)
  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. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

        /**
         * Allows lazy access to the contents of the given file.
         *
         * When the file contents are read at configuration time the file is automatically considered
         * as an input to the configuration model.
         *
         * @param file the file whose contents to read.
         * @return an interface that allows lazy access to the contents of the given file.
         *
         * @see FileContents#getAsText()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
Back to top