Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for appValues (0.24 sec)

  1. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

        String SUGGEST_SEARCH_LOG_PERMISSIONS = "suggestSearchLogPermissions";
    
        String GROUP_VALUE_PREFIX = "group:";
    
        String ROLE_VALUE_PREFIX = "role:";
    
        String APP_VALUES = "appValues";
    
        String DEFAULT_SORT_VALUES = "defaultSortValues";
    
        String DEFAULT_LABEL_VALUES = "defaultLabelValues";
    
        String VIRTUAL_HOST_VALUES = "virtualHostValues";
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 85K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/app/web/admin/general/AdminGeneralAction.java

            fessConfig.setUserFavorite(isCheckboxEnabled(form.userFavorite));
            fessConfig.setWebApiJson(isCheckboxEnabled(form.webApiJson));
            fessConfig.setAppValue(form.appValue);
            fessConfig.setDefaultLabelValue(form.defaultLabelValue);
            fessConfig.setDefaultSortValue(form.defaultSortValue);
            fessConfig.setVirtualHostValue(form.virtualHostValue);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.7K bytes
    - Viewed (0)
  3. internal/config/identity/openid/jwt.go

    		// as the sole audience. The azp value is a case sensitive
    		// string containing a StringOrURI value
    		azpValues, ok := policy.GetValuesFromClaims(claims, azpClaim)
    		if !ok {
    			return errors.New("STS JWT Token has `azp` claim invalid, `azp` must match configured OpenID Client ID")
    		}
    		if !azpValues.Contains(pCfg.ClientID) {
    			return errors.New("STS JWT Token has `azp` claim invalid, `azp` must match configured OpenID Client ID")
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Nov 16 04:42:31 GMT 2023
    - 8.3K bytes
    - Viewed (5)
  4. src/test/java/org/codelibs/fess/helper/SystemHelperTest.java

            final AtomicReference<String> appValue = new AtomicReference<>(StringUtil.EMPTY);
            ComponentUtil.setFessConfig(new FessConfig.SimpleImpl() {
                private static final long serialVersionUID = 1L;
    
                @Override
                public String getAppValue() {
                    return appValue.get();
                }
    
                @Override
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/general/EditForm.java

        @Size(max = 10)
        public String userInfo;
    
        @Size(max = 10)
        public String userFavorite;
    
        @Size(max = 10)
        public String webApiJson;
    
        @Size(max = 10000)
        public String appValue;
    
        @Size(max = 1000)
        public String defaultLabelValue;
    
        @Size(max = 1000)
        public String defaultSortValue;
    
        @Size(max = 10000)
        public String virtualHostValue;
    
        @Size(max = 10)
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                        <label for="appValue" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.app_value"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="appValue"/>
                                            <la:textarea styleId="appValue" property="appValue"
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 39.4K bytes
    - Viewed (0)
Back to top