Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for lastname (5.94 sec)

  1. src/main/java/org/codelibs/fess/app/service/WebAuthenticationService.java

                cb.query().docMeta().setId_Equal(webAuthenticationPager.id);
            }
            // TODO Long, Integer, String supported only.
            // setup condition
            cb.query().addOrderBy_Hostname_Asc();
            cb.query().addOrderBy_WebConfigId_Asc();
    
            // search
    
        }
    
        public List<WebAuthentication> getWebAuthenticationList(final String webConfigId) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.5K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/bs/BsWebAuthenticationCB.java

                doColumn("createdBy");
            }
    
            public void columnCreatedTime() {
                doColumn("createdTime");
            }
    
            public void columnHostname() {
                doColumn("hostname");
            }
    
            public void columnParameters() {
                doColumn("parameters");
            }
    
            public void columnPassword() {
                doColumn("password");
            }
    
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 7.5K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/es/config/bsbhv/BsFileAuthenticationBhv.java

                result.setCreatedTime(DfTypeUtil.toLong(source.get("createdTime")));
                result.setFileConfigId(DfTypeUtil.toString(source.get("fileConfigId")));
                result.setHostname(DfTypeUtil.toString(source.get("hostname")));
                result.setParameters(DfTypeUtil.toString(source.get("parameters")));
                result.setPassword(DfTypeUtil.toString(source.get("password")));
                result.setPort(DfTypeUtil.toInteger(source.get("port")));
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  4. src/main/webapp/js/jquery-3.6.3.min.js

    ectorAll(":scope fieldset div").length}),d.cssSupportsSelector=ce(function(){return CSS.supports("selector(*)")&&C.querySelectorAll(":is(:jqfake)")&&!CSS.supports("selector(:is(*,:jqfake))")}),d.attributes=ce(function(e){return e.className="i",!e.getAttribute("className")}),d.getElementsByTagName=ce(function(e){return e.appendChild(C.createComment("")),!e.getElementsByTagName("*").length}),d.getElementsByClassName=K.test(C.getElementsByClassName),d.getById=ce(function(e){return a.appendChild(e)....
    JavaScript
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 87.8K bytes
    - Viewed (5)
  5. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebAuthentication.java

            this.createdTime = value;
        }
    
        public String getHostname() {
            checkSpecifiedProperty("hostname");
            return convertEmptyToNull(hostname);
        }
    
        public void setHostname(String value) {
            registerModifiedProperty("hostname");
            this.hostname = value;
        }
    
        public String getParameters() {
            checkSpecifiedProperty("parameters");
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 9K bytes
    - Viewed (0)
  6. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.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
    - 4.7K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/mylasta/mail/CrawlerPostcard.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
    - 10K bytes
    - Viewed (1)
  8. src/main/webapp/WEB-INF/view/admin/fileauth/admin_fileauth_details.jsp

                                        <tr>
                                            <th style="width: 25%"><la:message
                                                    key="labels.file_auth_hostname"/></th>
                                            <td>${f:h(hostname)}<la:hidden property="hostname"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.file_auth_port"/></th>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.2K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/webauth/admin_webauth_details.jsp

                                        <tr>
                                            <th style="width: 25%"><la:message
                                                    key="labels.webauth_hostname"/></th>
                                            <td>${f:h(hostname)}<la:hidden property="hostname"/></td>
                                        </tr>
                                        <tr>
                                            <th><la:message key="labels.webauth_port"/></th>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 6.5K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/web/admin/maintenance/AdminMaintenanceAction.java

            final StringBuilder buf = new StringBuilder();
            try {
                final InetAddress ia = InetAddress.getLocalHost();
                final String hostname = ia.getHostName();
                if (StringUtil.isNotBlank(hostname)) {
                    buf.append(hostname);
                }
                final String ip = ia.getHostAddress();
                if (StringUtil.isNotBlank(ip)) {
                    if (buf.length() > 0) {
    Java
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14K bytes
    - Viewed (0)
Back to top