Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 294 for memberOf (0.16 sec)

  1. src/main/resources/fess_label.properties

    labels.ldap_admin_security_principal=Bind DN
    labels.ldap_admin_security_credentials=Password
    labels.ldap_base_dn=Base DN
    labels.ldap_account_filter=Account Filter
    labels.ldap_group_filter=Group Filter
    labels.ldap_memberof_attribute=memberOf Attribute
    labels.notification_login=Login page
    labels.notification_search_top=Search top page
    labels.storage_endpoint=Endpoint
    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (1)
  2. src/main/resources/fess_label_en.properties

    labels.ldap_admin_security_principal=Bind DN
    labels.ldap_admin_security_credentials=Password
    labels.ldap_base_dn=Base DN
    labels.ldap_account_filter=Account Filter
    labels.ldap_group_filter=Group Filter
    labels.ldap_memberof_attribute=memberOf Attribute
    labels.notification_login=Login page
    labels.notification_search_top=Search top page
    labels.storage_endpoint=Endpoint
    labels.storage_access_key=Access Key
    labels.storage_secret_key=Secret Key
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 40.7K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_fr.properties

    labels.ldap_admin_security_credentials	=	Mot de passe
    labels.ldap_base_dn	=	DN de base
    labels.ldap_account_filter	=	Filtre de compte
    labels.ldap_group_filter	=	Filtre de groupe
    labels.ldap_memberof_attribute	=	Attribut memberOf
    labels.notification_login	=	Page de connexion
    labels.notification_search_top	=	Rechercher en haut de la page
    labels.storage_endpoint	=	Point final
    labels.storage_access_key	=	Clef d'accès
    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)
  4. src/main/resources/fess_label_ko.properties

    labels.ldap_admin_security_principal = Bind DN
    labels.ldap_admin_security_credentials = 비밀번호
    labels.ldap_base_dn = Base DN
    labels.ldapAccountFilter = 계정 필터
    labels.ldapMemberofAttribute = memberOf 특성
    labels.ldap_account_filter = 계정 필터
    labels.ldap_memberof_attribute = memberOf 특성
    labels.notification_login = 로그인 페이지
    labels.notification_search_top = 검색 홈페이지
    labels.send_testmail = 테스트 메일 보내기
    labels.backup_configuration = 백업
    labels.backup_name = 이름
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Mar 22 11:58:34 GMT 2024
    - 44K bytes
    - Viewed (0)
  5. cmd/site-replication.go

    	if u1.PolicyName != u2.PolicyName ||
    		u1.Status != u2.Status ||
    		u1.SecretKey != u2.SecretKey {
    		return false
    	}
    	for len(u1.MemberOf) != len(u2.MemberOf) {
    		return false
    	}
    	for _, v1 := range u1.MemberOf {
    		var found bool
    		for _, v2 := range u2.MemberOf {
    			if v1 == v2 {
    				found = true
    				break
    			}
    		}
    		if !found {
    			return false
    		}
    	}
    	return true
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 184.2K bytes
    - Viewed (1)
  6. src/main/java/org/codelibs/fess/mylasta/action/FessLabels.java

        /** The key of the message: Group Filter */
        public static final String LABELS_ldap_group_filter = "{labels.ldap_group_filter}";
    
        /** The key of the message: memberOf Attribute */
        public static final String LABELS_ldap_memberof_attribute = "{labels.ldap_memberof_attribute}";
    
        /** The key of the message: Login page */
        public static final String LABELS_notification_login = "{labels.notification_login}";
    
    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)
  7. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="ldapMemberofAttribute"
                                               class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.ldap_memberof_attribute"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="ldapMemberofAttribute"/>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 39.4K bytes
    - Viewed (0)
  8. tests/associations_test.go

    	var member2 Member
    	if err := DB.First(&member2, "id = ?", member.ID).Error; err != nil {
    		t.Fatalf("failed to find member, got error: %v", err)
    	} else if member2.ProfileID != 100 {
    		t.Fatalf("member id is not equal: expects: %v, got: %v", 100, member2.ProfileID)
    	}
    
    	if r := DB.Delete(&profile); r.Error != nil || r.RowsAffected != 1 {
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Wed Feb 08 08:29:09 GMT 2023
    - 10.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirScopeProvider.kt

            }
    
            val cacheKey = when (kind) {
                DeclaredMemberScopeKind.NON_STATIC -> JAVA_ENHANCEMENT_FOR_DECLARED_MEMBERS
                DeclaredMemberScopeKind.STATIC -> JAVA_ENHANCEMENT_FOR_STATIC_DECLARED_MEMBERS
                DeclaredMemberScopeKind.COMBINED -> JAVA_ENHANCEMENT_FOR_ALL_DECLARED_MEMBERS
            }
    
            return scopeSession.getOrBuild(firJavaClass.symbol, cacheKey) {
    Plain Text
    - Registered: Fri Apr 26 08:18:10 GMT 2024
    - Last Modified: Thu Apr 25 18:05:58 GMT 2024
    - 18.7K bytes
    - Viewed (0)
  10. dbflute_fess/_readme.txt

    For example, if a table called "MEMBER" exists,
    you can use these classes like this:
    /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    memberBhv.selectEntity(cb -> {
        cb.query().setMemberId_Equal(3);
    }).alwaysPresent(member -> {
        ... = member.getMemberName();
    });
    // memberBhv      : Behavior (instance)
    // MemberCB(cb)   : ConditionBean
    // Member(member) : Entity
    - - - - - - - - - -/
    
    Plain Text
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Sat Jul 04 22:46:31 GMT 2015
    - 2.5K bytes
    - Viewed (0)
Back to top