Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1561 - 1570 of 2,279 for inf2 (0.02 seconds)

  1. docs/ja/docs/tutorial/debugging.md

    # その他のコード
    ```
    
    その場合、`myapp.py` 内の自動的に作成された変数 `__name__` は、値として `"__main__"` を持ちません。
    
    したがって、以下の行:
    
    ```Python
        uvicorn.run(app, host="0.0.0.0", port=8000)
    ```
    
    は実行されません。
    
    /// info | 情報
    
    より詳しい情報は、[公式Pythonドキュメント](https://docs.python.org/3/library/__main__.html)を参照してください。
    
    ///
    
    ## デバッガーでコードを実行 { #run-your-code-with-your-debugger }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:07:17 GMT 2026
    - 3.1K bytes
    - Click Count (0)
  2. docs/pt/docs/how-to/separate-openapi-schemas.md

    Nesse caso, você pode desativar esse recurso no **FastAPI**, com o parâmetro `separate_input_output_schemas=False`.
    
    /// info | Informação
    
    O suporte para `separate_input_output_schemas` foi adicionado no FastAPI `0.102.0`. 🤓
    
    ///
    
    {* ../../docs_src/separate_openapi_schemas/tutorial002_py310.py hl[10] *}
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Tue Jan 20 20:40:17 GMT 2026
    - 4.8K bytes
    - Click Count (0)
  3. docs/uk/docs/tutorial/cors.md

    Будь-які запити із заголовком `Origin`. У цьому випадку проміжне програмне забезпечення пропустить запит як звичайний, але додасть відповідні CORS-заголовки у відповідь.
    
    ## Додаткова інформація { #more-info }
    
    Більше про <abbr title="Cross-Origin Resource Sharing - Обмін ресурсами між різними джерелами">CORS</abbr> можна дізнатися в [документації Mozilla про CORS](https://developer.mozilla.org/en-US/docs/Web/HTTP/CORS).
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:27:41 GMT 2026
    - 8.3K bytes
    - Click Count (0)
  4. docs/zh/docs/tutorial/dependencies/sub-dependencies.md

    * 同时,该函数还声明了类型是 `str` 的可选 cookie(`last_query`)
        * 用户未提供查询参数 `q` 时,则使用上次使用后保存在 cookie 中的查询
    
    ## 使用依赖项 { #use-the-dependency }
    
    接下来,就可以使用依赖项:
    
    {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[23] *}
    
    /// info | 信息
    
    注意,这里在*路径操作函数*中只声明了一个依赖项,即 `query_or_cookie_extractor` 。
    
    但 **FastAPI** 必须先处理 `query_extractor`,以便在调用 `query_or_cookie_extractor` 时使用 `query_extractor` 返回的结果。
    
    ///
    
    ```mermaid
    graph TB
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Feb 13 13:37:57 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  5. cmd/erasure-object-conditional_test.go

    		mustGetPutObjReader(t, bytes.NewReader([]byte("initial-value")),
    			int64(len("initial-value")), "", ""), ObjectOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    
    	// Get object info to capture the ETag
    	objInfo, err := obj.GetObjectInfo(ctx, bucket, object, ObjectOptions{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	existingETag := objInfo.ETag
    
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Oct 24 04:05:31 GMT 2025
    - 4.9K bytes
    - Click Count (0)
  6. cmd/ftp-server.go

    		PassivePorts:   portRange,
    		PublicIP:       publicIP,
    		ForceTLS:       forceTLS,
    	})
    	if err != nil {
    		logger.Fatal(err, "unable to initialize FTP server")
    	}
    
    	logger.Info(fmt.Sprintf("%s listening on %s", name, net.JoinHostPort(publicIP, strconv.Itoa(port))))
    
    	if err = ftpServer.ListenAndServe(); err != nil {
    		logger.Fatal(err, "unable to start FTP server")
    	}
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Fri Aug 29 02:39:48 GMT 2025
    - 5.2K bytes
    - Click Count (0)
  7. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/NoticeTask.java

            });
    
            // Find any source files with "@notice" annotated license header
            for (File sourceFile : sources.getFiles()) {
                boolean isPackageInfo = sourceFile.getName().equals("package-info.java");
                boolean foundNotice = false;
                boolean inNotice = false;
                StringBuilder header = new StringBuilder();
                String packageDeclaration = null;
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Tue Jun 01 09:19:30 GMT 2021
    - 6.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/suggest/index/operations/WordManagementOperations.java

         * @param index The index name
         * @return The SuggestIndexResponse
         */
        public SuggestIndexResponse restoreElevateWord(final String index) {
            if (logger.isInfoEnabled()) {
                logger.info("Restoring elevate words: index={}", index);
            }
            final long start = System.currentTimeMillis();
            int numberOfSuggestDocs = 0;
            int numberOfInputDocs = 0;
    
    Created: Fri Apr 17 09:08:13 GMT 2026
    - Last Modified: Sun Feb 01 12:48:24 GMT 2026
    - 6.4K bytes
    - Click Count (0)
  9. src/main/java/jcifs/internal/fscc/FileBothDirectoryInfo.java

        private int eaSize;
        private String shortName;
        private String filename;
        private final Configuration config;
        private final boolean unicode;
    
        /**
         * Constructs a file both directory info.
         *
         * @param config the configuration
         * @param unicode whether to use unicode encoding
         */
        public FileBothDirectoryInfo(final Configuration config, final boolean unicode) {
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 6K bytes
    - Click Count (0)
  10. docs/fr/docs/tutorial/dependencies/sub-dependencies.md

    ## Utiliser la dépendance { #use-the-dependency }
    
    Nous pouvons ensuite utiliser la dépendance avec :
    
    {* ../../docs_src/dependencies/tutorial005_an_py310.py hl[23] *}
    
    /// info
    
    Notez que nous ne déclarons qu'une seule dépendance dans la *fonction de chemin d'accès*, `query_or_cookie_extractor`.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sat Feb 14 08:12:41 GMT 2026
    - 4.2K bytes
    - Click Count (0)
Back to Top