- Sort Score
- Result 10 results
- Languages All
Results 1471 - 1480 of 1,857 for constructs (0.2 sec)
-
src/main/java/org/codelibs/fess/app/pager/LabelTypePager.java
/** * Pager for label types. */ public class LabelTypePager implements Serializable { private static final long serialVersionUID = 1L; /** * Default constructor. */ public LabelTypePager() { // do nothing } /** The default page size. */ public static final int DEFAULT_PAGE_SIZE = 20; /** The default current page number. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/api/admin/backup/ApiAdminBackupAction.java
import org.lastaflute.web.response.StreamResponse; /** * API action for admin backup. * */ public class ApiAdminBackupAction extends FessApiAdminAction { /** * Default constructor. */ public ApiAdminBackupAction() { super(); } /** * Retrieves a list of available backup files. * * @return JSON response with backup file list */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 6.6K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/ScoreBooster.java
import org.opensearch.script.ScriptType; import org.opensearch.search.SearchHit; /** * This class is a base class for score boosters. */ public abstract class ScoreBooster { /** * Constructor. */ public ScoreBooster() { super(); } private static final Logger logger = LogManager.getLogger(ScoreBooster.class); /** * The bulk request builder. */
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Aug 07 03:06:29 UTC 2025 - 6.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/ShortArrayAsListTest.java
.createTestSuite()); } return suite; } // Test generators. To let the GWT test suite generator access them, they need to be // public named classes with a public default constructor. public static final class ShortsAsListGenerator extends TestShortListGenerator { @Override protected List<Short> create(Short[] elements) { return asList(elements); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/primitives/LongArrayAsListTest.java
.createTestSuite()); } return suite; } // Test generators. To let the GWT test suite generator access them, they need to be // public named classes with a public default constructor. public static final class LongsAsListGenerator extends TestLongListGenerator { @Override protected List<Long> create(Long[] elements) { return asList(elements); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.5K bytes - Viewed (0) -
guava-tests/test/com/google/common/primitives/ShortArrayAsListTest.java
.createTestSuite()); } return suite; } // Test generators. To let the GWT test suite generator access them, they need to be // public named classes with a public default constructor. public static final class ShortsAsListGenerator extends TestShortListGenerator { @Override protected List<Short> create(Short[] elements) { return asList(elements); } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 5.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/netbios/NodeStatusResponse.java
* so that it may be included in the list of results. IOW we do * not want to create a new NbtAddress object for this particular * address from which the query is constructed, we want to populate * the data of the existing address that should be one of several * returned by the node status. */ NodeStatusResponse(final NbtAddress queryAddress) {
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 07:14:38 UTC 2025 - 5.8K bytes - Viewed (0) -
src/test/java/jcifs/smb/SmbSessionInternalTest.java
import org.mockito.junit.jupiter.MockitoExtension; import jcifs.CIFSException; import jcifs.SmbTransport; import jcifs.SmbTree; /** * Tests for SmbSessionInternal interface using Mockito to exercise * method contracts, checked exceptions, and interactions with collaborators. */ @ExtendWith(MockitoExtension.class) public class SmbSessionInternalTest { @Mock private SmbSessionInternal session; @Mock
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 6.8K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb2/info/Smb2QueryDirectoryResponseTest.java
MockitoAnnotations.openMocks(this); when(mockConfig.isUseUnicode()).thenReturn(true); when(mockConfig.getMaximumBufferSize()).thenReturn(65536); } @Test @DisplayName("Test constructor initializes with config and expectInfoClass") void testConstructor() { byte expectInfoClass = Smb2QueryDirectoryRequest.FILE_BOTH_DIRECTORY_INFO;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 23.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/dfs/DfsReferralDataInternalTest.java
@BeforeEach void setUp() { MockitoAnnotations.openMocks(this); // Using concrete implementation for integration testing // Note: DfsReferralDataImpl default constructor creates an object with null server/share/path // Some methods like fixupHost/fixupDomain require these to be set via combine() or fromReferral() concreteImplementation = createInitializedDfsReferralDataImpl(); }
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 28.2K bytes - Viewed (0)