Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for setContentCharset (0.36 sec)

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

         * 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.
         *
         * The manifest will be encoded using the character set defined by the {@link #getContentCharset()} property.
         *
    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/api/java/archives/internal/CustomManifestInternalWrapper.java

            this.delegate = delegate;
        }
    
        @Override
        public String getContentCharset() {
            return contentCharset;
        }
    
        @Override
        public void setContentCharset(String contentCharset) {
            this.contentCharset = contentCharset;
        }
    
        @Override
        public Manifest writeTo(OutputStream outputStream) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/ManifestMergeSpec.java

         *
         * @param contentCharset the character set used to decode the merged manifest content
         * @see #getContentCharset()
         * @since 2.14
         */
        void setContentCharset(String contentCharset);
    
        /**
         * Adds a merge path to a manifest that should be merged into the base manifest. A merge path can be either another
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifestMergeSpec.java

        private String contentCharset = DefaultManifest.DEFAULT_CONTENT_CHARSET;
    
        @Override
        public String getContentCharset() {
            return this.contentCharset;
        }
    
        @Override
        public void setContentCharset(String contentCharset) {
            if (contentCharset == null) {
                throw new InvalidUserDataException("contentCharset must not be null");
            }
            if (!Charset.isSupported(contentCharset)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  5. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

                manifestInternal = (ManifestInternal) manifest;
            } else {
                manifestInternal = new CustomManifestInternalWrapper(manifest);
            }
            manifestInternal.setContentCharset(manifestContentCharset);
            return manifestInternal;
        }
    
        private FileCollectionFactory fileCollectionFactory() {
            return getServices().get(FileCollectionFactory.class);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  6. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/java/archives/internal/DefaultManifest.java

            getAttributes().put("Manifest-Version", "1.0");
        }
    
        @Override
        public String getContentCharset() {
            return contentCharset;
        }
    
        @Override
        public void setContentCharset(String contentCharset) {
            if (contentCharset == null) {
                throw new InvalidUserDataException("contentCharset must not be null");
            }
            if (!Charset.isSupported(contentCharset)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 13.8K bytes
    - Viewed (0)
Back to top