- Sort Score
- Num 10 results
- Language All
Results 51 - 60 of 153 for Indexes (0.18 seconds)
-
CHANGELOG/CHANGELOG-1.21.md
- Support for Indexed Job: a Job that is considered completed when Pods associated to indexes from 0 to (.spec.completions-1) have succeeded. ([#98812](https://github.com/kubernetes/kubernetes/pull/98812), [@alculquicondor](https://github.com/alculquicondor)) [SIG Apps and CLI]
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Fri Oct 14 07:03:14 GMT 2022 - 367.3K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/index/SuggestIndexerTest.java
SuggestIndexer indexer = suggester.indexer(); assertNotNull(indexer.setIndexName("test-index")); assertNotNull(indexer.setSupportedFields(new String[] { "field1", "field2" })); assertNotNull(indexer.setTagFieldNames(new String[] { "tag1", "tag2" })); assertNotNull(indexer.setRoleFieldName("role")); assertNotNull(indexer.setReadingConverter(null));Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 28.4K bytes - Click Count (0) -
src/test/java/org/codelibs/fess/suggest/SuggesterTest.java
suggester.indexer().deleteBadWord("["); suggester.indexer().deleteBadWord("エンジン"); assertEquals(0, suggester.settings().badword().get(false).length); } @Test public void test_popularWords() throws Exception { SuggestItem[] items = getPopularWordsItemSet2(); suggester.indexer().index(items); suggester.refresh();
Created: Sat Dec 20 13:04:59 GMT 2025 - Last Modified: Mon Nov 24 03:40:05 GMT 2025 - 37.4K bytes - Click Count (0) -
CHANGELOG/CHANGELOG-1.25.md
- Fixed bug which caused the status of Indexed Jobs to only be updated when there are newly completed indexes. The completed indexes are now updated if the .status.completedIndexes has values outside of the [0, .spec.completions> range ([#115460](https://github.com/kubernetes/kubernetes/pull/115460), [@danielvegamyhre](https://github....
Created: Fri Dec 26 09:05:12 GMT 2025 - Last Modified: Mon May 06 09:23:20 GMT 2024 - 419.1K bytes - Click Count (0) -
src/test/java/org/codelibs/core/collection/IndexedIteratorTest.java
final List<String> list = newArrayList(); list.add("aaa"); list.add("bbb"); list.add("ccc"); for (final Indexed<String> indexed : indexed(list)) { System.out.println(indexed.getIndex()); System.out.println(indexed.getElement()); } } /** * @throws Exception */ @Test public void testForEachLineIterator() throws Exception {
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Sat May 10 01:32:17 GMT 2025 - 2.7K bytes - Click Count (0) -
okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/HpackTest.kt
private fun firstRequestWithoutHuffman() { bytesIn.writeByte(0x82) // == Indexed - Add == // idx = 2 -> :method: GET bytesIn.writeByte(0x86) // == Indexed - Add == // idx = 7 -> :scheme: http bytesIn.writeByte(0x84) // == Indexed - Add == // idx = 6 -> :path: / bytesIn.writeByte(0x41) // == Literal indexed == // Indexed name (idx = 4) -> :authority bytesIn.writeByte(0x0f) // Literal value (len = 15)
Created: Fri Dec 26 11:42:13 GMT 2025 - Last Modified: Wed Mar 19 19:25:20 GMT 2025 - 38.6K bytes - Click Count (0) -
src/main/java/org/codelibs/core/beans/factory/ParameterizedClassDescFactory.java
if (parameterTypes == null) { return desc; } final ParameterizedClassDesc[] parameterDescs = new ParameterizedClassDesc[parameterTypes.length]; for (final Indexed<Type> parameterType : indexed(iterable(parameterTypes))) { parameterDescs[parameterType.getIndex()] = createParameterizedClassDesc(parameterType.getElement(), map); } desc.setArguments(parameterDescs);
Created: Sat Dec 20 08:55:33 GMT 2025 - Last Modified: Thu Jul 31 08:16:49 GMT 2025 - 7.7K bytes - Click Count (0) -
src/main/resources/fess_config.properties
indexer.webfs.commit.margin.time=5000 # Maximum number of empty lists for webfs in the indexer. indexer.webfs.max.empty.list.count=3600 # Update interval (ms) for webfs in the indexer. indexer.webfs.update.interval=10000 # Maximum document cache size for webfs in the indexer. indexer.webfs.max.document.cache.size=10 # Maximum document request size (bytes) for webfs in the indexer.
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Thu Dec 11 09:47:03 GMT 2025 - 54.8K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/indexer/IndexUpdater.java
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, * either express or implied. See the License for the specific language * governing permissions and limitations under the License. */ package org.codelibs.fess.indexer; import java.util.ArrayList; import java.util.List; import java.util.Map; import java.util.function.Consumer; import org.apache.logging.log4j.LogManager; import org.apache.logging.log4j.Logger;
Created: Sat Dec 20 09:19:18 GMT 2025 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 32.9K bytes - Click Count (0) -
compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractor.java
} } private ReflectionValueExtractor() {} /** * <p>The implementation supports indexed, nested and mapped properties.</p> * <ul> * <li>nested properties should be defined by a dot, i.e. "user.address.street"</li> * <li>indexed properties (java.util.List or array instance) should be contains <code>(\\w+)\\[(\\d+)\\]</code> * pattern, i.e. "user.addresses[1].street"</li>Created: Sun Dec 28 03:35:09 GMT 2025 - Last Modified: Tue Feb 25 08:27:34 GMT 2025 - 10.8K bytes - Click Count (0)