Search Options

Results per page
Sort
Preferred Languages
Advance

Results 331 - 340 of 361 for implementationsOf (0.14 sec)

  1. docs/recipes.md

    ### Handling authentication ([.kt][AuthenticateKotlin], [.java][AuthenticateJava])
    
    OkHttp can automatically retry unauthenticated requests. When a response is `401 Not Authorized`, an `Authenticator` is asked to supply credentials. Implementations should build a new request that includes the missing credentials. If no credentials are available, return null to skip the retry.
    
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Fri Feb 18 08:52:22 UTC 2022
    - 40.2K bytes
    - Viewed (0)
  2. src/archive/zip/reader.go

    		// are technically zero-byte files, must not have any associated file
    		// data. We previously tried failing here if f.CompressedSize64 != 0,
    		// but it turns out that a number of implementations (namely, the Java
    		// jar tool) don't properly set the storage method on directories
    		// resulting in a file with compressed size > 0 but uncompressed size ==
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Sat Aug 03 01:05:29 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  3. guava/src/com/google/common/io/BaseEncoding.java

        return new ByteSource() {
          @Override
          public InputStream openStream() throws IOException {
            return decodingStream(encodedSource.openStream());
          }
        };
      }
    
      // Implementations for encoding/decoding
    
      abstract int maxEncodedSize(int bytes);
    
      abstract void encodeTo(Appendable target, byte[] bytes, int off, int len) throws IOException;
    
      abstract int maxDecodedSize(int chars);
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:26:48 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Iterables.java

       * (that is, identical to {@link java.util.Arrays Arrays}{@code
       * .toString(Iterables.toArray(iterable))}). Note that for <i>most</i> implementations of {@link
       * Collection}, {@code collection.toString()} also gives the same result, but that behavior is not
       * generally guaranteed.
       */
      public static String toString(Iterable<?> iterable) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 42.8K bytes
    - Viewed (0)
  5. guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java

          }
        }
        return true;
      }
    
      /**
       * Checks all the properties that should always hold of a map. Also calls {@link
       * #assertMoreInvariants} to check invariants that are peculiar to specific implementations.
       *
       * @see #assertMoreInvariants
       * @param map the map to check.
       */
      protected final void assertInvariants(Map<K, V> map) {
        Set<K> keySet = map.keySet();
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 43.8K bytes
    - Viewed (0)
  6. RELEASE.md

          with `UpdateEmbeddingCallback` the behavior of the layer would be same as
          `keras.layers.Embedding`.
    *  `keras.optimizers.Adam`
        * Added the option to set adaptive epsilon to match implementations with Jax
          and PyTorch equivalents.
    
    ## Thanks to our Contributors
    
    This release contains contributions from many people at Google, as well as:
    
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Tue Oct 22 14:33:53 UTC 2024
    - 735.3K bytes
    - Viewed (0)
  7. src/cmd/asm/internal/asm/parse.go

    		p.errorf("expected g or R0 through R15; found %s", name)
    		return 0
    	}
    	return uint16(reg)
    }
    
    // Note: There are two changes in the expression handling here
    // compared to the old yacc/C implementations. Neither has
    // much practical consequence because the expressions we
    // see in assembly code are simple, but for the record:
    //
    // 1) Evaluation uses uint64; the old one used int64.
    Registered: Tue Nov 05 11:13:11 UTC 2024
    - Last Modified: Wed Sep 04 18:16:59 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            // it can be accessed by configuration processors.
            //
            cliRequest.request.setEventSpyDispatcher(eventSpyDispatcher);
    
            //
            // We expect at most 2 implementations to be available. The SettingsXmlConfigurationProcessor implementation
            // is always available in the core and likely always will be, but we may have another ConfigurationProcessor
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 76.8K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/MoreFiles.java

        String exceptionFile = noSuchFileException.getFile();
        if (exceptionFile == null) {
          /*
           * It's not clear whether this happens in practice, especially with the filesystem
           * implementations that are built into java.nio.
           */
          return null;
        }
        Path parentPath = getParentPath(path);
        if (parentPath == null) {
          /*
           * This is probably impossible:
           *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/MoreFiles.java

        String exceptionFile = noSuchFileException.getFile();
        if (exceptionFile == null) {
          /*
           * It's not clear whether this happens in practice, especially with the filesystem
           * implementations that are built into java.nio.
           */
          return null;
        }
        Path parentPath = getParentPath(path);
        if (parentPath == null) {
          /*
           * This is probably impossible:
           *
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
Back to top