Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 93 for replacing (0.2 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/FileTransformer.java

     * It extends HtmlTransformer and provides functionality to:
     * </p>
     * <ul>
     *     <li>Specify a base directory for storing files.</li>
     *     <li>Generate file paths from URLs, replacing special characters.</li>
     *     <li>Handle duplicated file paths by appending a counter.</li>
     *     <li>Store the file path in the result data.</li>
     *     <li>Retrieve the stored file as a File object.</li>
     * </ul>
     *
    Created: Sat Dec 20 11:21:39 GMT 2025
    - Last Modified: Thu Aug 07 02:55:08 GMT 2025
    - 11.7K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/dict/stemmeroverride/StemmerOverrideFile.java

        }
    
        /**
         * An inner class for updating the stemmer override file.
         * This class handles the process of writing changes to a temporary file
         * and then replacing the original file upon successful commit.
         */
        protected class StemmerOverrideUpdater implements Closeable {
    
            /** A flag indicating whether the changes have been committed. */
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  3. misc/cgo/gmp/gmp.go

    be told to initialize this pointer).  For example, if the gmp library
    provided
    
    	mpz_t zero;
    
    then cgo would rewrite a reference to C.zero by introducing
    
    	var _C_zero *C.mpz_t
    
    and then replacing all instances of C.zero with (*_C_zero).
    
    Cgo's most interesting translation is for functions.  If xxx is a C
    function, then cgo rewrites C.xxx into a new function _C_xxx that
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Mon Apr 11 16:34:30 GMT 2022
    - 9.5K bytes
    - Click Count (0)
  4. okhttp/src/commonJvmAndroid/kotlin/okhttp3/Request.kt

        open fun headers(headers: Headers) =
          apply {
            this.headers = headers.newBuilder()
          }
    
        /**
         * Sets this request's `Cache-Control` header, replacing any cache control headers already
         * present. If [cacheControl] doesn't define any directives, this clears this request's
         * cache-control headers.
         */
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Thu Oct 30 13:46:58 GMT 2025
    - 14.7K bytes
    - Click Count (1)
  5. android/guava/src/com/google/common/primitives/Booleans.java

      }
    
      /**
       * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}.
       *
       * <p><b>Note:</b> consider representing the array as a {@link java.util.BitSet} instead,
       * replacing {@code Booleans.contains(array, true)} with {@code !bitSet.isEmpty()} and {@code
       * Booleans.contains(array, false)} with {@code bitSet.nextClearBit(0) == sizeOfBitSet}.
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 25 15:01:23 GMT 2025
    - 20.6K bytes
    - Click Count (0)
  6. guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

          // induction that the task that launched this one must not have added any other runnables to
          // that thread's queue, and thus we cannot be replacing a TaskAndThread object that would
          // otherwise have another task queued on to it. Note the exception to this, cancellation, is
          // specially handled in execute() - execute() calls triggered by cancellation are no-ops, and
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 01:35:55 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  7. guava/src/com/google/common/primitives/Booleans.java

      }
    
      /**
       * Returns {@code true} if {@code target} is present as an element anywhere in {@code array}.
       *
       * <p><b>Note:</b> consider representing the array as a {@link java.util.BitSet} instead,
       * replacing {@code Booleans.contains(array, true)} with {@code !bitSet.isEmpty()} and {@code
       * Booleans.contains(array, false)} with {@code bitSet.nextClearBit(0) == sizeOfBitSet}.
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Thu Sep 25 15:01:23 GMT 2025
    - 20.6K bytes
    - Click Count (0)
  8. android/guava/src/com/google/common/collect/ConcurrentHashMultiset.java

       * the entry from the Map. If another operation sees a zero in the map, it knows that the entry is
       * about to be removed, so this operation may remove it (often by replacing it with a new
       * AtomicInteger).
       */
    
      /** The number of occurrences of each element. */
      private final transient ConcurrentMap<E, AtomicInteger> countMap;
    
      /**
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Dec 08 22:42:14 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  9. android/guava/src/com/google/common/util/concurrent/ExecutionSequencer.java

          // induction that the task that launched this one must not have added any other runnables to
          // that thread's queue, and thus we cannot be replacing a TaskAndThread object that would
          // otherwise have another task queued on to it. Note the exception to this, cancellation, is
          // specially handled in execute() - execute() calls triggered by cancellation are no-ops, and
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 01:35:55 GMT 2025
    - 22.1K bytes
    - Click Count (0)
  10. guava/src/com/google/common/collect/ArrayTable.java

       * copying non-null values only.
       */
    
      /**
       * {@inheritDoc}
       *
       * <p>If {@code table} is an {@code ArrayTable}, its null values will be stored in this table,
       * possibly replacing values that were previously non-null.
       *
       * @throws NullPointerException if {@code table} has a null key
       * @throws IllegalArgumentException if any of the provided table's row keys or column keys is not
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Mon Nov 17 22:50:48 GMT 2025
    - 26.9K bytes
    - Click Count (0)
Back to Top