Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. 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)
  2. 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)
  3. 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)
Back to top