Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 121 for 300x (0.35 sec)

  1. okhttp/src/test/java/okhttp3/CertificatePinnerKotlinTest.kt

            .serialNumber(200L)
            .build()
        internal var certB1Sha256Pin = CertificatePinner.pin(certB1.certificate)
    
        private var certC1 =
          HeldCertificate.Builder()
            .serialNumber(300L)
            .build()
        internal var certC1Sha256Pin = CertificatePinner.pin(certC1.certificate)
        var certC1Sha1Pin = "sha1/" + certC1.certificate.sha1Hash().base64()
      }
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 8.1K bytes
    - Viewed (0)
  2. guava-tests/benchmark/com/google/common/base/CharMatcherBenchmark.java

                27880, 21205, 3007, 960, 2350, 21270, 23433, 1591, 2368, 29305, 20301, 20320, 12490,
                39064, 32463, 21147, 31034, 51648, 20135, 21033, 23601, 24687, 38382, 19977, 37117,
                24335, 44032, 951, 4308, 2354, 21153, 3655, 21516, 12509, 269, 21271, 7841, 8364, 9733,
                25237, 31449, 12480, 20204, 2980, 38291, 20445, 1502, 21496, 51032, 3009, 49828, 20803,
    Java
    - Registered: Fri Apr 19 12:43:09 GMT 2024
    - Last Modified: Mon Oct 10 19:45:10 GMT 2022
    - 194.8K bytes
    - Viewed (0)
  3. okhttp-testing-support/src/main/kotlin/okhttp3/TestUtilJvm.kt

       * Make assertions about the suppressed exceptions on this. Prefer this over making direct calls
       * so tests pass on GraalVM, where suppressed exceptions are silently discarded.
       *
       * https://github.com/oracle/graal/issues/3008
       */
      @JvmStatic
      fun Throwable.assertSuppressed(block: (List<@JvmSuppressWildcards Throwable>) -> Unit) {
        if (isGraalVmImage) return
        block(suppressed.toList())
      }
    
      @JvmStatic
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/main/webapp/css/admin/plugins/timepicker/bootstrap-timepicker.min.css

    #fff}.bootstrap-timepicker-widget a.btn,.bootstrap-timepicker-widget input{border-radius:4px}.bootstrap-timepicker-widget table{width:100%;margin:0}.bootstrap-timepicker-widget table td{text-align:center;height:30px;margin:0;padding:2px}.bootstrap-timepicker-widget table td:not(.separator){min-width:30px}.bootstrap-timepicker-widget table td span{width:100%}.bootstrap-timepicker-widget table td a{border:1px transparent solid;width:100%;display:inline-block;margin:0;padding:8px 0;outline:0;color:#333}.bo...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 3K bytes
    - Viewed (0)
  5. okhttp/src/test/resources/okhttp3/internal/idn/rfc3454.D.2.txt

       210A-2113
       2115
       2119-211D
       2124
       2126
       2128
       212A-212D
       212F-2131
       2133-2139
       213D-213F
       2145-2149
       2160-2183
       2336-237A
       2395
       249C-24E9
       3005-3007
       3021-3029
       3031-3035
       3038-303C
       3041-3096
       309D-309F
       30A1-30FA
       30FC-30FF
       3105-312C
       3131-318E
       3190-31B7
       31F0-321C
       3220-3243
       3260-327B
    Plain Text
    - Registered: Fri Mar 29 11:42:11 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 4.3K bytes
    - Viewed (0)
  6. src/main/java/jcifs/config/BaseConfiguration.java

        protected int netbiosSocketTimeout = 5000;
        protected int netbiosSendBufferSize = 576;
        protected int netbiosRevcBufferSize = 576;
        protected int netbiosRetryCount = 2;
        protected int netbiosRetryTimeout = 3000;
        protected String netbiosScope;
        protected int netbiosLocalPort = 0;
        protected InetAddress netbiosLocalAddress;
        protected String lmhostsFilename;
        protected InetAddress[] winsServer = new InetAddress[0];
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Thu Jan 05 13:06:39 GMT 2023
    - 20.4K bytes
    - Viewed (1)
  7. docs_src/nosql_databases/tutorial001.py

            "couchbase://couchbasehost:8091?fetch_mutation_tokens=1&operation_timeout=30&n1ql_timeout=300"
        )
        authenticator = PasswordAuthenticator("username", "password")
        cluster.authenticate(authenticator)
        bucket: Bucket = cluster.open_bucket("bucket_name", lockmode=LOCKMODE_WAIT)
        bucket.timeout = 30
        bucket.n1ql_timeout = 300
        return bucket
    
    
    class User(BaseModel):
        username: str
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat May 14 11:59:59 GMT 2022
    - 1.3K bytes
    - Viewed (0)
  8. src/main/webapp/css/admin/plugins/daterangepicker/daterangepicker.css

      border-bottom-color:...
    CSS
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 13 04:21:06 GMT 2020
    - 7.9K bytes
    - Viewed (0)
  9. src/main/webapp/js/help.js

          contextPath = $("#contextPath").val();
    
      $("#searchForm").on("submit", function(e) {
        $searchButton.attr("disabled", true);
        setTimeout(function() {
          $searchButton.attr("disabled", false);
        }, 3000);
        return true;
      });
    
      $(document).on("click touchend", function(e) {
        if (!$(e.target).closest("#searchOptions, [data-toggle='control-options']").length) {
          $("#searchOptions").removeClass("active");
    JavaScript
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Mar 30 05:45:24 GMT 2023
    - 2K bytes
    - Viewed (0)
  10. cmd/apierrorcode_string.go

    2097, 2116, 2132, 2151, 2172, 2186, 2198, 2211, 2230, 2249, 2259, 2274, 2310, 2341, 2374, 2403, 2415, 2435, 2459, 2483, 2504, 2528, 2547, 2568, 2585, 2595, 2618, 2640, 2666, 2687, 2705, 2732, 2763, 2790, 2811, 2832, 2856, 2881, 2909, 2937, 2953, 2976, 3006, 3017, 3029, 3046, 3061, 3079, 3108, 3125, 3141, 3157, 3175, 3193, 3216, 3237, 3260, 3271, 3287, 3310, 3327, 3355, 3374, 3404, 3424, 3452, 3467, 3485, 3500, 3514, 3549, 3568, 3579, 3592, 3607, 3630, 3656, 3672, 3690, 3708, 3722, 3739, 3770, 3790, 3811,...
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
Back to top