Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for manifestContentCharset (0.36 sec)

  1. platforms/jvm/platform-jvm/src/main/java/org/gradle/jvm/tasks/Jar.java

                throw new InvalidUserDataException("manifestContentCharset must not be null");
            }
            if (!Charset.isSupported(manifestContentCharset)) {
                throw new InvalidUserDataException(String.format("Charset for manifestContentCharset '%s' is not supported by your JVM", manifestContentCharset));
            }
            this.manifestContentCharset = manifestContentCharset;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 15:09:49 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-jvm/src/integTest/groovy/org/gradle/api/tasks/bundling/JarEncodingIntegrationTest.groovy

            writeCharset    | readCharset     | cause
            "'UNSUPPORTED'" | "'UTF-8'"       | "Charset for manifestContentCharset 'UNSUPPORTED' is not supported by your JVM"
            "'UTF-8'"       | "'UNSUPPORTED'" | "Charset for contentCharset 'UNSUPPORTED' is not supported by your JVM"
            null            | "'UTF-8'"       | "manifestContentCharset must not be null"
            "'UTF-8'"       | null            | "contentCharset must not be null"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 10.5K bytes
    - Viewed (0)
Back to top