- Sort Score
- Result 10 results
- Languages All
Results 1 - 6 of 6 for rnamespace (0.04 sec)
-
src/main/java/org/codelibs/fess/job/CrawlJob.java
} /** * Sets the namespace for the crawling session. * The namespace is used to organize and identify crawling activities. * * @param namespace the namespace identifier for the crawling session * @return this CrawlJob instance for method chaining */ public CrawlJob namespace(final String namespace) { this.namespace = namespace; return this; } /**
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 19.6K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/job/CrawlJobTest.java
assertEquals(Constants.CRAWLING_INFO_SYSTEM_NAME, crawlJob.namespace); assertNull(crawlJob.webConfigIds); assertNull(crawlJob.fileConfigIds); assertNull(crawlJob.dataConfigIds); assertEquals(-2, crawlJob.documentExpires); assertEquals(-1, crawlJob.hotThreadInterval); } // Test namespace setter public void test_namespace() {
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 25K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/util/GsaConfigParser.java
* Processes collection definitions and tracks the element hierarchy. * * @param uri the namespace URI, or empty string if none * @param localName the local name without prefix, or empty string if namespace processing is not performed * @param qName the qualified name with prefix, or empty string if qualified names are not available
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 21.5K bytes - Viewed (0) -
CHANGELOG/CHANGELOG-1.2.md
default). An example using curl: <code>curl -H "Content-Type: application/json" -XPOST -d '{"apiVersion":"v1","kind":"Namespace","metadata":{"name":"kube-system"}}' "[http://127.0.0.1:8080/api/v1/namespaces](http://127.0.0.1:8080/api/v1/namespaces)"</code> * The version of InfluxDB is bumped from 0.8 to 0.9 which means storage schema
Registered: Fri Sep 05 09:05:11 UTC 2025 - Last Modified: Fri Dec 04 06:36:19 UTC 2020 - 41.4K bytes - Viewed (0) -
okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/DerReader.kt
peekedHeader = null limit = pushedLimit constructed = pushedConstructed if (name != null) path.removeAt(path.size - 1) } } /** * Execute [block] with a new namespace for type hints. Type hints from the enclosing type are no * longer usable by the current type's members. */ fun <T> withTypeHint(block: () -> T): T { typeHintStack.add(null) try {
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Wed Mar 19 19:25:20 UTC 2025 - 10.5K bytes - Viewed (0) -
okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Connection.kt
// If the stream ID is less than the last created ID, assume it's already closed. if (streamId <= lastGoodStreamId) return // If the stream ID is in the client's namespace, assume it's already closed. if (streamId % 2 == nextStreamId % 2) return // Create a stream. val headers = headerBlock.toHeaders()
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Thu Jul 31 04:18:40 UTC 2025 - 31.8K bytes - Viewed (0)