- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 317 for dirs (0.04 sec)
-
helm/minio/.helmignore
# Patterns to ignore when building packages. # This supports shell glob matching, relative path matching, and # negation (prefixed with !). Only one pattern per line. .DS_Store # Common VCS dirs .git/ .gitignore .bzr/ .bzrignore .hg/ .hgignore .svn/ # Common backup files *.swp *.bak *.tmp *~ # Various IDEs .project .idea/ *.tmproj # OWNERS file for Kubernetes
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Aug 20 22:30:54 UTC 2021 - 368 bytes - Viewed (0) -
common/config/.golangci-format.yml
# it's a comma-separated list of prefixes local-prefixes: istio.io/ issues: # Which dirs to exclude: issues from them won't be reported. # Can use regexp here: `generated.*`, regexp is applied on full path, # including the path prefix if one is set. # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default). # "/" will be replaced by current OS file path separator to properly work on Windows.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Apr 05 03:02:37 UTC 2024 - 2K bytes - Viewed (0) -
cni/pkg/install/binaries.go
package install import ( "os" "path/filepath" "istio.io/istio/pkg/file" "istio.io/istio/pkg/util/sets" ) // Copies/mirrors any files present in a single source dir to N number of target dirs // and returns a set of the filenames copied. func copyBinaries(srcDir string, targetDirs []string) (sets.String, error) { copiedFilenames := sets.String{} srcFiles, err := os.ReadDir(srcDir) if err != nil {
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Fri Jun 28 19:12:54 UTC 2024 - 1.5K bytes - Viewed (0) -
ci/official/utilities/setup_docker.sh
env_file=$(mktemp) env | grep ^TFCI_ > "$env_file" WORKING_DIR="$TFCI_GIT_DIR" if [[ `uname -s | grep -P '^MSYS_NT'` ]]; then env_file=$(cygpath -m $env_file) # Host dirs can only be mapped to an existing drive inside the container, so # T:\ is replaced with C:\. _TFCI_OUTPUT_DIR_WIN=$(replace_drive_letter_with_c "$TFCI_OUTPUT_DIR")
Registered: Tue Nov 05 12:39:12 UTC 2024 - Last Modified: Fri Aug 09 16:05:18 UTC 2024 - 2.8K bytes - Viewed (0) -
common/config/.golangci.yml
exclude: - composite literal uses unkeyed fields # Which dirs to exclude: issues from them won't be reported. # Can use regexp here: `generated.*`, regexp is applied on full path, # including the path prefix if one is set. # Default dirs are skipped independently of this option's value (see exclude-dirs-use-default). # "/" will be replaced by current OS file path separator to properly work on Windows.
Registered: Wed Nov 06 22:53:10 UTC 2024 - Last Modified: Thu Oct 24 17:36:49 UTC 2024 - 11.7K bytes - Viewed (0) -
cmd/data-usage_test.go
{name: "rootfile2", size: 10000}, {name: "dir1/d1file", size: 2000}, {name: "dir2/d2file", size: 300}, {name: "dir2/d2file2", size: 300}, {name: "dir2/d2file3/", size: 300}, {name: "dir2/d2file4/", size: 300}, {name: "dir2/d2file5", size: 300}, {name: "dir1/dira/dafile", size: 100000}, {name: "dir1/dira/dbfile", size: 200000}, {name: "dir1/dira/dirasub/dcfile", size: 1000000},
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Fri Oct 04 22:23:33 UTC 2024 - 14.7K 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) -
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) -
build-logic-commons/gradle-plugin/src/main/kotlin/gradlebuild/testcleanup/extension/TestFilesCleanupBuildServiceRootExtension.kt
*/ interface TestFilesCleanupBuildServiceRootExtension { val projectStates: MapProperty<String, TestFilesCleanupProjectState> /** * Key is the path of a task, value is the possible report dirs it generates. */ val taskPathToReports: MapProperty<String, List<File>>
Registered: Wed Nov 06 11:36:14 UTC 2024 - Last Modified: Mon Aug 22 08:53:41 UTC 2022 - 1.2K bytes - Viewed (0)