Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for javascript (0.18 sec)

  1. mockwebserver/src/test/java/mockwebserver3/internal/http2/Http2Server.kt

          file.name.endsWith(".html") -> "text/html"
          file.name.endsWith(".jpeg") -> "image/jpeg"
          file.name.endsWith(".jpg") -> "image/jpeg"
          file.name.endsWith(".js") -> "application/javascript"
          file.name.endsWith(".png") -> "image/png"
          else -> "text/plain"
        }
      }
    
      companion object {
        val logger: Logger = Logger.getLogger(Http2Server::class.java.name)
    
        @JvmStatic
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 6.1K bytes
    - Viewed (0)
  2. okhttp/src/test/resources/web-platform-test-urltestdata.txt

    ftps:/example.com/  s:ftps p:/example.com/
    gopher:/example.com/  s:gopher h:example.com p:/
    ws:/example.com/  s:ws h:example.com p:/
    wss:/example.com/  s:wss h:example.com p:/
    data:/example.com/  s:data p:/example.com/
    javascript:/example.com/  s:javascript p:/example.com/
    mailto:/example.com/  s:mailto p:/example.com/
    http:example.com/  s:http h:example.org p:/foo/example.com/
    ftp:example.com/  s:ftp h:example.com p:/
    https:example.com/  s:https h:example.com p:/
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 14.3K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/WebPlatformUrlTestData.kt

     *
     * Each test is a line of the file `urltestdata.txt`. The format is informally specified by its
     * JavaScript parser `urltestparser.js` with which this class attempts to be compatible.
     *
     * Each line of the `urltestdata.txt` file specifies a test. Lines look like this:
     *
     * ```
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 3.7K bytes
    - Viewed (0)
  4. kotlin-js-store/yarn.lock

        ajv-keywords "^3.5.2"
    
    serialize-javascript@6.0.0:
      version "6.0.0"
      resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-6.0.0.tgz#efae5d88f45d7924141da8b5c3a7a7e663fefeb8"
      integrity sha512-Qr3TosvguFt8ePWqsvRfrKyQXIiW+nGbYpy8XK24NQHE83caxWt+mIymTT19DGFbNWNLfEwsrkSmN64lVWB9ag==
      dependencies:
        randombytes "^2.1.0"
    
    serialize-javascript@^6.0.1:
      version "6.0.1"
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jul 22 12:28:51 GMT 2023
    - 87.4K bytes
    - Viewed (0)
  5. CHANGELOG.md

    ```
    OkHttpClient client = new OkHttpClient.Builder()
        .fastFallback(true)
        .build();
    ```
    
     *  New: Change the build from Kotlin-JVM to Kotlin-multiplatform (which includes JVM). Both
        native and JavaScript platforms are unstable preview releases and subject to
        backwards-incompatible changes in forthcoming releases.
     *  Fix: Don't crash loading the public suffix database resource in obfuscated builds.
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 18 01:31:39 GMT 2024
    - 21.4K bytes
    - Viewed (0)
Back to top