- Sort Score
- Result 10 results
- Languages All
Results 2291 - 2300 of 5,931 for publish (0.07 sec)
-
src/test/java/org/codelibs/fess/helper/UserInfoHelperTest.java
import org.codelibs.fess.Constants; import org.codelibs.fess.unit.UnitFessTestCase; import org.dbflute.utflute.mocklet.MockletHttpServletRequest; import jakarta.servlet.http.Cookie; public class UserInfoHelperTest extends UnitFessTestCase { public void test_getUserCodeFromRequest() { UserInfoHelper userInfoHelper = new UserInfoHelper(); MockletHttpServletRequest request = getMockRequest();
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Thu Jul 10 13:41:04 UTC 2025 - 12.5K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/validation/CronExpressionValidatorTest.java
import jakarta.validation.ConstraintValidatorContext; public class CronExpressionValidatorTest extends UnitFessTestCase { public CronExpressionValidator validator; @Override public void setUp() throws Exception { super.setUp(); validator = new CronExpressionValidator(); } public void test_isValid_nullValue() { final ConstraintValidatorContext context = null;
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 4.5K bytes - Viewed (0) -
guava-testlib/src/com/google/common/collect/testing/google/MultisetAddTester.java
@SuppressWarnings("JUnit4ClassUsedInJUnit3") public class MultisetAddTester<E> extends AbstractMultisetTester<E> { @CollectionFeature.Require(absent = SUPPORTS_ADD) public void testAddUnsupported() { assertThrows(UnsupportedOperationException.class, () -> getMultiset().add(e0())); } @CollectionFeature.Require(SUPPORTS_ADD) public void testAddMeansAddOne() { int originalCount = getMultiset().count(e0());
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Nov 14 23:40:07 UTC 2024 - 4.1K bytes - Viewed (0) -
compat/maven-compat/src/main/java/org/apache/maven/repository/metadata/MetadataGraphVertex.java
this.compareScope = compareScope; } public ArtifactMetadata getMd() { return md; } public void setMd(ArtifactMetadata md) { this.md = md; } // --------------------------------------------------------------------- public boolean isCompareVersion() { return compareVersion; } public void setCompareVersion(boolean compareVersion) {
Registered: Sun Sep 07 03:35:12 UTC 2025 - Last Modified: Fri Jun 06 14:28:57 UTC 2025 - 5K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/collect/AbstractIteratorTest.java
public void testFreesNextReference() { Iterator<Object> itr = new AbstractIterator<Object>() { @Override public Object computeNext() { return new Object(); } }; WeakReference<Object> ref = new WeakReference<>(itr.next()); GcFinalization.awaitClear(ref); }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Thu Aug 07 16:05:33 UTC 2025 - 7.8K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/MapInterfaceTest.java
// TODO: Refactor to share code with SetTestBuilder etc. @GwtCompatible @NullMarked public abstract class MapInterfaceTest<K extends @Nullable Object, V extends @Nullable Object> extends TestCase { /** A key type that is not assignable to any classes but Object. */ private static final class IncompatibleKeyType { @Override public String toString() { return "IncompatibleKeyType"; } }
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Mon Aug 11 19:31:30 UTC 2025 - 43.9K bytes - Viewed (0) -
android/guava-tests/test/com/google/common/util/concurrent/FuturesGetCheckedInputs.java
public ExceptionWithManyConstructors() {} public ExceptionWithManyConstructors(Integer i) {} public ExceptionWithManyConstructors(Throwable a) {} public ExceptionWithManyConstructors(Throwable a, Throwable b) {} public ExceptionWithManyConstructors(String s, Throwable b) { usedExpectedConstructor = true; } public ExceptionWithManyConstructors(Throwable a, Throwable b, Throwable c) {}
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Dec 22 03:38:46 UTC 2024 - 6.3K bytes - Viewed (0) -
src/test/java/org/codelibs/fess/sso/SsoResponseTypeTest.java
* governing permissions and limitations under the License. */ package org.codelibs.fess.sso; import org.codelibs.fess.unit.UnitFessTestCase; public class SsoResponseTypeTest extends UnitFessTestCase { public void test_values() { // Test that values() returns all enum constants SsoResponseType[] values = SsoResponseType.values(); assertNotNull(values);
Registered: Thu Sep 04 12:52:25 UTC 2025 - Last Modified: Tue Aug 19 14:09:36 UTC 2025 - 6K bytes - Viewed (0) -
android/guava-testlib/src/com/google/common/collect/testing/google/SortedMapGenerators.java
* @author Jared Levy * @author Hayward Chan * @author Chris Povirk * @author Louis Wasserman */ @GwtCompatible @NullMarked public class SortedMapGenerators { public static class ImmutableSortedMapGenerator extends TestStringSortedMapGenerator { @Override public SortedMap<String, String> create(Entry<String, String>[] entries) { ImmutableSortedMap.Builder<String, String> builder = ImmutableSortedMap.naturalOrder();
Registered: Fri Sep 05 12:43:10 UTC 2025 - Last Modified: Sun Aug 10 19:54:19 UTC 2025 - 4.8K bytes - Viewed (0) -
docs/smb3-features/06-witness-protocol-design.md
// Getters and setters... public String getRegistrationId() { return registrationId; } public String getShareName() { return shareName; } public InetAddress getServerAddress() { return serverAddress; } public WitnessServiceType getServiceType() { return serviceType; } public WitnessRegistrationState getState() { return state; } public void setState(WitnessRegistrationState state) { this.state = state; } } ```
Registered: Sun Sep 07 00:10:21 UTC 2025 - Last Modified: Sat Aug 16 02:53:50 UTC 2025 - 42K bytes - Viewed (0)