- Sort Score
- Result 10 results
- Languages All
Results 431 - 440 of 6,271 for FILE (0.03 sec)
-
src/main/java/jcifs/internal/smb2/lease/LeaseManager.java
} } /** * Register a file with cache for a path * * @param path file path * @param file SmbFile instance */ public void registerFileCache(String path, SmbFile file) { if (file != null) { fileCache.put(path, new WeakReference<>(file)); } } /** * Evict oldest leases based on LRU *
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 31 08:00:57 UTC 2025 - 18.8K bytes - Viewed (0) -
docs/extensions/s3zip/examples/aws-js/main.js
s3.listObjectsV2({Bucket : 'your-bucket', Prefix: 'path/to/file.zip/'}). on('build', function(req) { req.httpRequest.headers['X-Minio-Extract'] = 'true'; }). send(function(err, data) { if (err) { console.log("Error", err); } else { console.log("Success", data); } }); // Download a file in the archive and store it in /tmp/data.csv var file = require('fs').createWriteStream('/tmp/data.csv');
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Thu Jun 10 15:17:03 UTC 2021 - 1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/UploadForm.java
* with optional path specification for file organization. */ public class UploadForm { /** * The storage path where the file should be uploaded. * If not specified, the file will be stored in the default location. */ public String path; /** * The multipart file to be uploaded to the storage system. * This file will be stored in the specified path or default location.
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
} return null; } // GET /api/admin/storage/download/{id}/ /** * Downloads a file from storage. * @param id The ID of the file to download. * @return A StreamResponse containing the file content. */ @Execute public StreamResponse get$download(final String id) { final PathInfo pi = convertToItem(id);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/thumbnail/ThumbnailAction.java
out.write(in); } }); } /** * Determines the MIME type of an image file based on its file extension. * * @param imageFile the image file * @return the MIME type string */ protected String getImageMimeType(final File imageFile) { final String path = imageFile.getAbsolutePath(); if (path.endsWith(".png")) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.4K bytes - Viewed (0) -
guava-tests/test/com/google/common/io/SourceSinkFactories.java
private final ThreadLocal<File> fileThreadLocal = new ThreadLocal<>(); File createFile() throws IOException { File file = File.createTempFile("SinkSourceFile", "txt"); fileThreadLocal.set(file); return file; } File getFile() { return fileThreadLocal.get(); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Jul 16 17:42:14 UTC 2025 - 17.9K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/artifact/installer/DefaultArtifactInstaller.java
/* * Licensed to the Apache Software Foundation (ASF) under one * or more contributor license agreements. See the NOTICE file * distributed with this work for additional information * regarding copyright ownership. The ASF licenses this file * to you under the Apache License, Version 2.0 (the * "License"); you may not use this file except in compliance * with the License. You may obtain a copy of the License at *
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5.1K bytes - Viewed (0) -
docs/bucket/replication/delete-replication.sh
# Test replication of delete markers and permanent deletes ./mc cp README.md myminio1/testbucket/dir/file ./mc cp README.md myminio1/testbucket/dir/file sleep 1s echo "=== myminio1" ./mc ls --versions myminio1/testbucket/dir/file echo "=== myminio2" ./mc ls --versions myminio2/testbucket/dir/file versionId="$(./mc ls --json --versions myminio1/testbucket/dir/ | tail -n1 | jq -r .versionId)"
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Fri Sep 06 09:42:21 UTC 2024 - 3.9K bytes - Viewed (0) -
docs/resiliency/resiliency-tests.sh
induce_bitrot_for_xlmeta "1" "/data"$((DATA_DRIVE)) $FILE induce_bitrot_for_xlmeta "1" "/data"$((DATA_DRIVE + 1)) $FILE induce_bitrot_for_xlmeta "1" "/data"$((DATA_DRIVE + 2)) $FILE induce_bitrot_for_xlmeta "1" "/data"$((DATA_DRIVE + 3)) $FILE WANT='{ "before": { "color": "red", "missing": 0, "corrupted": 4 }, "after": { "color": "green", "missing": 0, "corrupted": 0 }, "args": {"file": "'${FILE}'", "dir": "'${DIR}'"} }'
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Sat Dec 21 04:24:45 UTC 2024 - 20.5K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb2/create/Smb2CloseResponse.java
} /** * Get the end of file position * * @return the endOfFile */ public final long getEndOfFile() { return this.endOfFile; } /** * Get the file ID * * @return the fileId */ public byte[] getFileId() { return this.fileId; } /** * Get the file name * * @return the fileName
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 6.1K bytes - Viewed (0)