- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 272 for Archive (0.12 sec)
-
pom.xml
</plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <version>3.3.0</version> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.codelibs.curl4j</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <artifactId>maven-surefire-plugin</artifactId> <version>3.2.2</version> </plugin>
Registered: Thu Oct 31 02:32:13 UTC 2024 - Last Modified: Thu Oct 03 17:04:48 UTC 2024 - 4K bytes - Viewed (0) -
fess-crawler-lasta/pom.xml
</plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.codelibs.fess.crawler.lasta</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Mon Jul 29 03:48:55 UTC 2024 - 2.9K bytes - Viewed (0) -
fess-crawler-opensearch/pom.xml
</plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.codelibs.fess.crawler.opensearch</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId>
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Nov 07 04:44:10 UTC 2024 - 3.4K bytes - Viewed (0) -
src/archive/zip/writer_test.go
flags: 0x8, }, { name: "small deflate wo desc", content: bytes.Repeat([]byte("abcdefg"), 2048), method: Deflate, }, } // write a zip file archive := new(bytes.Buffer) w := NewWriter(archive) for i := range files { f := &files[i] f.crc32 = crc32.ChecksumIEEE(f.content) size := uint64(len(f.content)) f.uncompressedSize = size f.compressedSize = size
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 14.4K bytes - Viewed (0) -
pom.xml
</plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>org.codelibs.fess.suggest</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>com.mycila</groupId> <artifactId>license-maven-plugin</artifactId>
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Thu Aug 29 09:09:37 UTC 2024 - 3.8K bytes - Viewed (0) -
.gitattributes
*.gen.json linguist-generated=true *_pb2.py linguist-generated=true manifests/charts/**/profile*.yaml linguist-generated=true go.sum merge=union vendor/** linguist-vendored common/** linguist-vendored archive/** linquist-vendored
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Feb 01 19:15:39 UTC 2024 - 545 bytes - Viewed (0) -
src/archive/zip/reader.go
type ReadCloser struct { f *os.File Reader } // A File is a single file in a ZIP archive. // The file information is in the embedded [FileHeader]. // The file content can be accessed by calling [File.Open]. type File struct { FileHeader zip *Reader zipr io.ReaderAt headerOffset int64 // includes overall ZIP archive baseOffset zip64 bool // zip64 extended information extra field presence }
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sat Aug 03 01:05:29 UTC 2024 - 28.1K bytes - Viewed (0) -
docs/extensions/s3zip/examples/minio-go/main.go
}) if err != nil { log.Fatalln(err) } var opts minio.GetObjectOptions // Add extract header to request: opts.Set("x-minio-extract", "true") // Download API.md from the archive rd, err := s3Client.GetObject(context.Background(), "your-bucket", "path/to/file.zip/data.csv", opts) if err != nil { log.Fatalln(err) } _, err = io.Copy(os.Stdout, rd) if err != nil { log.Fatalln(err) }
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Mon Jun 14 18:04:14 UTC 2021 - 694 bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.facet_filetype_rtf=Rich Text Format labels.facet_filetype_chm=Compiled HTML Help labels.facet_filetype_zip=ZIP Archive labels.facet_filetype_7z=7z Archive labels.facet_filetype_bz=Bz Archive labels.facet_filetype_bz2=Bz2 Archive labels.facet_filetype_tar=TAR Archive labels.facet_filetype_rar=RAR Archive labels.facet_filetype_3gp=3gp Video labels.facet_filetype_3g2=3g2 Video labels.facet_filetype_avi=AVI Video
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Mar 22 11:58:34 UTC 2024 - 40.7K bytes - Viewed (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/Packaging.java
* * <h2>Standard Packaging Types</h2> * <ul> * <li>{@code jar}: Packages the project as a Java Archive (JAR) file.</li> * <li>{@code war}: Packages the project as a Web Application Archive (WAR) file.</li> * <li>{@code pom}: Indicates that the project does not produce a deployable artifact but is used for dependency management or as an aggregator.</li>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Tue Aug 27 21:13:34 UTC 2024 - 3.2K bytes - Viewed (0)