Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 159 for unavailable (0.19 sec)

  1. src/main/config/openapi/openapi-user.yaml

            '404':
              $ref: '#/components/responses/NotFound'
            '500':
              $ref: '#/components/responses/InternalServerError'
            '503':
              description: Service unavailable
              content:
                application/json:
                  schema:
                    type: object
                    properties:
                      data:
                        type: object
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Mon Jun 19 13:30:00 GMT 2023
    - 21.6K bytes
    - Viewed (1)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/FileConfigDbm.java

        //                                                                         ===========
        protected final ColumnInfo _columnAvailable = cci("available", "available", null, null, Boolean.class, "available", null, false, false,
                false, "Boolean", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/es/config/bsentity/dbmeta/WebConfigDbm.java

        //                                                                         ===========
        protected final ColumnInfo _columnAvailable = cci("available", "available", null, null, Boolean.class, "available", null, false, false,
                false, "Boolean", 0, 0, null, null, false, null, null, null, null, null, false);
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 18.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess_config.web_config/web_config.json

          },
          "intervalTime": {
            "type": "integer"
          },
          "timeToLive": {
            "type": "integer"
          },
          "boost": {
            "type": "float"
          },
          "available": {
            "type": "boolean"
          },
          "permissions": {
            "type": "keyword"
          },
          "virtualHosts": {
            "type": "keyword"
          },
          "sortOrder": {
            "type": "integer"
    Json
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Dec 02 13:14:56 GMT 2021
    - 1.3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                        .append('.');
            } else if (status == 0) {
                resultBuf.append(ping.getClusterName()).append(" is alive.");
            } else {
                resultBuf.append(ping.getClusterName()).append(" is not available.");
            }
    
            return resultBuf.toString();
        }
    
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 4.1K bytes
    - Viewed (0)
Back to top