Search Options

Results per page
Sort
Preferred Languages
Advance

Results 791 - 800 of 1,085 for nine (0.02 sec)

  1. fess-crawler/src/main/java/org/codelibs/fess/crawler/extractor/impl/EmlExtractor.java

                putValue(data, "Encoding", message.getEncoding());
                putValue(data, "File-Name", message.getFileName());
                putValue(data, "From", message.getFrom());
                putValue(data, "Line-Count", message.getLineCount());
                putValue(data, "Message-ID", message.getMessageID());
                putValue(data, "Message-Number", message.getMessageNumber());
    Registered: Sun Nov 10 03:50:12 UTC 2024
    - Last Modified: Thu Feb 22 01:47:32 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/core/v1/generated.proto

      // that are not part of the Kubernetes system.
      // +optional
      repeated string externalIPs = 5;
    
      // Supports "ClientIP" and "None". Used to maintain session affinity.
      // Enable client IP based session affinity.
      // Must be ClientIP or None.
      // Defaults to None.
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#virtual-ips-and-service-proxies
      // +optional
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  3. src/main/resources/fess_label_en.properties

    labels.crawler_title_edit=General Configuration
    labels.schedule=Schedule
    labels.enabled=Enabled
    labels.day_for_cleanup=Remove Documents Before
    labels.day=Day(s)
    labels.crawl_button_update=Update
    labels.none=None
    labels.crawling_thread_count=Simultaneous Crawler Config
    labels.incremental_crawling=Check Last Modified
    labels.search_log_enabled=Search Logging
    labels.user_info_enabled=User Logging
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Fri Mar 22 11:58:34 UTC 2024
    - 40.7K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/primitives/CharsTest.java

      }
    
      public void testToArray() {
        // need explicit type parameter to avoid javac warning!?
        List<Character> none = Arrays.<Character>asList();
        assertThat(Chars.toArray(none)).isEqualTo(EMPTY);
    
        List<Character> one = Arrays.asList((char) 1);
        assertThat(Chars.toArray(one)).isEqualTo(ARRAY1);
    
        char[] array = {(char) 0, (char) 1, 'A'};
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 02:56:12 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/io/MoreFilesTest.java

                  // if a file already exists, that's fine... just continue
                }
    
                try {
                  method.delete(dirToDelete);
                } catch (FileSystemException expected) {
                  // the delete method may or may not throw an exception, but if it does that's fine
                  // and expected
                }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 17 02:42:09 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  6. docs/en/docs/virtual-environments.md

    ```
    
    </div>
    
    ////
    
    /// tip
    
    Every time you install a **new package** in that environment, **activate** the environment again.
    
    This makes sure that if you use a **terminal (<abbr title="command line interface">CLI</abbr>) program** installed by that package, you use the one from your virtual environment and not any other that could be installed globally, probably with a different version than what you need.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sat Aug 24 03:16:23 UTC 2024
    - 21.7K bytes
    - Viewed (0)
  7. docs/pt/docs/tutorial/request-files.md

    Isso não é uma limitação do **FastAPI**, é parte do protocolo HTTP.
    
    ///
    
    ## Upload de Arquivo Opcional
    
    Você pode tornar um arquivo opcional usando anotações de tipo padrão e definindo um valor padrão de `None`:
    
    {* ../../docs_src/request_files/tutorial001_02_an_py310.py hl[9,17] *}
    
    ## `UploadFile` com Metadados Adicionais
    
    Você também pode usar `File()` com `UploadFile`, por exemplo, para definir metadados adicionais:
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 30 19:52:32 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. docs/fr/docs/deployment/docker.md

    from fastapi import FastAPI
    
    app = FastAPI()
    
    
    @app.get("/")
    def read_root():
        return {"Hello": "World"}
    
    
    @app.get("/items/{item_id}")
    def read_item(item_id: int, q: Optional[str] = None):
        return {"item_id": item_id, "q": q}
    ```
    
    * Vous devriez maintenant avoir une structure de répertoire telle que :
    
    ```
    .
    ├── app
    │   └── main.py
    └── Dockerfile
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  9. docs/zh/docs/advanced/additional-responses.md

    ```
    
    /// note
    
    - 请注意,您必须直接使用 `FileResponse` 返回图像。
    
    ///
    
    /// info
    
    - 除非在 `responses` 参数中明确指定不同的媒体类型,否则**FastAPI**将假定响应与主响应类具有相同的媒体类型(默认为` application/json` )。
    - 但是如果您指定了一个自定义响应类,并将 `None `作为其媒体类型,**FastAPI**将使用 `application/json` 作为具有关联模型的任何其他响应。
    
    ///
    
    ## 组合信息
    您还可以联合接收来自多个位置的响应信息,包括 `response_model `、 `status_code` 和 `responses `参数。
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  10. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // For many clients the singular form of the resource will be more understandable to users reading messages and should be used when integrating the name of the resource into a sentence.
      // The command line tool kubectl, for example, allows use of the singular resource name in place of plurals.
      // The singular form of a resource should always be an optional element - when in doubt use the canonical resource name.
    Registered: Wed Nov 06 22:53:10 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top