Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for Roots (0.03 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/project/MavenProject.java

         */
        @Deprecated
        private void setSourceRootDirs(ProjectScope scope, Language language, List<String> roots) {
            sources.removeIf((source) -> scope.equals(source.scope()) && language.equals(source.language()));
            Path directory = getBaseDirectory();
            for (String root : roots) {
                addSourceRoot(new DefaultSourceRoot(scope, language, directory.resolve(root)));
            }
        }
    
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Fri Aug 29 12:47:20 UTC 2025
    - 67K bytes
    - Viewed (0)
  2. tensorflow/BUILD

                # "-Wl,--undefined-version",
                # copybara:uncomment_end(google-only)
            ],
        }),
        linkstatic = 1,
        per_os_targets = True,
        roots = [
            "//tensorflow/c/experimental/filesystem:filesystem_interface",
            "//tensorflow/c/experimental/stream_executor:stream_executor",
            "//tensorflow/c:env",
            "//tensorflow/c:kernels",
    Registered: Tue Dec 30 12:39:10 UTC 2025
    - Last Modified: Wed Nov 12 19:21:56 UTC 2025
    - 53.1K bytes
    - Viewed (0)
  3. cmd/test-utils_test.go

    	}
    
    	// Success.
    	return objLayer, formattedDisks, nil
    }
    
    // removeRoots - Cleans up initialized directories during tests.
    func removeRoots(roots []string) {
    	for _, root := range roots {
    		os.RemoveAll(root)
    	}
    }
    
    // creates a bucket for the tests and returns the bucket name.
    // initializes the specified API endpoints for the tests.
    Registered: Sun Dec 28 19:28:13 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 77K bytes
    - Viewed (0)
Back to top