Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 88 for Captions (0.2 sec)

  1. .github/workflows/codeql-analysis.yml

            # Supported options are ['csharp', 'cpp', 'go', 'java', 'javascript', 'python']
            language: ['java']
            # Learn more...
            # https://docs.github.com/en/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#overriding-automatic-language-detection
    
        steps:
        - name: Checkout repository
          uses: actions/checkout@v2
          with:
    Others
    - Registered: Fri Mar 01 20:58:10 GMT 2024
    - Last Modified: Wed Jan 19 23:41:02 GMT 2022
    - 2.5K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/popper.min.js.map

    ...options.modifiers,\n    }).forEach(name => {\n      this.options.modifiers[name] = {\n        // If it's a built-in modifier, use it as base\n        ...(Popper.Defaults.modifiers[name] || {}),\n        // If there are custom options, override and merge with default ones\n        ...(options.modifiers ? options.modifiers[name] : {}),\n      };\n    });\n\n    // Refactoring modifiers' list (Object => Array)\n    this.modifiers = Object.keys(this.options.modifiers)\n      .map(name => ({\n        name,\n ...
    Plain Text
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 121K bytes
    - Viewed (2)
  3. src/main/java/org/codelibs/fess/filter/CorsFilter.java

    import org.codelibs.fess.util.ComponentUtil;
    
    public class CorsFilter implements Filter {
    
        private static final Logger logger = LogManager.getLogger(CorsFilter.class);
    
        protected static final String OPTIONS = "OPTIONS";
    
        @Override
        public void doFilter(final ServletRequest request, final ServletResponse response, final FilterChain chain)
                throws IOException, ServletException {
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.5K bytes
    - Viewed (0)
  4. src/main/webapp/js/admin/popper.min.js

    ;e.offsets.reference=L(this.state,this.popper,this.reference,this.options.positionFixed),e.placement=O(this.options.placement,e.offsets.reference,this.popper,this.reference,this.options.modifiers.flip.boundariesElement,this.options.modifiers.flip.padding),e.originalPlacement=e.placement,e.positionFixed=this.options.positionFixed,e.offsets.popper=C(this.popper,e.offsets.reference,e.placement),e.offsets.popper.position=this.options.positionFixed?'fixed':'absolute',e=P(this.modifiers,e),this.state....
    JavaScript
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 07 10:28:50 GMT 2020
    - 20.8K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/orig/view/header.jsp

    						</la:link></li>
    				</ul>
    			</div>
    		</nav>
    	</header>
    	<div id="searchOptions" class="control-options">
    		<div class="container">
    			<jsp:include page="/WEB-INF/view/searchOptions.jsp" />
    			<div>
    				<button type="button" class="btn btn-light" id="searchOptionsClearButton">
    					<la:message key="labels.search_options_clear" />
    				</button>
    				<button type="submit" class="btn btn-primary">
    					<em class="fa fa-search">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/header.jsp

    						</la:link></li>
    				</ul>
    			</div>
    		</nav>
    	</header>
    	<div id="searchOptions" class="control-options">
    		<div class="container">
    			<jsp:include page="/WEB-INF/view/searchOptions.jsp" />
    			<div>
    				<button type="button" class="btn btn-light" id="searchOptionsClearButton">
    					<la:message key="labels.search_options_clear" />
    				</button>
    				<button type="submit" class="btn btn-primary">
    					<em class="fa fa-search">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Sat Oct 24 03:00:28 GMT 2020
    - 4.2K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/orig/view/search.jsp

    				href="#searchOptions" class="badge badge-primary"
    				data-toggle="control-options"> <la:message
    						key="labels.searchoptions_num" arg0="${f:h(num)}" />
    			</a></li>
    			<li class="list-inline-item"><la:message key="labels.searchoptions_menu_lang" /> <a
    				href="#searchOptions" class="badge badge-primary"
    				data-toggle="control-options"> <c:if test="${empty lang}">
    						<la:message key="labels.searchoptions_all" />
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.6K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/orig/view/index.jsp

    						</ul>
    					</div>
    				</div>
    			</nav>
    		</header>
    		<div id="searchOptions" class="control-options">
    			<div class="container">
    				<jsp:include page="searchOptions.jsp" />
    				<div>
    					<button type="button" class="btn btn-light" id="searchOptionsClearButton">
    						<la:message key="labels.search_options_clear" />
    					</button>
    					<button type="submit" class="btn btn-primary">
    						<em class="fa fa-search">
    Others
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 6.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/helper/QueryHelper.java

                    queryContext.setQueryBuilder(queryBuilder);
                } else {
                    queryContext.setQueryBuilder(QueryBuilders.matchAllQuery());
                }
                // TODO options query
                context.accept(queryContext);
            } catch (final QueryParseException e) {
                throw new InvalidQueryException(messages -> messages.addErrorsInvalidQueryParseError(UserMessages.GLOBAL_PROPERTY_KEY),
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/convert/TimeConversionUtil.java

     * それらの持つミリ秒単位の値を使って変換後のオブジェクトを作成します。
     * その他の型の場合は変換元オブジェクトの文字列表現から変換後のオブジェクトを作成します。
     * </p>
     * <p>
     * パターンを指定されなかった場合、変換に使用するパターンはロケールに依存して次のようになります。
     * </p>
     * <table border="1">
     * <caption>Conversion Patterns</caption>
     * <tr>
     * <th>カテゴリ</th>
     * <th>パターン</th>
     * <th>{@link Locale#JAPANESE}の例</th>
     * </tr>
     * <tr>
     * <td rowspan="4">{@link DateFormat}の標準形式</td>
     * <td>{@link DateFormat#SHORT}の形式</td>
    Java
    - Registered: Fri Apr 26 20:58:09 GMT 2024
    - Last Modified: Thu Mar 07 01:59:08 GMT 2024
    - 21.2K bytes
    - Viewed (0)
Back to top