- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 59 for outdir (0.06 seconds)
-
fuzzing/fuzzingserver-config.json
Created: Fri Apr 03 11:42:14 GMT 2026 - Last Modified: Tue Mar 26 02:01:32 GMT 2019 - 2.1K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/info/GitInfo.java
* * In the case of a worktree, we read the gitdir from the plain text .git file. This resolves to a directory from which we read * the HEAD file and resolve commondir to the plain git repository. */ final Path dotGit = rootDir.toPath().resolve(".git"); final String revision; if (Files.exists(dotGit) == false) {Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 7.8K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/InternalDistributionArchiveSetupPlugin.java
project.getTasks().withType(AbstractArchiveTask.class).configureEach(t -> { String subdir = archiveTaskToSubprojectName(t.getName()); t.getDestinationDirectory().set(project.file(subdir + "/build/distributions")); t.getArchiveBaseName().set(subdir.contains("oss") ? "elasticsearch-oss" : "elasticsearch"); }); }
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Wed Sep 22 19:01:26 GMT 2021 - 7.9K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/EmptyDirTask.java
throw new UnsupportedOperationException(); } @Internal public File getDir() { return dir; } @Input public String getDirPath() { return dir.getPath(); } /** * @param dir The directory to create */ public void setDir(File dir) { this.dir = dir; } /**
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 1.7K bytes - Click Count (0) -
src/archive/zip/testdata/dupdir.zip
Ian Lance Taylor <******@****.***> 1640844165 -0800
Created: Tue Apr 07 11:13:11 GMT 2026 - 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 Apr 07 11:13:11 GMT 2026 - 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: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 9.5K 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: Fri Apr 03 20:58:12 GMT 2026 - 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 Apr 07 11:13:11 GMT 2026 - 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 Apr 01 11:36:16 GMT 2026 - Last Modified: Thu Oct 05 19:36:14 GMT 2023 - 2.2K bytes - Click Count (0)