Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for 224 (7.74 sec)

  1. internal/config/identity/openid/jwks.go

    			E: int(e.Int64()),
    			N: &n,
    		}, nil
    	case "EC":
    		if key.Crv == "" || key.X == "" || key.Y == "" {
    			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:
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Tue Apr 02 23:02:35 GMT 2024
    - 3.1K bytes
    - Viewed (0)
  2. cmd/apierrorcode_string.go

    	_ = x[ErrHealNoSuchProcess-219]
    	_ = x[ErrHealInvalidClientToken-220]
    	_ = x[ErrHealMissingBucket-221]
    	_ = x[ErrHealAlreadyRunning-222]
    	_ = x[ErrHealOverlappingPaths-223]
    	_ = x[ErrIncorrectContinuationToken-224]
    	_ = x[ErrEmptyRequestBody-225]
    	_ = x[ErrUnsupportedFunction-226]
    	_ = x[ErrInvalidExpressionType-227]
    	_ = x[ErrBusy-228]
    	_ = x[ErrUnauthorizedAccess-229]
    	_ = x[ErrExpressionTooLong-230]
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 21.2K bytes
    - Viewed (0)
  3. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

        assertBytes(0xe0 or 31, 154, 10)
      }
    
      @Test
      fun max31BitValue() {
        hpackWriter!!.writeInt(0x7fffffff, 31, 0)
        assertBytes(31, 224, 255, 255, 255, 7)
        assertThat(newReader(byteStream(224, 255, 255, 255, 7)).readInt(31, 31))
          .isEqualTo(0x7fffffff)
      }
    
      @Test
      fun prefixMask() {
        hpackWriter!!.writeInt(31, 31, 0)
        assertBytes(31, 0)
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Mon Jan 08 01:13:22 GMT 2024
    - 38.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/net/InetAddresses.java

        }
    
        // Many strategies for hashing are possible. This might suffice for now.
        int coercedHash = Hashing.murmur3_32_fixed().hashLong(addressAsLong).asInt();
    
        // Squash into 224/4 Multicast and 240/4 Reserved space (i.e. 224/3).
        coercedHash |= 0xe0000000;
    
        // Fixup to avoid some "illegal" values. Currently the only potential
        // illegal value is 255.255.255.255.
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Fri Dec 15 19:31:54 GMT 2023
    - 44K bytes
    - Viewed (1)
Back to top