Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 74 for tokens (0.15 sec)

  1. 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
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jun 17 08:00:22 GMT 2017
    - 310 bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/helper/AccessTokenHelperTest.java

            List<String> tokens = new ArrayList<String>();
            for (int i = 0; i < NUM; i++) {
                tokens.add(accessTokenHelper.generateAccessToken());
            }
            for (int i = 0; i < NUM; i++) {
                assertFalse(tokens.get(i).isEmpty());
                for (int j = i + 1; j < NUM; j++) {
                    assertFalse(tokens.get(i).equals(tokens.get(j)));
                }
            }
        }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  3. src/main/resources/fess_indices/fess_config.access_token/access_token.json

    {
        "properties": {
          "name": {
            "type": "keyword"
          },
          "token": {
            "type": "keyword"
          },
          "permissions": {
            "type": "keyword"
          },
          "parameter_name" : {
            "type": "keyword"
          },
          "expiredTime": {
            "type": "long"
          },
          "createdBy": {
            "type": "keyword"
          },
          "createdTime": {
            "type": "long"
          },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 529 bytes
    - Viewed (0)
  4. src/main/webapp/js/jquery-3.6.3.min.map

    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 135.2K bytes
    - Viewed (0)
  5. src/main/webapp/WEB-INF/view/admin/accesstoken/admin_accesstoken_details.jsp

                                                    key="labels.access_token_name"/></th>
                                            <td>${f:h(name)}<la:hidden property="name"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message
                                                    key="labels.access_token_token"/></th>
                                            <td>${f:h(token)}</td>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 5.5K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/AccessTokenDbm.java

                false, false, false, "keyword", 0, 0, null, null, false, null, null, null, null, null, false);
        protected final ColumnInfo _columnToken = cci("token", "token", null, null, String.class, "token", null, false, false, false, "keyword",
                0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.3K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/es/config/bsbhv/BsAccessTokenBhv.java

        }
    
        @Override
        protected String asEsIndex() {
            return "fess_config.access_token";
        }
    
        @Override
        public String asEsIndexType() {
            return "access_token";
        }
    
        @Override
        public String asEsSearchType() {
            return "access_token";
        }
    
        @Override
        public AccessTokenDbm asDBMeta() {
            return AccessTokenDbm.getInstance();
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/admin/dict/kuromoji/AdminDictKuromojiAction.java

                }, () -> asListHtml(dictId));
            }
        }
    
        protected void verifyForm(final CreateForm form) {
            if (form.token != null && form.token.split(" ").length > 1) {
                throwValidationError(messages -> {
                    messages.addErrorsInvalidKuromojiToken("token", form.token);
                }, this::asEditHtml);
            }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.8K bytes
    - Viewed (0)
  9. src/main/resources/fess_label_ja.properties

    labels.boost_document_rule_boost_expr=ブースト値式
    labels.boost_document_rule_sort_order=ソート順
    labels.access_token_configuration=アクセストークン
    labels.access_token_title_details=アクセストークン
    labels.access_token_list_name=名前
    labels.access_token_name=名前
    labels.access_token_token=トークン
    labels.access_token_expires=有効期限
    labels.access_token_parameter_name=パラメーター名
    labels.access_token_updated_time=作成日
    labels.suggest_word_configuration=サジェストワード
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.2K bytes
    - Viewed (2)
  10. src/main/java/org/codelibs/fess/util/ComponentUtil.java

        private static final String CURL_HELPER = "curlHelper";
    
        private static final String QUERY_STRING_BUILDER = "queryStringBuilder";
    
        private static final String ACCESS_TOKEN_HELPER = "accessTokenHelper";
    
        private static final String AUTHENTICATION_MANAGER = "authenticationManager";
    
        private static final String THUMBNAIL_MANAGER = "thumbnailManager";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20K bytes
    - Viewed (0)
Back to top