Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 35 of 35 for 200 (0.3 sec)

  1. cmd/apierrorcode_string.go

    	_ = x[ErrAdminConfigDuplicateKeys-196]
    	_ = x[ErrAdminConfigInvalidIDPType-197]
    	_ = x[ErrAdminConfigLDAPNonDefaultConfigName-198]
    	_ = x[ErrAdminConfigLDAPValidation-199]
    	_ = x[ErrAdminConfigIDPCfgNameAlreadyExists-200]
    	_ = x[ErrAdminConfigIDPCfgNameDoesNotExist-201]
    	_ = x[ErrInsecureClientRequest-202]
    	_ = x[ErrObjectTampered-203]
    	_ = x[ErrAdminLDAPNotEnabled-204]
    	_ = x[ErrSiteReplicationInvalidRequest-205]
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users_test.go

    	// 3.1 Execute the request.
    	resp, err := s.TestSuiteCommon.client.Do(req)
    	if err != nil {
    		c.Fatalf("unexpected request err: %v", err)
    	}
    	if resp.StatusCode != 200 {
    		c.Fatalf("got unexpected response: %#v\n", resp)
    	}
    
    	// 3.2 check that user cannot delete the bucket
    	err = uClient.RemoveBucket(ctx, bucket)
    	if err == nil || err.Error() != "Access Denied." {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Feb 12 16:36:16 GMT 2024
    - 45.7K bytes
    - Viewed (0)
  3. cmd/bucket-handlers_test.go

    	}
    	apiRouter.ServeHTTP(rec, req)
    	if rec.Code != http.StatusNoContent {
    		t.Errorf("Expected the response status to be `%d`, but instead found `%d`", 200, rec.Code)
    	}
    
    	getObjectToDeleteList := func(objectNames []string) (objectList []ObjectToDelete) {
    		for _, objectName := range objectNames {
    			objectList = append(objectList, ObjectToDelete{
    				ObjectV: ObjectV{
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 39.5K bytes
    - Viewed (2)
  4. cmd/object-handlers_test.go

    			}
    			// Since `apiRouter` satisfies `http.Handler` it has a
    			// ServeHTTP to execute the logic of the handler.
    			apiRouter.ServeHTTP(rec, req)
    
    			if rec.Code != 200 {
    				t.Errorf("Test %d: Did not receive a 200 response: %d", i+1, rec.Code)
    			}
    			contentLength = rec.Header().Get("Content-Length")
    		}
    
    		if contentLength != fmt.Sprintf("%d", objectLength(input)) {
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/lifecycle_test.go

    		},
    		{
    			ID:     "rule-with-sz-lt-and-gt",
    			Status: "Enabled",
    			Filter: Filter{
    				set: true,
    				And: And{
    					ObjectSizeGreaterThan: 101 * humanize.MiByte,
    					ObjectSizeLessThan:    200 * humanize.MiByte,
    				},
    			},
    			Expiration: Expiration{
    				set:  true,
    				Days: 1,
    			},
    		},
    	}
    	tests := []struct {
    		lc       Lifecycle
    		opts     ObjectOpts
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:11:10 GMT 2024
    - 53.2K bytes
    - Viewed (0)
Back to top