- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 157 for unload (0.03 sec)
-
.github/workflows/scorecard.yml
# of the value entered here. publish_results: true # Upload the results as artifacts (optional). Commenting out will disable uploads of run results in SARIF # format to the repository Actions tab. - name: "Upload artifact" uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 with: name: SARIF file
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Sep 03 19:19:31 UTC 2025 - 2.9K bytes - Viewed (0) -
guava/src/com/google/common/cache/CacheLoader.java
* as {@linkplain #reload the default implementation}. * * @since 17.0 */ @GwtIncompatible // Executor + Futures public static <K, V> CacheLoader<K, V> asyncReloading( CacheLoader<K, V> loader, Executor executor) { checkNotNull(loader); checkNotNull(executor); return new CacheLoader<K, V>() { @Override
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 9.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/kuromoji/ApiAdminDictKuromojiAction.java
} /** * Uploads Kuromoji dictionary file. * * @param dictId the dictionary ID * @param form the upload form containing the dictionary file * @return JSON response with result status */ // PUT /api/admin/dict/kuromoji/upload/{dictId} @Execute public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/stopwords/ApiAdminDictStopwordsAction.java
} /** * Uploads stopwords dictionary file. * * @param dictId the dictionary ID * @param form the upload form containing the dictionary file * @return JSON response with result status */ // PUT /api/admin/dict/stopwords/upload/{dictId} @Execute public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
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; /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/storage/ApiAdminStorageAction.java
// 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. */ @Execute public JsonResponse<ApiResult> put$upload(final UploadForm form) {
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/webapp/js/admin/plugins/form-validator/file.js
"jpeg"):a.inArray("jpeg",c)>-1&&a.inArray("jpg",c)===-1&&c.push("jpg"),c},e=function(a,b,c,d){var e=d[b]||"";a.errorMessageKey="",a.errorMessage=e.replace("%s",c)},f=function(c,d,e){var f=new FileReader,g=new Image;f.readAsDataURL(c),f.onload=function(c){g.onload=function(){a(b).trigger("imageValidation",[this]),d(this)},g.onerror=function(){e()},g.src=c.target.result}};a.formUtils.addValidator({name:"mime",validatorFunction:function(b,f,g,h){if(c){var i=!0,j=f.get(0).files||[],k="",l=d(f);return...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 4.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/cache/CacheLoaderTest.java
CacheLoader<Object, Object> baseLoader = new CacheLoader<Object, Object>() { @Override public Object load(Object key) { loadCount.incrementAndGet(); return new Object(); } @Override public ListenableFuture<Object> reload(Object key, Object oldValue) { reloadCount.incrementAndGet(); return immediateFuture(new Object()); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Tue May 13 18:46:00 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/dict/synonym/ApiAdminDictSynonymAction.java
} /** * Uploads synonym dictionary file. * * @param dictId the dictionary ID * @param form the upload form containing the dictionary file * @return JSON response with result status */ // PUT /api/admin/dict/synonym/upload/{dictId} @Execute public JsonResponse<ApiResult> put$upload(final String dictId, final UploadForm form) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.3K bytes - Viewed (0) -
src/test/java/org/codelibs/curl/CurlTest.java
assertNotNull(Curl.get("https://secure.example.com/path?param=value")); assertNotNull(Curl.post("http://api.example.com/v1/resource")); assertNotNull(Curl.put("ftp://files.example.com/upload")); assertNotNull(Curl.delete("http://localhost:8080/delete")); assertNotNull(Curl.head("https://cdn.example.com/assets/file.js")); assertNotNull(Curl.options("http://cors.example.com/api"));
Registered: Thu Sep 04 15:34:10 UTC 2025 - Last Modified: Thu Jul 31 01:01:12 UTC 2025 - 8.8K bytes - Viewed (0)