Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for HTTPStatusCode (0.31 sec)

  1. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

            }
    
            @Override
            public void setMethod(String method) {
                // Do nothing in test
            }
    
            @Override
            public void setHttpStatusCode(Integer httpStatusCode) {
                // Do nothing in test
            }
    
            @Override
            public void setStatus(Integer status) {
                // Do nothing in test
            }
    
            @Override
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/opensearch/client/SearchEngineClient.java

                    final int httpStatusCode = response.getHttpStatusCode();
                    if (httpStatusCode == 200) {
                        logger.info("ConfigSync is ready.");
                        return;
                    }
                    final String message = "Configsync is not available. HTTP Status is " + httpStatusCode;
                    if (response.getContentException() != null) {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Aug 31 08:19:00 UTC 2025
    - 121.9K bytes
    - Viewed (0)
  3. cmd/object-handlers_test.go

    					}
    					// Validate the HTTP response status code  with the expected one.
    					if want.HTTPStatusCode != rec.Code {
    						t.Errorf("%s, Expected the HTTP response status code to be %d, got %d.", reqType, want.HTTPStatusCode, rec.Code)
    					}
    				} else if want.HTTPStatusCode != http.StatusOK {
    					t.Errorf("got 200 ok, want %d", rec.Code)
    				}
    			}
    		})
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 163.1K bytes
    - Viewed (0)
  4. cmd/admin-handlers.go

    							HostID:    globalDeploymentID(),
    						})
    					}
    					if !started {
    						setCommonHeaders(w)
    						w.Header().Set(xhttp.ContentType, string(mimeJSON))
    						w.WriteHeader(hr.apiErr.HTTPStatusCode)
    					}
    					if _, err := w.Write(errorRespJSON); err != nil {
    						return
    					}
    					xhttp.Flush(w)
    				}
    				break forLoop
    			}
    		}
    	}
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 99.6K bytes
    - Viewed (0)
Back to top