Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 61 for user_info (0.25 sec)

  1. src/main/resources/fess_label_ja.properties

    labels.day_for_cleanup=以前のドキュメントを削除
    labels.day=日
    labels.crawl_button_update=更新
    labels.none=なし
    labels.crawling_thread_count=同時クローラー設定
    labels.incremental_crawling=最終更新日時の確認
    labels.search_log_enabled=検索ログ
    labels.user_info_enabled=ユーザーログ
    labels.user_favorite_enabled=お気に入りログ
    labels.web_api_json_enabled=JSONレスポンス
    labels.app_value=システムプロパティ
    labels.default_label_value=デフォルトのラベル値
    labels.default_sort_value=デフォルトのソート値
    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)
  2. src/main/resources/fess_label_fr.properties

    labels.none	=	Aucun
    labels.crawling_thread_count	=	Configuration simultanée du robot d'exploration
    labels.incremental_crawling	=	Vérifier la dernière modification
    labels.search_log_enabled	=	Journalisation de la recherche
    labels.user_info_enabled	=	Journalisation des utilisateurs
    labels.user_favorite_enabled	=	Journalisation préférée
    labels.web_api_json_enabled	=	Réponse JSON
    labels.app_value	=	Propriétés du système
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 46.6K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/app/web/admin/backup/AdminBackupAction.java

                    if ("search_log".equals(name)) {
                        return writeNdjsonResponse(id, getSearchLogNdjsonWriteCall());
                    }
                    if ("user_info".equals(name)) {
                        return writeNdjsonResponse(id, getUserInfoNdjsonWriteCall());
                    }
                    if ("click_log".equals(name)) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 25.2K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        public static final String LABELS_search_log_enabled = "{labels.search_log_enabled}";
    
        /** The key of the message: User Logging */
        public static final String LABELS_user_info_enabled = "{labels.user_info_enabled}";
    
        /** The key of the message: Favorite Logging */
        public static final String LABELS_user_favorite_enabled = "{labels.user_favorite_enabled}";
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 146.4K bytes
    - Viewed (0)
  5. src/main/resources/fess_config.properties

    ftp.role.from.file=true
    
    # backup
    index.backup.targets=fess_basic_config.bulk,fess_config.bulk,fess_user.bulk,system.properties,fess.json,doc.json
    index.backup.log.targets=click_log.ndjson,favorite_log.ndjson,search_log.ndjson,user_info.ndjson
    
    # logging
    logging.search.docs.enabled=true
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/es/log/exentity/UserInfo.java

    import java.time.format.DateTimeFormatter;
    import java.util.Map;
    
    import org.codelibs.fess.entity.SearchLogEvent;
    import org.codelibs.fess.es.log.bsentity.BsUserInfo;
    
    /**
     * @author FreeGen
     */
    public class UserInfo extends BsUserInfo implements SearchLogEvent {
    
        private static final long serialVersionUID = 1L;
    
        private Map<String, Object> fields;
    
        @Override
        public String getId() {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  7. internal/config/identity/openid/providercfg.go

    	}
    	return p.roleArn.String()
    }
    
    // UserInfo returns claims for authenticated user from userInfo endpoint.
    //
    // Some OIDC implementations such as GitLab do not support
    // claims as part of the normal oauth2 flow, instead rely
    // on service providers making calls to IDP to fetch additional
    // claims available from the UserInfo endpoint
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 4.6K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/SearchLogHelper.java

            }).orElseGet(() -> {
                final UserInfo e = new UserInfo();
                e.setId(userCode);
                e.setCreatedAt(now);
                e.setUpdatedAt(now);
                return e;
            });
            CommonPoolUtil.execute(() -> userInfoBhv.insertOrUpdate(userInfo));
            return userInfo;
        }
    
        public OptionalEntity<UserInfo> getUserInfo(final String userCode) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 20.8K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/app/web/base/login/AzureAdCredential.java

                    final Set<String> permissionSet = new HashSet<>();
                    final UserInfo userInfo = authResult.getUserInfo();
                    final String uniqueId = userInfo.getUniqueId();
                    final String displayableId = userInfo.getDisplayableId();
                    if (logger.isDebugEnabled()) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

    // SelfSubjectReviewStatus is filled by the kube-apiserver and sent back to a user.
    message SelfSubjectReviewStatus {
      // User attributes of the user making this request.
      // +optional
      optional k8s.io.api.authentication.v1.UserInfo userInfo = 1;
    }
    
    // TokenReview attempts to authenticate a token to a known user.
    // Note: TokenReview requests may be cached by the webhook token authenticator
    // plugin in the kube-apiserver.
    message TokenReview {
    Plain Text
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 5.2K bytes
    - Viewed (0)
Back to top