Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for getArchives (0.33 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/file/ArchiveOperationsIntegrationTest.groovy

                    RegularFileProperty getArchive()
                    DirectoryProperty getUnpackDir()
                }
    
                abstract class MyWork implements WorkAction<MyParameters> {
                    @Inject abstract FileSystemOperations getFs()
                    @Inject abstract ArchiveOperations getArchives()
                    @Override void execute() {
                        fs.copy {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 8.1K bytes
    - Viewed (0)
  2. build-logic/documentation/src/main/groovy/gradlebuild/docs/GradleKotlinDslRuntimeGeneratedSources.java

        @Inject
        protected abstract ClassLoaderScopeRegistry getClassLoaderScopeRegistry();
    
        @Inject
        protected abstract ArchiveOperations getArchives();
    
        @Inject
        protected abstract FileSystemOperations getFs();
    
        public GradleKotlinDslRuntimeGeneratedSources() {
            getInputClasspath().from(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 19 17:15:23 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  3. build-logic/documentation/src/main/groovy/gradlebuild/docs/Docbook2Xhtml.groovy

        @Inject
        abstract ObjectFactory getObjects()
    
        @Inject
        abstract FileSystemOperations getFs()
    
        @Inject
        abstract ArchiveOperations getArchives()
    
        @Inject
        abstract ExecOperations getExecOps()
    
        @TaskAction
        def transform() {
            logging.captureStandardOutput(LogLevel.INFO)
            logging.captureStandardError(LogLevel.INFO)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/publication/DefaultMavenPomMailingList.java

            return unsubscribe;
        }
    
        @Override
        public Property<String> getPost() {
            return post;
        }
    
        @Override
        public Property<String> getArchive() {
            return archive;
        }
    
        @Override
        public SetProperty<String> getOtherArchives() {
            return otherArchives;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/MavenPomMailingList.java

         */
        Property<String> getPost();
    
        /**
         * The URL where you can browse the archive of this mailing list.
         */
        Property<String> getArchive();
    
        /**
         * The alternate URLs where you can browse the archive of this mailing list.
         */
        SetProperty<String> getOtherArchives();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 1.6K bytes
    - Viewed (0)
Back to top