Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 121 - 130 of 169 for Cors (0.03 seconds)

  1. docs/ko/docs/alternatives.md

    매우 단순하고 직관적입니다. 쉽게 확장할 수 있도록 설계되었고, 모듈식 component를 갖습니다.
    
    다음이 포함됩니다:
    
    * 정말 인상적인 성능.
    * WebSocket 지원.
    * 프로세스 내 백그라운드 작업.
    * 시작 및 종료 이벤트.
    * HTTPX 기반의 테스트 클라이언트.
    * CORS, GZip, Static Files, Streaming responses.
    * 세션 및 쿠키 지원.
    * 100% 테스트 커버리지.
    * 100% 타입 주석이 달린 코드베이스.
    * 소수의 필수 의존성.
    
    Starlette는 현재 테스트된 Python framework 중 가장 빠릅니다. 단, framework가 아니라 서버인 Uvicorn이 더 빠릅니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 26.3K bytes
    - Click Count (0)
  2. CHANGELOG/CHANGELOG-1.27.md

    - Kube-apiserver: regular expressions specified with the `--cors-allowed-origins` option are now validated to match the entire `hostname` inside the `Origin` header of the request and 
      must contain '^' or the '//' prefix to anchor to the start, and '$' or the port separator ':' to anchor to 
    Created: Fri Apr 03 09:05:14 GMT 2026
    - Last Modified: Wed Jul 17 07:48:22 GMT 2024
    - 466.3K bytes
    - Click Count (2)
  3. src/main/webapp/js/admin/jquery-3.7.1.min.js

    n(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},ce.ajaxSettings.xhr=function(){try{return new ie.XMLHttpRequest}catch(e){}};var Yt={0:200,1223:204},Qt=ce.ajaxSettings.xhr();le.cors=!!Qt&&"withCredentials"in Qt,le.ajax=Qt=!!Qt,ce.ajaxTransport(function(i){var o,a;if(le.cors||Qt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideM...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 85.5K bytes
    - Click Count (1)
  4. src/main/webapp/js/jquery-3.7.1.min.js

    n(e){return!!(e.offsetWidth||e.offsetHeight||e.getClientRects().length)},ce.ajaxSettings.xhr=function(){try{return new ie.XMLHttpRequest}catch(e){}};var Yt={0:200,1223:204},Qt=ce.ajaxSettings.xhr();le.cors=!!Qt&&"withCredentials"in Qt,le.ajax=Qt=!!Qt,ce.ajaxTransport(function(i){var o,a;if(le.cors||Qt&&!i.crossDomain)return{send:function(e,t){var n,r=i.xhr();if(r.open(i.type,i.url,i.async,i.username,i.password),i.xhrFields)for(n in i.xhrFields)r[n]=i.xhrFields[n];for(n in i.mimeType&&r.overrideM...
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 85.5K bytes
    - Click Count (0)
  5. src/main/webapp/js/admin/jquery-3.7.1.min.map

    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:07:52 GMT 2024
    - 131.6K bytes
    - Click Count (0)
  6. fastapi/applications.py

                    This prevents potential cross-site request forgery (CSRF) attacks
                    that exploit the browser's ability to send requests without a
                    Content-Type header, bypassing CORS preflight checks. In particular
                    applicable for apps that need to be run locally (in localhost).
    
                    When `False`, requests without a `Content-Type` header will have
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 16:16:24 GMT 2026
    - 178.6K bytes
    - Click Count (0)
  7. docs/fr/docs/how-to/custom-docs-ui-assets.md

    ### Désactiver les docs automatiques pour les fichiers statiques { #disable-the-automatic-docs-for-static-files }
    
    Comme lors de l’utilisation d’un CDN personnalisé, la première étape consiste à désactiver les docs automatiques, car elles utilisent un CDN par défaut.
    
    Pour les désactiver, définissez leurs URL sur `None` lors de la création de votre application `FastAPI` :
    
    {* ../../docs_src/custom_docs_ui/tutorial002_py310.py hl[9] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 8.7K bytes
    - Click Count (0)
  8. src/main/resources/fess_indices/fess/lt/stopwords.txt

    kiek
    kol
    kur
    kurie
    kuris
    man
    mane
    manęs
    manimi
    mano
    manyje
    mes
    metu
    mudu
    mudvi
    mudviejų
    mudviem
    mudviese
    mumis
    mums
    mumyse
    mus
    mūsų
    nei
    nes
    net
    nors
    nuo
    o
    pat
    per
    po
    prie
    prieš
    sau
    save
    savęs
    savimi
    savo
    savyje
    su
    tačiau
    tada
    tai
    taip
    tas
    tau
    tave
    tavęs
    tavimi
    tavyje
    ten
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 19 06:31:02 GMT 2018
    - 786 bytes
    - Click Count (0)
  9. docs/fr/docs/advanced/json-base64-bytes.md

    Vous pouvez également utiliser des champs `bytes` avec `ser_json_bytes` dans la configuration du modèle pour les données de sortie ; Pydantic sérialisera alors les octets en base64 lors de la génération de la réponse JSON.
    
    {* ../../docs_src/json_base64_bytes/tutorial001_py310.py ln[1:2,12:16,29,38:41] hl[16] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:33:45 GMT 2026
    - 2.8K bytes
    - Click Count (0)
  10. src/main/resources/fess_indices/fess/no/stopwords.txt

    for
    deg
    si
    sine
    sitt
    mot
    å
    meget
    hvorfor
    dette
    disse
    uten
    hvordan
    ingen
    din
    ditt
    blir
    samme
    hvilken
    hvilke
    sånn
    inni
    mellom
    vår
    hver
    hvem
    vors
    hvis
    både
    bare
    enn
    fordi
    før
    mange
    også
    slik
    vært
    være
    båe
    begge
    siden
    dykk
    dykkar
    dei
    deira
    deires
    deim
    di
    då
    eg
    ein
    eit
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Nov 27 12:59:36 GMT 2023
    - 994 bytes
    - Click Count (0)
Back to Top