- Sort Score
- Result 10 results
- Languages All
Results 21 - 30 of 90 for Vector (0.03 sec)
-
android/guava/src/com/google/common/collect/Hashing.java
// Round down to the nearest power of 2. expectedEntries = max(expectedEntries, 2); int tableSize = Integer.highestOneBit(expectedEntries); // Check to make sure that we will not exceed the maximum load factor. if (expectedEntries > (int) (loadFactor * tableSize)) { tableSize <<= 1; return (tableSize > 0) ? tableSize : MAX_TABLE_SIZE; } return tableSize; }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 2.5K bytes - Viewed (0) -
android/guava/src/com/google/common/base/SmallCharMatcher.java
* can hold setSize elements with the desired load factor. */ @VisibleForTesting static int chooseTableSize(int setSize) { if (setSize == 1) { return 2; } // Correct the size for open addressing to match desired load factor. // Round up to the next highest power of 2. int tableSize = Integer.highestOneBit(setSize - 1) << 1;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Feb 12 03:49:18 UTC 2025 - 4.5K bytes - Viewed (0) -
src/test/java/org/codelibs/core/beans/impl/ConstructorDescTest.java
final ConstructorDesc ctor = beanDesc.getConstructorDesc(); assertThat(ctor, is(notNullValue())); assertThat(ctor.getBeanDesc(), is(sameInstance(beanDesc))); assertThat(ctor.getConstructor(), is((Constructor) MyBean.class.getConstructor())); assertThat(ctor.getParameterTypes().length, is(0)); assertThat(ctor.isPublic(), is(true));
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Sat May 10 01:32:17 UTC 2025 - 2.9K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/jsconf.js
/** File generated by Grunt -- do not modify * JQUERY-FORM-VALIDATOR * * @version 2.3.77 * @website http://formvalidator.net/ * @author Victor Jonsson, http://victorjonsson.se * @license MIT */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 867 bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/PhraseQueryCommand.java
} /** * Converts a phrase query to a query builder. * * @param context the query context * @param phraseQuery the phrase query * @param boost the boost factor * @return the query builder */ protected QueryBuilder convertPhraseQuery(final QueryContext context, final PhraseQuery phraseQuery, final float boost) { final Term[] terms = phraseQuery.getTerms();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.5K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryProcessor.java
* Executes query processing through the filter chain. * * @param context the query context containing search parameters and state * @param query the Lucene query to be processed * @param boost the boost factor to apply to the query * @return the processed OpenSearch QueryBuilder */ public QueryBuilder execute(final QueryContext context, final Query query, final float boost) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 7.1K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java
*/ @Override public Settings settings() { return client.settings(); } /** * Gets term vectors for a document asynchronously. * * @param request the term vectors request * @return a future for the term vectors response */ @Override public ActionFuture<TermVectorsResponse> termVectors(final TermVectorsRequest request) {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Sun Aug 31 08:19:00 UTC 2025 - 121.9K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/FuzzyQueryCommand.java
* * @param context the query context containing search configuration * @param query the Lucene query to convert (must be a FuzzyQuery) * @param boost the boost factor to apply to the query * @return OpenSearch QueryBuilder for fuzzy matching * @throws InvalidQueryException if the query is not a FuzzyQuery */ @Override
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 5.7K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/lang/da.js
/** File generated by Grunt -- do not modify * JQUERY-FORM-VALIDATOR * * @version 2.3.77 * @website http://formvalidator.net/ * @author Victor Jonsson, http://victorjonsson.se * @license MIT */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 2.4K bytes - Viewed (0) -
src/main/webapp/js/admin/plugins/form-validator/lang/ka.js
/** File generated by Grunt -- do not modify * JQUERY-FORM-VALIDATOR * * @version 2.3.77 * @website http://formvalidator.net/ * @author Victor Jonsson, http://victorjonsson.se * @license MIT */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Mon Jan 01 05:12:47 UTC 2018 - 5.2K bytes - Viewed (0)