- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 344 for dir2 (0.03 sec)
-
cmd/xl-storage_test.go
dir1 := slashpath.Join(tmp, "non-existent-directory") if isDirEmpty(dir1, true) { t.Error("expected false for non-existent directory, got true") } // Should give false for not-a-directory. dir2 := slashpath.Join(tmp, "file") err := os.WriteFile(dir2, []byte("hello"), 0o777) if err != nil { t.Fatal(err) } if isDirEmpty(dir2, true) {
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Wed Aug 14 17:11:51 UTC 2024 - 66.7K bytes - Viewed (0) -
cmd/server-main.go
CustomHelpTemplate: `NAME: {{.HelpName}} - {{.Usage}} USAGE: {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR1 [DIR2..] {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64} {{.HelpName}} {{if .VisibleFlags}}[FLAGS] {{end}}DIR{1...64} DIR{65...128} DIR: DIR points to a directory on a filesystem. When you want to combine multiple drives into a single large system, pass one directory per
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Sep 24 21:50:11 UTC 2024 - 35.2K bytes - Viewed (1) -
cmd/config-dir.go
globalConfigDir = defaultConfigDir // Points to current certs directory set by user with --certs-dir globalCertsDir = defaultCertsDir // Points to relative path to certs directory and is <value-of-certs-dir>/CAs globalCertsCADir = defaultCertsCADir ) // Get - returns current directory. func (dir *ConfigDir) Get() string { return dir.path } // Attempts to create all directories, ignores any permission denied errors.
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sun Jan 02 17:15:06 UTC 2022 - 3K bytes - Viewed (0) -
apache-maven/src/assembly/dir.xml
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.0 http://maven.apache.org/xsd/assembly-2.1.0.xsd"> <id>dir</id> <formats> <format>dir</format> </formats> <includeBaseDirectory>false</includeBaseDirectory> <componentDescriptors> <componentDescriptor>src/assembly/component.xml</componentDescriptor> </componentDescriptors>
Registered: Sun Nov 03 03:35:11 UTC 2024 - Last Modified: Wed Apr 27 13:14:24 UTC 2022 - 1.2K bytes - Viewed (0) -
plugin.xml
<mkdir dir="${target.dir}" /> <delete dir="${plugins.dir}" /> <mkdir dir="${plugins.dir}" /> <!-- analysis-extension --> <antcall target="install.plugin"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="plugin.groupId" value="org/codelibs/opensearch" /> <param name="plugin.name.prefix" value="opensearch-" /> <param name="plugin.name" value="analysis-extension" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 23:33:43 UTC 2024 - 3.5K bytes - Viewed (0) -
docs/bucket/replication/sio-error.sh
sleep 1 cp README.md internal.tar ./mc cp internal.tar myminio1/testbucket/dir/1.tar ./mc cp internal.tar myminio2/testbucket/dir/2.tar sleep 1 ./mc ls -r --versions myminio1/testbucket/dir/ >/tmp/dir_1.txt ./mc ls -r --versions myminio2/testbucket/dir/ >/tmp/dir_2.txt out=$(diff -qpruN /tmp/dir_1.txt /tmp/dir_2.txt) ret=$? if [ $ret -ne 0 ]; then echo "BUG: expected no 'diff' after replication: $out"
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Sat May 18 18:19:01 UTC 2024 - 1.7K bytes - Viewed (0) -
deps.xml
<delete dir="${crawler.dir}/lib" /> <mkdir dir="${crawler.dir}/lib" /> <delete dir="${suggest.dir}/lib" /> <mkdir dir="${suggest.dir}/lib" /> <delete dir="${thumbnail.dir}/lib" /> <mkdir dir="${thumbnail.dir}/lib" /> <!-- annotation-api --> <antcall target="install.env.jar"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="jar.groupId" value="jakarta/annotation" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Oct 24 04:37:19 UTC 2024 - 2.5K bytes - Viewed (0) -
dbflute.xml
</condition> </target> <target name="download.dbflute" depends="mydbflute.check" unless="mydbflute.exists"> <mkdir dir="${mydbflute.dir}" /> <get dest="${target.dir}/mydbflute.zip"> <url url="${mydbflute.url}" /> </get> <unzip dest="${mydbflute.dir}" src="${target.dir}/mydbflute.zip"> <patternset> <include name="lastaflute-example-waterfront-${branch.name}/mydbflute/dbflute-1.x/**" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sat Sep 21 05:37:26 UTC 2024 - 1000 bytes - Viewed (0) -
module.xml
<mkdir dir="${target.dir}" /> <delete dir="${modules.dir}" /> <mkdir dir="${modules.dir}" /> <!-- analysis-common --> <antcall target="install.module"> <param name="repo.url" value="${maven.release.repo.url}" /> <param name="module.groupId" value="org/codelibs/opensearch/module" /> <param name="module.name.prefix" value="" /> <param name="module.name" value="analysis-common" />
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Fri Oct 25 12:43:59 UTC 2024 - 4.5K bytes - Viewed (0) -
src/archive/zip/reader.go
r.fileList[idx].isDup = true continue } if idx, ok := knownDirs[name]; ok { r.fileList[idx].isDup = true continue } for dir := path.Dir(name); dir != "."; dir = path.Dir(dir) { dirs[dir] = true } idx := len(r.fileList) entry := fileListEntry{ name: name, file: file, isDir: isDir, } r.fileList = append(r.fileList, entry)
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Sat Aug 03 01:05:29 UTC 2024 - 28.1K bytes - Viewed (0)