Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for getRemoteUri (0.08 sec)

  1. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/groovy/buildSrc/src/main/java/org/example/GitClone.java

    import java.io.IOException;
    
    // tag::git-clone[]
    @UntrackedTask(because = "Git tracks the state") // <1>
    public abstract class GitClone extends DefaultTask {
    
        @Input
        public abstract Property<String> getRemoteUri();
    
        @Input
        public abstract Property<String> getCommitId();
    
        @OutputDirectory
        public abstract DirectoryProperty getDestinationDir();
    // end::git-clone[]
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/tasks/incrementalBuild-incrementalBuildAdvanced/kotlin/buildSrc/src/main/java/org/example/GitClone.java

    import java.io.IOException;
    
    // tag::git-clone[]
    @UntrackedTask(because = "Git tracks the state") // <1>
    public abstract class GitClone extends DefaultTask {
    
        @Input
        public abstract Property<String> getRemoteUri();
    
        @Input
        public abstract Property<String> getCommitId();
    
        @OutputDirectory
        public abstract DirectoryProperty getDestinationDir();
    // end::git-clone[]
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. build-logic/performance-testing/src/main/groovy/gradlebuild/performance/generator/tasks/RemoteProject.groovy

        /**
         * URI of the git repository.
         *
         * Either the remote git repository URL, the path to a local bare git repository or the path to a local git clone.
         */
        @Input
        abstract Property<String> getRemoteUri()
    
        /**
         * Git reference to use.
         */
        @Input
        abstract Property<String> getRef()
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jul 06 10:57:13 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top