Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 331 - 340 of 880 for Html (0.02 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2ExchangeCodec.kt

        private const val TRANSFER_ENCODING = "transfer-encoding"
        private const val TE = "te"
        private const val ENCODING = "encoding"
        private const val UPGRADE = "upgrade"
    
        /** See http://tools.ietf.org/html/draft-ietf-httpbis-http2-09#section-8.1.3. */
        private val HTTP_2_SKIPPED_REQUEST_HEADERS =
          immutableListOf(
            CONNECTION,
            HOST,
            KEEP_ALIVE,
            PROXY_CONNECTION,
            TE,
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Jul 29 21:11:09 GMT 2025
    - 7K bytes
    - Click Count (0)
  2. docs/ko/docs/tutorial/server-sent-events.md

    ## 기술 세부사항 { #technical-details }
    
    FastAPI는 일부 SSE 모범 사례를 기본으로 구현합니다.
    
    - 메시지가 없을 때는 15초마다 **"keep alive" `ping` 주석**을 보내 일부 프록시가 연결을 종료하지 않도록 합니다. [HTML 사양: Server-Sent Events](https://html.spec.whatwg.org/multipage/server-sent-events.html#authoring-notes)에서 권장합니다.
    - 스트림이 **캐시되지 않도록** `Cache-Control: no-cache` 헤더를 설정합니다.
    - Nginx 같은 일부 프록시에서 **버퍼링을 방지**하기 위해 특수 헤더 `X-Accel-Buffering: no`를 설정합니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:56:39 GMT 2026
    - 5.3K bytes
    - Click Count (0)
  3. src/main/webapp/js/admin/adminlte.min.js.map

    this._config = config\n  }\n\n  // Public\n\n  collapse() {\n    const $body = $('body')\n    const $html = $('html')\n\n    // Show the control sidebar\n    if (this._config.controlsidebarSlide) {\n      $html.addClass(CLASS_NAME_CONTROL_SIDEBAR_ANIMATE)\n      $body.removeClass(CLASS_NAME_CONTROL_SIDEBAR_SLIDE).delay(300).queue(function () {\n        $(SELECTOR_CONTROL_SIDEBAR).hide()\n        $html.removeClass(CLASS_NAME_CONTROL_SIDEBAR_ANIMATE)\n        $(this).dequeue()\n      })\n    } else {\n...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 132.4K bytes
    - Click Count (0)
  4. src/main/webapp/WEB-INF/view/common/help_ko.jsp

    <%@page pageEncoding="UTF-8" contentType="text/html; charset=UTF-8"%>
    <h2>검색방법</h2>
    <dl>
    	<dt>필드 지정 검색</dt>
    	<dd>
    		필드 이름 뒤에 콜론 :에 지정된 모든 필드에서 검색 할 수 있습니다.
    		예를 들어, 문서의 title 필드에서 Fess가 포함 된 문서를 검색하려면 다음과 같이 입력합니다.
    		<pre>title:Fess</pre>
    		기본으로 사용 가능한 필드는 url, host, site, title content,
    		content_length, last_modified 및 mimetype입니다.
    		설정에서 지정하는 필드는 변경할 수 있습니다.
    	</dd>
    	<dt>정렬</dt>
    	<dd>
    		sort 연산자는 지정된 필드 이름으로 문서를 정렬합니다.
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 3.1K bytes
    - Click Count (0)
  5. docs/ko/docs/tutorial/request-forms.md

    /// info | 정보
    
    `Form`은 `Body`에서 직접 상속되는 클래스입니다.
    
    ///
    
    /// tip | 팁
    
    폼 본문을 선언할 때는 `Form`을 명시적으로 사용해야 합니다. 그렇지 않으면 매개변수가 쿼리 매개변수나 본문(JSON) 매개변수로 해석됩니다.
    
    ///
    
    ## "폼 필드"에 대해 { #about-form-fields }
    
    HTML 폼(`<form></form>`)이 데이터를 서버로 보내는 방식은 일반적으로 해당 데이터에 대해 "특수" 인코딩을 사용하며, 이는 JSON과 다릅니다.
    
    **FastAPI**는 JSON 대신 올바른 위치에서 해당 데이터를 읽습니다.
    
    /// note | 기술 세부사항
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 3K bytes
    - Click Count (0)
  6. docs/zh-hant/docs/tutorial/request-forms.md

    /// info
    
    `Form` 是一個直接繼承自 `Body` 的類別。
    
    ///
    
    /// tip
    
    要宣告表單的請求本文,你需要明確使用 `Form`,否則這些參數會被解讀為查詢參數或請求本文(JSON)參數。
    
    ///
    
    ## 關於「表單欄位」 { #about-form-fields }
    
    HTML 表單(`<form></form>`)向伺服器傳送資料時,通常會使用一種「特殊」的編碼方式,與 JSON 不同。
    
    **FastAPI** 會從正確的位置讀取那些資料,而不是從 JSON。
    
    /// note | 技術細節
    
    表單資料通常會使用「媒體類型」`application/x-www-form-urlencoded` 進行編碼。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  7. docs/es/llm-prompt.md

    * path (as in URL path): path (do not translate to "ruta")
    * query (as in URL query): query (do not translate to "consulta")
    * cookie (as in HTTP cookie): cookie
    * header (as in HTTP header): header
    * form (as in HTML form): formulario
    * type checks: chequeo de tipos
    * parse: parse
    * parsing: parsing
    * marshall: marshall
    * library: paquete (do not translate to "biblioteca" or "librería")
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Dec 16 16:33:45 GMT 2025
    - 5.4K bytes
    - Click Count (0)
  8. okhttp/src/commonJvmAndroid/kotlin/okhttp3/internal/http2/Http2Reader.kt

         *
         * [alt_svc]: http://tools.ietf.org/html/draft-ietf-httpbis-alt-svc-01
         *
         * @param streamId when a client-initiated stream ID (odd number), the origin of this alternate
         *     service is the origin of the stream. When zero, the origin is specified in the `origin`
         *     parameter.
         * @param origin when present, the [origin](http://tools.ietf.org/html/rfc6454) is typically
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:02:18 GMT 2026
    - 19.7K bytes
    - Click Count (0)
  9. src/main/config/openapi/openapi-user.yaml

    openapi: 3.0.3
    info:
      title: Fess - User API
      description: |-
        This is a Fess Server based on the OpenAPI 3.0 specification.  
      license:
        name: Apache 2.0
        url: http://www.apache.org/licenses/LICENSE-2.0.html
      version: 14.8.0
    externalDocs:
      description: API Documentation
      url: https://fess.codelibs.org/14.8/api/
    servers:
      - url: http://localhost:8080/api/v1
    tags:
      - name: search
        description: Search operations
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu May 09 06:31:27 GMT 2024
    - 21.6K bytes
    - Click Count (0)
  10. docs/features/connections.md

     * They don't specify whether a specific proxy server should be used or how to authenticate with that proxy server.
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Sun Mar 15 09:01:42 GMT 2026
    - 5.4K bytes
    - Click Count (0)
Back to Top