Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 742 for set_s (0.02 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/AccessResultData.java

         */
        IDTYPE getId();
    
        /**
         * Sets the ID of the access result data.
         *
         * @param id the ID to set
         */
        void setId(IDTYPE id);
    
        /**
         * Retrieves the name of the transformer associated with this access result data.
         *
         * @return the name of the transformer.
         */
        String getTransformerName();
    
        /**
         * Sets the name of the transformer.
         *
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sat Mar 15 06:52:00 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/SuggestSettingsBuilder.java

            return this;
        }
    
        /**
         * Sets the scroll timeout.
         * @param timeout The scroll timeout.
         * @return This builder instance.
         */
        public SuggestSettingsBuilder scrollTimeout(final String timeout) {
            timeoutSettings.scrollTimeout = timeout;
            return this;
        }
    
        /**
         * Sets the search timeout.
         * @param timeout The search timeout.
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Fri Jul 04 14:00:23 UTC 2025
    - 4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/internal/witness/WitnessRegisterRequest.java

        /**
         * Gets the witness protocol version.
         *
         * @return the protocol version
         */
        public int getVersion() {
            return version;
        }
    
        /**
         * Sets the witness protocol version.
         *
         * @param version the protocol version
         */
        public void setVersion(int version) {
            this.version = version;
        }
    
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 2.6K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/builder/RequestDataBuilder.java

            }
    
            /**
             * Sets the HTTP method for the request.
             * @param method The HTTP method.
             * @return The current RequestDataContext instance.
             */
            public RequestDataContext method(final Method method) {
                data.setMethod(method);
                return this;
            }
    
            /**
             * Sets the HTTP method to GET.
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  5. okhttp/src/commonJvmAndroid/kotlin/okhttp3/OkHttpClient.kt

          this.taskRunner = okHttpClient.taskRunner
        }
    
        /**
         * Sets the dispatcher used to set policy and execute asynchronous requests. Must not be null.
         */
        fun dispatcher(dispatcher: Dispatcher) =
          apply {
            this.dispatcher = dispatcher
          }
    
        /**
         * Sets the connection pool used to recycle HTTP and HTTPS connections.
         *
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Mon May 05 16:01:00 UTC 2025
    - 51.7K bytes
    - Viewed (0)
  6. src/main/java/jcifs/internal/witness/WitnessHeartbeatMessage.java

            this.sequenceNumber = sequenceNumber;
            this.responseSequenceNumber = 0;
            this.heartbeatInterval = 0;
        }
    
        /**
         * Sets the context handle for the heartbeat.
         *
         * @param contextHandle the context handle from registration
         */
        public void setContextHandle(byte[] contextHandle) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 5.8K bytes
    - Viewed (0)
  7. fess-crawler/src/main/java/org/codelibs/fess/crawler/Crawler.java

            return crawlerContext;
        }
    
        /**
         * Sets the number of threads.
         * @param numOfThread The number of threads.
         */
        public void setNumOfThread(final int numOfThread) {
            crawlerContext.numOfThread = numOfThread;
        }
    
        /**
         * Sets the maximum thread check count.
         * @param maxThreadCheckCount The maximum thread check count.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 14K bytes
    - Viewed (0)
  8. buildscripts/verify-build.sh

    	export MINIO_ENDPOINTS="${WORK_DIR}/erasure-disk-sets{1...32}"
    	"${MINIO[@]}" server >"$WORK_DIR/erasure-minio-sets.log" 2>&1 &
    
    	"${WORK_DIR}/mc" ready verify
    }
    
    function start_minio_pool_erasure_sets() {
    	export MINIO_ROOT_USER=$ACCESS_KEY
    	export MINIO_ROOT_PASSWORD=$SECRET_KEY
    	export MINIO_ENDPOINTS="http://127.0.0.1:9000${WORK_DIR}/pool-disk-sets{1...4} http://127.0.0.1:9001${WORK_DIR}/pool-disk-sets{5...8}"
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 24 19:28:51 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/cache/ReferenceEntry.java

      @SuppressWarnings("GoodTime")
      long getAccessTime();
    
      /** Sets the entry access time in ns. */
      @SuppressWarnings("GoodTime") // b/122668874
      void setAccessTime(long time);
    
      /** Returns the next entry in the access queue. */
      ReferenceEntry<K, V> getNextInAccessQueue();
    
      /** Sets the next entry in the access queue. */
      void setNextInAccessQueue(ReferenceEntry<K, V> next);
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Feb 11 18:34:30 UTC 2025
    - 3.5K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/CommandExtractor.java

                return buf.toString();
            }
    
        }
    
        /**
         * Sets the encoding for the output.
         * @param outputEncoding The output encoding to set.
         */
        public void setOutputEncoding(final String outputEncoding) {
            this.outputEncoding = outputEncoding;
        }
    
        /**
         * Sets the output file extension.
         * @param outputExtension The output file extension to set.
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 16K bytes
    - Viewed (0)
Back to top