Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 224 for content_es (0.14 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/testFixtures/groovy/org/gradle/api/file/FileCollectionMatchers.java

                            @Override
                            public void visitCollection(FileCollectionInternal.Source source, Iterable<File> contents) {
                                for (File content : contents) {
                                    collections.add(content);
                                }
                            }
    
                            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 10 12:44:30 UTC 2022
    - 3.5K bytes
    - Viewed (0)
  4. platforms/jvm/testing-jvm-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/failure/mappers/OpenTestAssertionFailedMapperTest.groovy

                [
                    [null, null, null],
                    ["actual", "actual", null],
                    [ACTUAL_FILE_INFO, ACTUAL_FILE_INFO.path, ACTUAL_FILE_INFO.contents],
                    [ACTUAL_STRING_VALUE_WRAPPER, ACTUAL_STRING_VALUE_WRAPPER.value, null],
                    [ACTUAL_INT_VALUE_WRAPPER, ACTUAL_INT_VALUE_WRAPPER.value.toString(), null]
                ],
                [
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 14:57:01 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/plugins/namedDomainObjectContainer/groovy/build.gradle

    plugins {
        id("org.gradle.sample.download")
    }
    
    download {
        // Can use a block to configure the container contents
        resources {
            register('gradle') {
                uri = uri('https://gradle.org')
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 227 bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/ClasspathDependenciesAttributesIntegrationTest.groovy

            when:
            fails()
    
            then:
            failure.assertHasCause("org.gradle.MyClass")
        }
    
        private void createJarFile(TestFile jar) {
            TestFile contents = file('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: Tue Oct 10 21:10:11 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  7. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPluginConvention.java

        /**
         * Directory to place executables in
         *
         * @since 4.5
         */
        public abstract void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
         * Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/JavaApplication.java

         */
        String getExecutableDir();
    
        /**
         * Directory to place executables in
         */
        void setExecutableDir(String executableDir);
    
        /**
         * <p>The specification of the contents of the distribution.</p>
         * <p>
         * Use this {@link org.gradle.api.file.CopySpec} to include extra files/resource in the application distribution.
         * <pre class='autoTested'>
         * plugins {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 3K bytes
    - Viewed (0)
  9. 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)
  10. platforms/documentation/docs/src/snippets/valueProviders/fileContentsDont/groovy/settings.gradle

    rootProject.name = 'file-contents-dont'...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 40 bytes
    - Viewed (0)
Back to top