Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 104 for rmDir (0.06 sec)

  1. pkg/kubelet/kubelet_volumes.go

    // when this is called, so it effectively does a recursive rmdir instead of
    // RemoveAll to ensure it only removes empty directories and files that were
    // used as mount points, but not content of the mount points.
    func (kl *Kubelet) removeOrphanedPodVolumeDirs(uid types.UID) []error {
    	orphanVolumeErrors := []error{}
    
    	// If there are still volume directories, attempt to rmdir them
    	volumePaths, err := kl.getPodVolumePathListFromDisk(uid)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  2. tests/test_tutorial/test_custom_docs_ui/test_tutorial002.py

        print(static_dir)
        static_dir.mkdir(exist_ok=True)
        from docs_src.custom_docs_ui.tutorial002 import app
    
        with TestClient(app) as client:
            yield client
        static_dir.rmdir()
    
    
    def test_swagger_ui_html(client: TestClient):
        response = client.get("/docs")
        assert response.status_code == 200, response.text
        assert "/static/swagger-ui-bundle.js" in response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_custom_docs_ui/test_tutorial001.py

        print(static_dir)
        static_dir.mkdir(exist_ok=True)
        from docs_src.custom_docs_ui.tutorial001 import app
    
        with TestClient(app) as client:
            yield client
        static_dir.rmdir()
    
    
    def test_swagger_ui_html(client: TestClient):
        response = client.get("/docs")
        assert response.status_code == 200, response.text
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  4. pkg/util/removeall/removeall.go

    	return RemoveAllOneFilesystemCommon(mounter, path, os.Remove)
    }
    
    // RemoveDirsOneFilesystem removes the path and any empty subdirectories it
    // contains, using the syscall.Rmdir function. Unlike RemoveAllOneFilesystem,
    // RemoveDirsOneFilesystem will remove only directories and returns an error if
    // it encounters any files in the directory tree. It makes sure it does not
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 15 16:41:02 UTC 2021
    - 3.8K bytes
    - Viewed (0)
  5. cni/test/install_cni.go

    	testWorkRootDir := getEnv("TEST_WORK_ROOTDIR", "/tmp")
    
    	tempCNIConfDir := mktemp(testWorkRootDir, "cni-conf-", t)
    	defer rmDir(tempCNIConfDir, t)
    	tempCNIBinDir := mktemp(testWorkRootDir, "cni-bin-", t)
    	defer rmDir(tempCNIBinDir, t)
    	tempK8sSvcAcctDir := mktemp(testWorkRootDir, "kube-svcacct-", t)
    	defer rmDir(tempK8sSvcAcctDir, t)
    
    	populateTempDirs(wd, cniConfDirOrderedFiles, tempCNIConfDir, tempK8sSvcAcctDir, t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. Jenkinsfile.s390x

                                sh "rm -rvf $WORK_DIR/dists $WORK_DIR/it-local-repo"
                            } else {
                                bat "if exist it-local-repo rmdir /s /q it-local-repo"
                                bat "if exist dists         rmdir /s /q dists"
                            }
                            dir('dists') {
                              unstash 'maven-dist-s390x'
                            }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Mar 03 21:28:30 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/mod_cache_rw.txt

    # should be able to remove the module cache if the '-rf' flags are set.
    [!GOOS:windows] [exec:rm] exec rm -rf $GOPATH/pkg/mod
    [!GOOS:windows] [!exec:rm] go clean -modcache
    [GOOS:windows] [exec:cmd.exe] exec cmd.exe /c rmdir /s /q $GOPATH\pkg\mod
    [GOOS:windows] [!exec:cmd.exe] go clean -modcache
    ! exists $GOPATH/pkg/mod
    
    # The directories in the module cache should by default be unwritable,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. src/os/removeall_noat.go

    	"syscall"
    )
    
    func removeAll(path string) error {
    	if path == "" {
    		// fail silently to retain compatibility with previous behavior
    		// of RemoveAll. See issue 28830.
    		return nil
    	}
    
    	// The rmdir system call permits removing "." on Plan 9,
    	// so we don't permit it to remain consistent with the
    	// "at" implementation of RemoveAll.
    	if endsWithDot(path) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  9. src/syscall/exec_linux_test.go

    	// to be simple: just try to remove the directory. If it's still mounted
    	// on the rm will fail with EBUSY.
    	if err := os.Remove(d); err != nil {
    		t.Errorf("rmdir failed on %v: %v", d, err)
    	}
    }
    
    // Test for Issue 20103: unshare fails when chroot is used
    func TestUnshareMountNameSpaceChroot(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  10. src/os/file_unix.go

    	}
    	e1 := ignoringEINTR(func() error {
    		return syscall.Rmdir(name)
    	})
    	if e1 == nil {
    		return nil
    	}
    
    	// Both failed: figure out which error to return.
    	// OS X and Linux differ on whether unlink(dir)
    	// returns EISDIR, so can't use that. However,
    	// both agree that rmdir(file) returns ENOTDIR,
    	// so we can use that to decide which error is real.
    	// Rmdir might also return ENOTDIR if given a bad
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top