Search Options

Results per page
Sort
Preferred Languages
Advance

Results 191 - 200 of 419 for addrs (0.01 sec)

  1. src/main/java/org/codelibs/fess/entity/FacetInfo.java

                        return BucketOrder.count(asc);
                    }
                }
            }
            return BucketOrder.count(false);
        }
    
        /**
         * Adds a query facet to the existing query array.
         * If no queries exist, creates a new array with the provided query.
         *
         * @param s the query string to add as a facet
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  2. 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)
  3. src/main/java/jcifs/http/NtlmHttpFilter.java

        }
    
        private static NtlmChallenge interrogate(final CIFSContext tf, final Address addr) throws SmbException {
            final UniAddress dc = new UniAddress(addr);
            try (SmbTransportInternal trans = tf.getTransportPool()
                    .getSmbTransport(tf, dc, 0, false, tf.hasDefaultCredentials() && tf.getConfig().isIpcSigningEnforced())
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 15.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top