Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 1,014 for DELETE (0.17 sec)

  1. docs/de/docs/reference/responses.md

                - set_cookie
                - delete_cookie
    
    ::: fastapi.responses.ORJSONResponse
        options:
            members:
                - charset
                - status_code
                - media_type
                - body
                - background
                - raw_headers
                - render
                - init_headers
                - headers
                - set_cookie
                - delete_cookie
    
    ## Starlette-Responses
    
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Mon Feb 19 15:53:39 GMT 2024
    - 3.8K bytes
    - Viewed (0)
  2. src/main/webapp/WEB-INF/view/admin/crawlinginfo/admin_crawlinginfo_details.jsp

                                                                    name="delete"
                                                                    value="<la:message key="labels.crud_button_delete" />">
                                                                <em class="fa fa-trash">
                                                                <la:message key="labels.crud_button_delete"/>
                                                            </button>
    Others
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Wed Feb 12 20:25:27 GMT 2020
    - 10.1K bytes
    - Viewed (0)
  3. internal/bucket/lifecycle/lifecycle.go

    }
    
    // DeleteAll - Returns true if the action demands deleting all versions of an object
    func (a Action) DeleteAll() bool {
    	return a == DeleteAllVersionsAction
    }
    
    // Delete - Returns true if action demands delete on all objects (including restored)
    func (a Action) Delete() bool {
    	if a.DeleteRestored() {
    		return true
    	}
    	return a == DeleteVersionAction || a == DeleteAction || a == DeleteAllVersionsAction
    }
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sat Mar 09 06:41:22 GMT 2024
    - 17K bytes
    - Viewed (0)
  4. tests/test_reponse_set_reponse_code_empty.py

            "openapi": "3.1.0",
            "info": {"title": "FastAPI", "version": "0.1.0"},
            "paths": {
                "/{id}": {
                    "delete": {
                        "summary": "Delete Deployment",
                        "operationId": "delete_deployment__id__delete",
                        "parameters": [
                            {
                                "required": True,
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Fri Jun 30 18:25:16 GMT 2023
    - 3.1K bytes
    - Viewed (0)
  5. cmd/object-handlers-common.go

    }
    
    // setPutObjHeaders sets all the necessary headers returned back
    // upon a success Put/Copy/CompleteMultipart/Delete requests
    // to activate delete only headers set delete as true
    func setPutObjHeaders(w http.ResponseWriter, objInfo ObjectInfo, delete bool) {
    	// We must not use the http.Header().Set method here because some (broken)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 09 08:17:49 GMT 2024
    - 14.6K bytes
    - Viewed (0)
  6. src/main/resources/fess_message_ko.properties

    errors.failed_to_read_request_file = 요청 파일의 읽기에 실패했습니다 : {0}
    errors.invalid_header_for_request_file = 헤더 행이 올바르지 않습니다 : {0}
    errors.could_not_delete_logged_in_user = 로그인 한 사용자는 삭제할 수 없습니다.
    
    success.update_crawler_params = 매개 변수를 갱신했습니다.
    success.delete_doc_from_index = 인덱스에서 문서를 삭제하는 과정을 시작했습니다.
    success.crawling_info_delete_all = 세션 데이터를 삭제했습니다.
    success.start_crawl_process = 크롤링 프로세스 시작했습니다.
    success.upload_design_file = {0}을 업데이트했습니다.
    Properties
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Sat Jul 07 06:11:30 GMT 2018
    - 11.1K bytes
    - Viewed (0)
  7. internal/crypto/metadata.go

    func RemoveSSEHeaders(metadata map[string]string) {
    	delete(metadata, xhttp.AmzServerSideEncryption)
    	delete(metadata, xhttp.AmzServerSideEncryptionKmsID)
    	delete(metadata, xhttp.AmzServerSideEncryptionKmsContext)
    	delete(metadata, xhttp.AmzServerSideEncryptionCustomerAlgorithm)
    	delete(metadata, xhttp.AmzServerSideEncryptionCustomerKey)
    	delete(metadata, xhttp.AmzServerSideEncryptionCustomerKeyMD5)
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/app/web/api/admin/suggest/ApiAdminSuggestAction.java

        }
    
        // DELETE /api/admin/suggest/all
        @Execute
        public JsonResponse<ApiResult> delete$all() {
            if (!suggestHelper.deleteAllWords()) {
                throwValidationErrorApi(messages -> messages.addErrorsFailedToDeleteDocInAdmin(GLOBAL));
            }
            return asJson(new ApiResult.ApiResponse().status(ApiResult.Status.OK).result());
        }
    
        // DELETE /api/admin/suggest/document
        @Execute
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 2.6K bytes
    - Viewed (0)
  9. internal/bucket/replication/replication_test.go

    					DeleteReplication:       DeleteReplication{Status: Enabled},
    					Filter:                  Filter{},
    				},
    			},
    		},
    		{ // Config1 - Replication config has no filters, delete,delete-marker replication disabled
    			Rules: []Rule{
    				{
    					Status:                  Enabled,
    					Priority:                3,
    					DeleteMarkerReplication: DeleteMarkerReplication{Status: Disabled},
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Mar 28 17:44:56 GMT 2024
    - 32.5K bytes
    - Viewed (0)
  10. maven-compat/src/test/java/org/apache/maven/repository/legacy/DefaultUpdateCheckManagerTest.java

            Artifact a = createArtifact("a", "0.0.1-SNAPSHOT");
            File file = new File(localRepository.getBasedir(), localRepository.pathOf(a));
            file.delete();
            a.setFile(file);
    
            File touchFile = updateCheckManager.getTouchfile(a);
            touchFile.delete();
    
            assertTrue(updateCheckManager.isUpdateRequired(a, remoteRepository));
    
            file.getParentFile().mkdirs();
            file.createNewFile();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 8.7K bytes
    - Viewed (0)
Back to top