Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 663 for isarchive (0.2 sec)

  1. src/cmd/internal/archive/archive_test.go

    	go1obj     string
    	go2obj     string
    	goarchive  string
    	cgoarchive string
    }
    
    func buildGoobj(t *testing.T) goobjPaths {
    	buildOnce.Do(func() {
    		buildErr = func() (err error) {
    			buildDir, err = os.MkdirTemp("", "TestGoobj")
    			if err != nil {
    				return err
    			}
    
    			go1obj := filepath.Join(buildDir, "go1.o")
    			go2obj := filepath.Join(buildDir, "go2.o")
    			goarchive := filepath.Join(buildDir, "go.a")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 02 19:27:33 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ArchiveIntegrationTest.groovy

                archive {
                    duplicatesStrategy = DuplicatesStrategy.INCLUDE
                }
            """
            when:
            run 'archive'
    
            def archive = archiveFixture(archiveType, file("build/test.${archiveType}"))
            then:
            archive.assertContainsFile('file1.txt', 2)
            archive.assertContainsFile('file2.txt', 1)
    
            where:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    Creating an archive file is essentially a file copy in which the destination is implicit, i.e., the archive file itself.
    Here is a basic example that specifies the path and name of the target archive file:
    
    ====
    include::sample[dir="snippets/files/copy/kotlin",files="build.gradle.kts[tags=create-archive-example]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  4. src/cmd/pack/pack.go

    const (
    	arHeader = "!<arch>\n"
    )
    
    // An Archive represents an open archive file. It is always scanned sequentially
    // from start to end, without backing up.
    type Archive struct {
    	a        *archive.Archive
    	files    []string // Explicit list of files to be processed.
    	pad      int      // Padding bytes required at end of current archive file
    	matchAll bool     // match all files in archive
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. platforms/documentation/samples/src/integTest/groovy/org/gradle/integtests/samples/files/SamplesCopyIntegrationTest.groovy

            when:
            succeeds('copyPdfReportsForArchiving')
    
            then:
            dslDir.file('build/toArchive/my-report.pdf').isFile()
            dslDir.file('build/toArchive/metrics/scatterPlot.pdf').assertDoesNotExist()
            dslDir.file('build/toArchive/scatterPlot.pdf').assertDoesNotExist()
            dslDir.file('build/toArchive/numbers.csv').assertDoesNotExist()
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 15.7K bytes
    - Viewed (0)
  6. src/go/internal/gccgoimporter/ar.go

    func arExportData(archive io.ReadSeeker) (io.ReadSeeker, error) {
    	if _, err := archive.Seek(0, io.SeekStart); err != nil {
    		return nil, err
    	}
    
    	var buf [len(armag)]byte
    	if _, err := archive.Read(buf[:]); err != nil {
    		return nil, err
    	}
    
    	switch string(buf[:]) {
    	case armag:
    		return standardArExportData(archive)
    	case armagt:
    		return nil, errors.New("unsupported thin archive")
    	case armagb:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  7. doap_Maven.rdf

    https://archive.apache.org/dist/maven/maven-3/3.9.1/source/apache-maven-3.9.1-src.zip https://archive.apache.org/dist/maven/maven-3/3.9.1/source/apache-maven-3.9.1-src.tar.gz Apache Maven 3.9.0 2023-01-31 3.9.0 https://archive.apache.org/dist/maven/maven-3/3.9.0/binaries/apache-maven-3.9.0-bin.zip https://archive.apache.org/dist/maven/maven-3/3.9.0/binaries/apache-maven-3.9.0-bin.tar.gz https://archive.apache.org/dist/maven/maven-3/3.9.0/source/apache-maven-3.9.0-src.zip https://archive.apache.org/dist...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Dec 01 11:47:44 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/bundling/ConcurrentArchiveIntegrationTest.groovy

        @Issue("https://github.com/gradle/gradle/issues/22685")
        @ToBeFixedForIsolatedProjects(because = "Access to root project from sub projects")
        def "can visit and edit zip archive differently from two different projects in a multiproject build"() {
            given: "an archive in the root of a multiproject build"
            createZip('test.zip') {
                subdir1 {
                    file ('file1.txt').text = 'original text 1'
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 17:32:21 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/resources/TextResourceFactory.java

        /**
         * Creates a text resource backed by the archive entry at the given path within the given archive.
         * The archive format is determined based on the archive's file extension. If the archive format
         * is not supported or cannot be determined, any attempt to access the resource will fail with an exception.
         *
         * @param archive an archive file evaluated as per {@link org.gradle.api.Project#files(Object...)}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 15 19:10:41 UTC 2021
    - 4.2K bytes
    - Viewed (0)
  10. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultProfileSelector.java

        }
    
        private boolean isActive(Profile profile, ProfileActivationContext context, ModelProblemCollector problems) {
            boolean isActive = false;
            for (ProfileActivator activator : activators) {
                if (activator.presentInConfig(profile, context, problems)) {
                    isActive = true;
                    try {
                        if (!activator.isActive(profile, context, problems)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 16:51:39 UTC 2024
    - 4.6K bytes
    - Viewed (0)
Back to top