Search Options

Results per page
Sort
Preferred Languages
Advance

Results 261 - 270 of 481 for initializer (0.06 sec)

  1. src/main/java/org/codelibs/fess/rank/fusion/DefaultSearcher.java

        /** Logger for this class. */
        private static final Logger logger = LogManager.getLogger(DefaultSearcher.class);
    
        /**
         * Creates a new instance of DefaultSearcher.
         * This constructor initializes the default rank fusion searcher for performing
         * standard OpenSearch queries with response processing and document highlighting.
         */
        public DefaultSearcher() {
            super();
        }
    
        /**
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 12.6K bytes
    - Viewed (0)
  2. src/test/java/jcifs/SmbPipeHandleTest.java

        private SmbPipeHandleInternal mockSmbPipeHandleInternal;
        private InputStream mockInputStream;
        private OutputStream mockOutputStream;
    
        /**
         * Sets up the test environment before each test.
         * Initializes a mock {@link SmbPipeResource} and a mock implementation of {@link SmbPipeHandle}.
         * @throws CIFSException if an error occurs during setup.
         */
        @BeforeEach
        public void setUp() throws CIFSException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 7K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/com/ServerDataTest.java

        @BeforeEach
        public void setUp() {
            serverData = new ServerData();
        }
    
        /**
         * Test default constructor initializes all fields with default values
         */
        @Test
        @DisplayName("Test default constructor initializes fields with default values")
        public void testDefaultConstructor() {
            // Then - verify all fields have default values
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 17K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/entity/FacetInfo.java

        public String missing;
    
        /**
         * Default constructor for FacetInfo.
         */
        public FacetInfo() {
            // Default constructor
        }
    
        /**
         * Initializes the facet configuration from Fess configuration properties.
         * This method is called after dependency injection to load default facet settings.
         */
        @PostConstruct
        public void init() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  5. src/main/java/jcifs/internal/smb2/rdma/SmbDirectNegotiateRequest.java

            SMBUtil.writeInt4(maxReceiveSize, data, idx);
            idx += 4;
            SMBUtil.writeInt4(maxFragmentedSize, data, idx);
            idx += 4;
    
            // Reserved fields (8 bytes)
            // Already zero-initialized
    
            return data;
        }
    
        /**
         * Get size of this message
         *
         * @return size in bytes (32)
         */
        public static int size() {
            return 32;
        }
    
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sun Aug 24 00:12:28 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/internal/smb1/com/SmbComNTCreateAndXTest.java

            assertNotNull(resp, "Response should not be null after init");
            // getResponse should now return the same instance
            assertSame(resp, req.getResponse(), "getResponse should expose the initialized response");
        }
    
        @Test
        @DisplayName("getResponse before initResponse returns null")
        void getResponseInitiallyNull() {
            SmbComNTCreateAndX req = createRequest(0, 0);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. api/maven-api-annotations/src/main/java/org/apache/maven/api/annotations/Config.java

             * typically set by Maven itself and flagged as readOnly=true or by users via maven-system.properties files.
             * System properties are initialized before the build starts and are available throughout the entire Maven
             * execution. They are used for core Maven functionality that needs to be established at startup.
             */
            SYSTEM_PROPERTIES,
            /**
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Thu Jul 03 14:18:26 UTC 2025
    - 4.3K bytes
    - Viewed (0)
  8. src/test/java/jcifs/netbios/NbtAddressTest.java

            mockName = new Name(mockConfig, "MYSERVER", 0x20, null);
            NbtAddress nbtAddress = new NbtAddress(mockName, testAddressInt, false, NbtAddress.H_NODE);
            nbtAddress.firstCalledName(); // Initialize calledName
            assertEquals(NbtAddress.SMBSERVER_NAME, nbtAddress.nextCalledName(mockContext));
        }
    
        @Test
        void testNextCalledName_SmbServerName_NameType0x1D() throws UnknownHostException {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 20.4K bytes
    - Viewed (0)
  9. src/main/java/jcifs/util/Hexdump.java

     */
    
    public class Hexdump {
    
        /**
         * Default constructor.
         */
        public Hexdump() {
            // Utility class - no instance variables to initialize
        }
    
        /**
         * Array of hexadecimal digit characters used for converting binary data to hex representation.
         */
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.3K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/indexer/IndexUpdaterTest.java

        private IngestFactory ingestFactory;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
    
            // Initialize IndexUpdater
            indexUpdater = new IndexUpdater();
    
            // Initialize mocks/test doubles
            systemHelper = new TestSystemHelper();
            indexingHelper = new TestIndexingHelper();
            intervalControlHelper = new TestIntervalControlHelper();
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 33K bytes
    - Viewed (0)
Back to top