- Sort Score
- Result 10 results
- Languages All
Results 1 - 10 of 14 for dfs_name (0.04 sec)
-
src/test/java/jcifs/dcerpc/msrpc/netdfsTest.java
String dfsName = "dfs_name"; int level = 1; int prefmaxlen = 1024; netdfs.DfsEnumStruct info = new netdfs.DfsEnumStruct(); NdrLong totalentries = new NdrLong(0); netdfs.NetrDfsEnumEx enumEx = new netdfs.NetrDfsEnumEx(dfsName, level, prefmaxlen, info, totalentries); assertEquals(dfsName, enumEx.dfs_name); assertEquals(level, enumEx.level);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 30.9K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/netdfs.java
* The DFS name */ public String dfs_name; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_referent(dfs_name, 1); if (dfs_name != null) { _dst = _dst.deferred; _dst.enc_ndr_string(dfs_name); } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/netdfs.java
* The DFS name */ public String dfs_name; @Override public void encode(NdrBuffer _dst) throws NdrException { _dst.align(4); _dst.enc_ndr_referent(this.dfs_name, 1); if (this.dfs_name != null) { _dst = _dst.deferred; _dst.enc_ndr_string(this.dfs_name); } } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 21.8K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
arrayWithNulls.s = new netdfs.DfsInfo200[2]; netdfs.DfsInfo200 entry1 = new netdfs.DfsInfo200(); entry1.dfs_name = null; arrayWithNulls.s[0] = entry1; netdfs.DfsInfo200 entry2 = new netdfs.DfsInfo200(); entry2.dfs_name = "valid_share"; arrayWithNulls.s[1] = entry2; // Replace the info.e field setDfsEnumArray(dfsRootEnum, arrayWithNulls);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 12.9K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java
dfsEnumArray.count = 2; dfsEnumArray.s = new DfsInfo200[2]; dfsEnumArray.s[0] = new DfsInfo200(); dfsEnumArray.s[0].dfs_name = "\\domain\share1"; dfsEnumArray.s[1] = new DfsInfo200(); dfsEnumArray.s[1].dfs_name = "\\domain\share2"; // Manually set the DfsEnumArray200 to the info struct dfsRootEnum.info.e = dfsEnumArray; // When
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.5K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnum.java
final SmbShareInfo[] entries = new SmbShareInfo[a200.count]; for (int i = 0; i < a200.count; i++) { entries[i] = new SmbShareInfo(a200.s[i].dfs_name, 0, null); } return entries; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcDfsRootEnum.java
final SmbShareInfo[] entries = new SmbShareInfo[a200.count]; for (int i = 0; i < a200.count; i++) { entries[i] = new SmbShareInfo(a200.s[i].dfs_name, 0, null); } return entries; }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.2K bytes - Viewed (0) -
src/main/java/org/codelibs/core/lang/SystemUtil.java
*/ public static final String PATH_SEPARATOR = System.getProperty("path.separator"); /** * <code>os.name</code> system property. Example: <code>Mac OS X</code> */ public static final String OS_NAME = System.getProperty("os.name"); /** * <code>java.io.tmpdir</code> system property. Example: /tmp */ public static final String JAVA_IO_TMPDIR = System.getProperty("java.io.tmpdir"); /**
Registered: Fri Sep 05 20:58:11 UTC 2025 - Last Modified: Thu Jul 31 08:16:49 UTC 2025 - 3.6K bytes - Viewed (0) -
docs/tls/README.md
cn = "Sally Certowner" # In how many days, counting from today, this certificate will expire. expiration_days = 365 # X.509 v3 extensions # DNS name(s) of the server dns_name = "localhost" # (Optional) Server IP address ip_address = "127.0.0.1" # Whether this certificate will be used for a TLS server tls_www_server ```
Registered: Sun Sep 07 19:28:11 UTC 2025 - Last Modified: Tue Aug 12 18:20:36 UTC 2025 - 8.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/reflect/ClassPathTest.java
* limitations under the License. */ package com.google.common.reflect; import static com.google.common.base.StandardSystemProperty.JAVA_CLASS_PATH; import static com.google.common.base.StandardSystemProperty.OS_NAME; import static com.google.common.base.StandardSystemProperty.PATH_SEPARATOR; import static com.google.common.truth.Truth.assertThat; import static java.nio.charset.StandardCharsets.US_ASCII;
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 20:58:01 UTC 2025 - 23K bytes - Viewed (0)