Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 281 for Creation (0.04 sec)

  1. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessTimeResourceProviderTest.java

                }
            };
    
            FessTimeResourceProvider emptyProvider = new FessTimeResourceProvider(emptyConfig);
            assertNotNull(emptyProvider);
        }
    
        // Test thread safety of provider creation
        public void test_threadSafetyProviderCreation() throws InterruptedException {
            final int threadCount = 10;
            final Thread[] threads = new Thread[threadCount];
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 17.4K bytes
    - Viewed (0)
  2. android/guava-testlib/src/com/google/common/collect/testing/testers/MapCreationTester.java

    import com.google.common.collect.testing.features.MapFeature;
    import java.lang.reflect.Method;
    import java.util.List;
    import java.util.Map.Entry;
    import org.junit.Ignore;
    
    /**
     * A generic JUnit test which tests creation (typically through a constructor or static factory
     * method) of a map. Can't be invoked directly; please see {@link
     * com.google.common.collect.testing.MapTestSuiteBuilder}.
     *
     * @author Chris Povirk
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. src/test/java/jcifs/internal/smb1/com/SmbComNTCreateAndXTest.java

    import jcifs.Configuration;
    import jcifs.SmbConstants;
    import jcifs.internal.smb1.ServerMessageBlock;
    
    /**
     * Unit tests for {@link SmbComNTCreateAndX}.  The tests exercise the
     * constructor’s flag handling, response creation and simple accessors.
     *
     * <p>All tests run in the same package as the class under test so that
     * package‑private members are visible if required.
     */
    @ExtendWith(MockitoExtension.class)
    class SmbComNTCreateAndXTest {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  4. src/test/java/jcifs/pac/kerberos/KerberosPacAuthDataTest.java

    class KerberosPacAuthDataTest {
    
        private Map<Integer, KerberosKey> keys;
    
        @BeforeEach
        void setUp() {
            keys = new HashMap<>();
        }
    
        // Test successful PAC creation with mocked Pac construction
        @Test
        void testConstructorSuccess() throws PACDecodingException {
            // Setup key
            byte[] keyBytes = new byte[32];
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 07:14:38 UTC 2025
    - 6.3K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/pager/ElevateWordPager.java

        public String suggestWord;
    
        /** Search parameter: boost value */
        public String boost;
    
        /** Search parameter: created by user */
        public String createdBy;
    
        /** Search parameter: creation time */
        public String createdTime;
    
        /** Search parameter: version number */
        public String versionNo;
    
        /**
         * Clears all pagination data and search parameters.
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Jul 17 08:28:31 UTC 2025
    - 6.6K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/MonotonicClock.java

            return get().elapsedTime();
        }
    
        /**
         * Returns a monotonically increasing instant.
         * <p>
         * The returned instant is calculated by adding the elapsed nanoseconds
         * since clock creation to the initial wall clock time. This ensures that
         * the time never goes backwards and maintains a consistent relationship
         * with the wall clock time.
         *
         * @return the current instant using monotonic timing
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 06:28:29 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  7. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessApiFailureHookTest.java

            // Test with empty message
            RuntimeException emptyMessageEx = new RuntimeException("");
            assertEquals("", emptyMessageEx.getMessage());
        }
    
        // Test JSON response creation helper
        public void test_jsonResponseCreation() {
            ApiResult.ApiErrorResponse errorResponse = new ApiResult.ApiErrorResponse();
            errorResponse.message("Success");
            errorResponse.status(Status.OK);
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 7K bytes
    - Viewed (0)
  8. src/main/java/jcifs/internal/smb2/notify/Smb2ChangeNotifyRequest.java

        public static final int FILE_NOTIFY_CHANGE_LAST_WRITE = 0x10;
        /**
         * Notify when last access time changes
         */
        public static final int FILE_NOTIFY_CHANGE_LAST_ACCESS = 0x20;
        /**
         * Notify when creation time changes
         */
        public static final int FILE_NOTIFY_CHANGE_CREATION = 0x40;
        /**
         * Notify when extended attributes change
         */
        public static final int FILE_NOTIFY_CHANGE_EA = 0x80;
        /**
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 16 01:32:48 UTC 2025
    - 5.5K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/app/web/admin/webconfig/AdminWebconfigAction.java

        //                                            ----------
        /**
         * Displays the form for creating a new web crawler configuration.
         *
         * @return HTML response for the web config creation form
         */
        @Execute
        @Secured({ ROLE })
        public HtmlResponse createnew() {
            saveToken();
            return asEditHtml().useForm(CreateForm.class, op -> {
                op.setup(form -> {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Thu Aug 07 03:06:29 UTC 2025
    - 21K bytes
    - Viewed (0)
  10. src/test/java/org/codelibs/fess/mylasta/direction/sponsor/FessCookieResourceProviderTest.java

        }
    
        // Test cookie cipher
        public void test_provideCookieCipher() {
            // provideCookieCipher is not directly exposed anymore
            // Testing through cookie spec creation instead
            // CookieSpec is not directly available for testing
            assertNotNull(cookieResourceProvider);
        }
    
        // Test with null configuration values
        public void test_withNullConfigValues() {
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Tue Aug 19 14:09:36 UTC 2025
    - 8.9K bytes
    - Viewed (0)
Back to top