- Sort Score
- Num 10 results
- Language All
Results 61 - 70 of 87 for get_text (0.12 seconds)
-
src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java
protected Object parsePrimitive(final JsonParser jsonParser) throws IOException { final JsonToken token = jsonParser.getCurrentToken(); return switch (token) { case VALUE_STRING -> jsonParser.getText(); case VALUE_NUMBER_INT -> jsonParser.getLongValue(); case VALUE_NUMBER_FLOAT -> jsonParser.getDoubleValue(); case VALUE_TRUE -> true; case VALUE_FALSE -> false;
Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Sun Dec 14 01:18:25 GMT 2025 - 16.5K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/CompactHashMap.java
V oldValue = (V) values[entryIndex]; values[entryIndex] = value; accessEntry(entryIndex); return oldValue; } next = CompactHashing.getNext(entry, mask); bucketLength++; } while (next != UNSET); if (bucketLength >= MAX_HASH_BUCKET_LENGTH) { return convertToHashFloodingResistantImplementation().put(key, value); }
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sat Aug 09 01:14:59 GMT 2025 - 35.7K bytes - Click Count (0) -
README.md
crawler.awaitTermination(); System.out.println("Crawling completed"); ``` ### Custom Content Extractor ```java public class CustomExtractor extends AbstractExtractor { @Override public ExtractData getText(final InputStream inputStream, final Map<String, String> params) { // Custom extraction logic ExtractData extractData = new ExtractData(); // ... implementation return extractData; }
Created: Sun Apr 12 03:50:13 GMT 2026 - Last Modified: Sun Aug 31 05:32:52 GMT 2025 - 15.3K bytes - Click Count (0) -
android/guava/src/com/google/common/collect/Iterables.java
Iterators.advance(iterator, position); return Iterators.getNext(iterator, defaultValue); } } /** * Returns the first element in {@code iterable} or {@code defaultValue} if the iterable is empty. * The {@link Iterators} analog to this method is {@link Iterators#getNext}. * * <p>If no default value is desired (and the caller instead wants a {@link
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Tue Sep 16 18:35:28 GMT 2025 - 43.8K bytes - Click Count (0) -
android/guava-tests/test/com/google/common/collect/IteratorsTest.java
Iterator<String> iterator = singletonList("foo").iterator(); assertThat(Iterators.getNext(iterator, "bar")).isEqualTo("foo"); } public void testGetNext_withDefault_empty() { Iterator<String> iterator = emptyIterator(); assertThat(Iterators.getNext(iterator, "bar")).isEqualTo("bar"); } public void testGetNext_withDefault_empty_null() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 57.3K bytes - Click Count (0) -
src/main/java/org/codelibs/core/collection/SLinkedList.java
public E getElement() { return element; } /** * Returns the next entry. * * @return the next entry */ public Entry getNext() { if (next != SLinkedList.this.header) { return next; } return null; } /** * Returns the previous entry. *
Created: Fri Apr 03 20:58:12 GMT 2026 - Last Modified: Thu Jun 19 09:12:22 GMT 2025 - 10.5K bytes - Click Count (0) -
guava-tests/test/com/google/common/collect/IteratorsTest.java
Iterator<String> iterator = singletonList("foo").iterator(); assertThat(Iterators.getNext(iterator, "bar")).isEqualTo("foo"); } public void testGetNext_withDefault_empty() { Iterator<String> iterator = emptyIterator(); assertThat(Iterators.getNext(iterator, "bar")).isEqualTo("bar"); } public void testGetNext_withDefault_empty_null() {
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Fri Mar 13 13:01:07 GMT 2026 - 57.3K bytes - Click Count (0) -
src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java
* @return The extracted data. */ protected ExtractData getExtractData(final Extractor extractor, final InputStream in, final Map<String, String> params) { try { return extractor.getText(in, params); } catch (final RuntimeException e) { if (!fessConfig.isCrawlerIgnoreContentException()) { throw e; } if (logger.isDebugEnabled()) {Created: Tue Mar 31 13:07:34 GMT 2026 - Last Modified: Fri Nov 28 16:29:12 GMT 2025 - 25.7K bytes - Click Count (0) -
guava/src/com/google/common/collect/Iterables.java
Iterators.advance(iterator, position); return Iterators.getNext(iterator, defaultValue); } } /** * Returns the first element in {@code iterable} or {@code defaultValue} if the iterable is empty. * The {@link Iterators} analog to this method is {@link Iterators#getNext}. * * <p>If no default value is desired (and the caller instead wants a {@link
Created: Fri Apr 03 12:43:13 GMT 2026 - Last Modified: Sun Mar 08 16:16:42 GMT 2026 - 43.6K bytes - Click Count (0) -
src/test/java/jcifs/internal/smb2/ServerMessageBlock2ResponseTest.java
} public TestServerMessageBlock2Response(Configuration config, int command) { super(config, command); } @Override public ServerMessageBlock2 getNext() { return nextBlock; } @Override public void setNext(ServerMessageBlock2 next) { this.nextBlock = next; }Created: Sun Apr 05 00:10:12 GMT 2026 - Last Modified: Thu Aug 14 05:31:44 GMT 2025 - 19.3K bytes - Click Count (0)