Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 151 - 160 of 262 for asgi (0.02 seconds)

  1. docs/tr/docs/advanced/wsgi.md

    # WSGI'yi Dahil Etme - Flask, Django ve Diğerleri { #including-wsgi-flask-django-others }
    
    WSGI uygulamalarını [Alt Uygulamalar - Mount Etme](sub-applications.md), [Bir Proxy Arkasında](behind-a-proxy.md) bölümlerinde gördüğünüz gibi mount edebilirsiniz.
    
    Bunun için `WSGIMiddleware`'ı kullanabilir ve bunu WSGI uygulamanızı (örneğin Flask, Django vb.) sarmalamak için kullanabilirsiniz.
    
    ## `WSGIMiddleware` Kullanımı { #using-wsgimiddleware }
    
    /// info
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 1.7K bytes
    - Click Count (0)
  2. docs/zh-hant/docs/advanced/wsgi.md

    # 包含 WSGI:Flask、Django 等 { #including-wsgi-flask-django-others }
    
    你可以像在 [子應用程式 - 掛載](sub-applications.md)、[在 Proxy 後方](behind-a-proxy.md) 中所見那樣掛載 WSGI 應用。
    
    為此,你可以使用 `WSGIMiddleware` 來包住你的 WSGI 應用,例如 Flask、Django 等。
    
    ## 使用 `WSGIMiddleware` { #using-wsgimiddleware }
    
    /// info
    
    這需要先安裝 `a2wsgi`,例如使用 `pip install a2wsgi`。
    
    ///
    
    你需要從 `a2wsgi` 匯入 `WSGIMiddleware`。
    
    然後用該 middleware 包住 WSGI(例如 Flask)應用。
    
    接著把它掛載到某個路徑下。
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 17:05:38 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  3. fastapi/middleware/wsgi.py

    from starlette.middleware.wsgi import (
        WSGIMiddleware as WSGIMiddleware,
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Feb 04 11:54:23 GMT 2026
    - 107 bytes
    - Click Count (0)
  4. okhttp-osgi-tests/src/test/kotlin/okhttp3/osgi/OsgiTest.kt

      fun setUp() {
        testResourceDir = "./build/resources/test/okhttp3/osgi".toPath()
        workspaceDir = testResourceDir / "workspace"
    
        // Ensure we start from scratch.
        fileSystem.deleteRecursively(workspaceDir)
        fileSystem.createDirectories(workspaceDir)
      }
    
      /**
       * Resolve the OSGi metadata of the all okhttp3 modules. If required modules do not have OSGi
       * metadata this will fail with an exception.
       */
      @Test
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Wed Mar 19 19:25:20 GMT 2025
    - 5K bytes
    - Click Count (0)
  5. okhttp-osgi-tests/build.gradle.kts

           has changed. That is the purpose of this normalization block.
       */
        ignore("okhttp3/osgi/workspace/cnf/repo/index.xml.gz")
        ignore("okhttp3/osgi/workspace/cnf/repo/index.xml.gz.sha")
      }
    }
    
    // Expose OSGi jars to the test environment.
    val osgiTestDeploy: Configuration by configurations.creating
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 2.5K bytes
    - Click Count (0)
  6. docs/tr/docs/_llm-test.md

    * <abbr title="XML Web Token">XWT</abbr>
    * <abbr title="Parallel Server Gateway Interface - Paralel Sunucu Gateway Interface">PSGI</abbr>
    
    ### abbr tam bir ifade ve bir açıklama verir { #the-abbr-gives-a-full-phrase-and-an-explanation }
    
    * <abbr title="Mozilla Developer Network - Mozilla Geliştirici Ağı: geliştiriciler için dokümantasyon, Firefox ekibi tarafından yazılmış">MDN</abbr>
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 11.1K bytes
    - Click Count (0)
  7. gradle/libs.versions.toml

    square-retrofit-converter-moshi = { module = "com.squareup.retrofit2:converter-moshi", version.ref = "square-retrofit" }
    eclipse-osgi = { module = "org.eclipse.platform:org.eclipse.osgi", version.ref = "eclipse-osgi" }
    hamcrest-library = { module = "org.hamcrest:hamcrest-library", version.ref = "hamcrest-library" }
    guava-jre = { module = "com.google.guava:guava", version.ref = "guava" }
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Mar 31 22:01:48 GMT 2026
    - 12K bytes
    - Click Count (0)
  8. pom.xml

    		<osgi-version-qualifier>${maven.build.timestamp}</osgi-version-qualifier>
    		<osgi.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}.${osgi-version-qualifier}</osgi.version>
    		<osgi.pkg.version>${parsedVersion.majorVersion}.${parsedVersion.minorVersion}.${parsedVersion.incrementalVersion}</osgi.pkg.version>
    	</properties>
    	<build>
    		<plugins>
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Mon Aug 25 14:34:10 GMT 2025
    - 12.1K bytes
    - Click Count (0)
  9. build-logic/src/main/kotlin/BndBuildAction.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    import aQute.bnd.gradle.BundleTaskExtension
    import aQute.bnd.osgi.Builder
    import aQute.bnd.osgi.Constants
    import aQute.bnd.osgi.Jar
    import aQute.bnd.osgi.Processor
    import aQute.bnd.version.MavenVersion
    import aQute.lib.io.IO
    import aQute.lib.utf8properties.UTF8Properties
    import java.io.File
    import java.util.Properties
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 8.9K bytes
    - Click Count (0)
  10. docs/es/docs/tutorial/security/first-steps.md

    ```
    
    </div>
    
    ## Revisa { #check-it }
    
    Ve a la documentación interactiva en: [http://127.0.0.1:8000/docs](http://127.0.0.1:8000/docs).
    
    Verás algo así:
    
    <img src="/img/tutorial/security/image01.png">
    
    /// check | ¡Botón de autorización!
    
    Ya tienes un nuevo y brillante botón de "Authorize".
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:15:55 GMT 2026
    - 8.8K bytes
    - Click Count (0)
Back to Top