Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 225 for content_es (0.1 sec)

  1. platforms/software/resources/src/main/java/org/gradle/internal/resource/StringTextResource.java

        private final String displayName;
        private final CharSequence contents;
        private HashCode contentHash;
    
        public StringTextResource(String displayName, CharSequence contents) {
            this.displayName = displayName;
            this.contents = contents;
        }
    
        @Override
        public String getDisplayName() {
            return displayName;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

        private String rawContents
        private String contents
    
        private Map<String, Schema> schemas = loadSchemas()
    
        def "can write an empty file"() {
            when:
            builder.verifyMetadata = verifyMetadata
            builder.verifySignatures = verifySignatures
            serialize()
    
            then:
            contents == """<?xml version="1.0" encoding="UTF-8"?>
    <verification-metadata>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/resources/org/gradle/api/tasks/bundling/v7.tar

    ./file.txt file contents ./sub/subfile.txt sub file contents...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:53 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/ivy-publish/distribution/groovy/build.gradle

    // tag::publishing[]
        id 'ivy-publish'
    }
    // end::publishing[]
    
    group = 'org.gradle.sample'
    version = '1.0'
    
    distributions {
        main {
            contents {
                from 'src'
            }
        }
        custom {
            contents {
                from 'src'
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            myDistribution(IvyPublication) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 659 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/ivy-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `ivy-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<IvyPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/maven-publish/distribution/kotlin/build.gradle.kts

    // tag::publishing[]
        `maven-publish`
    }
    // end::publishing[]
    
    group = "org.gradle.sample"
    version = "1.0"
    
    distributions {
        main {
            contents {
                from("src")
            }
        }
        create("custom") {
            contents {
                from("src")
            }
        }
    }
    
    // tag::publishing[]
    
    publishing {
        publications {
            create<MavenPublication>("myDistribution") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 705 bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/KotlinScript.kt

        /**
         * Creates a new [FileTree] which contains the contents of the given ZIP file.
         *
         * The given `zipPath` path is evaluated as per [file]
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/TransformBackedProvider.java

     *
     * <p>This provider checks that the contents of value have been built prior to running the transform, as the transform may use the content.
     * This check should move further upstream in the future, closer to the producer of the content.</p>
     *
     * @see ProviderInternal for a discussion of the "value" and "value contents".
     */
    public class TransformBackedProvider<OUT, IN> extends AbstractMinimalProvider<OUT> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 23:22:41 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/ConfigurableUserClassFilePermissions.java

         * <p>
         * Read access grants the capability to view the contents of a file,
         * or to list the contents of a directory.
         */
        void setRead(boolean read);
    
        /**
         * Enables or disables write access to a file or directory for a certain class of users.
         * <p>
         * Write access grants the capability to modify or remove the contents of a file,
         * or to add or remove files to/from a directory.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/SettingsScriptApi.kt

        /**
         * Creates a new [FileTree] which contains the contents of the given ZIP file.
         *
         * The given `zipPath` path is evaluated as per [file]
         *
         * The returned file tree is lazy, so that it scans for files only when the contents of the file tree are
         * queried. The file tree is also live, so that it scans for files each time the contents of the file tree are
         * queried.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.3K bytes
    - Viewed (0)
Back to top