- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 71 for uploadIDs (0.04 seconds)
-
src/main/java/org/codelibs/fess/dict/DictionaryManager.java
return OptionalEntity.empty(); } /** * Stores or updates a dictionary file in the ConfigSync storage. * This method checks for concurrent modifications by comparing timestamps * and uploads the file content to the ConfigSync API. * * @param dictFile the dictionary file metadata to store * @param file the actual file containing the dictionary content
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/storage/AdminStorageAction.java
saveToken(); return id.filter(StringUtil::isNotBlank).map(s -> asListHtml(decodePath(s))).orElse(redirect(getClass())); } /** * Uploads a file to the storage system. * * @param form the item form containing file and path information * @return HTML response redirecting to the storage list after upload */ @Execute
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Sat Dec 13 02:21:17 GMT 2025 - 22.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/elevateword/ApiAdminElevatewordAction.java
} return asJson(new ApiResult.ApiUpdateResponse().id(id).created(false).status(ApiResult.Status.OK).result()); } // PUT /api/admin/elevateword/upload /** * Uploads and imports elevate words from a CSV file. * Processes the file asynchronously and updates the suggest helper. * * @param body upload form containing the CSV file * @return JSON response with upload statusCreated: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 12.8K bytes - Click Count (0) -
ci/official/README.md
# Ex. versions_upload -- for TF official release versions # Ex. nightly_upload -- for TF nightly official builds; changes version numbers # Ex. no_upload -- Disable all uploads, usually for temporary CI issues # Recommended: use a local+remote cache. # # Bazel will cache your builds in tensorflow/build_output/cache, # and will also try using public build cache results to speed up
Created: Tue Dec 30 12:39:10 GMT 2025 - Last Modified: Thu Feb 01 03:21:19 GMT 2024 - 8K bytes - Click Count (0) -
cmd/server_test.go
NextKeyMarker string NextUploadIDMarker string `xml:"NextUploadIdMarker"` EncodingType string MaxUploads int IsTruncated bool // All the in progress multipart uploads. Uploads []struct { Key string UploadID string `xml:"UploadId"` Initiator Initiator Owner Owner StorageClass string
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 118.1K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stemmeroverride/ApiAdminDictStemmeroverrideAction.java
}); return asJson(new ApiResult.ApiUpdateResponse().id(String.valueOf(id)).created(false).status(ApiResult.Status.OK).result()); } /** * Uploads stemmer override dictionary file. * * @param dictId the dictionary ID * @param form the upload form containing the dictionary file * @return JSON response with result status */Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Aug 07 03:06:29 GMT 2025 - 9.8K bytes - Click Count (0) -
internal/hash/checksum.go
func hashLogIf(ctx context.Context, err error) { logger.LogIf(ctx, "hash", err) } // MinIOMultipartChecksum is as metadata on multipart uploads to indicate checksum type. const MinIOMultipartChecksum = "x-minio-multipart-checksum" // MinIOMultipartChecksumType is as metadata on multipart uploads to indicate checksum type. const MinIOMultipartChecksumType = "x-minio-multipart-checksum-type"
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 22 14:15:21 GMT 2025 - 18.3K bytes - Click Count (0) -
cmd/erasure-sets.go
getEndpoints: s.GetEndpoints(i), getEndpointStrings: s.GetEndpointStrings(i), nsMutex: mutex, } }(i) } wg.Wait() // start cleanup stale uploads go-routine. go s.cleanupStaleUploads(ctx) // start cleanup of deleted objects. go s.cleanupDeletedObjects(ctx) // Start the disk monitoring and connect routine. if !globalIsTesting {
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 37K bytes - Click Count (1) -
cmd/signature-v2.go
"response-content-encoding", "response-content-language", "response-content-type", "response-expires", "retention", "select", "select-type", "tagging", "torrent", "uploadId", "uploads", "versionId", "versioning", "versions", "website", } // Signature and API related constants. const ( signV2Algorithm = "AWS" ) // AWS S3 Signature V2 calculation rule is give here:
Created: Sun Dec 28 19:28:13 GMT 2025 - Last Modified: Fri Aug 29 02:39:48 GMT 2025 - 12.2K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/app/web/admin/elevateword/AdminElevatewordAction.java
} }).orElse(() -> throwValidationError(messages -> messages.addErrorsCrudCouldNotFindCrudTable(GLOBAL, id), this::asDetailsHtml)); return redirect(getClass()); } /** * Uploads and imports elevate words from a CSV file. * * @param form upload form containing the CSV file * @return redirect response to the main elevate word page */ @Execute @Secured({ ROLE })Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Nov 20 13:56:35 GMT 2025 - 22.2K bytes - Click Count (0)