Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 104 for rmDir (0.04 sec)

  1. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

      else
        TF_SetStatus(status, TF_OK, "");
    }
    
    static void DeleteDir(const TF_Filesystem* filesystem, const char* path,
                          TF_Status* status) {
      if (rmdir(path) != 0)
        TF_SetStatusFromIOError(status, errno, path);
      else
        TF_SetStatus(status, TF_OK, "");
    }
    
    static void RenameFile(const TF_Filesystem* filesystem, const char* src,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd.go

    //sys	Rename(from string, to string) (err error)
    //sys	Renameat(fromfd int, from string, tofd int, to string) (err error)
    //sys	Revoke(path string) (err error)
    //sys	Rmdir(path string) (err error)
    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    //sys	Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 12.3K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/unix/syscall_dragonfly.go

    //sys	Readlink(path string, buf []byte) (n int, err error)
    //sys	Rename(from string, to string) (err error)
    //sys	Renameat(fromfd int, from string, tofd int, to string) (err error)
    //sys	Revoke(path string) (err error)
    //sys	Rmdir(path string) (err error)
    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    //sys	Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 10 16:32:44 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/syscall_openbsd.go

    //sys	Rename(from string, to string) (err error)
    //sys	Renameat(fromfd int, from string, tofd int, to string) (err error)
    //sys	Revoke(path string) (err error)
    //sys	Rmdir(path string) (err error)
    //sys	Seek(fd int, offset int64, whence int) (newoffset int64, err error) = SYS_LSEEK
    //sys	Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 29 21:28:33 UTC 2023
    - 11K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
    // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
    // time and thus not defined there.
    # else
    inline int FileNo(FILE* file) { return _fileno(file); }
    inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
    inline int RmDir(const char* dir) { return _rmdir(dir); }
    inline bool IsDir(const StatStruct& st) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 67.2K bytes
    - Viewed (0)
  6. src/syscall/zsysnum_freebsd_386.go

    	SYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, \
    	SYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }
    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    	SYS_UTIMES                   = 138 // { int utimes(char *path, \
    	SYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, \
    	SYS_SETSID                   = 147 // { int setsid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  7. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

    inline int FileNo(FILE* file) { return reinterpret_cast<int>(_fileno(file)); }
    // Stat(), RmDir(), and IsDir() are not needed on Windows CE at this
    // time and thus not defined there.
    # else
    inline int FileNo(FILE* file) { return _fileno(file); }
    inline int Stat(const char* path, StatStruct* buf) { return _stat(path, buf); }
    inline int RmDir(const char* dir) { return _rmdir(dir); }
    inline bool IsDir(const StatStruct& st) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure.sh

      mkdir -p "${npd_dir}"
      tar xzf "${KUBE_HOME}/${npd_tar}" -C "${npd_dir}" --overwrite
      mv "${npd_dir}/bin"/* "${KUBE_BIN}"
      chmod a+x "${KUBE_BIN}/node-problem-detector"
      rmdir "${npd_dir}/bin"
      rm -f "${KUBE_HOME}/${npd_tar}"
    }
    
    function install-cni-binaries {
      local -r cni_version=${CNI_VERSION:-$DEFAULT_CNI_VERSION}
      if [[ -n "${CNI_VERSION:-}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 04:14:02 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  9. src/syscall/zsysnum_freebsd_amd64.go

    	SYS_SOCKETPAIR               = 135 // { int socketpair(int domain, int type, \
    	SYS_MKDIR                    = 136 // { int mkdir(char *path, int mode); }
    	SYS_RMDIR                    = 137 // { int rmdir(char *path); }
    	SYS_UTIMES                   = 138 // { int utimes(char *path, \
    	SYS_ADJTIME                  = 140 // { int adjtime(struct timeval *delta, \
    	SYS_SETSID                   = 147 // { int setsid(void); }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 16 01:17:28 UTC 2022
    - 25.5K bytes
    - Viewed (0)
  10. misc/wasm/wasm_exec.js

    			readdir(path, callback) { callback(enosys()); },
    			readlink(path, callback) { callback(enosys()); },
    			rename(from, to, callback) { callback(enosys()); },
    			rmdir(path, callback) { callback(enosys()); },
    			stat(path, callback) { callback(enosys()); },
    			symlink(path, link, callback) { callback(enosys()); },
    			truncate(path, length, callback) { callback(enosys()); },
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 17:47:47 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top