Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 73 for pwdlib (0.21 seconds)

  1. doc/README.md

    concatenated in sorted order by pathname. Files in the directory matching the
    glob "*stdlib/*minor" are treated specially. They should be in subdirectories
    corresponding to standard library package paths, and headings for those package
    paths will be generated automatically.
    
    Files in this repo's `api/next` directory must have corresponding files in
    `doc/next/*stdlib/*minor`.
    The files should be in the subdirectory for the package with the new
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Mon Jul 22 17:55:04 GMT 2024
    - 3.1K bytes
    - Click Count (0)
  2. .teamcity/test-buckets.json

            ],
            "parallelizationMethod": {
              "name": "TestDistributionAlpine"
            }
          },
          {
            "subprojects": [
              "build-init",
              "stdlib-java-extensions",
              "stdlib-kotlin-extensions",
              "test-kit",
              "test-suites-base",
              "testing-base",
              "testing-base-infrastructure",
              "testing-jvm-infrastructure",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 18:38:15 GMT 2026
    - 118.6K bytes
    - Click Count (0)
  3. docs/ko/docs/how-to/conditional-openapi.md

    API를 보호하고 싶다면, 예를 들어 다음과 같은 더 나은 방법들이 있습니다:
    
    * 요청 본문과 응답에 대해 잘 정의된 Pydantic 모델이 있는지 확인하세요.
    * 종속성을 사용하여 필요한 권한과 역할을 구성하세요.
    * 평문 비밀번호를 절대 저장하지 말고, 비밀번호 해시만 저장하세요.
    * pwdlib와 JWT 토큰 등과 같은 잘 알려진 암호화 도구들을 구현하고 사용하세요.
    * 필요한 곳에 OAuth2 범위를 사용하여 더 세분화된 권한 제어를 추가하세요.
    * ...등등.
    
    그럼에도 불구하고, 특정 환경(예: 프로덕션)에서 또는 환경 변수의 설정에 따라 API docs를 비활성화해야 하는 매우 특정한 사용 사례가 있을 수 있습니다.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Fri Mar 20 14:06:26 GMT 2026
    - 2.7K bytes
    - Click Count (0)
  4. okhttp/src/jvmMain/java9/module-info.java

    @SuppressWarnings("module")
    module okhttp3 {
      requires transitive kotlin.stdlib;
      requires transitive okio;
      requires java.logging;
      exports okhttp3;
      exports okhttp3.internal to okhttp3.logging, okhttp3.sse, okhttp3.java.net.cookiejar, okhttp3.dnsoverhttps, mockwebserver3, okhttp3.mockwebserver, mockwebserver3.junit5, okhttp3.coroutines, okhttp3.tls;
      exports okhttp3.internal.concurrent to mockwebserver3, okhttp3.mockwebserver;
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 992 bytes
    - Click Count (0)
  5. architecture/standards/0008-use-nullaway.md

          [`Cast.cast`](https://github.com/gradle/gradle/blob/674b8430b024f03cae24f1e4dd6dbaa78b557dae/platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java#L37)
          and
          [`Cast.castNullable`](https://github.com/gradle/gradle/blob/674b8430b024f03cae24f1e4dd6dbaa78b557dae/platforms/core-runtime/stdlib-java-extensions/src/main/java/org/gradle/internal/Cast.java#L62).
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 4K bytes
    - Click Count (0)
  6. okhttp-coroutines/build.gradle.kts

    )
    
    project.applyJavaModules("okhttp3.coroutines")
    
    dependencies {
      api(projects.okhttp)
      implementation(libs.kotlinx.coroutines.core)
      api(libs.square.okio)
      api(libs.kotlin.stdlib)
    
      testImplementation(libs.kotlin.test.annotations)
      testImplementation(libs.kotlin.test.common)
      testImplementation(libs.kotlin.test.junit)
      testApi(libs.assertk)
      testImplementation(projects.okhttpTestingSupport)
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 792 bytes
    - Click Count (0)
  7. okhttp-osgi-tests/build.gradle.kts

      from(osgiTestDeploy)
      into(layout.buildDirectory.dir("resources/test/okhttp3/osgi/deployments"))
    }
    
    dependencies {
      osgiTestDeploy(libs.eclipse.osgi)
      osgiTestDeploy(libs.kotlin.stdlib.osgi)
    }
    
    tasks.withType<Test> {
      dependsOn(copyOsgiTestDeployment)
      val javaVersion = project.testJavaVersion
      onlyIf("Tests require JDK 17") {
        javaVersion >= 17
      }
    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)
  8. build-logic/src/main/kotlin/okhttp.jvm-conventions.gradle.kts

          "-Xjvm-default=all",
          "-Xexpect-actual-classes",
        )
      }
    }
    
    extensions.configure<TapmocExtension> {
      // Fail the build if any api dependency exposes incompatible Kotlin metadata, Kotlin stdlib, or Java bytecode version.
      checkDependencies()
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Mon Feb 09 14:40:26 GMT 2026
    - 1.4K bytes
    - Click Count (0)
  9. module-tests/build.gradle.kts

      compress.set("zip-9")
      addModules.addAll("jdk.crypto.ec", "java.logging")
      vm.set("server")
    }
    
    extraJavaModuleInfo {
      module("com.squareup.okio:okio-jvm", "okio") {
        exportAllPackages()
        requires("kotlin.stdlib")
        requires("java.logging")
      }
      module("com.squareup.okio:okio", "okio") {
        exportAllPackages()
      }
    }
    
    // Exclude dokka from all configurations
    Created: Fri Apr 03 11:42:14 GMT 2026
    - Last Modified: Tue Feb 03 22:17:59 GMT 2026
    - 1.8K bytes
    - Click Count (0)
  10. .teamcity/subprojects.json

        "crossVersionTests": false
      },
      {
        "name": "stdlib-java-extensions",
        "path": "platforms/core-runtime/stdlib-java-extensions",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "stdlib-kotlin-extensions",
        "path": "platforms/core-configuration/stdlib-kotlin-extensions",
        "unitTests": true,
        "functionalTests": false,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 27 15:03:00 GMT 2026
    - 42K bytes
    - Click Count (0)
Back to Top