Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 4301 - 4310 of 4,350 for cOm (0.02 seconds)

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

  1. src/main/java/org/codelibs/fess/helper/SearchHelper.java

    import org.opensearch.action.update.UpdateResponse;
    import org.opensearch.common.document.DocumentField;
    import org.opensearch.index.query.BoolQueryBuilder;
    import org.opensearch.index.query.QueryBuilders;
    
    import com.fasterxml.jackson.databind.ObjectMapper;
    
    import jakarta.servlet.http.Cookie;
    import jakarta.servlet.http.HttpServletRequest;
    
    /**
     * Helper class for handling search operations in Fess.
     *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Dec 20 05:56:45 GMT 2025
    - 36.3K bytes
    - Click Count (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/internal/http2/Http2Test.kt

        val expectedPromisedStreamId = 11
        val pushPromise =
          listOf(
            Header(Header.TARGET_METHOD, "GET"),
            Header(Header.TARGET_SCHEME, "https"),
            Header(Header.TARGET_AUTHORITY, "squareup.com"),
            Header(Header.TARGET_PATH, "/"),
          )
    
        // Write the push promise frame, specifying the associated stream ID.
        val headerBytes = literalHeaders(pushPromise)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 28.1K bytes
    - Click Count (0)
  3. src/main/webapp/js/marked.min.js

    /**
     * marked v17.0.4 - a markdown parser
     * Copyright (c) 2018-2026, MarkedJS. (MIT License)
     * Copyright (c) 2011-2018, Christopher Jeffrey. (MIT License)
     * https://github.com/markedjs/marked
     */
    
    /**
     * DO NOT EDIT THIS FILE
     * The code in this file is generated from files in ./src/
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 41.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/llm/AbstractLlmClient.java

    import org.codelibs.core.timer.TimeoutTask;
    import org.codelibs.fess.util.ComponentUtil;
    import org.lastaflute.web.LastaWebKey;
    import org.lastaflute.web.util.LaRequestUtil;
    
    import com.fasterxml.jackson.databind.JsonNode;
    import com.fasterxml.jackson.databind.ObjectMapper;
    
    import jakarta.servlet.http.HttpSession;
    
    /**
     * Abstract base class for LLM client implementations.
     *
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 72K bytes
    - Click Count (0)
  5. docs/ko/docs/tutorial/bigger-applications.md

    명령어에 경로를 직접 전달할 수도 있습니다:
    
    ```console
    $ fastapi dev app/main.py
    ```
    
    하지만 `fastapi` 명령어를 실행할 때마다 올바른 경로를 기억해 전달해야 합니다.
    
    또한 [VS Code 확장](../editor-support.md)이나 [FastAPI Cloud](https://fastapicloud.com) 같은 다른 도구들이 이를 찾지 못할 수도 있으므로, `pyproject.toml`의 `entrypoint`를 사용하는 것을 권장합니다.
    
    ///
    
    ## 자동 API 문서 확인하기 { #check-the-automatic-api-docs }
    
    이제 앱을 실행하세요:
    
    <div class="termy">
    
    ```console
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 21.5K bytes
    - Click Count (0)
  6. cmd/xl-storage-format-v2_gen.go

    // Code generated by github.com/tinylib/msgp DO NOT EDIT.
    
    package cmd
    
    import (
    	"github.com/tinylib/msgp/msgp"
    )
    
    // DecodeMsg implements msgp.Decodable
    func (z *ChecksumAlgo) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    		zb0001, err = dc.ReadUint8()
    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = ChecksumAlgo(zb0001)
    	}
    	return
    }
    
    // EncodeMsg implements msgp.Encodable
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 55.8K bytes
    - Click Count (0)
  7. docs/ja/docs/tutorial/security/oauth2-jwt.md

    ///
    
    <img src="/img/tutorial/security/image08.png">
    
    エンドポイント`/users/me/`を呼び出すと、次のようなレスポンスが得られます:
    
    ```JSON
    {
      "username": "johndoe",
      "email": "johndoe@example.com",
      "full_name": "John Doe",
      "disabled": false
    }
    ```
    
    <img src="/img/tutorial/security/image09.png">
    
    開発者ツールを開くと、送信されるデータにはトークンだけが含まれており、パスワードはユーザーを認証してアクセストークンを取得する最初のリクエストでのみ送信され、その後は送信されないことがわかります:
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 14.6K bytes
    - Click Count (1)
  8. docs/ko/docs/tutorial/query-params-str-validations.md

    `Annotated`는 하나 이상의 메타데이터 어노테이션을 가질 수 있기 때문에, 이제 [Typer](https://typer.tiangolo.com/) 같은 다른 도구에서도 같은 함수를 사용할 수 있습니다. 🚀
    
    ## 검증 더 추가하기 { #add-more-validations }
    
    `min_length` 매개변수도 추가할 수 있습니다:
    
    {* ../../docs_src/query_params_str_validations/tutorial003_an_py310.py hl[10] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 18.7K bytes
    - Click Count (0)
  9. docs/zh-hant/docs/tutorial/response-model.md

    ## 回傳與輸入相同的資料 { #return-the-same-input-data }
    
    這裡我們宣告一個 `UserIn` 模型,其中會包含明文密碼:
    
    {* ../../docs_src/response_model/tutorial002_py310.py hl[7,9] *}
    
    /// info | 說明
    
    要使用 `EmailStr`,請先安裝 [`email-validator`](https://github.com/JoshData/python-email-validator)。
    
    請先建立一個[虛擬環境](../virtual-environments.md)、啟用它,然後安裝,例如:
    
    ```console
    $ pip install email-validator
    ```
    
    或:
    
    ```console
    $ pip install "pydantic[email]"
    ```
    
    ///
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 14.5K bytes
    - Click Count (0)
  10. docs/zh/docs/tutorial/query-params-str-validations.md

    由于 `Annotated` 可以包含多个元数据标注,你甚至可以用同一个函数与其他工具配合,例如 [Typer](https://typer.tiangolo.com/)。🚀
    
    ## 添加更多校验 { #add-more-validations }
    
    你还可以添加 `min_length` 参数:
    
    {* ../../docs_src/query_params_str_validations/tutorial003_an_py310.py hl[10] *}
    
    ## 添加正则表达式 { #add-regular-expressions }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:06:37 GMT 2026
    - 15.4K bytes
    - Click Count (0)
Back to Top