- Sort Score
- Result 10 results
- Languages All
Results 11 - 20 of 32 for setAttr (0.56 sec)
-
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionResponseTest.java
} @Test @DisplayName("Test subCommand getter and setter") void testSubCommandGetterSetter() { byte subcommand = (byte) 0x05; response.setSubCommand(subcommand); assertEquals(subcommand, response.getSubCommand()); } @Test @DisplayName("Test status getter and setter") void testStatusGetterSetter() { assertEquals(0, response.getStatus());Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 13.4K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/client/http/impl/AuthenticationImpl.java
* This class provides methods to handle authentication details such as * authentication scope, credentials, and authentication scheme. * * <p> * It includes constructors to initialize these details and getter and setter * methods to access and modify them. * </p> * * <p> * Example usage: * </p> * <pre> * {@code * AuthScope authScope = new AuthScope("example.com", 80);
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Sun Jul 06 02:13:03 UTC 2025 - 3.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/interval/impl/AbstractIntervalControllerTest.java
// Should not throw exception controller.delay(IntervalController.PRE_PROCESSING); // If we reach here, exception was ignored assertTrue(true); } /** * Test setter for ignoreException */ public void test_setIgnoreException() { final TestIntervalController controller = new TestIntervalController(); assertTrue(controller.isIgnoreException()); // defaultRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 08:58:39 UTC 2025 - 9.8K bytes - Viewed (0) -
src/main/java/org/codelibs/core/beans/impl/BeanDescImpl.java
invalidPropertyNames.add(propertyName); } else { propDesc.setReadMethod(readMethod); } } /** * Prepares the setter method. * * @param writeMethod * the setter method * @param propertyName * the property name */ protected void setupWriteMethod(final Method writeMethod, final String propertyName) {
Registered: Sat Dec 20 08:55:33 UTC 2025 - Last Modified: Thu Jun 19 09:12:22 UTC 2025 - 25.8K bytes - Viewed (1) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/rule/impl/AbstractRule.java
* Provides common functionality and properties for crawler rules. * * <p> * This class handles the registration of rules with the {@link RuleManager} * and provides getter and setter methods for common properties such as * {@code ruleId} and {@code responseProcessor}. * </p> * * <p> * Subclasses should extend this class and implement the abstract methodsRegistered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Wed Sep 03 14:42:53 UTC 2025 - 2.8K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/entity/ExtractDataTest.java
assertEquals(content, data.getContent()); assertNotNull(data.getKeySet()); assertTrue(data.getKeySet().isEmpty()); } public void test_contentGetterSetter() { // Test content getter/setter ExtractData data = new ExtractData(); String content = "This is extracted content"; data.setContent(content); assertEquals(content, data.getContent());
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Mon Nov 24 03:59:47 UTC 2025 - 9.9K bytes - Viewed (0) -
src/main/java/jcifs/smb/SmbOperationException.java
original.retryPolicy, original.context); retry.setAttemptNumber(attemptNumber); return retry; } private void setAttemptNumber(int attemptNumber) { // Package-private setter for attempt number try { java.lang.reflect.Field field = SmbOperationException.class.getDeclaredField("attemptNumber"); field.setAccessible(true); field.set(this, attemptNumber);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Sat Aug 30 05:58:03 UTC 2025 - 16.5K bytes - Viewed (0) -
src/test/java/jcifs/internal/smb1/trans/SmbComTransactionTest.java
// After release, getting buffer again should return null assertNull(transaction.releaseBuffer()); } @Test @DisplayName("Test subCommand getter and setter") void testSubCommand() { assertEquals(SmbComTransaction.TRANS2_FIND_FIRST2, transaction.getSubCommand()); transaction.setSubCommand(SmbComTransaction.TRANS2_QUERY_FS_INFORMATION);Registered: Sat Dec 20 13:44:44 UTC 2025 - Last Modified: Thu Aug 14 05:31:44 UTC 2025 - 10.7K bytes - Viewed (0) -
fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapUrl.java
* It also supports sitemap extensions such as images, videos, news, and alternate links. * It implements the {@link Sitemap} interface. * </p> * * <p> * The {@code SitemapUrl} class provides getter and setter methods for each of these properties, * as well as implementations for {@code equals()}, {@code hashCode()}, and {@code toString()} methods. * </p> * */ public class SitemapUrl implements Sitemap {Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 13 13:34:36 UTC 2025 - 9.1K bytes - Viewed (0) -
fess-crawler/src/test/java/org/codelibs/fess/crawler/pool/CrawlerPooledObjectFactoryTest.java
.singleton("singletonComponent", SingletonTestComponent.class) .prototype("closeableComponent", CloseableTestComponent.class); // Initialize factory with setter injection factory = new CrawlerPooledObjectFactory<>(); factory.setCrawlerContainer(container); factory.setComponentName("testComponent"); } /**
Registered: Sat Dec 20 11:21:39 UTC 2025 - Last Modified: Thu Nov 20 13:07:01 UTC 2025 - 36.7K bytes - Viewed (0)