Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 31 - 40 of 99 for stdlib (0.07 seconds)

  1. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/extension/ExternalModulesExtension.kt

        val jzlib = "com.jcraft:jzlib"
        val kotlinCompilerEmbeddable = futureKotlin("compiler-embeddable")
        val kotlinReflect = futureKotlin("reflect")
        val kotlinStdlib = futureKotlin("stdlib")
        val kotlinBuildToolsImpl = futureKotlin("build-tools-impl")
        val kotlinJvmAbiGenEmbeddable = "org.jetbrains.kotlin:jvm-abi-gen-embeddable"
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Dec 19 06:45:52 GMT 2025
    - 15.9K bytes
    - Click Count (0)
  2. CHANGELOG.md

     *  New: Drop the `tunnelProxy` argument in `MockWebServer.useHttps()`. This change only impacts
        the OkHttp 5.x API which uses the `mockwebserver3` package.
     *  Fix: Don't call `toDuration()` which isn't available in kotlin-stdlib 1.4.
    
    
    ## Version 5.0.0-alpha.8
    
    _2022-06-08_
    
     *  Fix: Change how `H2_PRIOR_KNOWLEDGE` works with HTTP proxies. Previously OkHttp assumed the
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Dec 05 16:02:59 GMT 2025
    - 36.2K bytes
    - Click Count (2)
  3. docs/changelogs/changelog_4x.md

        were triggered by OkHttp’s feature detection for TLS packages like `org.conscrypt`,
        `org.bouncycastle`, and `org.openjsse`.
     *  Upgrade: Explicitly depend on `kotlin-stdlib-jdk8`. This fixes a problem with dependency
        locking. That's a potential security vulnerability, tracked as [CVE-2022-24329].
     *  Upgrade: [publicsuffix.org data][public_suffix]. This powers `HttpUrl.topPrivateDomain()`.
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Wed Apr 17 13:25:31 GMT 2024
    - 25.2K bytes
    - Click Count (0)
  4. cmd/server-main.go

    			UseWriteTimeout(globalServerCtxt.IdleTimeout).
    			UseReadHeaderTimeout(globalServerCtxt.ReadHeaderTimeout).
    			UseBaseContext(GlobalContext).
    			UseCustomLogger(log.New(io.Discard, "", 0)). // Turn-off random logging by Go stdlib
    			UseTCPOptions(globalTCPOptions)
    
    		httpServer.TCPOptions.Trace = bootstrapTraceMsg
    		go func() {
    			serveFn, err := httpServer.Init(GlobalContext, func(listenAddr string, err error) {
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Tue May 27 15:18:36 GMT 2025
    - 35.9K bytes
    - Click Count (4)
  5. okhttp/src/jvmTest/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Q Misell <******@****.***>
    // Submitted by Matthias Merkel <******@****.***>
    musician.io
    novecore.site
    
    // Standard Library : https://stdlib.com
    // Submitted by Jacob Lee <jacob@stdlib.com>
    api.stdlib.com
    
    // stereosense GmbH : https://www.involve.me
    // Submitted by Florian Burmann <******@****.***>
    feedback.ac
    forms.ac
    assessments.cx
    calculators.cx
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Fri Dec 27 13:39:56 GMT 2024
    - 309.7K bytes
    - Click Count (1)
  6. okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list

    ap-southeast-1.elasticbeanstalk.com
    ap-southeast-2.elasticbeanstalk.com
    ap-southeast-3.elasticbeanstalk.com
    ap.gov.br
    ap.gov.pl
    ap.it
    ap.leg.br
    ap.ngrok.io
    aparecida.br
    apartments
    api.gov.uk
    api.stdlib.com
    apigee.io
    app
    app-ionos.space
    app.br
    app.os.fedoraproject.org
    app.os.stg.fedoraproject.org
    app.render.com
    appchizi.com
    appengine.flow.ch
    apple
    applinzi.com
    apps-1and1.com
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Tue May 27 22:00:49 GMT 2025
    - 129.6K bytes
    - Click Count (3)
  7. docs/ru/docs/tutorial/security/oauth2-jwt.md

    Таким образом, вор не сможет использовать этот пароль в другой системе (поскольку многие пользователи везде используют один и тот же пароль, это было бы опасно).
    
    ## Установка `pwdlib` { #install-pwdlib }
    
    pwdlib — это отличный пакет Python для работы с хэшами паролей.
    
    Он поддерживает множество безопасных алгоритмов хеширования и утилит для работы с ними.
    
    Рекомендуемый алгоритм — "Argon2".
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Tue Sep 30 11:24:39 GMT 2025
    - 19.1K bytes
    - Click Count (0)
  8. docs/pt/docs/tutorial/security/oauth2-jwt.md

    ## Instalar o `pwdlib` { #install-pwdlib }
    
    pwdlib é um excelente pacote Python para lidar com hashes de senhas.
    
    Ele suporta muitos algoritmos de hashing seguros e utilitários para trabalhar com eles.
    
    O algoritmo recomendado é o "Argon2".
    
    Certifique-se de criar um [ambiente virtual](../../virtual-environments.md){.internal-link target=_blank}, ativá-lo e então instalar o pwdlib com Argon2:
    
    <div class="termy">
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Nov 12 16:23:57 GMT 2025
    - 11.4K bytes
    - Click Count (0)
  9. docs/debugging/inspect/main.go

    	"github.com/klauspost/filepathx"
    )
    
    var (
    	keyHex      = flag.String("key", "", "decryption key")
    	privKeyPath = flag.String("private-key", "support_private.pem", "private key")
    	stdin       = flag.Bool("stdin", false, "expect 'mc support inspect' json output from stdin")
    	export      = flag.Bool("export", false, "export xl.meta")
    	djson       = flag.Bool("djson", false, "expect djson format for xl.meta")
    Created: Sun Dec 28 19:28:13 GMT 2025
    - Last Modified: Mon Feb 17 17:09:42 GMT 2025
    - 5.7K bytes
    - Click Count (0)
  10. docs/en/docs/tutorial/security/oauth2-jwt.md

    ## Install `pwdlib` { #install-pwdlib }
    
    pwdlib is a great Python package to handle password hashes.
    
    It supports many secure hashing algorithms and utilities to work with them.
    
    The recommended algorithm is "Argon2".
    
    Make sure you create a [virtual environment](../../virtual-environments.md){.internal-link target=_blank}, activate it, and then install pwdlib with Argon2:
    
    <div class="termy">
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Mon Sep 29 02:57:38 GMT 2025
    - 10.6K bytes
    - Click Count (0)
Back to Top