Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 42 for Input (0.14 sec)

  1. src/main/webapp/WEB-INF/view/admin/user/admin_user_edit.jsp

                                            <div class="col-sm-9">
                                                <la:errors property="attributes.uidNumber"/>
                                                <input type="number" id="attributes.uidNumber" name="attributes.uidNumber" class="form-control"/>
                                            </div>
                                        </div>
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 14 12:15:45 GMT 2020
    - 31.4K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/general/admin_general.jsp

                                            <div class="input-group">
                                                <la:text styleId="notificationTo" property="notificationTo"
                                                         styleClass="form-control"/>
                                                <div class="input-group-append">
    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)
  3. src/main/java/org/codelibs/fess/es/config/exentity/FileConfig.java

            }
    
            for (final Pattern pattern : includedDocPathPatterns) {
                if (pattern.matcher(input).matches()) {
                    return Constants.TRUE;
                }
            }
    
            for (final Pattern pattern : excludedDocPathPatterns) {
                if (pattern.matcher(input).matches()) {
                    return Constants.FALSE;
                }
            }
    
            return Constants.TRUE;
    
        }
    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)
  4. src/main/java/jcifs/SmbResource.java

    
        /**
         * Opens an input stream reading the file (read only)
         * 
         * @param flags
         *            open flags
         * @param access
         *            desired access flags
         * @param sharing
         *            flags indicating for which operations others may open the file (FILE_SHARING_*)
         * @return input stream, needs to be closed when finished
         * @throws CIFSException
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Dec 20 14:09:34 GMT 2020
    - 26K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb/SmbRandomAccessFile.java

                        this.fp = cur;
                    }
                    break;
                default:
                    input.append((char) c);
                    break;
                }
            }
    
            if ( ( c == -1 ) && ( input.length() == 0 ) ) {
                return null;
            }
    
            return input.toString();
        }
    
    
        @Override
        public final String readUTF () throws SmbException {
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Wed Jan 08 12:01:33 GMT 2020
    - 18.5K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/advance.jsp

    				<label for="as_q" class="col-lg-3 col-md-4 col-sm-5 col-12 col-form-label"><la:message
    						key="labels.advance_search_must_queries"
    					/></label>
    				<div class="col-lg-5 col-md-8 col-sm-7 col-xs-6">
    					<input class="form-control" type="text" id="as_q" name="as.q" value="${f:h(fe:join(as.q))}">
    				</div>
    				<div class="col-lg-4 d-none d-lg-flex align-items-center">
    				</div>
    			</div>
    			<div class="form-group row">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Fri Feb 17 12:13:41 GMT 2023
    - 14.9K bytes
    - Viewed (0)
  7. src/main/resources/fess_config.properties

    #                                                                                     Web
    #                                                                                    =====
    form.admin.max.input.size=10000
    form.admin.label.in.config.enabled=false
    form.admin.default.template.name=__TEMPLATE__
    osdd.link.enabled=auto
    clipboard.copy.icon.enabled=true
    
    # ----------------------------------------------------------
    Properties
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Apr 11 02:34:53 GMT 2024
    - 30.6K bytes
    - Viewed (1)
  8. src/main/java/jcifs/util/transport/Transport.java

    public abstract class Transport implements Runnable, AutoCloseable {
    
        private static int id = 0;
        private static final Logger log = LoggerFactory.getLogger(Transport.class);
    
    
        /**
         * Read bytes from the input stream into a buffer
         * 
         * @param in
         * @param b
         * @param off
         * @param len
         * @return number of bytes read
         * @throws IOException
         */
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Sun Nov 01 18:12:21 GMT 2020
    - 24.1K bytes
    - Viewed (0)
  9. src/main/webapp/WEB-INF/view/admin/failureurl/admin_failureurl.jsp

                                            <div>
                                                <la:errors property="errorCountMin"/>
                                                <input type="number" name="errorCountMin" id="errorCountMin"
                                                       value="${f:h(errorCountMin)}" class="form-control"
                                                       min="0" max="100000">
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 13.3K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/view/admin/searchlist/admin_searchlist.jsp

                                                            <la:message key="labels.search_list_button_cancel"/>
                                                        </button>
                                                        <input type="hidden" name="docId" id="docId"/>
                                                        <button type="submit" class="btn btn-outline-light"
                                                                name="delete"
    Others
    - Registered: Mon May 06 08:04:11 GMT 2024
    - Last Modified: Thu Sep 24 13:09:22 GMT 2020
    - 20K bytes
    - Viewed (1)
Back to top