Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 28 of 28 for Potato (0.27 sec)

  1. docs/pt/docs/tutorial/security/first-steps.md

    Você verá algo deste tipo:
    
    <img src="/img/tutorial/security/image01.png">
    
    !!! check "Botão de Autorizar!"
    	Você já tem um novo "botão de autorizar!".
    
    	E seu *path operation* tem um pequeno cadeado no canto superior direito que você pode clicar.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. pkg/config/schema/resource/schema_test.go

    	assert.NoError(t, err)
    	assert.Equal(t, p, config.Spec(&emptypb.Empty{}))
    }
    
    func TestMustNewProtoInstance_Panic_Nil(t *testing.T) {
    	g := NewWithT(t)
    	defer func() {
    		r := recover()
    		g.Expect(r).NotTo(BeNil())
    	}()
    	old := protoMessageType
    	defer func() {
    		protoMessageType = old
    	}()
    	protoMessageType = func(message protoreflect.FullName) (protoreflect.MessageType, error) {
    		return nil, nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 14:48:28 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. src/crypto/des/block.go

    	feistelBoxOnce.Do(initFeistelBox)
    
    	// apply PC1 permutation to key
    	key := byteorder.BeUint64(keyBytes)
    	permutedKey := permuteBlock(key, permutedChoice1[:])
    
    	// rotate halves of permuted key according to the rotation schedule
    	leftRotations := ksRotate(uint32(permutedKey >> 28))
    	rightRotations := ksRotate(uint32(permutedKey<<4) >> 4)
    
    	// generate subkeys
    	for i := 0; i < 16; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  4. docs/kms/IAM.md

    change unified the key-management aspect within MinIO.
    
    The unified KMS-based approach has several advantages:
    
    - Key management is now centralized. There is one way to change or rotate encryption keys.
       There used to be two different mechanisms - one for regular S3 objects and one for IAM data.
    - Reduced server startup time. For IAM encryption with the root credentials, MinIO had
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  5. src/crypto/aes/block.go

    }
    
    // Apply sbox0 to each byte in w.
    func subw(w uint32) uint32 {
    	return uint32(sbox0[w>>24])<<24 |
    		uint32(sbox0[w>>16&0xff])<<16 |
    		uint32(sbox0[w>>8&0xff])<<8 |
    		uint32(sbox0[w&0xff])
    }
    
    // Rotate
    func rotw(w uint32) uint32 { return w<<8 | w>>24 }
    
    // Key expansion algorithm. See FIPS-197, Figure 11.
    // Their rcon[i] is our powx[i-1] << 24.
    func expandKeyGo(key []byte, enc, dec []uint32) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  6. test/codegen/bits.go

    func zeroextendAndMask8to64(a int8, b int16) (x, y uint64) {
    	// ppc64x: -"MOVB\t", -"ANDCC", "MOVBZ"
    	x = uint64(a) & 0xFF
    	// ppc64x: -"MOVH\t", -"ANDCC", "MOVHZ"
    	y = uint64(b) & 0xFFFF
    	return
    }
    
    // Verify rotate and mask instructions, and further simplified instructions for small types
    func bitRotateAndMask(io64 [8]uint64, io32 [4]uint32, io16 [4]uint16, io8 [4]uint8) {
    	// ppc64x: "RLDICR\t[$]0, R[0-9]*, [$]47, R"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. docs/pt/docs/help-fastapi.md

    Favoritando, outros usuários poderão encontrar mais facilmente e verão que já foi útil para muita gente.
    
    ## Acompanhe novos updates no repositorio do GitHub
    
    Você pode "acompanhar" (watch) o FastAPI no GitHub (clicando no botão com um "olho" no canto superior direito): <a href="https://github.com/tiangolo/fastapi" class="external-link" target="_blank">https://github.com/tiangolo/fastapi</a>. 👀
    
    Podendo selecionar apenas "Novos Updates".
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  8. src/math/big/arith_amd64.s

    // The carry bit is saved with SBBQ Rx, Rx: if the carry was set, Rx is -1, otherwise it is 0.
    // It is restored with ADDQ Rx, Rx: if Rx was -1 the carry is set, otherwise it is cleared.
    // This is faster than using rotate instructions.
    
    // func addVV(z, x, y []Word) (c Word)
    TEXT ·addVV(SB),NOSPLIT,$0
    	MOVQ z_len+8(FP), DI
    	MOVQ x+24(FP), R8
    	MOVQ y+48(FP), R9
    	MOVQ z+0(FP), R10
    
    	MOVQ $0, CX		// c = 0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:27 UTC 2023
    - 9.1K bytes
    - Viewed (0)
Back to top