Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for SLinkedList (0.04 sec)

  1. src/main/java/org/codelibs/core/timer/TimeoutManager.java

        /**
         * {@link Thread} for the timer.
         */
        protected Thread thread;
    
        /**
         * A list for managing {@link TimeoutTask}.
         */
        protected final SLinkedList<TimeoutTask> timeoutTaskList = new SLinkedList<>();
    
        private TimeoutManager() {
        }
    
        /**
         * Returns the instance for the singleton.
         *
         * @return the instance for the singleton
         */
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 7.8K bytes
    - Viewed (0)
  2. src/test/java/org/codelibs/core/collection/SLinkedListTest.java

    import org.codelibs.core.io.SerializeUtil;
    import org.junit.Test;
    
    /**
     * @author higa
     */
    public class SLinkedListTest {
    
        private final SLinkedList<String> list = new SLinkedList<String>();
    
        /**
         * @throws Exception
         */
        @Test
        public void testGetFirstEntry() throws Exception {
            assertThat(list.getFirstEntry(), is(nullValue()));
    Registered: Fri Sep 05 20:58:11 UTC 2025
    - Last Modified: Sat May 10 01:32:17 UTC 2025
    - 8.3K bytes
    - Viewed (0)
Back to top