Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for tarGz (0.06 sec)

  1. src/main/assemblies/targz-bin.xml

    <?xml version="1.0"?>
    <assembly>
    	<id>targz</id>
    	<formats>
    		<format>tar.gz</format>
    	</formats>
    
    	<includeBaseDirectory>false</includeBaseDirectory>
    
    	<componentDescriptors>
    		<componentDescriptor>src/main/assemblies/common-bin.xml
    		</componentDescriptor>
    	</componentDescriptors>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Dec 13 08:20:29 UTC 2015
    - 296 bytes
    - Viewed (0)
  2. testing/performance/src/templates/archivePerformanceProject/build.gradle

    tasks.register("zip", Zip) {
        from "archive-contents"
        archiveFileName = "archive.zip"
    }
    
    tasks.register("tar", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar"
    }
    
    tasks.register("tarGz", Tar) {
        from "archive-contents"
        archiveFileName = "archive.tar.gz"
        compression = 'gzip'
    }
    
    tasks.withType(AbstractArchiveTask).configureEach {
        destinationDirectory = layout.buildDirectory
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  3. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/corefeature/ArchiveTreePerformanceTest.groovy

        }
    
        @RunFor(
            @Scenario(type = PER_COMMIT, operatingSystems = [LINUX], testProjects = ["archivePerformanceProject"])
        )
        def "compressing tar"() {
            given:
            runner.tasksToRun = ['tarGz']
            runner.addBuildMutator { linkToArchiveContents(it, archiveContentsDir) }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:42:52 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. pom.xml

    					<outputDirectory>${project.build.directory}/releases/</outputDirectory>
    					<tarLongFileMode>gnu</tarLongFileMode>
    					<descriptors>
    						<!-- descriptor>${basedir}/src/main/assemblies/targz-bin.xml</descriptor -->
    						<descriptor>${basedir}/src/main/assemblies/zip-bin.xml</descriptor>
    					</descriptors>
    				</configuration>
    				<executions>
    					<execution>
    						<phase>package</phase>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 30 06:49:02 UTC 2024
    - 48.7K bytes
    - Viewed (0)
Back to top