Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for 3841 (0.04 sec)

  1. guava-tests/test/com/google/common/hash/MessageDigestHashFunctionTest.java

              .put("sHa-1", Hashing.sha1()) // Not the official name, but still works
              .put("SHA-1", Hashing.sha1())
              .put("SHA-256", Hashing.sha256())
              .put("SHA-384", Hashing.sha384())
              .put("SHA-512", Hashing.sha512())
              .build();
    
      public void testHashing() {
        for (String stringToTest : INPUTS) {
          for (String algorithmToTest : ALGORITHMS.keySet()) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Jul 23 14:22:54 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  2. internal/config/identity/openid/jwks.go

    			return nil, errMalformedJWKECKey
    		}
    
    		var curve elliptic.Curve
    		switch key.Crv {
    		case "P-224":
    			curve = elliptic.P224()
    		case "P-256":
    			curve = elliptic.P256()
    		case "P-384":
    			curve = elliptic.P384()
    		case "P-521":
    			curve = elliptic.P521()
    		default:
    			return nil, fmt.Errorf("Unknown curve type: %s", key.Crv)
    		}
    
    		xbuf, err := base64.RawURLEncoding.DecodeString(key.X)
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Tue Apr 02 23:02:35 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  3. compat/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/DefaultArtifactCollectorTest.java

            a.addDependency("junit", "3.7");
            ArtifactSpec b = createArtifactSpec("junit", "3.8.1", Artifact.SCOPE_TEST);
    
            ArtifactResolutionResult res = collect(createSet(new Object[] {a.artifact, b.artifact}));
            assertEquals(createSet(new Object[] {a.artifact, b.artifact}), res.getArtifacts(), "Check artifact list");
            assertEquals("3.8.1", getArtifact("junit", res.getArtifacts()).getVersion(), "Check version");
            assertEquals(
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 42.5K bytes
    - Viewed (0)
  4. .github/workflows/codeql.yml

    # supported CodeQL languages.
    #
    name: "CodeQL"
    
    on:
      push:
        branches: [ "master" ]
      pull_request:
        branches: [ "master" ]
      schedule:
        - cron: '38 6 * * 1'
    
    jobs:
      analyze:
        name: Analyze (${{ matrix.language }})
        # Runner size impacts CodeQL analysis time. To learn more, please see:
        #   - https://gh.io/recommended-hardware-resources-for-running-codeql
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Wed Aug 14 23:51:19 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  5. src/test/resources/plugin/repo3/fess-crawler-parent/maven-metadata.xml

          <version>3.2.0</version>
          <version>3.2.1</version>
          <version>3.3.0</version>
          <version>3.3.1</version>
          <version>3.3.2</version>
          <version>3.4.0</version>
          <version>3.4.1</version>
          <version>3.4.2</version>
          <version>3.4.3</version>
          <version>3.4.4</version>
          <version>3.4.5</version>
          <version>3.5.0</version>
          <version>3.5.1</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. src/test/resources/plugin/repo3/fess-crawler/maven-metadata.xml

          <version>3.2.0</version>
          <version>3.2.1</version>
          <version>3.3.0</version>
          <version>3.3.1</version>
          <version>3.3.2</version>
          <version>3.4.0</version>
          <version>3.4.1</version>
          <version>3.4.2</version>
          <version>3.4.3</version>
          <version>3.4.4</version>
          <version>3.4.5</version>
          <version>3.5.0</version>
          <version>3.5.1</version>
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Jun 17 13:30:41 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/ws/WebSocketExtensions.kt

     *
     * See [RFC 7692, 7.1][rfc_7692] for details on negotiation process.
     *
     * [rfc_7692]: https://tools.ietf.org/html/rfc7692#section-7.1
     */
    @IgnoreJRERequirement // As of AGP 3.4.1, D8 desugars API 24 hashCode methods.
    data class WebSocketExtensions(
      /** True if the agreed upon extensions includes the permessage-deflate extension. */
      @JvmField val perMessageDeflate: Boolean = false,
    Registered: Fri Nov 01 11:42:11 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. docs/pt/docs/how-to/custom-docs-ui-assets.md

    ///
    
    ### Criar uma *operação de rota* para testar arquivos estáticos
    
    Agora, para poder testar se tudo funciona, crie uma *operação de rota*:
    
    ```Python hl_lines="39-41"
    {!../../docs_src/custom_docs_ui/tutorial002.py!}
    ```
    
    ### Teste a UI de Arquivos Estáticos
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Fri Oct 18 12:02:35 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/hash/Hashing.java

      }
    
      /**
       * Returns a hash function implementing the SHA-384 algorithm (384 hash bits).
       *
       * @since 19.0
       */
      public static HashFunction sha384() {
        return Sha384Holder.SHA_384;
      }
    
      private static class Sha384Holder {
        static final HashFunction SHA_384 =
            new MessageDigestHashFunction("SHA-384", "Hashing.sha384()");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Jul 19 16:02:36 UTC 2024
    - 29.3K bytes
    - Viewed (0)
  10. docs/en/docs/how-to/custom-docs-ui-assets.md

    ///
    
    ### Create a *path operation* to test static files
    
    Now, to be able to test that everything works, create a *path operation*:
    
    {* ../../docs_src/custom_docs_ui/tutorial002.py hl[39:41] *}
    
    ### Test Static Files UI
    
    Now, you should be able to disconnect your WiFi, go to your docs at <a href="http://127.0.0.1:8000/docs" class="external-link" target="_blank">http://127.0.0.1:8000/docs</a>, and reload the page.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Mon Oct 28 10:42:34 UTC 2024
    - 7.3K bytes
    - Viewed (0)
Back to top