- Sort Score
- Result 10 results
- Languages All
Results 71 - 80 of 83 for Mkdir (0.02 sec)
-
docs/ko/docs/virtual-environments.md
보통 사용자 홈 디렉터리 안에 `code`라는 디렉터리를 만들고, 그 안에 프로젝트마다 하나씩 디렉터리를 만들어 관리합니다. <div class="termy"> ```console // 홈 디렉터리로 이동 $ cd // 모든 코드 프로젝트를 위한 디렉터리 생성 $ mkdir code // code 디렉터리로 이동 $ cd code // 이번 프로젝트를 위한 디렉터리 생성 $ mkdir awesome-project // 해당 프로젝트 디렉터리로 이동 $ cd awesome-project ``` </div> ## 가상 환경 생성
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Fri May 30 13:10:41 UTC 2025 - 25.8K bytes - Viewed (0) -
tensorflow/BUILD
"//tensorflow/c:headers", "//tensorflow/c/eager:headers", "//tensorflow/cc:headers", "//tensorflow/core:headers", ], outs = ["include"], cmd = """ mkdir $@ for f in $(SRCS); do d="$${f%/*}" d="$${d#bazel-out/*/genfiles/}" d="$${d#bazel-out/*/bin/}" if [[ $${d} == *local_config_* ]]; then continue fi
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Thu Aug 28 19:11:51 UTC 2025 - 53.4K bytes - Viewed (0) -
lib/wasm/wasm_exec.js
ftruncate(fd, length, callback) { callback(enosys()); }, lchown(path, uid, gid, callback) { callback(enosys()); }, link(path, link, callback) { callback(enosys()); }, lstat(path, callback) { callback(enosys()); }, mkdir(path, perm, callback) { callback(enosys()); }, open(path, flags, mode, callback) { callback(enosys()); }, read(fd, buffer, offset, length, position, callback) { callback(enosys()); },
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Sun Dec 08 15:34:47 UTC 2024 - 16.6K bytes - Viewed (0) -
android/guava/src/com/google/common/io/Files.java
* use {@code new File(context.getCacheDir(), "directoryname").mkdir()}, or, if you need an * arbitrary number of temporary directories, you might have to generate multiple directory * names in a loop until {@code mkdir()} returns {@code true}.) For JRE users, prefer {@link * java.nio.file.Files#createTempDirectory}, transforming it to a {@link File} using {@link
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 17:27:14 UTC 2025 - 32.9K bytes - Viewed (0) -
docs/zh-hant/docs/virtual-environments.md
首先,為你的專案建立一個目錄。 我(指原作者 —— 譯者注)通常會在我的主目錄下建立一個名為 `code` 的目錄。 在這個目錄下,我再為每個專案建立一個目錄。 <div class="termy"> ```console // 進入主目錄 $ cd // 建立一個用於存放所有程式碼專案的目錄 $ mkdir code // 進入 code 目錄 $ cd code // 建立一個用於存放這個專案的目錄 $ mkdir awesome-project // 進入這個專案的目錄 $ cd awesome-project ``` </div> ## 建立一個虛擬環境 在開始一個 Python 專案的**第一時間**,**<abbr title="還有其他做法,此處僅作為一個簡單的指引">在你的專案內部</abbr>**建立一個虛擬環境。
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Mon Dec 09 22:39:33 UTC 2024 - 20.7K bytes - Viewed (0) -
cmd/xl-storage.go
uuid := mustGetUUID() filePath := pathJoin(s.drivePath, minioMetaTmpDeletedBucket, ".writable-check-"+uuid+".tmp") // Create top level directories if they don't exist. // with mode 0o777 mkdir honors system umask. mkdirAll(pathutil.Dir(filePath), 0o777, s.drivePath) // don't need to fail here w, err := s.openFileDirect(filePath, os.O_CREATE|os.O_WRONLY|os.O_EXCL) if err != nil { return err }
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Jun 13 11:33:47 UTC 2025 - 91.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/SmbFile.java
SmbFile[] files; SmbFile ndest; final String path = dest.getUncPath0(); if (path.length() > 1) { try { dest.mkdir(); dest.setPathInformation(attributes, createTime, lastModified); } catch (final SmbException se) { if (se.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 112.2K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbFile.java
th.send(new Trans2QueryFSInformation(th.getConfig(), level), response); return response.getInfo(clazz); } @Override public void mkdir() throws SmbException { String path = this.fileLocator.getUNCPath(); if (path.length() == 1) { throw new SmbException("Invalid operation for workgroups, servers, or shares"); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 103.2K bytes - Viewed (0) -
docs/ja/docs/virtual-environments.md
<div class="termy"> ```console // Go to the home directory $ cd // Create a directory for all your code projects $ mkdir code // Enter into that code directory $ cd code // Create a directory for this project $ mkdir awesome-project // Enter into that project directory $ cd awesome-project ``` </div> ## 仮想環境の作成
Registered: Sun Sep 07 07:19:17 UTC 2025 - Last Modified: Wed Mar 19 12:22:33 UTC 2025 - 27.8K bytes - Viewed (0) -
src/main/java/jcifs/SmbResource.java
* (although in the future it may be possible to create shares). * * @throws CIFSException if an error occurs creating the directory */ void mkdir() throws CIFSException; /** * This method returns the free disk space in bytes of the drive this share * represents or the drive on which the directory or file resides. Objects
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 28K bytes - Viewed (1)