Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 209 for userInfo (0.22 sec)

  1. 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() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/log/bsbhv/BsUserInfoBhv.java

            return createOptionalEntity(doSelectByPK(id, tp), id);
        }
    
        @Override
        protected Class<? extends UserInfo> typeOfSelectedEntity() {
            return UserInfo.class;
        }
    
        @Override
        protected Class<UserInfo> typeOfHandlingEntity() {
            return UserInfo.class;
        }
    
        @Override
        protected Class<UserInfoCB> typeOfHandlingConditionBean() {
            return UserInfoCB.class;
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 9K bytes
    - Viewed (0)
  3. platforms/core-execution/build-cache-http/src/integTest/groovy/org/gradle/caching/http/internal/DefaultHttpBuildCacheServiceFactoryTest.groovy

        def "extract username and password from userinfo #userinfo"() {
            when:
            def credentials = extractCredentialsFromUserInfo(new URI("https://${userinfo}@myserver.local"))
    
            then:
            credentials.username == username
            credentials.password == password
    
            where:
            userinfo                             | username   | password
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:43:12 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/es/log/exentity/SearchLog.java

            this.userInfo = userInfo;
            userInfo.ifPresent(e -> {
                super.setUserInfoId(e.getId());
            });
        }
    
        public List<Pair<String, String>> getSearchFieldLogList() {
            return searchFieldLogList;
        }
    
        public List<Pair<String, String>> getRequestHeaderList() {
            return headerList;
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/log/bsentity/dbmeta/UserInfoDbm.java

        protected final Map<String, PropertyGateway> _epgMap = newHashMap();
        {
            setupEpg(_epgMap, et -> ((UserInfo) et).getCreatedAt(), (et, vl) -> ((UserInfo) et).setCreatedAt(DfTypeUtil.toLocalDateTime(vl)),
                    "createdAt");
            setupEpg(_epgMap, et -> ((UserInfo) et).getUpdatedAt(), (et, vl) -> ((UserInfo) et).setUpdatedAt(DfTypeUtil.toLocalDateTime(vl)),
                    "updatedAt");
        }
    
        @Override
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/tutorial/configureObjectUsingScript/groovy/build.gradle

    class UserInfo {
        String name
        String email
    }
    
    tasks.register('configure') {
        def userInfo = new UserInfo()
        // Apply the script
        apply from: 'other.gradle', to: userInfo
        doLast {
            println userInfo.name
            println userInfo.email
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 268 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter.go

    	requestSubResource := attr.GetSubresource()
    
    	aUserInfo := attr.GetUserInfo()
    	var userInfo authenticationv1.UserInfo
    	if aUserInfo != nil {
    		userInfo = authenticationv1.UserInfo{
    			Extra:    make(map[string]authenticationv1.ExtraValue),
    			Groups:   aUserInfo.GetGroups(),
    			UID:      aUserInfo.GetUID(),
    			Username: aUserInfo.GetName(),
    		}
    		// Convert the extra information in the user object
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 24 14:46:11 UTC 2023
    - 12.1K 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) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 20.8K bytes
    - Viewed (0)
  9. pkg/apis/authentication/v1beta1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1beta1.UserInfo)(nil), (*authentication.UserInfo)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1beta1_UserInfo_To_authentication_UserInfo(a.(*v1beta1.UserInfo), b.(*authentication.UserInfo), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*authentication.UserInfo)(nil), (*v1beta1.UserInfo)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 14K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    			return
    		}
    		type userInfo struct {
    			Username string              `json:"username"`
    			UID      string              `json:"uid"`
    			Groups   []string            `json:"groups"`
    			Extra    map[string][]string `json:"extra"`
    		}
    		type status struct {
    			Authenticated bool     `json:"authenticated"`
    			User          userInfo `json:"user"`
    			Audiences     []string `json:"audiences"`
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
Back to top