Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for isCi (0.04 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. container-tests/build.gradle.kts

    val platform = project.platform
    val testJavaVersion = project.testJavaVersion
    
    tasks.withType<Test> {
      useJUnitPlatform()
      val isCi = providers.environmentVariable("CI")
      val containerTests = providers.gradleProperty("containerTests")
      onlyIf("By default not in CI") {
        !isCi.isPresent
          || (containerTests.isPresent && containerTests.get().toBoolean())
      }
    
      jvmArgs(
        "-Dokhttp.platform=$platform",
      )
    
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Thu Feb 05 09:17:33 GMT 2026
    - 1.3K bytes
    - Click Count (1)
  2. src/test/java/jcifs/smb/SmbFileIntegrationTest.java

                // Check if we're in CI environment (GitHub Actions specifically)
                String ci = System.getenv("CI");
                String githubActions = System.getenv("GITHUB_ACTIONS");
                boolean isCI = "true".equals(ci) || "true".equals(githubActions);
    
                // First, check if docker command is available
                ProcessBuilder pb = new ProcessBuilder("docker", "--version");
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 30 05:58:03 GMT 2025
    - 56K bytes
    - Click Count (0)
  3. docs/en/data/translators.yml

      url: https://github.com/kwang1215
    k94-ishi:
      login: k94-ishi
      count: 4
      avatarUrl: https://avatars.githubusercontent.com/u/32672580?u=bc7c5c07af0656be9fe4f1784a444af8d81ded89&v=4
      url: https://github.com/k94-ishi
    Mohammad222PR:
      login: Mohammad222PR
      count: 4
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Wed Apr 01 07:31:54 GMT 2026
    - 19.6K bytes
    - Click Count (0)
  4. docs/tr/docs/async.md

    Bunun yerine "asenkron" bir sistem olarak, görev bittiğinde, bilgisayarın / programın o sırada yaptığı işi bitirmesi için biraz (birkaç mikrosaniye) sırada bekleyebilir ve sonra sonuçları almak üzere geri dönüp onlarla çalışmaya devam edebilir.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 23.7K bytes
    - Click Count (0)
  5. docs/tr/docs/deployment/concepts.md

    ### Startup'ta Çalıştırmak için Örnek Araçlar { #example-tools-to-run-at-startup }
    
    Bu işi yapabilen araçlara örnekler:
    
    * Docker
    * Kubernetes
    * Docker Compose
    * Docker in Swarm Mode
    * Systemd
    * Supervisor
    * Bir cloud provider tarafından servislerinin parçası olarak içeride yönetilmesi
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 19.2K bytes
    - Click Count (0)
  6. docs/tr/docs/how-to/migrate-from-pydantic-v1-to-pydantic-v2.md

    {* ../../docs_src/pydantic_v1_in_v2/tutorial004_an_py310.py hl[4,18] *}
    
    ### Adım Adım Geçiş { #migrate-in-steps }
    
    /// tip | İpucu
    
    Önce `bump-pydantic` ile deneyin; testleriniz geçerse ve bu yol çalışırsa tek komutla işi bitirmiş olursunuz. ✨
    
    ///
    
    `bump-pydantic` sizin senaryonuz için uygun değilse, aynı uygulamada hem Pydantic v1 hem de v2 modellerini birlikte kullanma desteğinden yararlanarak Pydantic v2'ye kademeli şekilde geçebilirsiniz.
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 6K bytes
    - Click Count (0)
  7. docs/tr/docs/deployment/https.md

    * HAProxy
    
    ## Let's Encrypt { #lets-encrypt }
    
    Let's Encrypt’ten önce bu **HTTPS sertifikaları**, güvenilen üçüncü taraflar tarafından satılırdı.
    
    Bu sertifikalardan birini temin etme süreci zahmetliydi, epey evrak işi gerektirirdi ve sertifikalar oldukça pahalıydı.
    
    Sonra **[Let's Encrypt](https://letsencrypt.org/)** ortaya çıktı.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 07:53:17 GMT 2026
    - 14.8K bytes
    - Click Count (0)
  8. docs/en/docs/release-notes.md

    * 🌐 Add Japanese translation for `docs/ja/docs/virtual-environments.md`. PR [#13304](https://github.com/fastapi/fastapi/pull/13304) by [@k94-ishi](https://github.com/k94-ishi).
    * 🌐 Add Korean translation for `docs/ko/docs/tutorial/security/oauth2-jwt.md`. PR [#13333](https://github.com/fastapi/fastapi/pull/13333) by [@yes0ng](https://github.com/yes0ng).
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Apr 03 12:07:04 GMT 2026
    - 631K bytes
    - Click Count (0)
Back to Top