Search Options

Results per page
Sort
Preferred Languages
Advance

Results 271 - 280 of 982 for serupa (0.04 sec)

  1. src/test/java/org/codelibs/fess/helper/IntervalControlHelperTest.java

    public class IntervalControlHelperTest extends UnitFessTestCase {
    
        private IntervalControlHelper intervalControlHelper;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            intervalControlHelper = new IntervalControlHelper();
        }
    
        public void test_noRule() {
            assertEquals(0, intervalControlHelper.getDelay());
        }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 10 13:41:04 UTC 2025
    - 13.1K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/fess/mylasta/action/FessLabelsTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class FessLabelsTest extends UnitFessTestCase {
    
        private FessLabels fessLabels;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            fessLabels = new FessLabels();
        }
    
        /**
         * Test that assertPropertyNotNull throws exception for null input
         */
        public void test_assertPropertyNotNull_withNull() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13.8K bytes
    - Viewed (0)
  3. src/test/java/org/codelibs/fess/mylasta/action/FessUserBeanTest.java

    public class FessUserBeanTest extends UnitFessTestCase {
    
        private FessUserBean fessUserBean;
        private TestFessUser testUser;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            testUser = new TestFessUser();
            fessUserBean = new FessUserBean(testUser);
        }
    
        public void test_getUserId() {
            // Test with normal user
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 11.6K bytes
    - Viewed (0)
  4. src/test/java/org/codelibs/fess/ds/DataStoreTest.java

    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class DataStoreTest extends UnitFessTestCase {
    
        private DataStore dataStore;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
        }
    
        public void test_store_basic() {
            // Create a simple DataStore implementation for testing
            final AtomicBoolean storeCalled = new AtomicBoolean(false);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 13K bytes
    - Viewed (0)
  5. .github/workflows/golangci-lint.yml

      pull_request:
    
    permissions:
      contents: read
      pull-requests: read
    
    jobs:
      golangci:
        name: lint
        runs-on: ubuntu-latest
        steps:
          - uses: actions/checkout@v4
          - uses: actions/setup-go@v5
            with:
              go-version: stable
          - name: golangci-lint
            uses: golangci/golangci-lint-action@v7
            with:
              version: v2.0
    Registered: Sun Sep 07 09:35:13 UTC 2025
    - Last Modified: Thu Apr 17 07:30:17 UTC 2025
    - 471 bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/base/SplitterBenchmark.java

      private static final Splitter STRING_SPLITTER = Splitter.on("X");
    
      @BeforeExperiment
      @SuppressWarnings("InlineMeInliner") // String.repeat unavailable under Java 8
      void setUp() {
        input = Strings.repeat(text, length);
      }
    
      @Benchmark
      int charSplitter(int reps) {
        int total = 0;
    
        for (int i = 0; i < reps; i++) {
          total += Iterables.size(CHAR_SPLITTER.split(input));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sat Jan 18 02:54:30 UTC 2025
    - 1.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/MsrpcEnumerateAliasesInDomainTest.java

    import jcifs.dcerpc.msrpc.samr;
    
    class MsrpcEnumerateAliasesInDomainTest {
    
        @Mock
        private SamrDomainHandle mockDomainHandle;
        @Mock
        private samr.SamrSamArray mockSamArray;
    
        @BeforeEach
        void setUp() {
            MockitoAnnotations.openMocks(this);
        }
    
        @Test
        void constructor_shouldInitializeFieldsCorrectly() {
            // Given
            int acctFlags = 123;
    
            // When
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 2.2K bytes
    - Viewed (0)
  8. src/test/java/org/codelibs/fess/util/ComponentUtilTest.java

    import org.codelibs.fess.mylasta.direction.FessProp;
    import org.codelibs.fess.unit.UnitFessTestCase;
    
    public class ComponentUtilTest extends UnitFessTestCase {
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            ComponentUtil.setFessConfig(null);
        }
    
        @Override
        protected boolean isUseOneTimeContainer() {
            return true;
        }
    
        public void test_setFessConfig_null() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 7.3K bytes
    - Viewed (0)
  9. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessListedClassificationProviderTest.java

    public class FessListedClassificationProviderTest extends UnitFessTestCase {
    
        private FessListedClassificationProvider provider;
    
        @Override
        public void setUp() throws Exception {
            super.setUp();
            provider = new FessListedClassificationProvider();
        }
    
        public void test_provide_notFound() {
            // Test with various classification names that should not be found
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7.5K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/hash/HashingInputStreamTest.java

      private static final byte[] testBytes = new byte[] {'y', 'a', 'm', 's'};
      private ByteArrayInputStream buffer;
    
      @SuppressWarnings("DoNotMock")
      @Override
      protected void setUp() throws Exception {
        super.setUp();
        hasher = mock(Hasher.class);
        hashFunction = mock(HashFunction.class);
        buffer = new ByteArrayInputStream(testBytes);
    
        when(hashFunction.newHasher()).thenReturn(hasher);
      }
    
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 5K bytes
    - Viewed (0)
Back to top