Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 72 for code (0.16 sec)

  1. docs/screenshots/erasure-code.png

    erasure-code.png...
    PNG Image
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Feb 21 04:12:21 GMT 2017
    - 220.7K bytes
    - Viewed (0)
  2. docs/screenshots/erasure-code.jpg

    erasure-code.jpg...
    JPEG Image
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Jun 29 16:10:47 GMT 2017
    - 105.7K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       * computed on demand using {@code function}. To get an immutable <i>copy</i> instead, use {@link
       * #toMap(Iterable, Function)}.
       *
       * <p>Specifically, for each {@code k} in the backing set, the returned map has an entry mapping
       * {@code k} to {@code function.apply(k)}. The {@code keySet}, {@code values}, and {@code
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * </code></td><td width="20%"><code>
     *  ../.././.././../foo/
     * </code></td><td><code>
     *  smb1://host/foo/
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://host/share/zig/zag
     * </code></td><td width="20%"><code>
     *  /
     * </code></td><td><code>
     *  smb1://host/
     * </code></td></tr>
     * 
     * <tr><td width="20%"><code>
     *  smb1://server/
     * </code></td><td width="20%"><code>
     *  ../
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
  5. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

         * in which {@code Cursor} is {@code Closeable}. To support older versions, pass a wrapper
         * {@code Closeable} with a method reference like {@code cursor::close}.
         *
         * <p>Note that this method is still binary-compatible between flavors because the erasure of
         * its parameter type is {@code Object}, not {@code AutoCloseable} or {@code Closeable}.
         *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 98.5K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    An optional prefix sets a non-decimal base: <code>0b</code> or <code>0B</code>
    for binary, <code>0</code>, <code>0o</code>, or <code>0O</code> for octal,
    and <code>0x</code> or <code>0X</code> for hexadecimal.
    A single <code>0</code> is considered a decimal zero.
    In hexadecimal literals, letters <code>a</code> through <code>f</code>
    and <code>A</code> through <code>F</code> represent values 10 through 15.
    </p>
    
    <p>
    HTML
    - Registered: Tue Apr 23 11:13:09 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. api/maven-api-model/src/main/mdo/maven.mdo

            setExcludeDefaults(String.valueOf(excludeDefaults));
        }
    
        /**
         * Reset the <code>reportPluginMap</code> field to <code>null</code>
         */
        @Deprecated
        public void flushReportPluginMap() {
        }
    
        /**
         * @return a Map of plugins field with <code>ReportPlugin#getKey()</code> as key
         * @see org.apache.maven.model.ReportPlugin#getKey()
         */
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

      internal class LegacyRedirectInterceptor : Interceptor {
        override fun intercept(chain: Interceptor.Chain): Response {
          val response = chain.proceed(chain.request())
          val code = response.code
          if (code != HTTP_TEMP_REDIRECT && code != HTTP_PERM_REDIRECT) return response
          val method = response.request.method
          if (method == "GET" || method == "HEAD") return response
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sat Jan 20 10:30:28 GMT 2024
    - 131.7K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/CacheTest.kt

            .code(finalResponseCode)
            .body("ABCDE")
            .addInformationalResponse(MockResponse(initialResponseCode))
        server.enqueue(builder.build())
        server.start()
        val request =
          Request.Builder()
            .url(server.url("/"))
            .build()
        val response = client.newCall(request).execute()
        assertThat(response.code).isEqualTo(finalResponseCode)
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 108.6K bytes
    - Viewed (0)
  10. fastapi/routing.py

            # normalize enums e.g. http.HTTPStatus
            if isinstance(status_code, IntEnum):
                status_code = int(status_code)
            self.status_code = status_code
            if self.response_model:
                assert is_body_allowed_for_status_code(
                    status_code
                ), f"Status code {status_code} must not have a response body"
                response_name = "Response_" + self.unique_id
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
Back to top