Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for system_error (0.26 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/log/LogType.java

        CRAWLING_ACCESS_EXCEPTION, //
        CRAWLING_EXCETPION, //
        NO_URL_IN_QUEUE, //
        START_THREAD, //
        FINISHED_THREAD, //
        NO_RESPONSE_PROCESSOR, //
        NO_RULE, //
        SYSTEM_ERROR
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/utils/import_utils.cc

    limitations under the License.
    ==============================================================================*/
    #include "tensorflow/compiler/mlir/tensorflow/utils/import_utils.h"
    
    #include <system_error>
    
    #include "llvm/Support/FileUtilities.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/ToolOutputFile.h"
    #include "llvm/Support/raw_ostream.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Feb 26 03:47:51 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHook.java

        }
    
        @Override
        public OptionalThing<ApiResponse> handleServerException(final ApiFailureResource resource, final Throwable cause) {
            return OptionalThing.of(asJson(createFailureBean(Status.SYSTEM_ERROR, createMessage(resource, cause))));
        }
    
        // ===================================================================================
        //                                                                        Assist Logic
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/mlir_tflite_runner.cc

    // Tool to run a TFLite computation from a MLIR input using the TFLite
    // interpreter.
    
    #include <stdio.h>
    
    #include <algorithm>
    #include <memory>
    #include <string>
    #include <system_error>
    #include <utility>
    #include <vector>
    
    #include "absl/strings/str_cat.h"
    #include "absl/strings/str_join.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/InitLLVM.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 03 00:14:05 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/tests/flatbuffer2mlir/importer_test_min_max.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <iostream>
    #include <memory>
    #include <optional>
    #include <system_error>
    
    #include "absl/strings/string_view.h"
    #include "llvm/Support/CommandLine.h"
    #include "llvm/Support/InitLLVM.h"
    #include "llvm/Support/MemoryBuffer.h"
    #include "llvm/Support/PrettyStackTrace.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  6. fess-crawler/src/main/java/org/codelibs/fess/crawler/helper/impl/LogHelperImpl.java

                break;
            case NO_RESPONSE_PROCESSOR:
                processNoResponseProcessor(objs);
                break;
            case NO_RULE:
                processNoRule(objs);
                break;
            case SYSTEM_ERROR:
                processSystemError(objs);
                break;
            default:
                processDefault(objs);
                break;
            }
        }
    
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 10.3K bytes
    - Viewed (1)
  7. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

        protected ApiResponse response = null;
    
        public ApiResult(final ApiResponse response) {
            this.response = response;
        }
    
        public enum Status {
            OK(0), BAD_REQUEST(1), SYSTEM_ERROR(2), UNAUTHORIZED(3);
    
            private final int id;
    
            Status(final int id) {
                this.id = id;
            }
    
            public int getId() {
                return id;
            }
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. fess-crawler/src/main/java/org/codelibs/fess/crawler/CrawlerThread.java

                        crawlerContext.intervalController.delay(IntervalController.WAIT_NEW_URL);
                    }
                }
            } catch (final Throwable t) {
                log(logHelper, LogType.SYSTEM_ERROR, t);
            } finally {
                // remove crawlerContext from thread
                CrawlingParameterUtil.setCrawlerContext(null);
                CrawlingParameterUtil.setUrlQueueService(null);
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/odml_to_stablehlo.cc

    limitations under the License.
    ==============================================================================*/
    
    #include <algorithm>
    #include <iterator>
    #include <memory>
    #include <optional>
    #include <string>
    #include <system_error>
    #include <unordered_set>
    #include <utility>
    #include <vector>
    
    #include "absl/strings/match.h"
    #include "absl/strings/str_cat.h"
    #include "llvm/ADT/StringRef.h"
    #include "llvm/Support/CommandLine.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:16:49 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/error/redirect.jsp

    StringBuilder redirectPage = new StringBuilder();
    redirectPage.append(((javax.servlet.http.HttpServletRequest)request).getContextPath());
    if("systemError".equals(type)) {
    	if(requestUri != null && !requestUri.endsWith("systemError")) {
    		redirectPage.append("/error/systemerror/");
    		response.sendRedirect(redirectPage.toString());
    	} else {
    		response.sendError(statusCode);
    	}
    } else if("logOut".equals(type)) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Aug 28 21:37:02 UTC 2016
    - 1.2K bytes
    - Viewed (0)
Back to top