Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 64 for tweens (0.02 sec)

  1. src/main/resources/fess_indices/fess/zh-cn/stopwords.txt

    # Punctuation tokens to remove
    ,
    .
    `
    -
    _
    =
    ?
    '
    |
    "
    (
    )
    {
    }
    [
    ]
    <
    >
    *
    #
    &
    ^
    $
    @
    !
    ~
    :
    ;
    +
    /
    \
    《
    》
    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/EditForm.java

    import org.lastaflute.web.validation.theme.conversion.ValidateTypeFailure;
    
    import jakarta.validation.constraints.Size;
    
    /**
     * Form class for editing access tokens in the admin interface.
     * This form extends CreateForm to include fields necessary for updating existing access tokens,
     * including tracking information for optimistic locking and audit trails.
     *
     */
    public class EditForm extends CreateForm {
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/SearchForm.java

     */
    public class SearchForm {
    
        /**
         * Default constructor for SearchForm.
         */
        public SearchForm() {
        }
    
        /**
         * The ID field for searching access tokens.
         */
        public String id;
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 929 bytes
    - Viewed (0)
  4. android/guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java

    import com.google.common.primitives.Ints;
    import java.util.List;
    import java.util.Random;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Benchmarks for the {@code TreeTraverser} operations on binary trees.
     *
     * @author Louis Wasserman
     */
    @NullUnmarked
    public class BinaryTreeTraverserBenchmark {
      private static class BinaryNode {
        final int x;
        final Optional<BinaryNode> left;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/zh-tw/stopwords.txt

    # Punctuation tokens to remove
    ,
    .
    `
    -
    _
    =
    ?
    '
    |
    "
    (
    )
    {
    }
    [
    ]
    <
    >
    *
    #
    &
    ^
    $
    @
    !
    ~
    :
    ;
    +
    /
    \
    《
    》
    —
    -
    ,
    。
    、
    :
    ;
    !
    ·
    ?
    “
    ”
    )
    (
    【
    】
    [
    ]
    ●
    # the line below contains an IDEOGRAPHIC SPACE character (Used as a space in Chinese)
     
    
    # English Stop Words
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jun 17 08:00:22 UTC 2017
    - 310 bytes
    - Viewed (0)
  6. src/main/resources/fess_indices/fess/es/stopwords.txt

    erais
    eran
    fui
    fuiste
    fue
    fuimos
    fuisteis
    fueron
    fuera
    fueras
    fuéramos
    fuerais
    fueran
    fuese
    fueses
    fuésemos
    fueseis
    fuesen
    siendo
    sido
    tengo
    tienes
    tiene
    tenemos
    tenéis
    tienen
    tenga
    tengas
    tengamos
    tengáis
    tengan
    tendré
    tendrás
    tendrá
    tendremos
    tendréis
    tendrán
    tendría
    tendrías
    tendríamos
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/core/text/Tokenizer.java

     */
    package org.codelibs.core.text;
    
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotEmpty;
    import static org.codelibs.core.misc.AssertionUtil.assertArgumentNotNull;
    
    /**
     * A class that recognizes tokens.
     *
     * @author higa
     *
     */
    public class Tokenizer {
    
        /**
         * Represents EOF (End of File).
         */
        public static final int TT_EOF = -1;
    
        /**
         * Represents a Quote.
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 8.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/FessApiAction.java

         * Used to convert validation messages to localized text for API responses.
         */
        @Resource
        protected MessageManager messageManager;
    
        /**
         * Service for managing API access tokens including validation and authentication.
         * Used to verify token-based authentication for API requests.
         */
        @Resource
        protected AccessTokenService accessTokenService;
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 4.8K bytes
    - Viewed (0)
  9. guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java

    import com.google.common.primitives.Ints;
    import java.util.List;
    import java.util.Random;
    import org.jspecify.annotations.NullUnmarked;
    
    /**
     * Benchmarks for the {@code TreeTraverser} operations on binary trees.
     *
     * @author Louis Wasserman
     */
    @NullUnmarked
    public class BinaryTreeTraverserBenchmark {
      private static class BinaryNode {
        final int x;
        final Optional<BinaryNode> left;
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/accesstoken/AdminAccesstokenAction.java

    import org.lastaflute.web.ruts.process.ActionRuntime;
    
    import jakarta.annotation.Resource;
    
    /**
     * Admin action for Access Token management.
     * This class provides CRUD operations for access tokens.
     *
     */
    public class AdminAccesstokenAction extends FessAdminAction {
    
        /**
         * Default constructor.
         */
        public AdminAccesstokenAction() {
            super();
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 16.9K bytes
    - Viewed (0)
Back to top