- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 18 for sd (0.14 sec)
-
src/test/java/jcifs/internal/dtyp/SecurityDescriptorTest.java
@DisplayName("Test default constructor creates empty SecurityDescriptor") void testDefaultConstructor() { SecurityDescriptor sd = new SecurityDescriptor(); assertEquals(0, sd.getType()); assertNull(sd.getAces()); assertNull(sd.getOwnerUserSid()); assertNull(sd.getOwnerGroupSid()); } @Test @DisplayName("Test constructor with buffer decodes SecurityDescriptor")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcShareGetInfo.java
final srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) info; if (info502.security_descriptor != null) { SecurityDescriptor sd; sd = new SecurityDescriptor(info502.security_descriptor, 0, info502.sd_size); return sd.aces; } return null; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcShareGetInfo.java
final srvsvc.ShareInfo502 info502 = (srvsvc.ShareInfo502) this.info; if (info502.security_descriptor != null) { SecurityDescriptor sd; sd = new SecurityDescriptor(info502.security_descriptor, 0, info502.sd_size); return sd.getAces(); } return null; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.3K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransQuerySecurityDescResponseTest.java
response.readDataWireFormat(buffer, 0, buffer.length); SecurityDescriptor sd = response.getSecurityDescriptor(); assertNotNull(sd); // Verify it's the same instance on subsequent calls SecurityDescriptor sd2 = response.getSecurityDescriptor(); assertSame(sd, sd2); } @Test @DisplayName("Test readDataWireFormat with zero length buffer")
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbTransportImplTest.java
assertNull(transport.getServerEncryptionKey()); // SMB1 negotiation with server data SmbComNegotiateResponse smb1 = new SmbComNegotiateResponse(ctx); ServerData sd = smb1.getServerData(); sd.encryptionKey = new byte[] { 1, 2, 3 }; setField(transport, "negotiated", smb1); assertArrayEquals(new byte[] { 1, 2, 3 }, transport.getServerEncryptionKey());
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 17.6K bytes - Viewed (0) -
okhttp/src/jvmMain/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.list
schoolbus.jp schools.nsw.edu.au schule schulplattform.de schulserver.de schwarz sci.eg science scientist.aero scot scrapper-site.net scrapping.cc scrysec.com sd sd.cn sd.us sdn.gov.pl sdscloud.pl se se.eu.org se.gov.br se.leg.br se.net search seat sebastopol.ua sec.ps secaas.hk secret.jp secure security
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue May 27 22:00:49 UTC 2025 - 129.6K bytes - Viewed (3) -
okhttp/src/jvmTest/resources/web-platform-test-urltestdata.txt
http:foo.com s:http h:example.org p:/foo/foo.com \t\s\s\s:foo.com\s\s\s\n s:http h:example.org p:/foo/:foo.com \sfoo.com\s\s s:http h:example.org p:/foo/foo.com a:\t\sfoo.com s:a p:\sfoo.com http://f:21/\sb\s?\sd\s#\se\s s:http h:f port:21 p:/%20b%20 q:?%20d%20 f:#\se http://f:/c s:http h:f p:/c http://f:0/c s:http h:f port:0 p:/c http://f:00000000000000/c s:http h:f port:0 p:/c http://f:00000000000000000000080/c s:http h:f p:/c
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Fri Dec 27 13:39:56 UTC 2024 - 14.3K bytes - Viewed (0) -
src/bytes/bytes_test.go
{"Mixed", makeFieldsInput()}, } func BenchmarkFields(b *testing.B) { for _, sd := range bytesdata { b.Run(sd.name, func(b *testing.B) { for j := 1 << 4; j <= 1<<20; j <<= 4 { b.Run(fmt.Sprintf("%d", j), func(b *testing.B) { b.ReportAllocs() b.SetBytes(int64(j)) data := sd.data[:j] for i := 0; i < b.N; i++ { Fields(data) } }) } })
Registered: Tue Sep 09 11:13:09 UTC 2025 - Last Modified: Mon Jul 28 18:13:58 UTC 2025 - 62.9K bytes - Viewed (0) -
okhttp/src/androidMain/assets/PublicSuffixDatabase.list
schoolbus.jp schools.nsw.edu.au schule schulplattform.de schulserver.de schwarz sci.eg science scientist.aero scot scrapper-site.net scrapping.cc scrysec.com sd sd.cn sd.us sdn.gov.pl sdscloud.pl se se.eu.org se.gov.br se.leg.br se.net search seat sebastopol.ua sec.ps secaas.hk secret.jp secure security
Registered: Fri Sep 05 11:42:10 UTC 2025 - Last Modified: Tue Dec 31 14:50:53 UTC 2024 - 129.6K bytes - Viewed (2) -
ci/official/utilities/code_check_full.bats
bazel cquery --keep_going 'kind(py_test, //tensorflow/python/...) - attr("tags", "no_pip|manual", //tensorflow/python/...)' | grep -v -f $BATS_TEST_TMPDIR/ignore_deps_for_these_packages | paste -sd "+" - > $BATS_TEST_TMPDIR/deps # Find all one-step dependencies of those tests which are from //tensorflow # (since external deps will come from Python-level pip dependencies),
Registered: Tue Sep 09 12:39:10 UTC 2025 - Last Modified: Wed Aug 06 20:43:08 UTC 2025 - 13.4K bytes - Viewed (0)