- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 202 for populated (0.06 sec)
-
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcLsarOpenPolicy2.java
/** * Creates a new request to open an LSA policy handle. * * @param server the server name to connect to * @param access the desired access rights * @param policyHandle the policy handle to be populated */ public MsrpcLsarOpenPolicy2(final String server, final int access, final LsaPolicyHandle policyHandle) { super(server, new lsarpc.LsarObjectAttributes(), access, policyHandle);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NbtAddress.java
* most common. This is the state information that would be retrieved from * WINS for example. Natrually it is not practical for every NbtAddress * to be populated will all state requiring a Node Status on every host * encountered. The below methods allow state to be populated when requested * in a lazy fashon. */ void checkData() throws UnknownHostException { if (hostName == UNKNOWN_NAME) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 31.7K bytes - Viewed (0) -
src/main/java/jcifs/smb1/dcerpc/msrpc/MsrpcSamrOpenDomain.java
* * @param handle the SAM policy handle * @param access the desired access rights * @param sid the security identifier of the domain * @param domainHandle the domain handle to be populated */ public MsrpcSamrOpenDomain(final SamrPolicyHandle handle, final int access, final rpc.sid_t sid, final SamrDomainHandle domainHandle) { super(handle, access, sid, domainHandle); ptype = 0;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/MsrpcDfsRootEnumTest.java
assertEquals(0, entries.length); } @Test @DisplayName("getEntries should return SmbShareInfo array for DFS roots") void testGetEntries_populatedArray() throws Exception { // Create populated DfsEnumArray200 netdfs.DfsEnumArray200 populatedArray = new netdfs.DfsEnumArray200(); populatedArray.count = 3; populatedArray.s = new netdfs.DfsInfo200[3]; // Create DFS root entries
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/main/java/jcifs/internal/smb2/persistent/DurableHandleV2Response.java
private int flags; /** * Create a new durable handle V2 response */ public DurableHandleV2Response() { // Will be populated during decode } @Override public byte[] getName() { return CONTEXT_NAME_BYTES; } @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 21 04:51:33 UTC 2025 - 3K bytes - Viewed (0) -
src/main/java/jcifs/internal/smb1/com/ServerData.java
* * Stores server-specific data obtained during SMB1 protocol negotiation. */ public class ServerData { /** * Default constructor for ServerData. * Creates an empty server data container to be populated during SMB negotiation. */ public ServerData() { // Default constructor } /** * Server flags from the SMB header. */ public byte sflags; /**
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2.9K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/entity/SearchRenderDataTest.java
List<Map<String, Object>> emptyList = new ArrayList<>(); searchRenderData.setDocumentItems(emptyList); assertEquals(emptyList, searchRenderData.getDocumentItems()); // Test with populated list List<Map<String, Object>> documentItems = new ArrayList<>(); Map<String, Object> doc1 = new HashMap<>(); doc1.put("title", "Test Document 1"); doc1.put("content", "Test content 1");
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 23.3K bytes - Viewed (0) -
guava/src/com/google/common/collect/ImmutableSet.java
* requireNonNull is safe because we ensure that the first `distinct` elements have been * populated. */ return of(requireNonNull(dedupedElements[0])); default: /* * The suppression is safe because we ensure that the first `distinct` elements have been * populated. */ @SuppressWarnings("nullness") Object[] elements =
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 35.2K bytes - Viewed (0) -
src/main/java/jcifs/dcerpc/msrpc/MsrpcLsarOpenPolicy2.java
/** * Creates a new request to open an LSA policy handle. * * @param server the server name to connect to * @param access the desired access rights * @param policyHandle the policy handle to be populated */ public MsrpcLsarOpenPolicy2(final String server, final int access, final LsaPolicyHandle policyHandle) { super(server, new lsarpc.LsarObjectAttributes(), access, policyHandle);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 2K bytes - Viewed (0) -
src/test/java/jcifs/dcerpc/msrpc/MsrpcDfsRootEnumTest.java
assertTrue(dfsRootEnum.info.e instanceof DfsEnumArray200, "The info.e should be an instance of DfsEnumArray200."); } /** * Test the getEntries() method with a populated DfsEnumArray200. * Verifies that the DFS entries are correctly converted to FileEntry objects. */ @Test void testGetEntries() { // Given
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 3.5K bytes - Viewed (0)