- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 979 for CFiles (0.07 seconds)
The search processing time has exceeded the limit. The displayed results may be partial.
-
lib/fips140/fips140.sum
# SHA256 checksums of snapshot zip files in this directory. # These checksums are included in the FIPS security policy # (validation instructions sent to the lab) and MUST NOT CHANGE. # That is, the zip files themselves must not change. # # It is okay to add new zip files to the list, and it is okay to # remove zip files from the list when they are removed from # this directory. To update this file: # # go test cmd/go/internal/fips140 -update #
Created: Tue Apr 07 11:13:11 GMT 2026 - Last Modified: Thu Jan 08 17:58:32 GMT 2026 - 611 bytes - Click Count (0) -
android/guava-tests/test/com/google/common/io/MoreFilesTest.java
.build()); Files.createDirectories(fs.getPath("dir/b/i/j/l")); Files.createFile(fs.getPath("dir/a")); Files.createFile(fs.getPath("dir/c")); Files.createSymbolicLink(fs.getPath("dir/d"), fs.getPath("b/i")); Files.createDirectory(fs.getPath("dir/e")); Files.createSymbolicLink(fs.getPath("dir/f"), fs.getPath("/dontdelete")); Files.createFile(fs.getPath("dir/b/g"));
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Mar 17 19:26:39 GMT 2026 - 26.6K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/log/ApiAdminLogAction.java
/** * Retrieves the list of available log files. * * @return JSON response containing log file list */ // GET /api/admin/log/files @Execute public JsonResponse<ApiResult> files() { final List<Map<String, Object>> list = getLogFileItems(); return asJson(new ApiResult.ApiLogFilesResponse().files(list).total(list.size()).status(ApiResult.Status.OK).result()); }Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 3.4K bytes - Click Count (0) -
build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/ConcatFilesTask.java
import org.gradle.api.tasks.TaskAction; /** * Concatenates a list of files into one and removes duplicate lines. */ public class ConcatFilesTask extends DefaultTask { public ConcatFilesTask() { setDescription("Concat a list of files into one."); } /** List of files to concatenate */ private FileTree files; /** line to add at the top of the target file */ private String headerLine;Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 2.8K bytes - Click Count (0) -
api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java
* For example, for the Java language, the pattern includes all files with the {@code .java} suffix.</p> * * @see java.nio.file.FileSystem#getPathMatcher(String) */ default List<String> includes() { return List.of(); } /** * {@return the list of patterns for the files to exclude} * The exclusions are applied after the inclusions.Created: Sun Apr 05 03:35:12 GMT 2026 - Last Modified: Fri Nov 07 13:11:07 GMT 2025 - 14.2K bytes - Click Count (0) -
docs_src/request_files/tutorial002_an_py310.py
from fastapi.responses import HTMLResponse app = FastAPI() @app.post("/files/") async def create_files(files: Annotated[list[bytes], File()]): return {"file_sizes": [len(file) for file in files]} @app.post("/uploadfiles/") async def create_upload_files(files: list[UploadFile]): return {"filenames": [file.filename for file in files]} @app.get("/") async def main(): content = """ <body>
Created: Sun Apr 05 07:19:11 GMT 2026 - Last Modified: Thu Feb 12 13:19:43 GMT 2026 - 826 bytes - Click Count (0) -
build-logic/buildquality/src/test/kotlin/gradlebuild/testcleanup/TestFilesCleanupServiceTest.kt
Created: Wed Apr 01 11:36:16 GMT 2026 - Last Modified: Tue Feb 10 00:16:44 GMT 2026 - 11.6K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/thumbnail/ThumbnailManagerTest.java
// Test that Files.deleteIfExists works correctly for no-image marker files Path noImageFile = Files.createTempFile("noimage_test", ".noimage"); try { assertTrue(Files.exists(noImageFile)); // Atomic delete should succeed boolean deleted = Files.deleteIfExists(noImageFile); assertTrue(deleted);Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Mar 13 23:01:26 GMT 2026 - 20.4K bytes - Click Count (0) -
build-conventions/src/main/java/org/elasticsearch/gradle/internal/conventions/util/Util.java
*/ @Nullable public static FileTree getJavaMainSourceResources(Project project, Action<? super PatternFilterable> filter) { final Optional<FileTree> mainFileTree = getJavaMainSourceSet(project).map(SourceSet::getResources).map(FileTree::getAsFileTree); return mainFileTree.map(files -> files.matching(filter)).orElse(null); } /**Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jul 27 15:18:50 GMT 2021 - 5.1K bytes - Click Count (0) -
build-tools-internal/src/integTest/java/org/elasticsearch/gradle/internal/SymbolicLinkPreservingTarIT.java
Files.createDirectory(realFolder); Files.createFile(realFolder.resolve("file")); Files.createSymbolicLink(realFolder.resolve("link-to-file"), Paths.get("./file")); final Path linkInFolder = temporaryFolder.getRoot().toPath().resolve("link-in-folder"); Files.createDirectory(linkInFolder);
Created: Wed Apr 08 16:19:15 GMT 2026 - Last Modified: Tue Jun 01 09:19:30 GMT 2021 - 6.6K bytes - Click Count (0)