- Sort Score
- Result 10 results
- Languages All
Results 221 - 230 of 1,936 for protected (0.12 sec)
-
guava/src/com/google/common/collect/ForwardingNavigableMap.java
extends ForwardingSortedMap<K, V> implements NavigableMap<K, V> { /** Constructor for use by subclasses. */ protected ForwardingNavigableMap() {} @Override protected abstract NavigableMap<K, V> delegate(); @Override public @Nullable Entry<K, V> lowerEntry(@ParametricNullness K key) { return delegate().lowerEntry(key); } /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 14.3K bytes - Viewed (0) -
android/guava-testlib/test/com/google/common/collect/testing/IteratorTesterTest.java
@Override protected Iterator<Integer> newTargetIterator() { return ImmutableList.of(1, 2).iterator(); } }; assertFailure(tester); } public void testUnknownOrder() { new IteratorTester<Integer>( 3, MODIFIABLE, newArrayList(1, 2), IteratorTester.KnownOrder.UNKNOWN_ORDER) { @Override protected Iterator<Integer> newTargetIterator() {Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Wed Aug 06 18:32:41 UTC 2025 - 10.3K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultDataImpl.java
/** The unique identifier for the access result data. */ protected IDTYPE id; /** The name of the transformer associated with this access result data. */ protected String transformerName; /** The data as a byte array. */ protected byte[] data; /** The encoding used for the access result data. */ protected String encoding; /** * Constructs a new AccessResultDataImpl instance.Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/query/QueryFieldConfig.java
protected static final String SCORE_SORT_VALUE = "score"; /** Array of fields to be included in standard search response */ protected String[] responseFields; /** Array of fields to be included in scroll search response */ protected String[] scrollResponseFields; /** Array of fields to be included in cache search response */ protected String[] cacheResponseFields;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 20.6K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java
*/ @Resource protected UrlQueueService<UrlQueue<?>> urlQueueService; /** * Service for managing access result data. */ @Resource protected DataService<AccessResult<?>> dataService; /** * Container for managing crawler components. */ @Resource protected CrawlerContainer crawlerContainer; /**Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Thu Aug 07 02:55:08 UTC 2025 - 20.4K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/it/CrudTestBase.java
abstract protected String getListEndpointSuffix(); abstract protected String getItemEndpointSuffix(); abstract protected Map<String, Object> createTestParam(int id); abstract protected Map<String, Object> getUpdateMap(); // ================ // Constant // ================ protected String getIdKey() { return "id"; } @BeforeAll protected static void initAll() {Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 9.2K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/interval/impl/DefaultIntervalController.java
protected long delayMillisAfterProcessing = 0L; /** Delay in milliseconds when no URL is in the queue */ protected long delayMillisAtNoUrlInQueue = 500L; /** Delay in milliseconds before processing a URL */ protected long delayMillisBeforeProcessing = 0L; /** Delay in milliseconds for waiting for new URLs */ protected long delayMillisForWaitingNewUrl = 1000L;Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/helper/OsddHelper.java
/** The OSDD file path. */ protected String osddPath; /** The encoding for OSDD file. */ protected String encoding = Constants.UTF_8; /** The content type for OSDD response. */ protected String contentType = "text/xml"; // "application/opensearchdescription+xml" /** The OSDD file. */ protected File osddFile; /** * Initializes the OSDD helper. */Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 4.7K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/opensearch/config/bsentity/dbmeta/CrawlingInfoDbm.java
// ========== protected final String _tableDbName = "crawling_info"; protected final String _tableDispName = "crawling_info"; protected final String _tablePropertyName = "CrawlingInfo"; public String getTableDbName() { return _tableDbName; } @OverrideRegistered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 8.8K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/UrlQueueImpl.java
protected IDTYPE id; /** The session ID associated with this URL queue. */ protected String sessionId; /** The HTTP method used for the URL in the queue. */ protected String method; /** The URL from the queue. */ protected String url; /** The metadata associated with the URL queue. */ protected String metaData;Registered: Sun Sep 21 03:50:09 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 6.1K bytes - Viewed (0)