Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 93 for Parameters (0.17 sec)

  1. src/main/java/org/codelibs/fess/sso/oic/OpenIdConnectAuthenticator.java

                    final String name = jsonParser.getCurrentName();
                    if (name != null) {
                        jsonParser.nextToken();
    
                        // TODO other parameters
                        switch (name) {
                        case "iss":
                            attributes.put("iss", jsonParser.getText());
                            break;
                        case "sub":
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 11.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/mail/TestmailPostcard.java

        //                                  --------------------
        /**
         * Set the value of hostname, used in parameter comment. <br>
         * Even if empty string, treated as empty plainly. So "IF pmb != null" is false if empty.
         * @param hostname The parameter value of hostname. (NotNull)
         */
        public void setHostname(String hostname) {
            registerVariable("hostname", hostname);
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.9K bytes
    - Viewed (0)
  3. src/main/config/es/fess_config_access_token.json

                "type" : "long"
              },
              "expiredTime" : {
                "type" : "long"
              },
              "name" : {
                "type" : "keyword"
              },
              "parameter_name" : {
                "type" : "keyword"
              },
              "permissions" : {
                "type" : "keyword"
              },
              "token" : {
                "type" : "keyword"
              },
    Json
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  4. dbflute_fess/_readme.txt

    // Member(member) : Entity
    - - - - - - - - - -/
    
    manage.bat(sh) => 24 (sql2entity):
    A execution command of Sql2Entity task
    which generates classes corresponding your outside-SQL files,
    for example, entities, parameter-beans to specified
    directories by DBFlute properties on "dfprop" directory.
    
    manage.bat(sh) => 0 (replace-schema):
    A execution command of ReplaceSchema task
    which creates your tables and loads data by
    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)
  5. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsAccessTokenCB.java

                doColumn("expiredTime");
            }
    
            public void columnName() {
                doColumn("name");
            }
    
            public void columnParameterName() {
                doColumn("parameter_name");
            }
    
            public void columnPermissions() {
                doColumn("permissions");
            }
    
            public void columnToken() {
                doColumn("token");
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.1K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_details.jsp

                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.config_parameter"/></th>
                                            <td>${f:br(f:h(configParameter))}<la:hidden
                                                    property="configParameter"/></td>
                                        </tr>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/helper/PluginHelper.java

                        factory.setFeature(Constants.FEATURE_EXTERNAL_GENERAL_ENTITIES, false);
                        factory.setFeature(Constants.FEATURE_EXTERNAL_PARAMETER_ENTITIES, false);
                        factory.setAttribute(XMLConstants.ACCESS_EXTERNAL_DTD, StringUtil.EMPTY);
                        factory.setAttribute(XMLConstants.ACCESS_EXTERNAL_SCHEMA, StringUtil.EMPTY);
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 16.8K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/mylasta/direction/FessConfig.java

        /** The key of the configuration. e.g. false */
        String API_ACCESS_TOKEN_REQUIRED = "api.access.token.required";
    
        /** The key of the configuration. e.g.  */
        String API_ACCESS_TOKEN_REQUEST_PARAMETER = "api.access.token.request.parameter";
    
        /** The key of the configuration. e.g. Radmin-api */
        String API_ADMIN_ACCESS_PERMISSIONS = "api.admin.access.permissions";
    
        /** The key of the configuration. e.g.  */
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 459.2K bytes
    - Viewed (4)
  9. src/main/java/org/codelibs/fess/validation/CustomSizeValidator.java

        }
    
        private void validateParameters() {
            if (min < 0) {
                throw new IllegalArgumentException("The min parameter cannot be negative.");
            }
            if (max < 0) {
                throw new IllegalArgumentException("The max parameter cannot be negative.");
            }
            if (max < min) {
                throw new IllegalArgumentException("The length cannot be negative.");
            }
        }
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

            }
            final CrawlerClientFactory factory = creator.get();
    
            final FileAuthenticationService fileAuthenticationService = ComponentUtil.getComponent(FileAuthenticationService.class);
    
            //  Parameters
            final Map<String, Object> paramMap = new HashMap<>();
            factory.setInitParameterMap(paramMap);
    
            final Map<String, String> clientConfigMap = getConfigParameterMap(ConfigName.CLIENT);
    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)
Back to top