Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for missingPaths (0.16 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)
  4. pkg/api/pod/util_test.go

    	secretPaths := collectResourcePaths(t, "secret", nil, "", reflect.TypeOf(&api.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: Wed May 29 22:40:29 UTC 2024
    - 108.8K bytes
    - Viewed (0)
  5. platforms/core-execution/build-cache/src/jmh/java/org/gradle/caching/internal/tasks/FileWalkingBenchmark.java

            this.tempDirPath = Files.createTempDirectory("file-walking");
            this.tempDirFile = tempDirPath.toFile();
    
            this.missingPath = tempDirPath.resolve("aaa-missing/bbb-missing/ccc-missing/ddd-missing/missing.txt");
            this.missingFile = missingPath.toFile();
            mkdirs(missingPath.getParent());
    
            this.existingPath = tempDirPath.resolve("aaa/bbb/ccc/ddd/missing.txt");
            this.existingFile = existingPath.toFile();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ProjectDependenciesIntegrationTest.groovy

                task extraKey {
                    doLast {
                        dependencies.project(path: ":impl", configuration: ":conf", foo: "bar")
                    }
                }
                task missingPath {
                    doLast {
                        dependencies.project(paths: ":impl", configuration: ":conf")
                    }
                }
                task missingConfiguration {
                    doLast {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:37:37 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/native/src/jmh/java/org/gradle/internal/nativeintegration/filesystem/FileMetadataAccessorBenchmark.java

        FileMetadataAccessor accessor;
        File missing;
        Path missingPath;
        File directory;
        Path directoryPath;
        File realFile;
        Path realFilePath;
    
        @Setup
        public void prepare() throws IOException {
            accessor = getAccessor(accessorClassName);
            missing = new File(UUID.randomUUID().toString());
            missingPath = missing.toPath();
            directory = File.createTempFile("jmh", "dir");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:50:56 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top