Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 142 for postal (0.03 sec)

  1. src/main/java/org/codelibs/curl/Curl.java

        }
    
        /**
         * Creates a new CurlRequest with the HTTP POST method for the specified URL.
         *
         * @param url the URL to which the POST request will be sent
         * @return a new CurlRequest object configured with the POST method and the specified URL
         */
        public static CurlRequest post(final String url) {
            return new CurlRequest(Method.POST, url);
        }
    
        /**
    Registered: Thu Sep 04 15:34:10 UTC 2025
    - Last Modified: Sat Jul 05 01:38:18 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  2. okhttp/src/jvmTest/kotlin/okhttp3/DuplexTest.kt

      }
    
      @Test
      @Throws(IOException::class)
      fun http1DoesntSupportDuplex() {
        val call =
          client.newCall(
            Request
              .Builder()
              .url(server.url("/"))
              .post(AsyncRequestBody())
              .build(),
          )
        assertFailsWith<ProtocolException> {
          call.execute()
        }
      }
    
      @Test
      fun trueDuplexClientWritesFirst() {
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Jun 18 12:28:21 UTC 2025
    - 24.8K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/cache/CacheStats.java

     *             are incremented, and the total loading time, in nanoseconds, is added to {@code
     *             totalLoadTime}.
     *         <li>When an exception is thrown while loading an entry, {@code missCount} and {@code
     *             loadExceptionCount} are incremented, and the total loading time, in nanoseconds, is
     *             added to {@code totalLoadTime}.
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  4. src/main/java/jcifs/util/SimpleCircuitBreaker.java

         * Calculate success rate
         *
         * @return success rate (0.0 to 1.0)
         */
        private double getSuccessRate() {
            long total = totalCalls.get();
            if (total == 0) {
                return 1.0;
            }
            return (double) totalSuccesses.get() / total;
        }
    
        /**
         * Check if circuit breaker allows requests
         *
         * @return true if requests are allowed
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 11.3K bytes
    - Viewed (0)
  5. okhttp/src/androidMain/assets/PublicSuffixDatabase.list

    vaapste.no
    vacations
    vadso.no
    vadsø.no
    vaga.no
    vagan.no
    vagsoy.no
    vaksdal.no
    val-d-aosta.it
    val-daosta.it
    vald-aosta.it
    valdaosta.it
    valer.hedmark.no
    valer.ostfold.no
    valle-aosta.it
    valle-d-aosta.it
    valle-daosta.it
    valle.no
    valleaosta.it
    valled-aosta.it
    valledaosta.it
    vallee-aoste.it
    vallee-d-aoste.it
    valleeaoste.it
    valleedaoste.it
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Tue Dec 31 14:50:53 UTC 2024
    - 129.6K bytes
    - Viewed (2)
  6. android/guava/src/com/google/common/primitives/Shorts.java

       * c}}.
       *
       * @param arrays zero or more {@code short} arrays
       * @return a single array containing all the values from the source arrays, in order
       * @throws IllegalArgumentException if the total number of elements in {@code arrays} does not fit
       *     in an {@code int}
       */
      public static short[] concat(short[]... arrays) {
        long length = 0;
        for (short[] array : arrays) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  7. guava/src/com/google/common/primitives/Shorts.java

       * c}}.
       *
       * @param arrays zero or more {@code short} arrays
       * @return a single array containing all the values from the source arrays, in order
       * @throws IllegalArgumentException if the total number of elements in {@code arrays} does not fit
       *     in an {@code int}
       */
      public static short[] concat(short[]... arrays) {
        long length = 0;
        for (short[] array : arrays) {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.8K bytes
    - Viewed (0)
  8. src/test/java/jcifs/internal/fscc/FileFsSizeInformationTest.java

            @CsvSource({ "1048576, 524288, 8, 512, 4294967296, 2147483648", // 4GB total, 2GB free
                    "2097152, 1048576, 8, 512, 8589934592, 4294967296", // 8GB total, 4GB free
                    "134217728, 67108864, 8, 512, 549755813888, 274877906944", // 512GB total, 256GB free
                    "1, 1, 1, 1, 1, 1", // Minimal values
                    "0, 0, 1, 1, 0, 0" // Zero allocation units
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/entity/SearchRequestParams.java

         * Returns the similar document hash.
         *
         * @return The similar document hash.
         */
        public abstract String getSimilarDocHash();
    
        /**
         * Returns the track total hits.
         *
         * @return The track total hits.
         */
        public String getTrackTotalHits() {
            return null;
        }
    
        /**
         * Returns the min score.
         *
         * @return The min score.
         */
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 8K bytes
    - Viewed (0)
  10. src/test/java/jcifs/smb1/netbios/SocketInputStreamTest.java

        }
    
        /**
         * Concatenates multiple byte arrays into a single array.
         */
        private static byte[] concat(byte[]... arrays) {
            int total = 0;
            for (byte[] a : arrays) {
                total += a.length;
            }
            byte[] res = new byte[total];
            int off = 0;
            for (byte[] a : arrays) {
                System.arraycopy(a, 0, res, off, a.length);
                off += a.length;
            }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 14.2K bytes
    - Viewed (0)
Back to top