- Sort Score
- Num 10 results
- Language All
Results 31 - 40 of 71 for uploadIDs (0.05 seconds)
-
src/main/java/org/codelibs/fess/app/web/admin/backup/UploadForm.java
package org.codelibs.fess.app.web.admin.backup; import org.lastaflute.web.ruts.multipart.MultipartFormFile; import org.lastaflute.web.validation.Required; /** * Form class for backup file upload. * This form handles file uploads for backup and restore operations. */ public class UploadForm { /** * The backup file to be uploaded. */ @Required public MultipartFormFile bulkFile; /**Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 1.1K bytes - Click Count (1) -
src/main/java/org/codelibs/fess/storage/StorageClient.java
/** * Interface for cloud storage operations. * Implementations provide access to S3-compatible storage, GCS, or other cloud storage systems. */ public interface StorageClient extends AutoCloseable { /** * Uploads an object to storage. * * @param objectName the name/path for the object * @param inputStream the input stream of data to upload * @param size the size of the data in bytesCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 2.8K bytes - Click Count (0) -
ci/official/upload.sh
# See the License for the specific language governing permissions and # limitations under the License. # ============================================================================== # This script uploads all staged artifacts from all previous builds in the same # job chain to GCS and PyPI. source "${BASH_SOURCE%/*}/utilities/setup.sh" # Calculate the version number for choosing the final directory name. This addsCreated: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Tue Mar 04 22:39:12 GMT 2025 - 2.8K bytes - Click Count (0) -
.teamcity/src/main/kotlin/promotion/PublishNightlySnapshotFromQuickFeedbackStepUpload.kt
triggerName = "QuickFeedback", ) { init { id("Promotion_SnapshotFromQuickFeedbackStepUpload") name = "Nightly Snapshot (from QuickFeedback) - Upload" description = "Builds and uploads the latest successful changes on '${branch.branchName}' from Quick Feedback as a new distribution" steps { buildStep( ******@****.***arameters,
Created: Wed Dec 31 11:36:14 GMT 2025 - Last Modified: Thu Mar 20 06:13:56 GMT 2025 - 1.7K bytes - Click Count (0) -
docs/distributed/DESIGN.md
level, unlike other object storage vendors. This allows applications to choose different storage class by setting `x-amz-storage-class=STANDARD/REDUCED_REDUNDANCY` for each object uploads so effectively utilizing the capacity of the cluster. Additionally these can also be enforced using IAM policies to make sure the client uploads with correct HTTP headers. - MinIO also supports expansion of existing clusters in server pools. Each pool is a self contained entity with same SLA's (read/write quorum)...
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Wed Feb 26 09:25:50 GMT 2025 - 8K bytes - Click Count (2) -
docs/es/docs/tutorial/request-files.md
También puedes usar `File()` con `UploadFile`, por ejemplo, para establecer metadatos adicionales: {* ../../docs_src/request_files/tutorial001_03_an_py39.py hl[9,15] *} ## Subidas de Múltiples Archivos { #multiple-file-uploads } Es posible subir varios archivos al mismo tiempo. Estarían asociados al mismo "campo de formulario" enviado usando "form data". Para usar eso, declara una lista de `bytes` o `UploadFile`:Created: Sun Dec 28 07:19:09 GMT 2025 - Last Modified: Tue Dec 16 16:33:45 GMT 2025 - 7.9K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
return null; } // curl -XPOST -H "Authorization: CHANGEME" localhost:8080/api/admin/storage/upload/ -F path=/ -F file=@... // PUT /api/admin/storage/upload/{pathId}/ /** * Uploads a file to storage. * @param form The form containing the file to upload and the target path. * @return A JSON response indicating the success or failure of the operation. */ @ExecuteCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Jul 17 08:28:31 GMT 2025 - 6.9K bytes - Click Count (0) -
android/guava/src/com/google/common/net/HttpHeaders.java
/** The HTTP {@code X-Content-Type-Options} header field name. */ public static final String X_CONTENT_TYPE_OPTIONS = "X-Content-Type-Options"; /** * The HTTP <a * href="https://iabtechlab.com/wp-content/uploads/2019/06/VAST_4.2_final_june26.pdf">{@code * X-Device-IP}</a> header field name. Header used for VAST requests to provide the IP address of * the device on whose behalf the request is being made. * * @since 31.0Created: Fri Dec 26 12:43:10 GMT 2025 - Last Modified: Thu Mar 27 20:37:16 GMT 2025 - 35.4K bytes - Click Count (0) -
cmd/globals.go
globalMaxSkewTime = 15 * time.Minute // 15 minutes skew allowed. // GlobalStaleUploadsExpiry - Expiry duration after which the uploads in multipart, // tmp directory are deemed stale. GlobalStaleUploadsExpiry = time.Hour * 24 // 24 hrs. // GlobalStaleUploadsCleanupInterval - Cleanup interval when the stale uploads cleanup is initiated. GlobalStaleUploadsCleanupInterval = time.Hour * 6 // 6 hrs.
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Tue Sep 03 18:23:41 GMT 2024 - 16.2K bytes - Click Count (1) -
cmd/erasure-server-pool.go
} z.mpCache.Range(func(_ string, mp MultipartInfo) bool { if mp.Bucket == bucket { poolResult.Uploads = append(poolResult.Uploads, mp) } return true }) sort.Slice(poolResult.Uploads, func(i int, j int) bool { return poolResult.Uploads[i].Initiated.Before(poolResult.Uploads[j].Initiated) }) return poolResult, nil } if z.SinglePool() {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Sun Sep 28 20:59:21 GMT 2025 - 89.2K bytes - Click Count (0)