Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for missingPath (0.11 sec)

  1. pkg/api/v1/pod/util_test.go

    	secretPaths := collectResourcePaths(t, "secret", nil, "", reflect.TypeOf(&v1.Pod{}))
    	secretPaths = secretPaths.Difference(excludedSecretPaths)
    	if missingPaths := expectedSecretPaths.Difference(secretPaths); len(missingPaths) > 0 {
    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  2. pkg/api/v1/persistentvolume/util_test.go

    	secretPaths = secretPaths.Difference(excludedSecretPaths)
    	if missingPaths := expectedSecretPaths.Difference(secretPaths); len(missingPaths) > 0 {
    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPVSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/cgroup_manager_linux.go

    		allowlistControllers.Insert("hugetlb")
    	}
    	var missingPaths []string
    	// If even one cgroup path doesn't exist, then the cgroup doesn't exist.
    	for controller, path := range cgroupPaths {
    		// ignore mounts we don't care about
    		if !allowlistControllers.Has(controller) {
    			continue
    		}
    		if !libcontainercgroups.PathExists(path) {
    			missingPaths = append(missingPaths, path)
    		}
    	}
    
    	if len(missingPaths) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
Back to top