- Sort Score
- Result 10 results
- Languages All
Results 31 - 40 of 48 for R2 (0.02 sec)
-
src/test/java/jcifs/smb/NtlmUtilTest.java
byte[] challenge = hex("1122334455667788"); // Act byte[] r1 = NtlmUtil.getNTLMResponse(password, challenge); byte[] r2 = NtlmUtil.getNTLMResponse(NtlmUtil.getNTHash(password), challenge); // Assert assertArrayEquals(r2, r1); assertEquals(24, r1.length); } @Test @DisplayName("getNTLM2Response: returns 24 bytes and changes with inputs")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 12K bytes - Viewed (0) -
.github/workflows/release-branch-cherrypick.yml
# on that branch for a workflow.yml file, and we'd have to cherry-pick # this file into those branches. release_branch: description: 'Release branch name (e.g. r2.9)' required: true type: string git_commit: description: 'Git commit to cherry-pick' required: true type: string permissions: contents: read jobs:
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Sep 01 15:40:11 UTC 2025 - 3.1K bytes - Viewed (0) -
.github/workflows/arm-ci.yml
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Mon Sep 01 15:40:11 UTC 2025 - 2.2K bytes - Viewed (0) -
src/test/java/jcifs/smb1/smb1/SmbComTransactionResponseTest.java
assertFalse(d.getIsPrimary(), "isPrimary should be cleared after first call"); // Second call keeps the same state SmbComTransactionResponse r2 = (SmbComTransactionResponse) d.nextElement(); assertSame(d, r2, "Subsequent calls still return same instance"); assertFalse(d.getIsPrimary(), "isPrimary remains false after subsequent call"); } @Test
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12K bytes - Viewed (0) -
src/bytes/buffer_test.go
r1, size, _ := buf.ReadRune() if err := buf.UnreadRune(); err != nil { t.Fatalf("UnreadRune(%U) got error %q", r, err) } r2, nbytes, err := buf.ReadRune() if r1 != r2 || r1 != r || nbytes != size || err != nil { t.Fatalf("ReadRune(%U) after UnreadRune got %U,%d not %U,%d (err=%s)", r, r2, nbytes, r, size, err) } } } func TestWriteInvalidRune(t *testing.T) {
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon May 19 16:13:04 UTC 2025 - 18.6K bytes - Viewed (0) -
src/bufio/bufio_test.go
r.Reset(strings.NewReader("bar bar")) checkAll(r, "bar bar") // Wrap a reader and then Reset to that reader. r.Reset(strings.NewReader("recur")) r2 := NewReader(r) checkAll(r2, "recur") r.Reset(strings.NewReader("recur2")) r2.Reset(r) checkAll(r2, "recur2") } func TestWriterReset(t *testing.T) { var buf1, buf2, buf3, buf4, buf5 strings.Builder w := NewWriter(&buf1) w.WriteString("foo")
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Fri Feb 07 01:08:54 UTC 2025 - 51.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/ppc64.s
OR $0, R0, R0 // 60000000 PCALIGN $16 PNOP // 0700000000000000 SETB CR1,R3 // 7c640100 VCLZLSBB V1,R2 // 10400e02 VCTZLSBB V1,R2 // 10410e02 XSMAXJDP VS1,VS2,VS3 // f0611480 XSMINJDP VS1,VS2,VS3 // f06114c0
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Nov 21 18:27:17 UTC 2024 - 51.7K bytes - Viewed (0) -
README.md
apply fixes to bugs or security vulnerabilities: * Clone the TensorFlow repository and switch to the appropriate branch for your desired version—for example, `r2.8` for version 2.8. * Apply the desired changes (i.e., cherry-pick them) and resolve any code conflicts. * Run TensorFlow tests and ensure they pass.
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Fri Jul 18 14:09:03 UTC 2025 - 11.6K bytes - Viewed (0) -
src/cmd/asm/internal/asm/asm.go
// All must be registers. p.getRegister(prog, op, &a[0]) r1 := p.getRegister(prog, op, &a[1]) r2 := p.getRegister(prog, op, &a[2]) p.getRegister(prog, op, &a[3]) prog.From = a[0] prog.To = a[3] prog.To.Type = obj.TYPE_REGREG2 prog.To.Offset = int64(r2) prog.Reg = r1 break } } if p.arch.Family == sys.AMD64 { prog.From = a[0]
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Tue Aug 05 17:31:25 UTC 2025 - 26.2K bytes - Viewed (0) -
src/cmd/asm/internal/asm/testdata/loong64enc1.s
// ADDV C_SCON, [r1], r2 ADDV $0x321, R4 // ADDV $801, R4 // 8484cc02 ADDV $0x321, R5, R4 // ADDV $801, R5, R4 // a484cc02 ADDV $0xfffffffffffffc21, R4 // ADDV $-991, R4 // 8484f002 ADDV $0xfffffffffffffc21, R5, R4 // ADDV $-991, R5, R4 // a484f002 // AND C_SCON, [r1], r2 AND $0x321, R4 // AND $801, R4 // 84844c03
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Thu Sep 04 19:24:25 UTC 2025 - 35.5K bytes - Viewed (0)