Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 93 for DistZip (0.4 sec)

  1. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

            task instanceof CreateStartScripts
            task.applicationName == project.applicationName
            task.outputDir == project.file('build/scripts')
            task.defaultJvmOpts == []
        }
    
        def "adds distZip task to project"() {
            when:
            plugin.apply(project)
    
            then:
            def task = project.tasks[ApplicationPlugin.TASK_DIST_ZIP_NAME]
            task instanceof Zip
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  2. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/SamplesIvyPublishIntegrationTest.groovy

            def module = repo.module("org.gradle.sample", artifactId, version).withModuleMetadata()
    
            when:
            succeeds "publish"
    
            then:
            executed ":customDistTar", ":distZip"
    
            and:
            module.assertPublished()
            module.assertArtifactsPublished "${artifactId}-${version}.zip", "${artifactId}-${version}.tar", "ivy-${version}.xml"
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  3. platforms/jvm/plugins-application/src/main/java/org/gradle/api/plugins/ApplicationPlugin.java

        public static final String TASK_RUN_NAME = "run";
        public static final String TASK_START_SCRIPTS_NAME = "startScripts";
        public static final String TASK_DIST_ZIP_NAME = "distZip";
        public static final String TASK_DIST_TAR_NAME = "distTar";
    
        @Override
        public void apply(final Project project) {
            TaskContainer tasks = project.getTasks();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  4. .teamcity/.mvn/wrapper/maven-wrapper.jar

    wrapperVersion(); private static java.io.File mavenUserHome(); } org/apache/maven/wrapper/PathAssembler$LocalDistribution.class package org.apache.maven.wrapper; public synchronized class PathAssembler$LocalDistribution { private final java.io.File distZip; private final java.io.File distDir; public void PathAssembler$LocalDistribution(PathAssembler, java.io.File, java.io.File); public java.io.File getDistributionDir(); public java.io.File getZipFile(); } org/apache/maven/wrapper/PathAssembler.class...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 26 01:48:39 UTC 2020
    - 49.5K bytes
    - Viewed (0)
  5. integration-tests/gradle/gradle/wrapper/gradle-wrapper.jar

    Appendable append(CharSequence, int, int); public Appendable append(char); } org/gradle/wrapper/PathAssembler$LocalDistribution.class package org.gradle.wrapper; public synchronized class PathAssembler$LocalDistribution { private final java.io.File distZip; private final java.io.File distDir; public void PathAssembler$LocalDistribution(java.io.File, java.io.File); public java.io.File getDistributionDir(); public java.io.File getZipFile(); } org/gradle/wrapper/PathAssembler.class package org.gradle.wrapper;...
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Oct 31 19:07:19 UTC 2023
    - 62.2K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/authoring-builds/tasks/more_about_tasks.adoc

    testClasses - Assembles test classes.
    
    Distribution tasks
    ------------------
    assembleDist - Assembles the main distributions
    distTar - Bundles the project as a distribution.
    distZip - Bundles the project as a distribution.
    installDist - Installs the project as a distribution as-is.
    
    Documentation tasks
    -------------------
    javadoc - Generates Javadoc API documentation for the 'main' feature.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/term/term_unix.go

    	}
    
    	oldState := State{state{termios: *termios}}
    
    	// This attempts to replicate the behaviour documented for cfmakeraw in
    	// the termios(3) manpage.
    	termios.Iflag &^= unix.IGNBRK | unix.BRKINT | unix.PARMRK | unix.ISTRIP | unix.INLCR | unix.IGNCR | unix.ICRNL | unix.IXON
    	termios.Oflag &^= unix.OPOST
    	termios.Lflag &^= unix.ECHO | unix.ECHONL | unix.ICANON | unix.ISIG | unix.IEXTEN
    	termios.Cflag &^= unix.CSIZE | unix.PARENB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. src/syscall/ztypes_linux_amd64.go

    	VEOL     = 0xb
    	VREPRINT = 0xc
    	VDISCARD = 0xd
    	VWERASE  = 0xe
    	VLNEXT   = 0xf
    	VEOL2    = 0x10
    	IGNBRK   = 0x1
    	BRKINT   = 0x2
    	IGNPAR   = 0x4
    	PARMRK   = 0x8
    	INPCK    = 0x10
    	ISTRIP   = 0x20
    	INLCR    = 0x40
    	IGNCR    = 0x80
    	ICRNL    = 0x100
    	IUCLC    = 0x200
    	IXON     = 0x400
    	IXANY    = 0x800
    	IXOFF    = 0x1000
    	IMAXBEL  = 0x2000
    	IUTF8    = 0x4000
    	OPOST    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 12K bytes
    - Viewed (0)
  9. src/syscall/ztypes_linux_386.go

    	VEOL     = 0xb
    	VREPRINT = 0xc
    	VDISCARD = 0xd
    	VWERASE  = 0xe
    	VLNEXT   = 0xf
    	VEOL2    = 0x10
    	IGNBRK   = 0x1
    	BRKINT   = 0x2
    	IGNPAR   = 0x4
    	PARMRK   = 0x8
    	INPCK    = 0x10
    	ISTRIP   = 0x20
    	INLCR    = 0x40
    	IGNCR    = 0x80
    	ICRNL    = 0x100
    	IUCLC    = 0x200
    	IXON     = 0x400
    	IXANY    = 0x800
    	IXOFF    = 0x1000
    	IMAXBEL  = 0x2000
    	IUTF8    = 0x4000
    	OPOST    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  10. src/syscall/ztypes_linux_arm.go

    	VEOL     = 0xb
    	VREPRINT = 0xc
    	VDISCARD = 0xd
    	VWERASE  = 0xe
    	VLNEXT   = 0xf
    	VEOL2    = 0x10
    	IGNBRK   = 0x1
    	BRKINT   = 0x2
    	IGNPAR   = 0x4
    	PARMRK   = 0x8
    	INPCK    = 0x10
    	ISTRIP   = 0x20
    	INLCR    = 0x40
    	IGNCR    = 0x80
    	ICRNL    = 0x100
    	IUCLC    = 0x200
    	IXON     = 0x400
    	IXANY    = 0x800
    	IXOFF    = 0x1000
    	IMAXBEL  = 0x2000
    	IUTF8    = 0x4000
    	OPOST    = 0x1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:49 UTC 2023
    - 11.5K bytes
    - Viewed (0)
Back to top