- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 102 for outdir (0.04 seconds)
-
fuzzing/fuzzingserver-config.json
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Tue Mar 26 02:01:32 GMT 2019 - 2.1K bytes - Click Count (0) -
src/archive/zip/testdata/dupdir.zip
Ian Lance Taylor <******@****.***> 1640844165 -0800
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue May 10 17:51:16 GMT 2022 - 458 bytes - Click Count (0) -
src/archive/zip/testdata/subdir.zip
Ian Lance Taylor <******@****.***> 1618865513 -0700
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Thu Apr 29 19:04:31 GMT 2021 - 428 bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/ClassTraversalUtil.java
* * @param rootDir the root directory (must not be {@literal null}) * @param handler the handler to process classes (must not be {@literal null}) */ public static void forEach(final File rootDir, final ClassHandler handler) { assertArgumentNotNull("rootDir", rootDir); assertArgumentNotNull("handler", handler); forEach(rootDir, null, handler); } /**Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 9.5K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/TraversalUtil.java
static { addTraverserFactory("file", (url, rootPackage, rootDir) -> new FileSystemTraverser(getBaseDir(url, rootDir), rootPackage, rootDir)); addTraverserFactory("jar", JarFileTraverser::new); addTraverserFactory("zip", (url, rootPackage, rootDir) -> new JarFileTraverser(JarFileUtil.create(new File(ZipFileUtil.toZipFilePath(url))), rootPackage, rootDir)); addTraverserFactory("code-source",Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 18.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/io/ResourceTraversalUtil.java
* * @param rootDir the root directory (must not be {@literal null}) * @param handler the handler to process resources (must not be {@literal null}) */ public static void forEach(final File rootDir, final ResourceHandler handler) { assertArgumentNotNull("rootDir", rootDir); assertArgumentNotNull("handler", handler); forEach(rootDir, null, handler); } /**Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 9.2K bytes - Click Count (0) -
misc/ios/go_ios_exec.go
) if err != nil { return "", err } } return finalPkgpath, nil } // subdir determines the package based on the current working directory, // and returns the path to the package source relative to $GOROOT (or $GOPATH). func subdir() (pkgpath string, underGoRoot bool, err error) { cwd, err := os.Getwd() if err != nil { return "", false, err }Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Tue Sep 16 00:34:45 GMT 2025 - 8.7K bytes - Click Count (0) -
build-logic/documentation/src/main/groovy/gradlebuild/docs/XslTransformer.java
if (destDir.length() > 0) { transformer.setParameter("base.dir", destDir + "/"); } FileOutputStream outstr = new FileOutputStream(dest); try { transformer.transform(new StreamSource(source), new StreamResult(outstr)); } finally { outstr.close(); } }Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Oct 05 19:36:14 GMT 2023 - 2.2K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/FilesFileTraverserTest.java
@NullUnmarked public class FilesFileTraverserTest extends IoTestCase { private File rootDir; @Override public void setUp() throws IOException { rootDir = createTempDir(); } public void testFileTraverser_emptyDirectory() throws Exception { assertThat(Files.fileTraverser().breadthFirst(rootDir)).containsExactly(rootDir); } public void testFileTraverser_nonExistingFile() throws Exception {Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 3.4K bytes - Click Count (0) -
misc/go_android_exec/main.go
} // adbCopyTree copies testdata, go.mod, go.sum files from subdir // and from parent directories all the way up to the root of subdir. // go.mod and go.sum files are needed for the go tool modules queries, // and the testdata directories for tests. It is common for tests to // reach out into testdata from parent packages. func adbCopyTree(deviceCwd, subdir string) error { dir := "" for {
Created: Tue Dec 30 11:13:12 GMT 2025 - Last Modified: Mon Aug 21 17:46:57 GMT 2023 - 15.3K bytes - Click Count (0)