Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 333 for add_s (0.02 sec)

  1. guava/src/com/google/common/util/concurrent/AtomicDoubleArray.java

      }
    
      /**
       * Atomically adds the given value to the element at index {@code i}.
       *
       * @param i the index
       * @param delta the value to add
       * @return the previous value
       */
      @CanIgnoreReturnValue
      public final double getAndAdd(int i, double delta) {
        return getAndAccumulate(i, delta, Double::sum);
      }
    
      /**
       * Atomically adds the given value to the element at index {@code i}.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 10.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/suggest/settings/ArraySettings.java

     * </ul>
     *
     * <p>Public Methods:
     * <ul>
     * <li>{@link #get(String)}: Retrieves an array of values associated with the specified key.</li>
     * <li>{@link #add(String, Object)}: Adds a key-value pair to the settings array.</li>
     * <li>{@link #delete(String)}: Deletes all entries associated with the specified key.</li>
    Registered: Fri Sep 19 09:08:11 UTC 2025
    - Last Modified: Thu Aug 07 02:41:28 UTC 2025
    - 15.6K bytes
    - Viewed (0)
  3. fess-crawler/src/main/java/org/codelibs/fess/crawler/transformer/impl/HtmlTransformer.java

            if ("text/html".equals(mimeType) || "application/xhtml+xml".equals(mimeType)) {
                return true;
            }
            return false;
        }
    
        /**
         * Adds a rule for extracting child URLs from HTML tags.
         *
         * @param tagName the HTML tag name
         * @param attrName the attribute name to extract URLs from
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 28.5K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/ViewHelper.java

                }
                break;
            }
            return url;
        }
    
        /**
         * Appends query parameters to URLs based on document type.
         * Adds search highlighting for HTML and PDF documents.
         *
         * @param document the document data map
         * @param url the base URL
         * @return the URL with appended query parameters
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 52.4K bytes
    - Viewed (0)
  5. src/test/java/jcifs/smb/SmbSessionImplSecurityTest.java

            AtomicInteger successCount = new AtomicInteger(0);
            List<Exception> exceptions = Collections.synchronizedList(new ArrayList<>());
    
            // Thread 1: Continuously adds trees
            executor.submit(() -> {
                try {
                    for (int i = 0; i < iterations; i++) {
                        session.getSmbTree("share" + i, null);
                        successCount.incrementAndGet();
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 31 08:00:57 UTC 2025
    - 11K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerContext.java

         * @param maxAccessCount The maximum access count.
         */
        public void setMaxAccessCount(final long maxAccessCount) {
            this.maxAccessCount = maxAccessCount;
        }
    
        /**
         * Adds sitemaps to the thread-local storage.
         * @param sitemaps An array of sitemap URLs.
         */
        public void addSitemaps(final String[] sitemaps) {
            sitemapsLocal.set(sitemaps);
        }
    
        /**
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 8.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/sql/PreparedStatementUtil.java

            try {
                return ps.executeBatch();
            } catch (final SQLException ex) {
                throw new SQLRuntimeException(ex);
            }
        }
    
        /**
         * Adds a batch.
         *
         * @param ps
         *            {@link PreparedStatement}. Must not be {@literal null}.
         * @throws SQLRuntimeException
         *             If a {@link SQLException} occurs.
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Thu Jul 31 08:16:49 UTC 2025
    - 3.9K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/EncodingHelper.java

            if (StringUtil.isBlank(defaultEncoding)) {
                throw new IllegalArgumentException("Default encoding must not be blank.");
            }
            this.defaultEncoding = defaultEncoding;
        }
    
        /**
         * Adds an encoding mapping from source to target encoding.
         *
         * @param source the source encoding name
         * @param target the target encoding name
         * @throws IllegalArgumentException if source or target is blank
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/curl/CurlRequest.java

         */
        public CurlRequest onConnect(final BiConsumer<CurlRequest, HttpURLConnection> connectionBuilder) {
            this.connectionBuilder = connectionBuilder;
            return this;
        }
    
        /**
         * Adds a request parameter.
         *
         * @param key the parameter key
         * @param value the parameter value
         * @return this CurlRequest instance
         */
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 17.8K bytes
    - Viewed (0)
  10. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/PasswordBasedExtractor.java

        /**
         * Creates a new PasswordBasedExtractor instance.
         */
        public PasswordBasedExtractor() {
            super();
        }
    
        /**
         * Adds a password for files matching the given regular expression pattern.
         * @param regex the regular expression pattern to match against URLs or resource names
         * @param password the password to use for matching files
         */
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Thu Aug 07 02:55:08 UTC 2025
    - 5.1K bytes
    - Viewed (0)
Back to top