Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 86 for bcbc (0.04 sec)

  1. src/strings/replace.go

    // trieNode is a node in a lookup trie for prioritized key/value pairs. Keys
    // and values may be empty. For example, the trie containing keys "ax", "ay",
    // "bcbc", "x" and "xy" could have eight nodes:
    //
    //	n0  -
    //	n1  a-
    //	n2  .x+
    //	n3  .y+
    //	n4  b-
    //	n5  .cbc+
    //	n6  x+
    //	n7  .y+
    //
    // n0 is the root node, and its children are n1, n4 and n6; n1's children are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 13 17:10:31 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  2. src/crypto/cipher/cbc.go

    }
    
    func newCBC(b Block, iv []byte) *cbc {
    	return &cbc{
    		b:         b,
    		blockSize: b.BlockSize(),
    		iv:        bytes.Clone(iv),
    		tmp:       make([]byte, b.BlockSize()),
    	}
    }
    
    type cbcEncrypter cbc
    
    // cbcEncAble is an interface implemented by ciphers that have a specific
    // optimized implementation of CBC encryption, like crypto/aes.
    // NewCBCEncrypter will check for this interface and return the specific
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 28 03:55:33 UTC 2022
    - 5.4K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/topologymanager/scope_test.go

    		containerID string
    		podUID      types.UID
    	}{
    		{
    			name:        "Case1",
    			containerID: "nginx",
    			podUID:      "0aafa4c4-38e8-11e9-bcb1-a4bf01040474",
    		},
    		{
    			name:        "Case2",
    			containerID: "Busy_Box",
    			podUID:      "b3ee37fc-39a5-11e9-bcb1-a4bf01040474",
    		},
    	}
    	scope := scope{}
    	scope.podMap = containermap.NewContainerMap()
    	for _, tc := range testCases {
    		pod := v1.Pod{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 11:44:15 UTC 2021
    - 3.3K bytes
    - Viewed (0)
  4. src/syscall/asm_freebsd_arm64.s

    TEXT ·Syscall(SB),NOSPLIT,$0-56
    	BL	runtime·entersyscall<ABIInternal>(SB)
    	MOVD	trap+0(FP), R8	// syscall entry
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	SVC	$SYS_syscall
    	BCC	ok
    	MOVD	$-1, R1
    	MOVD	R1, r1+32(FP)
    	MOVD	ZR, r2+40(FP)
    	MOVD	R0, err+48(FP)
    	BL	runtime·exitsyscall<ABIInternal>(SB)
    	RET
    ok:
    	MOVD	R0, r1+32(FP)
    	MOVD	R1, r2+40(FP)
    	MOVD	ZR, err+48(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  5. src/runtime/sys_netbsd_arm64.s

    	MOVD	name+0(FP), R0		// arg 1 - pathname
    	MOVW	mode+8(FP), R1		// arg 2 - flags
    	MOVW	perm+12(FP), R2		// arg 3 - mode
    	SVC	$SYS_open
    	BCC	ok
    	MOVW	$-1, R0
    ok:
    	MOVW	R0, ret+16(FP)
    	RET
    
    TEXT runtime·closefd(SB),NOSPLIT,$-8
    	MOVW	fd+0(FP), R0		// arg 1 - fd
    	SVC	$SYS_close
    	BCC	ok
    	MOVW	$-1, R0
    ok:
    	MOVW	R0, ret+8(FP)
    	RET
    
    TEXT runtime·read(SB),NOSPLIT|NOFRAME,$0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/topologymanager/fake_topology_manager_test.go

    		containerID string
    		podUID      string
    	}{
    		{
    			name:        "Case1",
    			containerID: "nginx",
    			podUID:      "0aafa4c4-38e8-11e9-bcb1-a4bf01040474",
    		},
    		{
    			name:        "Case2",
    			containerID: "Busy_Box",
    			podUID:      "b3ee37fc-39a5-11e9-bcb1-a4bf01040474",
    		},
    	}
    	fm := fakeManager{}
    	for _, tc := range testCases {
    		err := fm.RemoveContainer(tc.containerID)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 10 11:44:15 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. src/crypto/cipher/fuzz_test.go

    	"crypto/aes"
    	"crypto/cipher"
    	"crypto/rand"
    	"testing"
    	"time"
    )
    
    var cbcAESFuzzTests = []struct {
    	name string
    	key  []byte
    }{
    	{
    		"CBC-AES128",
    		commonKey128,
    	},
    	{
    		"CBC-AES192",
    		commonKey192,
    	},
    	{
    		"CBC-AES256",
    		commonKey256,
    	},
    }
    
    var timeout *time.Timer
    
    const datalen = 1024
    
    func TestFuzz(t *testing.T) {
    
    	for _, ft := range cbcAESFuzzTests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 03 13:39:12 UTC 2022
    - 2K bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue9400/asm_arm.s

    	ADD	$(1024 * 8), R13
    
    	// Ask signaller to setgid
    	MOVW	$·Baton(SB), R2
    storeloop:
    	MOVW	0(R2), R0
    	MOVW	$1, R1
    	BL	cas<>(SB)
    	BCC	storeloop
    
    	// Wait for setgid completion
    loop:
    	MOVW	$0, R0
    	MOVW	$0, R1
    	BL	cas<>(SB)
    	BCC	loop
    
    	// Restore stack
    	SUB	$(1024 * 8), R13
    
    	MOVW	R4, R14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 758 bytes
    - Viewed (0)
  9. src/syscall/asm_darwin_arm64.s

    TEXT	·Syscall(SB),NOSPLIT,$0-56
    	BL	runtime·entersyscall<ABIInternal>(SB)
    	MOVD	trap+0(FP), R16
    	MOVD	a1+8(FP), R0
    	MOVD	a2+16(FP), R1
    	MOVD	a3+24(FP), R2
    	SVC	$0x80
    	BCC	ok
    	MOVD	$-1, R1
    	MOVD	R1, r1+32(FP)	// r1
    	MOVD	ZR, r2+40(FP)	// r2
    	MOVD	R0, err+48(FP)	// err
    	BL	runtime·exitsyscall<ABIInternal>(SB)
    	RET
    ok:
    	MOVD	R0, r1+32(FP) // r1
    	MOVD	R1, r2+40(FP)	// r2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 16 15:40:39 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

            doAddCc(cc);
        }
    
        public void addCc(String cc, String personal) {
            doAddCc(cc, personal);
        }
    
        public void addBcc(String bcc) {
            doAddBcc(bcc);
        }
    
        public void addBcc(String bcc, String personal) {
            doAddBcc(bcc, personal);
        }
    
        public void addReplyTo(String replyTo) {
            doAddReplyTo(replyTo);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 4.7K bytes
    - Viewed (0)
Back to top