Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 410 for proxies (0.04 sec)

  1. LICENSES/vendor/github.com/davecgh/go-spew/LICENSE

    MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
    ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
    WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
    ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
    OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
    
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 899 bytes
    - Viewed (0)
  2. src/main/resources/fess_indices/fess/pt-br/stopwords.txt

    mesmos
    na
    nas
    nao
    nas
    nem
    nesse
    neste
    nos
    o
    os
    ou
    outra
    outras
    outro
    outros
    pelas
    pelas
    pelo
    pelos
    perante
    pois
    por
    porque
    portanto
    proprio
    propios
    quais
    qual
    qualquer
    quando
    quanto
    que
    quem
    quer
    se
    seja
    sem
    sendo
    seu
    seus
    sob
    sobre
    sua
    suas
    tal
    tambem
    teu
    teus
    toda
    todas
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 820 bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/failureurl/EditForm.java

         * This is a required field used for identifying which crawler process failed.
         */
        @Required
        public String threadName;
    
        /**
         * The name or type of the error that occurred.
         * This field provides a categorization of the failure type.
         */
        public String errorName;
    
        /**
         * The detailed error log or stack trace for the failure.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/AbstractSortedMultiset.java

    import com.google.j2objc.annotations.WeakOuter;
    import java.util.Comparator;
    import java.util.Iterator;
    import java.util.NavigableSet;
    import org.jspecify.annotations.Nullable;
    
    /**
     * This class provides a skeletal implementation of the {@link SortedMultiset} interface.
     *
     * <p>The {@link #count} and {@link #size} implementations all iterate across the set returned by
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Aug 09 01:14:59 UTC 2025
    - 4.5K bytes
    - Viewed (0)
  5. guava/src/com/google/common/base/Predicate.java

     * Otherwise, at least reduce <i>explicit</i> dependencies on this type by using lambda expressions
     * or method references instead of classes, leaving your code easier to migrate in the future.
     *
     * <p>The {@link Predicates} class provides common predicates and related utilities.
     *
     * <p>See the Guava User Guide article on <a
     * href="https://github.com/google/guava/wiki/FunctionalExplained">the use of {@code Predicate}</a>.
     *
     * @author Kevin Bourrillion
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Wed Jun 18 15:22:00 UTC 2025
    - 3.3K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/app/web/base/login/FessCredential.java

     * governing permissions and limitations under the License.
     */
    package org.codelibs.fess.app.web.base.login;
    
    /**
     * Interface for Fess credential management.
     * Provides access to user identification information.
     */
    public interface FessCredential {
    
        /**
         * Gets the user ID for this credential.
         * @return The user ID.
         */
        String getUserId();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 927 bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/WebApiManagerFactory.java

    import java.util.List;
    
    import jakarta.servlet.http.HttpServletRequest;
    
    /**
     * Factory class for managing and retrieving web API managers.
     * This factory maintains a collection of web API managers and provides
     * functionality to find the appropriate manager for incoming requests.
     */
    public class WebApiManagerFactory {
    
        /**
         * Default constructor.
         */
        public WebApiManagerFactory() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.1K bytes
    - Viewed (0)
  8. LICENSES/vendor/github.com/gogo/protobuf/LICENSE

    OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
    SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
    LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
    DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
    THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
    (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
    Registered: Fri Sep 05 09:05:11 UTC 2025
    - Last Modified: Fri May 08 04:49:00 UTC 2020
    - 1.8K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/ds/DataStoreFactory.java

    import org.w3c.dom.Node;
    import org.w3c.dom.NodeList;
    
    /**
     * Factory class responsible for managing and providing access to data store instances.
     * This factory maintains a registry of data store implementations and provides methods
     * to register, retrieve, and discover available data stores.
     *
     * <p>Data stores are registered by name and class name, allowing flexible lookup.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8.4K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClientException.java

    import org.codelibs.fess.exception.FessSystemException;
    
    /**
     * Exception thrown when search engine client operations fail.
     * This exception wraps underlying search engine errors and provides
     * meaningful error messages for troubleshooting.
     */
    public class SearchEngineClientException extends FessSystemException {
    
        private static final long serialVersionUID = 1L;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 1.6K bytes
    - Viewed (0)
Back to top