Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for inNamespace (0.06 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. CHANGELOG/CHANGELOG-1.2.md

    details can be found in the [DNS README](https://github.com/kubernetes/kubernetes/blob/release-1.2/cluster/saltbase/salt/kube-dns/README.md#a-records-and-hostname-based-on-pod-annotat...
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri Dec 04 06:36:19 UTC 2020
    - 41.4K bytes
    - Viewed (0)
  6. 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)
Back to top