Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 28 of 28 for WORKSTATION (0.07 seconds)

  1. src/main/java/org/codelibs/fess/opensearch/config/exentity/DataConfig.java

                credentials.setType(CredentialsType.NTLM);
                credentials.setDomain(paramMap.get(prefix + "domain"));
                credentials.setWorkstation(paramMap.get(prefix + "workstation"));
            }
            config.setCredentials(credentials);
    
            return config;
        }
    
        @Override
        public Map<String, String> getConfigParameterMap(final ConfigName name) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Jan 10 01:38:30 GMT 2026
    - 17.7K bytes
    - Click Count (0)
  2. src/test/java/jcifs/NetbiosNameTest.java

            when(mockNetbiosName.getName()).thenReturn(mixedCase);
            assertEquals(mixedCase, mockNetbiosName.getName());
        }
    
        @Test
        @DisplayName("Should handle workstation service type")
        void testWorkstationServiceType() {
            // Given
            int workstationType = 0x00;
            when(mockNetbiosName.getNameType()).thenReturn(workstationType);
    
            // When
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 8K bytes
    - Click Count (0)
  3. src/test/java/jcifs/netbios/NodeStatusRequestTest.java

            // Assert
            assertTrue(result >= NameServicePacket.HEADER_LENGTH);
        }
    
        @Test
        void integration_writeAndReadComplete() {
            // Arrange
            Name realName = new Name(mockConfig, "WORKSTATION", 0x00, null);
            nodeStatusRequest = new NodeStatusRequest(mockConfig, realName);
            nodeStatusRequest.nameTrnId = 0x1234;
    
            byte[] buffer = new byte[512];
    
            // Act - Write
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 13.9K bytes
    - Click Count (0)
  4. src/test/java/jcifs/netbios/SessionRequestPacketTest.java

        }
    
        private static Stream<Arguments> provideNamesForWriteTest() {
            return Stream.of(Arguments.of("SERVER", 0x20, "CLIENT", 0x00), Arguments.of("WORKSTATION", 0x00, "USER", 0x03),
                    Arguments.of("DOMAIN", 0x1B, "BROWSER", 0x1D), Arguments.of("A", 0x20, "B", 0x00),
                    Arguments.of("VERYLONGNAMETEST", 0x20, "ANOTHERLONGNAME", 0x00));
        }
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 11.5K bytes
    - Click Count (0)
  5. src/test/java/jcifs/netbios/NodeStatusResponseTest.java

            // Number of names
            src[srcIndex] = 0x03; // 3 names
    
            // First name entry (18 bytes)
            String name1 = "WORKSTATION     ";
            System.arraycopy(name1.getBytes("US-ASCII"), 0, src, srcIndex + 1, 16);
            src[srcIndex + 16] = 0x00; // hex code
            src[srcIndex + 17] = 0x04; // flags: active
    
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 07:14:38 GMT 2025
    - 19.3K bytes
    - Click Count (0)
  6. src/test/java/jcifs/internal/smb1/net/NetServerEnum2ResponseTest.java

            int[] versionMajors = { 6, 10, 10 };
            int[] versionMinors = { 1, 0, 0 };
            int[] serverTypes = { 0x00000801, 0x00000809, 0x0000101B }; // Various server types
            String[] comments = { "Workstation", "File server", "Domain Controller" };
    
            // Set converter and number of entries
            setConverter(response, 0);
            setNumEntries(response, numServers);
    
            // Calculate total buffer size
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Thu Aug 14 05:31:44 GMT 2025
    - 25.4K bytes
    - Click Count (0)
  7. src/main/java/jcifs/dcerpc/msrpc/samr.java

        public static final int ACB_MNS = 32;
        /** Account control bit flag: Interdomain trust account */
        public static final int ACB_DOMTRUST = 64;
        /** Account control bit flag: Workstation trust account */
        public static final int ACB_WSTRUST = 128;
        /** Account control bit flag: Server trust account */
        public static final int ACB_SVRTRUST = 256;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 23.4K bytes
    - Click Count (0)
  8. src/main/java/jcifs/smb1/dcerpc/msrpc/samr.java

        public static final int ACB_MNS = 32;
        /** Account control bit flag: Interdomain trust account */
        public static final int ACB_DOMTRUST = 64;
        /** Account control bit flag: Workstation trust account */
        public static final int ACB_WSTRUST = 128;
        /** Account control bit flag: Server trust account */
        public static final int ACB_SVRTRUST = 256;
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sat Aug 16 01:32:48 GMT 2025
    - 23.1K bytes
    - Click Count (0)
Back to Top