Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 621 - 630 of 738 for extensive (0.09 seconds)

  1. src/test/java/jcifs/smb/SmbPipeHandleInternalTest.java

    import static org.mockito.Mockito.when;
    
    import org.junit.jupiter.api.BeforeEach;
    import org.junit.jupiter.api.DisplayName;
    import org.junit.jupiter.api.Test;
    import org.junit.jupiter.api.extension.ExtendWith;
    import org.mockito.ArgumentCaptor;
    import org.mockito.Mock;
    import org.mockito.junit.jupiter.MockitoExtension;
    
    import jcifs.CIFSException;
    import jcifs.Configuration;
    import jcifs.SmbConstants;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 16.7K bytes
    - Click Count (0)
  2. docs/es/docs/tutorial/first-steps.md

    ```console
    $ fastapi dev main.py
    ```
    
    Pero tendrías que recordar pasar el path correcto cada vez que llames al comando `fastapi`.
    
    Además, otras herramientas podrían no ser capaces de encontrarlo, por ejemplo la [Extensión de VS Code](../editor-support.md) o [FastAPI Cloud](https://fastapicloud.com), así que se recomienda usar el `entrypoint` en `pyproject.toml`.
    
    ### Despliega tu app (opcional) { #deploy-your-app-optional }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 13.9K bytes
    - Click Count (0)
  3. docs/fr/docs/tutorial/first-steps.md

    $ fastapi dev main.py
    ```
    
    Mais vous devrez vous souvenir de passer le chemin correct à chaque exécution de la commande `fastapi`.
    
    De plus, d’autres outils pourraient ne pas être capables de le trouver, par exemple l’[Extension VS Code](../editor-support.md) ou [FastAPI Cloud](https://fastapicloud.com), il est donc recommandé d’utiliser le `entrypoint` dans `pyproject.toml`.
    
    ### Déployer votre application (optionnel) { #deploy-your-app-optional }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:37:13 GMT 2026
    - 15.1K bytes
    - Click Count (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/InterceptorTest.kt

    import okio.ForwardingSource
    import okio.GzipSink
    import okio.Sink
    import okio.Source
    import okio.buffer
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.extension.RegisterExtension
    
    @Tag("Slow")
    class InterceptorTest {
      @RegisterExtension
      val clientTestRule = OkHttpClientTestRule()
    
      @StartStop
      private val server = MockWebServer()
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Nov 04 16:11:23 GMT 2025
    - 28.2K bytes
    - Click Count (0)
  5. docs/zh-hant/docs/deployment/https.md

    接著瀏覽器會連線到該 IP 的 **443 埠**(HTTPS 預設埠)。
    
    通訊的第一部分是建立用戶端與伺服器之間的連線,並協商要使用哪些金鑰等密碼參數。
    
    <img src="/img/deployment/https/https02.drawio.svg">
    
    用戶端與伺服器為建立 TLS 連線而進行的這段互動稱為 **TLS 握手**。
    
    ### 帶 SNI 擴充的 TLS { #tls-with-sni-extension }
    
    在特定的**IP 位址**與特定**埠**上,同一時間**只能有一個行程**在監聽。可以在同一個 IP 上監聽不同埠,但每個 IP 與埠的組合只能有一個行程。
    
    TLS(HTTPS)預設使用 `443` 埠,因此我們需要用到這個埠。
    
    由於只能有一個行程監聽該埠,負責監聽的會是 **TLS 終止代理**。
    
    TLS 終止代理會存取一張或多張 **TLS 憑證**(HTTPS 憑證)。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 11.8K bytes
    - Click Count (0)
  6. api/go1.19.txt

    pkg crypto/x509, method (*RevocationList) CheckSignatureFrom(*Certificate) error #50674
    pkg crypto/x509, type RevocationList struct, AuthorityKeyId []uint8 #50674
    pkg crypto/x509, type RevocationList struct, Extensions []pkix.Extension #50674
    pkg crypto/x509, type RevocationList struct, Issuer pkix.Name #50674
    pkg crypto/x509, type RevocationList struct, Raw []uint8 #50674
    pkg crypto/x509, type RevocationList struct, RawIssuer []uint8 #50674
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Fri Dec 02 16:29:41 GMT 2022
    - 17.9K bytes
    - Click Count (0)
  7. src/main/resources/fess_config.properties

    app.log.sensitive.property.pattern=.*password.*|.*secret.*|.*key.*|.*token.*|.*credential.*|.*auth.*|.*private.*
    
    # Extension names for application customization.
    app.extension.names=
    
    # Audit log format.
    app.audit.log.format=
    
    # Script audit log settings.
    script.audit.log.enabled=true
    script.audit.log.max.length=100
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 06:59:19 GMT 2026
    - 59.3K bytes
    - Click Count (0)
  8. mockwebserver-deprecated/src/test/java/okhttp3/mockwebserver/MockWebServerTest.kt

    import org.junit.jupiter.api.BeforeEach
    import org.junit.jupiter.api.Disabled
    import org.junit.jupiter.api.Tag
    import org.junit.jupiter.api.Test
    import org.junit.jupiter.api.Timeout
    import org.junit.jupiter.api.extension.RegisterExtension
    import org.junit.runner.Description
    import org.junit.runners.model.Statement
    
    @Suppress("deprecation")
    @Timeout(30)
    @Tag("Slow")
    class MockWebServerTest {
      @RegisterExtension
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Jul 03 13:16:34 GMT 2025
    - 22.3K bytes
    - Click Count (0)
  9. src/cmd/asm/internal/asm/testdata/riscv64validation.s

    	WORD	$-1				// ERROR "must be in range [0x0, 0xffffffff]"
    	WORD	$0x100000000			// ERROR "must be in range [0x0, 0xffffffff]"
    
    	//
    	// "C" Extension for Compressed Instructions, Version 2.0
    	//
    	CLWSP	20(X5), X10				// ERROR "rs2 must be SP/X2"
    	CLWSP	20(SP), X0				// ERROR "cannot use register X0"
    	CLWSP	20(SP), F10				// ERROR "expected integer register in rd position"
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Nov 13 12:17:37 GMT 2025
    - 42.1K bytes
    - Click Count (0)
  10. compat/maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/hibernate-orm/runtime/pom.xml
    quarkus/independent-projects/bootstrap/gradle-resolver/pom.xml
    	quarkus/independent-projects/bootstrap/app-model/pom.xml
    quarkus/integration-tests/test-extension/extension/runtime/pom.xml
    	quarkus/extensions/arc/runtime/pom.xml
    	quarkus/extensions/undertow/runtime/pom.xml
    	quarkus/extensions/jaxb/runtime/pom.xml
    	quarkus/core/runtime/pom.xml
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 224K bytes
    - Click Count (0)
Back to Top