Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for getArchives (0.3 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)
  6. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/internal/tasks/MavenPomFileGenerator.java

            target.setSubscribe(source.getSubscribe().getOrNull());
            target.setUnsubscribe(source.getUnsubscribe().getOrNull());
            target.setPost(source.getPost().getOrNull());
            target.setArchive(source.getArchive().getOrNull());
            target.setOtherArchives(new ArrayList<>(source.getOtherArchives().get()));
            return target;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        private String defineUpdateTask(String archiveType) {
            return """
                abstract class UpdateTask extends DefaultTask {
                    @InputFile
                    abstract RegularFileProperty getArchive()
    
                    @Input
                    abstract Property<String> getReplacementText()
    
                    @Inject abstract ArchiveOperations getArchiveOperations()
    
                    @TaskAction
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  8. api/maven-api-model/src/main/mdo/maven.mdo

              <code>
                <![CDATA[
        /**
         * @see java.lang.Object#toString()
         */
        public String toString()
        {
            return "MailingList {name=" + getName() + ", archive=" + getArchive() + "}";
        }
                ]]>
              </code>
            </codeSegment>
          </codeSegments>
        </class>
        <class>
          <name>Organization</name>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.3.md

    * kubectl apply: retry applying a patch if a version conflict error is encountered ([#26557](https://github.com/kubernetes/kubernetes/pull/26557), [@AdoHe](https://github.com/AdoHe))
    * Revert "Wait for arc.getArchive() to complete before running tests" ([#27130](https://github.com/kubernetes/kubernetes/pull/27130), [@pwittrock](https://github.com/pwittrock))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top