Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for available (0.18 sec)

  1. src/main/java/org/codelibs/fess/es/config/bsentity/BsWebConfig.java

        public Boolean getAvailable() {
            checkSpecifiedProperty("available");
            return available;
        }
    
        public void setAvailable(Boolean value) {
            registerModifiedProperty("available");
            this.available = value;
        }
    
        public Float getBoost() {
            checkSpecifiedProperty("boost");
            return boost;
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/es/config/cbean/ca/bs/BsDataConfigCA.java

        }
    
        public void setAvailable_Avg(ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            setAvailable_Avg("available", opLambda);
        }
    
        public void setAvailable_Avg(String name, ConditionOptionCall<AvgAggregationBuilder> opLambda) {
            AvgAggregationBuilder builder = regAvgA(name, "available");
            if (opLambda != null) {
                opLambda.callback(builder);
            }
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 88.1K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/WinError.java

            "The pipe state is invalid.", "All pipe instances are busy.", "The pipe is being closed.", "No process is on the other end of the pipe.",
            "More data is available.", "The service is not available", "The list of servers for this workgroup is not currently available.",
        };
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 2.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/helper/CrawlerLogHelper.java

        private static final Logger logger = LogManager.getLogger(CrawlerLogHelper.class);
    
        @Override
        public void log(final LogType key, final Object... objs) {
            if (!ComponentUtil.available()) {
                if (logger.isDebugEnabled()) {
                    logger.debug("container was destroyed.");
                }
                return;
            }
            super.log(key, objs);
        }
    
        @Override
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 6.6K bytes
    - Viewed (0)
  5. src/main/java/jcifs/smb1/smb1/TransPeekNamedPipeResponse.java

        static final int STATUS_DISCONNECTED = 1;
        static final int STATUS_LISTENING = 2;
        static final int STATUS_CONNECTION_OK = 3;
        static final int STATUS_SERVER_END_CLOSED = 4;
    
        int status, available;
    
        TransPeekNamedPipeResponse( SmbNamedPipe pipe ) {
            this.pipe = pipe;
        }
    
        int writeSetupWireFormat( byte[] dst, int dstIndex ) {
            return 0;
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 2.1K bytes
    - Viewed (0)
  6. src/main/webapp/WEB-INF/view/admin/dataconfig/admin_dataconfig_edit.jsp

                                        <label for="available" class="col-sm-3 text-sm-right col-form-label"><la:message
                                                key="labels.available"/></label>
                                        <div class="col-sm-9">
                                            <la:errors property="available"/>
                                            <la:select styleId="available" property="available" styleClass="form-control">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 9.6K bytes
    - Viewed (0)
  7. src/main/webapp/WEB-INF/view/admin/scheduler/admin_scheduler_edit.jsp

                                            <la:errors property="available"/>
                                            <div class="form-check">
                                                <la:checkbox styleId="available" styleClass="form-check-input" property="available"/>
                                                <label for="available" class="form-check-label">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jan 16 12:54:35 GMT 2023
    - 9.6K bytes
    - Viewed (0)
  8. src/main/webapp/WEB-INF/view/admin/webconfig/admin_webconfig_details.jsp

                                            <th><la:message key="labels.available"/></th>
                                            <td><la:hidden property="available"/> <c:if
                                                    test="${available=='true'}">
                                                <la:message key="labels.enabled"/>
                                            </c:if> <c:if test="${available=='false'}">
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 07:47:04 GMT 2020
    - 10.7K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFileInputStream.java

     * return 0 for streams connected to regular files. However, a 
     * stream created from a Named Pipe this method will query the server using a
     * "peek named pipe" operation and return the number of available bytes
     * on the server.
     */
        public int available() throws IOException {
            SmbNamedPipe pipe;
            TransPeekNamedPipe req;
            TransPeekNamedPipeResponse resp;
    
            if( file.type != SmbFile.TYPE_NAMED_PIPE ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 7.9K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/app/pager/WebConfigPager.java

        public String name;
    
        public String urls;
    
        public String userAgent;
    
        public String numOfThread;
    
        public String intervalTime;
    
        public String boost;
    
        public String available;
    
        public String sortOrder;
    
        public String createdBy;
    
        public String createdTime;
    
        public String versionNo;
    
        public String description;
    
        public void clear() {
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 3.8K bytes
    - Viewed (0)
Back to top