Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 663 for isarchive (0.18 sec)

  1. subprojects/core/src/main/java/org/gradle/api/internal/configuration/DefaultBuildFeatures.java

            Provider<Boolean> isRequested = getRequestedProvider(startParameter.getConfigurationCache());
            Provider<Boolean> isActive = Providers.of(buildModelParameters.isConfigurationCache());
            return new DefaultBuildFeature(isRequested, isActive);
        }
    
        private static BuildFeature createIsolatedProjects(StartParameterInternal startParameter, BuildModelParameters buildModelParameters) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 09:05:11 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/CleanArchiveIntegrationTest.groovy

                def helloArchive = zipTree(file("hello.zip"))
                tasks.create("makeArchive", Zip) {
                    System.out.println("Files in the archive: " + helloArchive.files)
                    archiveFileName = "archive.zip"
                    destinationDirectory = layout.buildDirectory
                    from helloArchive
                }
            """
    
            expect:
            succeeds "clean"
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:51:31 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  3. docs/extensions/s3zip/README.md

    Ensure to set the following header `x-minio-extract` to `true` in your S3 requests.
    
    ## How to access to files inside a ZIP archive
    
    Accessing to contents inside an archive can be done using regular S3 API with a modified request path. You just need to append the path of the content inside the archive to the path of the archive itself.
    
    e.g.:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Apr 10 16:28:27 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. platforms/jvm/war/src/main/java/org/gradle/api/tasks/bundling/War.java

        }
    
        /**
         * Sets the classpath to include in the WAR archive.
         *
         * @param classpath The classpath. Must not be null.
         * @since 4.0
         */
        public void setClasspath(FileCollection classpath) {
            setClasspath((Object) classpath);
        }
    
        /**
         * Sets the classpath to include in the WAR archive.
         *
         * @param classpath The classpath. Must not be null.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/ReproducibleArchivesIntegrationTest.groovy

                }
                """
    
            when:
            succeeds taskName
    
            def archive = file("build/test.${fileExtension}")
            then:
            def firstFileHash = archive.md5Hash
    
            when:
            file('dir1/file11.txt').makeOlder()
            archive.delete()
            succeeds taskName
    
            then:
            archive.md5Hash == firstFileHash
    
            where:
            taskName << ['tar', 'zip']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  6. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.11/plexus-1.0.11.pom

          <archive>http://archive.plexus.codehaus.org/user</archive>
        </mailingList>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</subscribe>
          <unsubscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</unsubscribe>
          <archive>http://archive.plexus.codehaus.org/dev</archive>
        </mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 8.8K bytes
    - Viewed (0)
  7. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus/1.0.10/plexus-1.0.10.pom

          <archive>http://archive.plexus.codehaus.org/user</archive>
        </mailingList>
        <mailingList>
          <name>Plexus Developer List</name>
          <subscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</subscribe>
          <unsubscribe>http://xircles.codehaus.org/manage_email/dev%40plexus.codehaus.org</unsubscribe>
          <archive>http://archive.plexus.codehaus.org/dev</archive>
        </mailingList>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  8. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperBadArchiveTest.groovy

        private static final String GRADLE_BIN_HASH = "/gradle-bin.zip.sha256"
        private static final String BAD_ARCHIVE_CONTENT = "bad archive content"
    
        @Rule
        BlockingHttpServer server = new BlockingHttpServer()
    
        TestFile badArchive = file("bad-archive.zip") << BAD_ARCHIVE_CONTENT
    
        def "wrapper gets bad archive on 1 attempt"() {
            given:
            server.expect(server.head(GRADLE_BIN_ZIP))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/lifecycle/pom.xml

          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sat Sep 11 08:52:20 UTC 2021
    - 22.4K bytes
    - Viewed (0)
  10. maven-core/src/test/projects/lifecycle-executor/project-with-inheritance/pom.xml

          <unsubscribe>******@****.***</unsubscribe>
          <post>******@****.***</post>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-dev</archive>
          <otherArchives>
            <otherArchive>http://www.mail-archive.com/******@****.***/</otherArchive>
            <otherArchive>http://www.nabble.com/Maven-Developers-f179.html</otherArchive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Aug 03 09:29:10 UTC 2023
    - 22.4K bytes
    - Viewed (0)
Back to top