- Sort Score
- Result 10 results
- Languages All
Results 61 - 70 of 264 for Archiver (0.38 sec)
-
dbflute.xml
<property name="target.dir" value="${basedir}/target" /> <property name="branch.name" value="fess-14.17" /> <property name="mydbflute.url" value="https://github.com/lastaflute/lastaflute-example-waterfront/archive/${branch.name}.zip" /> <target name="mydbflute.check"> <condition property="mydbflute.exists"> <available file="${mydbflute.dir}" type="dir" /> </condition> </target>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Sep 21 05:37:26 UTC 2024 - 1000 bytes - Viewed (0) -
ci/official/utilities/repack_libtensorflow.sh
# the maven-style src/main/java subdirectory. # # Bazel manages annotation generated source as follows: First, it # calls javac with options that create generated files under a # bazel-out directory. Next, it archives the generated source files # into a srcjar directly under the root. There doesn't appear to be a # simple way to parameterize this from bazel, hence this helper to # "normalize" the srcjar layout. # # Arguments:
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jul 12 19:47:53 UTC 2023 - 2.6K bytes - Viewed (0) -
ci/official/containers/ml_build/setup.sources.sh
export DEBIAN_FRONTEND=noninteractive # Set up shared custom sources apt-get update apt-get install -y gnupg ca-certificates # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776 # LLVM/Clang: https://apt.llvm.org/ apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Thu Oct 03 21:13:05 UTC 2024 - 1.6K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/TarExtractorTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.crawler.extractor.impl; import java.io.IOException; import java.io.InputStream; import org.apache.commons.compress.archivers.ArchiveStreamFactory; import org.apache.commons.compress.compressors.CompressorStreamFactory; import org.codelibs.core.io.CloseableUtil; import org.codelibs.core.io.ResourceUtil;
Registered: Sun Nov 10 03:50:12 UTC 2024 - Last Modified: Thu Feb 22 01:36:27 UTC 2024 - 3.6K 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) -
android/guava/pom.xml
</plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>com.google.common</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> <plugin> <extensions>true</extensions>
Registered: Fri Nov 01 12:43:10 UTC 2024 - Last Modified: Wed Jul 24 18:53:31 UTC 2024 - 9.1K bytes - Viewed (0) -
src/archive/zip/struct.go
/* Package zip provides support for reading and writing ZIP archives. See the [ZIP specification] for details. This package does not support disk spanning. A note about ZIP64: To be backwards compatible the FileHeader has both 32 and 64 bit Size fields. The 64 bit fields will always contain the correct value and for normal archives both fields will be the same. For files requiring
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Tue May 28 21:41:09 UTC 2024 - 12.1K bytes - Viewed (0) -
apache-maven/src/assembly/src.xml
<exclude>**/.idea/**</exclude> <exclude>**/.DS_Store</exclude> <exclude>**/build/**</exclude> </excludes> </fileSet> <fileSet> <directory>${project.build.directory}/maven-shared-archive-resources/META-INF</directory> <outputDirectory>/</outputDirectory> <includes> <include>DEPENDENCIES</include> <!-- exclude the license and notice as they are not as accurate as the ones from above -->
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Apr 27 13:14:24 UTC 2022 - 2.2K bytes - Viewed (0) -
ci/official/containers/linux_arm64/setup.sources.sh
export DEBIAN_FRONTEND=noninteractive # Set up shared custom sources apt-get update apt-get install -y gnupg ca-certificates # Deadsnakes: https://launchpad.net/~deadsnakes/+archive/ubuntu/ppa apt-key adv --keyserver keyserver.ubuntu.com --recv-keys F23C5A6CF475977595C89F51BA6932366A755776 # LLVM/Clang: https://apt.llvm.org/ apt-key adv --fetch-keys https://apt.llvm.org/llvm-snapshot.gpg.key
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Wed Jul 10 18:56:24 UTC 2024 - 1.7K bytes - Viewed (0) -
src/archive/zip/writer.go
return err } } if len(w.dir) > 0 && w.dir[len(w.dir)-1].FileHeader == fh { // See https://golang.org/issue/11144 confusion. return errors.New("archive/zip: invalid duplicate FileHeader") } return nil } // CreateHeader adds a file to the zip archive using the provided [FileHeader] // for the file metadata. [Writer] takes ownership of fh and may mutate
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Mon Sep 23 14:32:33 UTC 2024 - 19.4K bytes - Viewed (0)