- Sort Score
- Num 10 results
- Language All
Results 1 - 10 of 140 for outdir (0.04 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/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: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 18.6K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/reflect/TypeTokenSubtypeTest.java
@TestSubtype public Mall<Outdoor>.Shop<Electronics> innerTypeIsSubtype( Mall<Outdoor>.Retailer<Electronics> retailer) { return isSubtype(retailer); } @TestSubtype(suppressGetSupertype = true, suppressGetSubtype = true) public Mall<Outdoor>.Shop<? extends Electronics> innerTypeIsSubtype_supertypeWithWildcard( Mall<Outdoor>.Retailer<Electronics> retailer) {Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Thu Dec 19 18:03:30 GMT 2024 - 20.4K 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)