Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for metadataCharset (0.56 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/JarTestFixture.groovy

         */
        JarTestFixture(File file, String metadataCharset = 'UTF-8', String contentCharset = null) {
            this(file, metadataCharset, contentCharset, true)
        }
    
        /**
         * Creates the fixture.
         */
        JarTestFixture(File file, String metadataCharset, String contentCharset, boolean checkManifest) {
             super(file, metadataCharset, contentCharset)
             this.file = file
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 15 14:13:17 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/TarTestFixture.groovy

        TarTestFixture(TestFile tarFile, String metadataCharset = null, String contentCharset = null) {
            this.tarFile = tarFile
    
            boolean gzip = !tarFile.name.endsWith("tar")
            tarFile.withInputStream { inputStream ->
                TarArchiveInputStream tarInputStream = new TarArchiveInputStream(gzip ? new GZIPInputStream(inputStream) : inputStream, metadataCharset)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/archive/ZipTestFixture.groovy

        protected final String metadataCharset
        protected final String contentCharset
        private final ListMultimap<String, Integer> compressionMethodsByRelativePath = ArrayListMultimap.create()
    
        ZipTestFixture(File file, String metadataCharset = null, String contentCharset = null) {
            new TestFile(file).assertIsFile()
            this.metadataCharset = metadataCharset ?: Charset.defaultCharset().name()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. testing/architecture-test/src/changes/archunit-store/public-api-symmetrical-accessors-nullability.txt

    Accessors for org.gradle.api.tasks.SourceSetOutput.resourcesDir don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.bundling.War.classpath don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.bundling.Zip.metadataCharset don't use symmetrical @Nullable
    Accessors for org.gradle.api.tasks.compile.CompileOptions.annotationProcessorGeneratedSourcesDirectory don't use symmetrical @Nullable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:43:33 UTC 2024
    - 2.7K bytes
    - Viewed (0)
Back to top