- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 544 for Research (0.2 sec)
-
docs_src/query_params_str_validations/tutorial008_an_py39.py
app = FastAPI() @app.get("/items/") async def read_items( q: Annotated[ Union[str, None], Query( title="Query string", description="Query string for the items to search in the database that have a good match", min_length=3, ), ] = None, ): results = {"items": [{"item_id": "Foo"}, {"item_id": "Bar"}]} if q: results.update({"q": q})
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 24 20:26:06 UTC 2023 - 511 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/suggest/Suggester.java
throw new SuggesterException("Unexpected search indices num:" + searchIndices.size()); } final String searchIndex = searchIndices.get(0); if (updateIndex.equals(searchIndex)) { return; } if (logger.isInfoEnabled()) { logger.info("Switch suggest.search index. {} => {}", searchIndex, updateIndex); }
Registered: Fri Nov 08 09:08:12 UTC 2024 - Last Modified: Sat Oct 12 00:10:39 UTC 2024 - 14.6K bytes - Viewed (0) -
src/main/resources/fess.xml
</postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"footer"</arg> <arg>"footer.jsp"</arg> </postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"search"</arg> <arg>"search.jsp"</arg> </postConstruct> <postConstruct name="addDesignJspFileName"> <arg>"searchResults"</arg> <arg>"searchResults.jsp"</arg> </postConstruct> <postConstruct name="addDesignJspFileName">
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Sun Jul 28 09:03:48 UTC 2024 - 5.2K bytes - Viewed (0) -
docs_src/query_params_str_validations/tutorial010_an_py39.py
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Tue Oct 24 20:26:06 UTC 2023 - 635 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/error/ErrorBadrequrestAction.java
// // =================================================================================== // Search Execute // ============== @Execute public HtmlResponse index(final ErrorForm form) {
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/SearchResult.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.rank.fusion; import java.util.ArrayList; import java.util.List; import java.util.Map; import org.apache.lucene.search.TotalHits.Relation; import org.codelibs.fess.util.FacetResponse; public class SearchResult { protected final List<Map<String, Object>> documentList; protected final long allRecordCount;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 4.2K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/service/RelatedContentService.java
} // TODO Long, Integer, String supported only. // setup condition cb.query().addOrderBy_Term_Asc(); cb.query().addOrderBy_CreatedTime_Asc(); // search } public List<RelatedContent> getAvailableRelatedContentList() { return relatedContentBhv.selectList(cb -> { cb.query().matchAll(); cb.query().addOrderBy_Term_Asc();
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:53:18 UTC 2024 - 3.6K bytes - Viewed (0) -
src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp
<button type="submit" class="btn btn-primary" id="submit" name="search" value="<la:message key="labels.crud_button_search" />"> <em class="fa fa-search"> <la:message key="labels.crud_button_search"/> </button>
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 13 07:47:04 UTC 2020 - 13.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/rank/fusion/RankFusionSearcher.java
name = StringUtil.decamelize(this.getClass().getSimpleName().replace("Searcher", StringUtil.EMPTY)).toLowerCase(Locale.ENGLISH); } return name; } protected abstract SearchResult search(String query, SearchRequestParams params, OptionalThing<FessUserBean> userBean);
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 1.3K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsWebConfigCA.java
import org.opensearch.search.aggregations.bucket.sampler.SamplerAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.SignificantTermsAggregationBuilder; import org.opensearch.search.aggregations.bucket.terms.TermsAggregationBuilder; import org.opensearch.search.aggregations.metrics.AvgAggregationBuilder; import org.opensearch.search.aggregations.metrics.CardinalityAggregationBuilder;
Registered: Thu Oct 31 13:40:30 UTC 2024 - Last Modified: Thu Feb 22 01:37:57 UTC 2024 - 149K bytes - Viewed (0)