Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 126 for content_length (0.09 sec)

  1. src/main/webapp/WEB-INF/view/common/help.jsp

    		between the lower and upper bound specified by the Range Query. Range
    		Queries can be inclusive or exclusive of the upper and lower bounds.
    		If you want to find documents whose content_length fields have values
    		between 1000 and 10000, inclusive, you can enter:
    		<pre>content_length:[1000 TO 10000]</pre>
    		If you want to exclude the upper and lower bounds, use "{}".
    	</dd>
    	<dt>Boost</dt>
    	<dd>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 2.4K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/common/help_ja.jsp

    		<pre>Fe?s</pre>
    		検索語の先頭文字では利用できません。
    	</dd>
    	<dt>範囲検索</dt>
    	<dd>
    		範囲検索はフィールド値の範囲を指定することでその条件にマッチするドキュメントを検索します。
    		範囲の境界値を含める場合は [] を利用して、含めない場合は {} を利用します。 
    		たとえば、content_length フィールドが 1000 から 10000 の値を持つドキュメントを検索する場合は次のように入力します。
    		<pre>content_length:[1000 TO 10000]</pre>
    	</dd>
    	<dt>ブースト検索</dt>
    	<dd>
    		ブースト検索は検索語の後に ^ を指定することで利用できます。
    		^ の後に重み要因を整数で指定することで、その検索語がブーストされます。
    		<pre>Fess^100</pre>
    	</dd>
    	<dt>あいまい検索</dt>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.4K bytes
    - Viewed (0)
  3. src/main/webapp/WEB-INF/view/common/help_ko.jsp

    		<pre>Fe?s</pre>
    		검색어의 첫 번째 문자는 사용할 수 없습니다.
    	</dd>
    	<dt>범위검색</dt>
    	<dd>
    		범위 검색 필드 값의 범위를 지정하여 그 조건에 일치하는 문서를 검색합니다.
    		범위의 경계 값을 포함하려면 []를 사용하여 포함하지 않는 경우는 {}을 이용합니다.
    		예를 들어, content_length 필드가 1000에서 10000의 값을 가진 문서를 검색하려면 다음과 같이 입력합니다.
    		<pre>content_length:[1000 TO 10000]</pre>
    	</dd>
    	<dt>부스트(Boost)검색</dt>
    	<dd>
    		부스트 검색은 검색어 뒤에 ^을 지정하여 사용할 수 있습니다.
    		^ 다음에 가중치 값을 정수로 지정하여 그 검색어가 향상됩니다.
    		<pre>Fess^100</pre>
    	</dd>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 26 14:01:31 UTC 2018
    - 3.1K bytes
    - Viewed (0)
  4. fess-crawler-opensearch/src/main/java/org/codelibs/fess/crawler/entity/OpenSearchAccessResult.java

                builder.field(CREATE_TIME, createTime);
            }
            if (executionTime != null) {
                builder.field(EXECUTION_TIME, executionTime);
            }
            if (contentLength != null) {
                builder.field(CONTENT_LENGTH, contentLength);
            }
            if (lastModified != null) {
                builder.field(LAST_MODIFIED, lastModified);
            }
            if (accessResultData instanceof ToXContent) {
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Nov 07 04:44:10 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/searchResults.jsp

    					</c:if>
    					<c:if test="${doc.content_length!=null && doc.content_length!=''}">
    						<div class="d-sm-none"></div>
    						<span class="d-none d-sm-inline">&nbsp;</span>
    						<la:message key="labels.search_result_size"
    							arg0="${fe:formatFileSize(doc.content_length)}" />
    					</c:if>
    					<c:if test="${searchLogSupport && doc.click_count!=null && doc.click_count>0}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/orig/view/searchOptions.jsp

    			</la:option>
    			<la:option value="created.desc">
    				<la:message key="labels.search_result_sort_created_desc" />
    			</la:option>
    			<la:option value="content_length.asc">
    				<la:message key="labels.search_result_sort_content_length_asc" />
    			</la:option>
    			<la:option value="content_length.desc">
    				<la:message key="labels.search_result_sort_content_length_desc" />
    			</la:option>
    			<la:option value="last_modified.asc">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 17 08:19:53 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/searchOptions.jsp

    			</la:option>
    			<la:option value="created.desc">
    				<la:message key="labels.search_result_sort_created_desc" />
    			</la:option>
    			<la:option value="content_length.asc">
    				<la:message key="labels.search_result_sort_content_length_asc" />
    			</la:option>
    			<la:option value="content_length.desc">
    				<la:message key="labels.search_result_sort_content_length_desc" />
    			</la:option>
    			<la:option value="last_modified.asc">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Jul 17 08:19:53 UTC 2019
    - 3.7K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist_edit.jsp

                                        <label for="doc.content_length" class="col-sm-3 text-sm-right col-form-label">content_length</label>
                                        <div class="col-sm-9">
                                            <la:errors property="doc.content_length"/>
                                            <la:text styleId="doc.content_length"
                                                     property="doc.content_length"
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 13 07:47:04 UTC 2020
    - 24.9K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/orig/view/searchResults.jsp

    					</c:if>
    					<c:if test="${doc.content_length!=null && doc.content_length!=''}">
    						<div class="d-sm-none"></div>
    						<span class="d-none d-sm-inline">&nbsp;</span>
    						<la:message key="labels.search_result_size"
    							arg0="${fe:formatFileSize(doc.content_length)}" />
    					</c:if>
    					<c:if test="${searchLogSupport && doc.click_count!=null && doc.click_count>0}">
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Jun 09 04:29:42 UTC 2022
    - 9K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/fe.tld

        <function-class>org.codelibs.fess.taglib.FessFunctions</function-class>
        <function-signature>java.lang.String formatFileSize(long)</function-signature>
        <example>
          ${fe:formatFileSize(doc.content_length)}
        </example>
      </function>
    
      <function>
        <description>
          Returns formatted number from a given value.
        </description>
        <name>formatNumber</name>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Sat Dec 23 06:18:48 UTC 2023
    - 10K bytes
    - Viewed (0)
Back to top