Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 36 for fips (0.06 seconds)

  1. doc/godebug.md

    Cryptographic Module operates in FIPS 140-3 mode.
    The possible values are:
    - "off": no special support for FIPS 140-3 mode. This is the default.
    - "on": the Go Cryptographic Module operates in FIPS 140-3 mode.
    - "only": like "on", but cryptographic algorithms not approved by
      FIPS 140-3 return an error or panic.
    For more information, see [FIPS 140-3 Compliance](/doc/security/fips140).
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 15:49:10 GMT 2026
    - 26K bytes
    - Click Count (0)
  2. src/cmd/asm/internal/arch/arch.go

    	// Note that there is no list of names as there is for x86.
    	for i := mips.REG_R0; i <= mips.REG_R31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    
    	for i := mips.REG_F0; i <= mips.REG_F31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := mips.REG_M0; i <= mips.REG_M31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    	for i := mips.REG_FCR0; i <= mips.REG_FCR31; i++ {
    		register[obj.Rconv(i)] = int16(i)
    	}
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Mar 20 17:02:17 GMT 2026
    - 22K bytes
    - Click Count (0)
  3. src/test/java/org/codelibs/fess/llm/AbstractLlmClientTest.java

        }
    
        @Test
        public void test_addHistoryWithBudget_multipleTurns_budgetTight() {
            // 3 turns: turn0(Q1+A1=10), turn1(Q2+A2=10), turn2(Q3+A3=10)
            // Budget=25: turn2(10) fits (remaining=15), turn1(10) fits (remaining=5), turn0(10) doesn't
            final List<LlmMessage> history = new ArrayList<>();
            history.add(LlmMessage.user("QQQQQ")); // 5
            history.add(LlmMessage.assistant("AAAAA")); // 5
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 19 07:04:54 GMT 2026
    - 53K bytes
    - Click Count (0)
  4. docs/es/docs/advanced/behind-a-proxy.md

    ### Habilitar headers reenviados por el Proxy { #enable-proxy-forwarded-headers }
    
    Puedes iniciar FastAPI CLI con la *Opción de CLI* `--forwarded-allow-ips` y pasar las direcciones IP que deberían ser confiables para leer esos headers reenviados.
    
    Si lo estableces a `--forwarded-allow-ips="*"`, confiaría en todas las IPs entrantes.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 16.5K bytes
    - Click Count (0)
  5. docs/ru/docs/advanced/behind-a-proxy.md

    ///
    
    ### Включить пересылаемые заголовки прокси { #enable-proxy-forwarded-headers }
    
    Вы можете запустить FastAPI CLI с опцией командной строки `--forwarded-allow-ips` и передать IP‑адреса, которым следует доверять при чтении этих пересылаемых заголовков.
    
    Если указать `--forwarded-allow-ips="*"`, приложение будет доверять всем входящим IP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 17:56:20 GMT 2026
    - 22.7K bytes
    - Click Count (0)
  6. docs/uk/docs/advanced/behind-a-proxy.md

    ///
    
    ### Увімкнути направлені заголовки представника { #enable-proxy-forwarded-headers }
    
    Ви можете запустити FastAPI CLI з *опцією CLI* `--forwarded-allow-ips` і передати IP-адреси, яким слід довіряти для читання цих направлених заголовків.
    
    Якщо ви встановите `--forwarded-allow-ips="*"`, це означатиме довіру до всіх вхідних IP.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 23.1K bytes
    - Click Count (0)
  7. docs/zh-hant/docs/advanced/behind-a-proxy.md

    ///
    
    ### 啟用代理轉發標頭 { #enable-proxy-forwarded-headers }
    
    你可以在啟動 FastAPI CLI 時使用「CLI 選項」`--forwarded-allow-ips`,並傳入允許解析這些轉發標頭的受信任 IP 位址。
    
    如果將其設為 `--forwarded-allow-ips="*"`,就會信任所有進來的 IP。
    
    如果你的「伺服器」位於受信任的「代理」之後,且只有代理會與它通訊,這樣會讓它接受該「代理」的任何 IP。
    
    <div class="termy">
    
    ```console
    $ fastapi run --forwarded-allow-ips="*"
    
    <span style="color: green;">INFO</span>:     Uvicorn running on http://127.0.0.1:8000 (Press CTRL+C to quit)
    ```
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 15.3K bytes
    - Click Count (0)
  8. docs/ja/docs/advanced/behind-a-proxy.md

    ### プロキシ転送ヘッダーを有効化 { #enable-proxy-forwarded-headers }
    
    FastAPI CLI を *CLI オプション* `--forwarded-allow-ips` 付きで起動し、転送ヘッダーを信頼して読んでよい IP アドレスを指定できます。
    
    `--forwarded-allow-ips="*"` とすると、すべての送信元 IP を信頼します。
    
    **サーバー** が信頼できる **プロキシ** の背後にあり、そのプロキシからのみ接続される場合、プロキシの IP を受け入れるようになります。
    
    <div class="termy">
    
    ```console
    $ fastapi run --forwarded-allow-ips="*"
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  9. docs/ko/docs/advanced/behind-a-proxy.md

    FastAPI CLI를 *CLI 옵션* `--forwarded-allow-ips`로 실행하고, 전달 헤더를 읽을 수 있도록 신뢰할 IP 주소들을 넘길 수 있습니다.
    
    `--forwarded-allow-ips="*"`로 설정하면 들어오는 모든 IP를 신뢰합니다.
    
    **서버**가 신뢰할 수 있는 **프록시** 뒤에 있고 프록시만 서버에 접근한다면, 이는 해당 **프록시**의 IP가 무엇이든 간에 받아들이게 됩니다.
    
    <div class="termy">
    
    ```console
    $ fastapi run --forwarded-allow-ips="*"
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 17.9K bytes
    - Click Count (0)
  10. guava-tests/benchmark/com/google/common/util/concurrent/MonitorBasedArrayBlockingQueue.java

       * type of the returned array is that of the specified array. If the queue fits in the specified
       * array, it is returned therein. Otherwise, a new array is allocated with the runtime type of the
       * specified array and the size of this queue.
       *
       * <p>If this queue fits in the specified array with room to spare (i.e., the array has more
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 22.4K bytes
    - Click Count (0)
Back to Top