Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 155 for p256 (0.05 sec)

  1. src/cmd/cgo/internal/test/callback.go

    func stack1248() { var buf [1248]byte; use(buf[:]); C.callGoStackCheck() }
    func stack1252() { var buf [1252]byte; use(buf[:]); C.callGoStackCheck() }
    func stack1256() { var buf [1256]byte; use(buf[:]); C.callGoStackCheck() }
    func stack1260() { var buf [1260]byte; use(buf[:]); C.callGoStackCheck() }
    func stack1264() { var buf [1264]byte; use(buf[:]); C.callGoStackCheck() }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 111.5K bytes
    - Viewed (0)
  2. pkg/kubeapiserver/options/authentication.go

    			"Comma-separated list of allowed JOSE asymmetric signing algorithms. JWTs with a "+
    			"supported 'alg' header values are: RS256, RS384, RS512, ES256, ES384, ES512, PS256, PS384, PS512. "+
    			"Values are defined by RFC 7518 https://tools.ietf.org/html/rfc7518#section-3.1.")
    
    		fs.Var(cliflag.NewMapStringStringNoSplit(&o.OIDC.RequiredClaims), oidcRequiredClaimFlag, ""+
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Mar 09 22:40:22 UTC 2024
    - 32.4K bytes
    - Viewed (0)
  3. src/encoding/binary/binary_test.go

    	b.StopTimer()
    	if b.N > 0 && !bytes.Equal(buf.Bytes(), big[:30]) {
    		b.Fatalf("first half doesn't match: %x %x", buf.Bytes(), big[:30])
    	}
    }
    
    func BenchmarkAppendInts(b *testing.B) {
    	buf := make([]byte, 0, 256)
    	b.SetBytes(2 * (1 + 2 + 4 + 8))
    	b.ResetTimer()
    	for i := 0; i < b.N; i++ {
    		buf = buf[:0]
    		buf, _ = Append(buf, BigEndian, s.Int8)
    		buf, _ = Append(buf, BigEndian, s.Int16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 19:16:18 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  4. pkg/kubeapiserver/options/authentication_test.go

    jwt:
    - issuer:
        url: https://test-issuer
        audiences: [ "🐼" ]
      claimMappings:
        username:
          claim: sub
          prefix: ""
    `,
    				OIDCSigningAlgs: []string{"ES256", "ES384", "ES512", "PS256", "PS384", "PS512", "RS256", "RS384", "RS512"},
    			},
    		},
    	}
    
    	for _, testcase := range testCases {
    		t.Run(testcase.name, func(t *testing.T) {
    			opts := NewBuiltInAuthenticationOptions().WithOIDC()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 36.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/tables.go

    	0x73, 4871,
    	0x74, 4936,
    	0x75, 4954,
    	0x76, 4972,
    	0x77, 4990,
    	0x7C, 4993,
    	0x7D, 5011,
    	0x7E, 5029,
    	0x7F, 5106,
    	0x80, 5132,
    	0x81, 5163,
    	0x82, 5194,
    	0x83, 5225,
    	0x84, 5256,
    	0x85, 5287,
    	0x86, 5318,
    	0x87, 5349,
    	0x88, 5380,
    	0x89, 5411,
    	0x8A, 5442,
    	0x8B, 5473,
    	0x8C, 5504,
    	0x8D, 5535,
    	0x8E, 5566,
    	0x8F, 5597,
    	0x90, 5628,
    	0x91, 5633,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:24:28 UTC 2022
    - 266.8K bytes
    - Viewed (0)
  6. src/cmd/asm/internal/asm/asm.go

    		} else {
    			p.errorf("bad addr size for DATA argument: %d", sz)
    		}
    	}
    }
    
    // asmGlobl assembles a GLOBL pseudo-op.
    // GLOBL shifts<>(SB),8,$256
    // GLOBL shifts<>(SB),$256
    func (p *Parser) asmGlobl(operands [][]lex.Token) {
    	if len(operands) != 2 && len(operands) != 3 {
    		p.errorf("expect two or three operands for GLOBL")
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 25.5K bytes
    - Viewed (0)
  7. src/image/png/reader.go

    	if length%3 != 0 || np <= 0 || np > 256 || np > 1<<uint(d.depth) {
    		return FormatError("bad PLTE length")
    	}
    	n, err := io.ReadFull(d.r, d.tmp[:3*np])
    	if err != nil {
    		return err
    	}
    	d.crc.Write(d.tmp[:n])
    	switch d.cb {
    	case cbP1, cbP2, cbP4, cbP8:
    		d.palette = make(color.Palette, 256)
    		for i := 0; i < np; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. api/go1.20.txt

    pkg context, func Cause(Context) error #51365
    pkg context, func WithCancelCause(Context) (Context, CancelCauseFunc) #51365
    pkg context, type CancelCauseFunc func(error) #51365
    pkg crypto/ecdh, func P256() Curve #52221
    pkg crypto/ecdh, func P384() Curve #52221
    pkg crypto/ecdh, func P521() Curve #52221
    pkg crypto/ecdh, func X25519() Curve #52221
    pkg crypto/ecdh, method (*PrivateKey) Bytes() []uint8 #52221
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 21:23:32 UTC 2023
    - 602.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/stablehlo/tests/compose-uniform-quantized-type.mlir

        %22 = call @uniform_quantize_1(%21, %5, %6) : (tensor<8x16x4xf32>, tensor<1x1x1xf32>, tensor<1x1x1xi8>) -> tensor<8x16x4xi8>
        %23 = call @uniform_dequantize(%22, %5, %6) : (tensor<8x16x4xi8>, tensor<1x1x1xf32>, tensor<1x1x1xi8>) -> tensor<8x16x4xf32>
        return %23 : tensor<8x16x4xf32>
      }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 17:10:32 UTC 2024
    - 37K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    :before{content:"\f3ad"}.fa-gulp:before{content:"\f3ae"}.fa-h-square:before{content:"\f0fd"}.fa-hacker-news:before{content:"\f1d4"}.fa-hacker-news-square:before{content:"\f3af"}.fa-hand-lizard:before{content:"\f258"}.fa-hand-paper:before{content:"\f256"}.fa-hand-peace:before{content:"\f25b"}.fa-hand-point-down:before{content:"\f0a7"}.fa-hand-point-left:before{content:"\f0a5"}.fa-hand-point-right:before{content:"\f0a4"}.fa-hand-point-up:before{content:"\f0a6"}.fa-hand-pointer:before{content:"\f25...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (0)
Back to top