Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 562 for search_ (0.13 sec)

  1. src/main/webapp/WEB-INF/orig/view/index.jsp

    						<la:message key="labels.search_options_clear" />
    					</button>
    					<button type="submit" class="btn btn-primary">
    						<em class="fa fa-search">
    						<la:message key="labels.search" />
    					</button>
    					<la:link href="/search/advance" styleClass="btn btn-info">
    						<em class="fa fa-cog">
    						<la:message key="labels.advance" />
    					</la:link>
    				</div>
    			</div>
    		</div>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Feb 17 12:13:41 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java

         * are compared to pages on other sites—it only lets the search engines know
         * which pages you deem most important for the crawlers.
         *
         * The default priority of a page is 0.5.
         *
         * Please note that the priority you assign to a page is not likely to
         * influence the position of your URLs in a search engine's result pages.
         * Search engines may use this information when selecting between URLs on
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  3. src/test/resources/osdd/osdd.xml

    <OpenSearchDescription xmlns="http://a9.com/-/spec/opensearch/1.1/">
      <ShortName>Fess</ShortName>
      <Description>Full Text Search for Your Documents.</Description>
      <Tags>Full Text Search</Tags>
      <Contact>******@****.***</Contact>
      <SearchForm>http://localhost:8080/fess/</SearchForm>
      <Url type="text/html" template="http://localhost:8080/fess/search?q={searchTerms}"/>
      <InputEncoding>UTF-8</InputEncoding>
      <OutputEncoding>UTF-8</OutputEncoding>
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 08 05:17:08 UTC 2024
    - 535 bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/resource/local/DefaultPathKeyFileStoreTest.groovy

        }
    
        def "can search via globs"() {
            when:
            store.move("a/a/a", createFile("a"))
            store.move("a/a/b", createFile("b"))
            store.move("a/b/a", createFile("c"))
    
            then:
            store.search("**/a").size() == 2
            store.search("*/b/*").size() == 1
            store.search("a/b/a").size() == 1
        }
    
        def "search ignores stale entries with marker file"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 20 09:57:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/cpp/CompilationDetails.java

         */
        File getCompileWorkingDir();
    
        /**
         * Returns the framework search paths for this binary.
         */
        List<File> getFrameworkSearchPaths();
    
        /**
         * Returns the system search paths for this binary.
         */
        List<File> getSystemHeaderSearchPaths();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/cache.go

    }
    
    func (c *Cache) Reset() {
    	nv := sort.Search(len(c.values), func(i int) bool { return c.values[i].ID == 0 })
    	xv := c.values[:nv]
    	for i := range xv {
    		xv[i] = Value{}
    	}
    	nb := sort.Search(len(c.blocks), func(i int) bool { return c.blocks[i].ID == 0 })
    	xb := c.blocks[:nb]
    	for i := range xb {
    		xb[i] = Block{}
    	}
    	nl := sort.Search(len(c.locs), func(i int) bool { return c.locs[i] == nil })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 15 23:00:54 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/BaseApiManager.java

                    value = values[2];
                }
            }
            if (value == null) {
                return FormatType.SEARCH;
            }
            final String type = value.toUpperCase(Locale.ROOT);
            if (FormatType.SEARCH.name().equals(type)) {
                return FormatType.SEARCH;
            }
            if (FormatType.LABEL.name().equals(type)) {
                return FormatType.LABEL;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/user/allcommon/EsPagingResultBean.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.es.user.allcommon;
    
    import org.apache.lucene.search.TotalHits;
    import org.dbflute.cbean.result.PagingResultBean;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.search.aggregations.Aggregations;
    
    /**
     * @param <ENTITY> The type of entity.
     * @author ESFlute (using FreeGen)
     */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/internal/resource/local/ivy/LocallyAvailableResourceFinderFactory.java

            // Order is important here, because they will be searched in that order
    
            // The current filestore
            finders.add(new LocallyAvailableResourceFinderSearchableFileStoreAdapter<>(key -> fileStore.search(key.getId()), checksumService));
    
            // 1.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/request/popularwords/PopularWordsRequest.java

    import org.codelibs.fess.suggest.exception.SuggesterException;
    import org.codelibs.fess.suggest.request.Request;
    import org.opensearch.action.search.SearchRequestBuilder;
    import org.opensearch.action.search.SearchResponse;
    import org.opensearch.client.Client;
    import org.opensearch.common.lucene.search.function.CombineFunction;
    import org.opensearch.core.action.ActionListener;
    import org.opensearch.index.query.BoolQueryBuilder;
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 7K bytes
    - Viewed (0)
Back to top