- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 287 for logo (0.01 sec)
-
docs/recipes.md
val requestBody = MultipartBody.Builder() .setType(MultipartBody.FORM) .addFormDataPart("title", "Square Logo") .addFormDataPart("image", "logo-square.png", File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG)) .build() val request = Request.Builder() .header("Authorization", "Client-ID $IMGUR_CLIENT_ID")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 47.8K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/PostMultipart.kt
val requestBody = MultipartBody .Builder() .setType(MultipartBody.FORM) .addFormDataPart("title", "Square Logo") .addFormDataPart( "image", "logo-square.png", File("docs/images/logo-square.png").asRequestBody(MEDIA_TYPE_PNG), ).build() val request = Request .Builder()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 2.1K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/kt/UploadProgress.kt
if (contentLength != -1L) { println("${100 * bytesWritten / contentLength}% done") } } } } val file = File("docs/images/logo-square.png") val requestBody: RequestBody = file.asRequestBody(MEDIA_TYPE_PNG) val request = Request .Builder() .header("Authorization", "Client-ID $IMGUR_CLIENT_ID")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 3.8K bytes - Viewed (0) -
samples/guide/src/main/java/okhttp3/recipes/UploadProgress.java
System.out.format("%d%% done\n", (100 * bytesWritten) / contentLength); } } } }; RequestBody requestBody = RequestBody.create( new File("docs/images/logo-square.png"), MEDIA_TYPE_PNG); Request request = new Request.Builder() .header("Authorization", "Client-ID " + IMGUR_CLIENT_ID) .url("https://api.imgur.com/3/image")
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Sat Aug 30 17:01:12 UTC 2025 - 4.2K bytes - Viewed (1) -
src/test/java/org/codelibs/fess/helper/ThemeHelperTest.java
ZipEntry jsEntry = new ZipEntry("js/script.js"); zos.putNextEntry(jsEntry); zos.write("console.log('test');".getBytes()); zos.closeEntry(); // Images ZipEntry imgEntry = new ZipEntry("images/logo.png"); zos.putNextEntry(imgEntry); zos.write("fake png data".getBytes()); zos.closeEntry(); } }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 19 23:49:30 UTC 2025 - 14.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/util/ResourceUtilTest.java
assertNotNull(propFile); assertTrue(propFile.toString().contains("project.properties")); } public void test_getImagePath() { Path imagePath = ResourceUtil.getImagePath("logo.png"); assertNotNull(imagePath); assertTrue(imagePath.toString().contains("images")); } public void test_getCssPath() { Path cssPath = ResourceUtil.getCssPath("style.css");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jul 12 07:34:10 UTC 2025 - 11.5K bytes - Viewed (0) -
src/main/resources/fess_indices/_aws/fess.json
"desta", "deste", "dispoe", "dispoem", "diversa", "diversas", "diversos", "do", "dos", "durante", "e", "ela", "elas", "ele", "eles", "em", "entao", "entre", "essa", "essas", "esse", "esses", "esta", "estas", "este", "estes", "ha", "isso", "isto", "logo", "mais", "mas", "mediante", "menos", "mesma", "mesmas", "mesmo", "mesmos", "na", "nas", "nao", "nas", "nem", "nesse", "neste", "nos", "o", "os", "ou", "outra", "outras", "outro", "outros", "pelas", "pelas", "pelo", "pelos", "perante", "pois", "por",...
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sat Jun 14 00:36:40 UTC 2025 - 117.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java
/** * Number of days to keep search logs before purging. * Set to -1 to disable automatic purging of search logs. */ @Min(-1) @Max(100000) @ValidateTypeFailure public Integer purgeSearchLogDay; /** * Number of days to keep job logs before purging. * Set to -1 to disable automatic purging of job logs. */ @Min(-1) @Max(100000)
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/resources/fess_label_en.properties
labels.advance_search_timestamp_pastyear=Past year labels.searchlog_configuration=Search Log labels.searchlog_title=Search Log labels.searchlog_log_type=Log Type labels.searchlog_log_type_search=Search Log labels.searchlog_log_type_click=Click Log labels.searchlog_log_type_favorite=Favorite Log labels.searchlog_log_type_user_info=User Log labels.searchlog_log_type_search_keyword=Keyword Count
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 04:56:21 UTC 2025 - 40.7K bytes - Viewed (0) -
.gitignore
/src/main/webapp/WEB-INF/env/thumbnail/lib/ /src/main/webapp/WEB-INF/thumbnails/ /src/main/webapp/jar/ /dbflute_fess/extlib/* /dbflute_fess/log/*.log /dbflute_h2/log/*.log /dbflute_mysql/log/*.log /dbflute_oracle/log/*.log /src/main/webapp/WEB-INF/conf/*.properties /src/main/webapp/WEB-INF/db/*.lock.db /src/main/webapp/WEB-INF/logs/fess* /.settings/ .project .classpath *.iml .idea .vscode .DS_Store /plugins/ /modules/
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 1K bytes - Viewed (0)