Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for badRequest (0.15 sec)

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

            '400':
              $ref: '#/components/responses/BadRequest'
            '401':
              $ref: '#/components/responses/Unauthorized'
            '404':
              $ref: '#/components/responses/NotFound'
            '500':
              $ref: '#/components/responses/InternalServerError'
    
    components:
      responses:
        BadRequest:
          description: Bad request
          content:
            application/json:
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu May 09 06:31:27 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/action/FessHtmlPath.java

        /** The path of the HTML: /advance.jsp */
        HtmlNext path_AdvanceJsp = new HtmlNext("/advance.jsp");
    
        /** The path of the HTML: /error/badRequest.jsp */
        HtmlNext path_Error_BadRequestJsp = new HtmlNext("/error/badRequest.jsp");
    
        /** The path of the HTML: /error/error.jsp */
        HtmlNext path_Error_ErrorJsp = new HtmlNext("/error/error.jsp");
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/fieldselector_test.go

    				if err == nil {
    					w.Stop()
    					t.Fatal("Expected error but got none")
    				}
    				if !apierrors.IsBadRequest(err) {
    					t.Errorf("Expected BadRequest but got %v", err)
    				}
    			})
    		}
    	})
    
    	for _, instance := range []string{shirtInstance1, shirtInstance2, shirtInstance3} {
    		shirt := &unstructured.Unstructured{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 06 15:53:03 UTC 2024
    - 27K bytes
    - Viewed (0)
  4. cmd/handler-utils.go

    			Code:           "XMinioAdminVersionMismatch",
    			Description:    desc,
    			HTTPStatusCode: http.StatusUpgradeRequired,
    		}, r.URL)
    	default:
    		writeErrorResponse(r.Context(), w, APIError{
    			Code: "BadRequest",
    			Description: fmt.Sprintf("An error occurred when parsing the HTTP request %s at '%s'",
    				r.Method, r.URL.Path),
    			HTTPStatusCode: http.StatusBadRequest,
    		}, r.URL)
    	}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/rest_test.go

    	actual := &testPatchType{}
    	err := strategicPatchObject(context.TODO(), defaulter, original, []byte(patch), actual, &testPatchType{}, "")
    	if !apierrors.IsBadRequest(err) {
    		t.Errorf("expected HTTP status: BadRequest, got: %#v", apierrors.ReasonForError(err))
    	}
    	if !strings.Contains(err.Error(), expectedError) {
    		t.Errorf("expected %#v, got %#v", expectedError, err.Error())
    	}
    }
    
    func TestJSONPatch(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction_test.go

    			eviction:     &policy.Eviction{ObjectMeta: metav1.ObjectMeta{Name: "t7", Namespace: "default"}, DeleteOptions: metav1.NewDeleteOptions(0)},
    			expectError:  "name in URL does not match name in Eviction object: BadRequest",
    			podName:      "t7",
    		},
    		{
    			name: "matching pdbs with no disruptions allowed, pod running, empty selector",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiextensions-apiserver/test/integration/basic_test.go

    		typelessInstance := &unstructured.Unstructured{}
    		if _, err := noxuResourceClient.Create(context.TODO(), typelessInstance, metav1.CreateOptions{}); !errors.IsBadRequest(err) {
    			t.Errorf("expected badrequest for submitting empty object, got %#v", err)
    		}
    		// Case when apiVersion and Kind would be set up from GVK, but no other objects are present
    		typedNoBodyInstance := &unstructured.Unstructured{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 11:35:33 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/ApiResult.java

    public class ApiResult {
    
        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)
  9. src/main/resources/fess_label_de.properties

    labels.searchoptions_menu_labels=Label
    labels.error_title=Fehler
    labels.system_error_title=Systemfehler
    labels.contact_site_admin=Kontaktiere den Seitenadmin.
    labels.request_error_title=Fehlerhafte Anfrage.
    labels.bad_request=Ungültige Anfrage für die URL.
    labels.page_not_found_title=Seite nicht gefunden
    labels.check_url=Prüfe die URL.
    labels.user_name=Benutzername
    labels.login=Anmelden
    labels.login.placeholder_username=Benutzername
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  10. src/main/resources/fess_label_en.properties

    labels.searchoptions_menu_labels=Labels
    labels.error_title=Error
    labels.system_error_title=System Error
    labels.contact_site_admin=Contact the Site Administrator.
    labels.request_error_title=Bad Request
    labels.bad_request=Invalid request for the url.
    labels.page_not_found_title=Page Not Found
    labels.check_url=Check the url.
    labels.user_name=Username
    labels.login=Login
    labels.login.placeholder_username=Username
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
Back to top