Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 163 for logo (0.01 sec)

  1. 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)
  2. src/main/webapp/WEB-INF/view/advance.jsp

    		<header>
    			<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
    				<div class="container">
    					<la:link styleClass="navbar-brand d-inline-flex" href="/">
    						<img src="${fe:url('/images/logo-head.png')}"
    							alt="<la:message key="labels.header_brand_name" />"
    							class="align-items-center" />
    					</la:link>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/admin/sidebar.jsp

    			<li class="nav-item has-treeview <c:if test="${param.menuCategoryType=='log'}">menu-open</c:if>">
    				<a href="#" class="nav-link <c:if test="${param.menuCategoryType=='log'}">active</c:if>">
    					<em class='nav-icon fa fa-rss'>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Apr 15 20:55:28 UTC 2021
    - 17.8K bytes
    - Viewed (0)
  4. src/main/webapp/WEB-INF/orig/view/advance.jsp

    		<header>
    			<nav class="navbar navbar-expand-md navbar-dark fixed-top bg-dark">
    				<div class="container">
    					<la:link styleClass="navbar-brand d-inline-flex" href="/">
    						<img src="${fe:url('/images/logo-head.png')}"
    							alt="<la:message key="labels.header_brand_name" />"
    							class="align-items-center" />
    					</la:link>
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. android/guava-tests/test/com/google/common/math/DoubleMathTest.java

          int log2 = DoubleMath.log2(d, FLOOR);
          assertTrue(StrictMath.pow(2.0, log2) <= d);
          assertTrue(StrictMath.pow(2.0, log2 + 1) > d);
        }
      }
    
      @GwtIncompatible // DoubleMath.log2(double, RoundingMode), StrictMath
      public void testRoundLog2Ceiling() {
        for (double d : POSITIVE_FINITE_DOUBLE_CANDIDATES) {
          int log2 = DoubleMath.log2(d, CEILING);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 27.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

    import org.codelibs.fess.opensearch.log.exbhv.ClickLogBhv;
    import org.codelibs.fess.opensearch.log.exbhv.FavoriteLogBhv;
    import org.codelibs.fess.opensearch.log.exbhv.SearchLogBhv;
    import org.codelibs.fess.opensearch.log.exbhv.UserInfoBhv;
    import org.codelibs.fess.opensearch.log.exentity.ClickLog;
    import org.codelibs.fess.opensearch.log.exentity.SearchLog;
    import org.codelibs.fess.opensearch.log.exentity.UserInfo;
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 26.3K bytes
    - Viewed (0)
Back to top