Search Options

Results per page
Sort
Preferred Languages
Advance

Results 621 - 630 of 877 for command (0.04 sec)

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

    import java.util.regex.Pattern;
    
    import org.apache.commons.io.ByteOrderMark;
    import org.apache.commons.io.input.BOMInputStream;
    import org.apache.commons.text.translate.AggregateTranslator;
    import org.apache.commons.text.translate.CharSequenceTranslator;
    import org.apache.commons.text.translate.EntityArrays;
    import org.apache.commons.text.translate.LookupTranslator;
    import org.apache.commons.text.translate.NumericEntityUnescaper;
    Registered: Sun Sep 21 03:50:09 UTC 2025
    - Last Modified: Sun Jul 06 02:13:03 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  2. tests/delete_test.go

    		*GetUser("delete_slice_with_associations1", Config{Account: true, Pets: 4, Toys: 1, Company: true, Manager: true, Team: 1, Languages: 1, Friends: 4}),
    		*GetUser("delete_slice_with_associations2", Config{Account: true, Pets: 3, Toys: 2, Company: true, Manager: true, Team: 2, Languages: 2, Friends: 3}),
    		*GetUser("delete_slice_with_associations3", Config{Account: true, Pets: 2, Toys: 3, Company: true, Manager: true, Team: 3, Languages: 3, Friends: 2}),
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Mon Jul 21 02:46:58 UTC 2025
    - 9.5K bytes
    - Viewed (0)
  3. docs/em/docs/tutorial/dependencies/classes-as-dependencies.md

    <img src="/img/tutorial/dependencies/image02.png">
    
    ## ⌨
    
    βœ‹οΈ πŸ‘† πŸ‘€ πŸ‘ˆ πŸ‘₯ βœ”οΈ πŸ“Ÿ πŸ” πŸ“₯, ✍ `CommonQueryParams` πŸ•:
    
    ```Python
    commons: CommonQueryParams = Depends(CommonQueryParams)
    ```
    
    **FastAPI** 🚚 ⌨ πŸ‘« πŸ’Ό, πŸŒβ” πŸ”— *🎯* πŸŽ“ πŸ‘ˆ **FastAPI** πŸ”œ "πŸ€™" ✍ πŸ‘ πŸŽ“ ⚫️.
    
    πŸ“š 🎯 πŸ’Ό, πŸ‘† πŸ’ͺ πŸ“„:
    
    ↩️ ✍:
    
    ```Python
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  4. docs/pt/docs/deployment/server-workers.md

    Aqui mostrarei como usar o **Uvicorn** com **processos de trabalho** usando o comando `fastapi` ou o comando `uvicorn` diretamente.
    
    /// info | InformaΓ§Γ£o
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Thu Jan 09 20:41:07 UTC 2025
    - 8.5K bytes
    - Viewed (0)
  5. src/archive/zip/struct.go

    	Name string
    
    	// Comment is any arbitrary user-defined string shorter than 64KiB.
    	Comment string
    
    	// NonUTF8 indicates that Name and Comment are not encoded in UTF-8.
    	//
    	// By specification, the only other encoding permitted should be CP-437,
    	// but historically many ZIP readers interpret Name and Comment as whatever
    	// the system's local character encoding happens to be.
    	//
    Registered: Tue Sep 09 11:13:09 UTC 2025
    - Last Modified: Tue May 28 21:41:09 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  6. docs/resiliency/resiliency-initial-script.sh

    # This script will not and should not be executed in the self hosted runner
    
    echo "script failed" >resiliency-initial.log # assume initial state
    
    echo "sleep to wait for MinIO Server to be ready prior mc commands"
    # https://github.com/minio/mc/issues/3599
    
    MINIO_SERVER_URL="http://127.0.0.1:9000"
    ALIAS_NAME=myminio
    BUCKET="test-bucket"
    SRC_DIR="/tmp/data"
    INLINED_DIR="/tmp/inlined"
    DEST_DIR="/tmp/dest"
    
    TIMEOUT=10
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Sat Dec 21 04:24:45 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. docs/fr/docs/features.md

    Tout le framework **FastAPI** a Γ©tΓ© conΓ§u avec cela en tΓͺte. L'autocomplΓ©tion fonctionne partout.
    
    Vous devrez rarement revenir Γ  la documentation.
    
    Voici comment votre Γ©diteur peut vous aider:
    
    * dans <a href="https://code.visualstudio.com/" class="external-link" target="_blank">Visual Studio Code</a>:
    
    ![editor support](https://fastapi.tiangolo.com/img/vscode-completion.png)
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Tue Aug 06 04:48:30 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  8. docs/sts/web-identity.md

    ## Configuring OpenID Identity Provider on MinIO
    
    Configuration can be performed via MinIO's standard configuration API (i.e. using `mc admin config set/get` commands) or equivalently via environment variables. For brevity we show only environment variables here:
    
    ```
    $ mc admin config set myminio identity_openid --env
    KEY:
    identity_openid[:name]  enable OpenID SSO support
    
    ARGS:
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Tue Aug 12 18:20:36 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  9. README.md

    props.setProperty("jcifs.smb.client.useLeases", "true");
    
    Configuration config = new PropertyConfiguration(props);
    CIFSContext context = new BaseContext(config);
    ```
    
    ## Development
    
    ### Build Commands
    ```bash
    # Compile the source code
    mvn compile
    
    # Build JAR file
    mvn package
    
    # Clean and rebuild
    mvn clean compile
    
    # Install to local repository
    mvn install
    ```
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 09:24:52 UTC 2025
    - 6.2K bytes
    - Viewed (0)
  10. docs/ko/docs/tutorial/dependencies/classes-as-dependencies.md

    {* ../../docs_src/dependencies/tutorial002.py hl[19] *}
    
    **FastAPI**λŠ” `CommonQueryParams` 클래슀λ₯Ό ν˜ΈμΆœν•©λ‹ˆλ‹€. 이것은 ν•΄λ‹Ή 클래슀의 "μΈμŠ€ν„΄μŠ€"λ₯Ό μƒμ„±ν•˜κ³  κ·Έ μΈμŠ€ν„΄μŠ€λŠ” ν•¨μˆ˜μ˜ λ§€κ°œλ³€μˆ˜ `commons`둜 μ „λ‹¬λ©λ‹ˆλ‹€.
    
    ## νƒ€μž… νžŒνŒ… vs `Depends`
    
    μœ„ μ½”λ“œμ—μ„œ `CommonQueryParams`λ₯Ό 두 번 μž‘μ„±ν•œ 방식에 μ£Όλͺ©ν•˜μ‹­μ‹œμ˜€:
    
    ```Python
    commons: CommonQueryParams = Depends(CommonQueryParams)
    ```
    
    λ§ˆμ§€λ§‰ `CommonQueryParams` λ³€μˆ˜λ₯Ό 보면:
    
    ```Python
    ... = Depends(CommonQueryParams)
    ```
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 6.7K bytes
    - Viewed (0)
Back to top