Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for setCompression (0.3 sec)

  1. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Tar.java

         * @return The compression. Never returns null.
         */
        @Input
        public Compression getCompression() {
            return compression;
        }
    
        /**
         * Configures the compressor based on passed in compression.
         *
         * @param compression The compression. Should not be null.
         */
        public void setCompression(Compression compression) {
            this.compression = compression;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestFileHelper.groovy

        void tgzTo(TestFile tarFile, boolean readOnly) {
            Tar tar = new Tar()
            tar.setProject(new Project())
            setSourceDirectory(tar, readOnly)
            tar.setDestFile(tarFile)
            tar.setCompression((Tar.TarCompressionMethod) EnumeratedAttribute.getInstance(Tar.TarCompressionMethod.class, "gzip"))
            tar.execute()
        }
    
        void tbzTo(TestFile tarFile, boolean readOnly) {
            Tar tar = new Tar()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  3. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.api.tasks.bundling.AbstractArchiveTask.isReproducibleFileOrder()> does not have raw return type assignable to org.gradle.api.provider.Property in (AbstractArchiveTask.java:0)
    Method <org.gradle.api.tasks.bundling.Tar.getCompression()> does not have raw return type assignable to org.gradle.api.provider.Property in (Tar.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