Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 663 for isarchive (0.28 sec)

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

                    inputFile.set(layout.projectDirectory.file("inputs/file.txt"))
                    outputFile.set(layout.buildDirectory.file("archive.${archiveType}"))
                }
            """
        }
    
        def "can create readonly FileTree for #archiveType archive in task action"() {
    
            given:
            file("inputs/file.txt") << "some text"
            buildFile << """
    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. subprojects/core/src/main/java/org/gradle/api/tasks/bundling/Zip.java

        }
    
        /**
         * Returns the compression level of the entries of the archive. If set to {@link ZipEntryCompression#DEFLATED} (the default), each entry is
         * compressed using the DEFLATE algorithm. If set to {@link ZipEntryCompression#STORED} the entries of the archive are left uncompressed.
         *
         * @return the compression level of the archive contents.
         */
        @Input
        public ZipEntryCompression getEntryCompression() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 28 08:29:19 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/distribution_plugin.adoc

    To publish a distribution to an Ivy repository with the <<publishing_ivy.adoc#publishing_ivy, Ivy Publish Plugin>>, add one or both of its archive tasks to an link:{groovyDslPath}/org.gradle.api.publish.ivy.IvyPublication.html[IvyPublication]. The following sample demonstrates how to add the ZIP archive of the `main` distribution and the TAR archive of the `custom` distribution to the `myDistribution` publication:
    
    .Adding distribution archives to an Ivy publication
    ====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  4. platforms/software/maven/src/test/groovy/org/gradle/api/publish/maven/internal/artifact/MavenArtifactNotationParserFactoryTest.groovy

            def archive = rootProject.task('foo', type: Zip, {})
            archive.archiveBaseName.set("baseName")
            archive.destinationDirectory.set(temporaryFolder.testDirectory)
            archive.archiveExtension.set(archiveExtension)
            archive.archiveClassifier.set(archiveClassifier)
    
            MavenArtifact mavenArtifact = parser.parseNotation(archive)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 9.3K bytes
    - Viewed (0)
  5. src/go/internal/gcimporter/exportdata.go

    	if err != nil || hdr[len(hdr)-2] != '`' || hdr[len(hdr)-1] != '\n' {
    		err = fmt.Errorf("invalid archive header")
    		return
    	}
    	name = strings.TrimSpace(string(hdr[:16]))
    	return
    }
    
    // FindExportData positions the reader r at the beginning of the
    // export data section of an underlying GC-created object/archive
    // file by reading from it. The reader must be positioned at the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 15:49:05 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  6. src/archive/tar/fuzz_test.go

    	})
    	if err != nil {
    		f.Fatalf("failed to create writer: %s", err)
    	}
    	_, err = w.Write(inp)
    	if err != nil {
    		f.Fatalf("failed to write file to archive: %s", err)
    	}
    	if err := w.Close(); err != nil {
    		f.Fatalf("failed to write archive: %s", err)
    	}
    	f.Add(b.Bytes())
    
    	f.Fuzz(func(t *testing.T, b []byte) {
    		r := NewReader(bytes.NewReader(b))
    		type file struct {
    			header  *Header
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 13 18:06:33 UTC 2022
    - 2.2K bytes
    - Viewed (0)
  7. src/cmd/link/dwarf_test.go

    		if runtime.GOOS == "windows" {
    			t.Skip("skipping Windows/c-archive; see Issue 35512 for more.")
    		}
    		if !platform.BuildModeSupported(runtime.Compiler, "c-archive", runtime.GOOS, runtime.GOARCH) {
    			t.Skipf("skipping c-archive test on unsupported platform %s-%s", runtime.GOOS, runtime.GOARCH)
    		}
    		t.Run("c-archive", func(t *testing.T) {
    			testDWARF(t, "c-archive", true)
    		})
    	}
    }
    
    func TestDWARFiOS(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 03 17:05:14 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/ExternalDependency.java

        File getFile();
    
        /**
         * Returns the source directory or archive for this dependency, or {@code null} if no source is available.
         *
         * @return The source directory or archive for this dependency, or {@code null} if no source is available.
         */
        @Nullable
        File getSource();
    
        /**
         * Returns the Javadoc directory or archive for this dependency, or {@code null} if no Javadoc is available.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/apache/maven/wagon/wagon/1.0-beta-2/wagon-1.0-beta-2.pom

          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-users/</archive>
        </mailingList>
        <mailingList>
          <name>Maven Wagon Developer List</name>
          <subscribe>******@****.***</subscribe>
          <unsubscribe>******@****.***</unsubscribe>
          <archive>http://mail-archives.apache.org/mod_mbox/maven-wagon-dev/</archive>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 27 10:08:56 UTC 2020
    - 5.7K bytes
    - Viewed (0)
  10. internal/event/target/mqtt.go

    func (target *MQTTTarget) Store() event.TargetStore {
    	return target.store
    }
    
    // IsActive - Return true if target is up and active
    func (target *MQTTTarget) IsActive() (bool, error) {
    	if err := target.init(); err != nil {
    		return false, err
    	}
    	return target.isActive()
    }
    
    func (target *MQTTTarget) isActive() (bool, error) {
    	if !target.client.IsConnectionOpen() {
    		return false, store.ErrNotConnected
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 8.2K bytes
    - Viewed (0)
Back to top