- Sort Score
- Result 10 results
- Languages All
Results 331 - 340 of 1,411 for construction (0.36 sec)
-
src/main/java/org/codelibs/fess/app/web/admin/plugin/InstallForm.java
public class InstallForm { /** Plugin identifier (required, max 400 characters) */ @Required @Size(max = 400) public String id; /** * Default constructor. */ public InstallForm() { // Default constructor } /** JAR file containing the plugin to install */ public MultipartFormFile jarFile;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.3K bytes - Viewed (0) -
src/test/java/jcifs/smb/DfsReferralTest.java
import static org.mockito.Mockito.when; import org.junit.jupiter.api.Test; import jcifs.DfsReferralData; /** * Tests for the DfsReferral class. */ class DfsReferralTest { /** * Test the constructor and the getData method. */ @Test void testConstructorAndGetData() { // Create a mock DfsReferralData object DfsReferralData mockData = mock(DfsReferralData.class);
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 1.6K bytes - Viewed (0) -
src/main/java/jcifs/smb1/smb1/TestLocking.java
*/ public class TestLocking implements Runnable { private static final Logger logger = LoggerFactory.getLogger(TestLocking.class); /** * Default constructor for TestLocking */ public TestLocking() { // Default constructor } int numThreads = 1; int numIter = 1; long delay = 100; String url = null; int numComplete = 0; long ltime = 0L;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 4.2K bytes - Viewed (0) -
src/main/java/jcifs/EmptyIterator.java
* * @author mbechler */ public class EmptyIterator implements CloseableIterator<SmbResource> { /** * Default constructor for EmptyIterator. * Creates an empty iterator with no elements. */ public EmptyIterator() { // Default constructor } /** * {@inheritDoc} * * @see java.util.Iterator#hasNext() */ @Override
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 01:32:48 UTC 2025 - 1.8K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/app/web/admin/sereq/UploadForm.java
*/ @Required public MultipartFormFile requestFile; /** * Default constructor for UploadForm. * Creates a new instance with default values. */ public UploadForm() { // Default constructor }
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.4K bytes - Viewed (0) -
src/main/java/org/codelibs/fess/score/LtrQueryRescorer.java
/** * Learning to Rank query rescorer implementation. */ public class LtrQueryRescorer implements QueryRescorer { /** * Default constructor. */ public LtrQueryRescorer() { // Default constructor } @Override public RescorerBuilder<?> evaluate(final Map<String, Object> params) { final FessConfig fessConfig = ComponentUtil.getFessConfig();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 17 08:28:31 UTC 2025 - 1.7K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/nt/NtTransNotifyChangeTest.java
MockitoAnnotations.openMocks(this); when(mockConfig.getNotifyBufferSize()).thenReturn(4096); when(mockConfig.getTransactionBufferSize()).thenReturn(65535); } @Test @DisplayName("Test constructor initialization with basic parameters") void testConstructorBasic() { int fid = 0x1234; int completionFilter = FILE_NOTIFY_CHANGE_FILE_NAME; boolean watchTree = false;
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 18.4K bytes - Viewed (0) -
guava/src/com/google/common/collect/ForwardingObject.java
* implement {@link Serializable}, a serializable subclass may be created since this class has a * parameter-less constructor. * * @author Mike Bostock * @since 2.0 */ @GwtCompatible public abstract class ForwardingObject { /** Constructor for use by subclasses. */ protected ForwardingObject() {} /**
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sat Dec 21 03:10:51 UTC 2024 - 3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java
} // Test constructor public void test_constructor() { FessTimeResourceProvider testProvider = new FessTimeResourceProvider(mockConfig); assertNotNull(testProvider); } // Test constructor with null config public void test_constructor_nullConfig() { try { new FessTimeResourceProvider(null); // Constructor may accept null, so test continues
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 17.4K bytes - Viewed (0) -
src/main/java/jcifs/SmbConstants.java
* When specified as the <code>shareAccess</code> constructor parameter, * other SMB clients (including other threads making calls into jCIFS) * will not be permitted to access the target file and will receive "The * file is being accessed by another process" message. */ int FILE_NO_SHARE = 0x00; /** * When specified as the <code>shareAccess</code> constructor parameter,
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sun Aug 24 00:49:49 UTC 2025 - 12.8K bytes - Viewed (0)