Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for getManifestContentCharset (0.42 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/ManifestInternal.java

     *
     * @since 2.14
     */
    public interface ManifestInternal extends Manifest {
    
        /**
         * See {@link org.gradle.jvm.tasks.Jar#getManifestContentCharset()}
         */
        String getContentCharset();
    
        /**
         * See {@link org.gradle.jvm.tasks.Jar#getManifestContentCharset()}
         */
        void setContentCharset(String contentCharset);
    
        /**
         * Writes the manifest into a stream.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

         * @since 2.14
         */
        @Input
        public String getManifestContentCharset() {
            return manifestContentCharset;
        }
    
        /**
         * The character set used to encode the manifest content.
         *
         * @param manifestContentCharset the character set used to encode the manifest content
         * @see #getManifestContentCharset()
         * @since 2.14
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/Manifest.java

         *
         * The manifest will be encoded using the character set defined by the {@link org.gradle.jvm.tasks.Jar#getManifestContentCharset()} property.
         *
         * @param path The path of the file to write the manifest into.
         * @return this
         */
        Manifest writeTo(Object path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.jvm.tasks.Jar.getManifest()> does not have raw return type assignable to org.gradle.api.provider.Property in (Jar.java:0)
    Method <org.gradle.jvm.tasks.Jar.getManifestContentCharset()> does not have raw return type assignable to org.gradle.api.provider.Property in (Jar.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
Back to top