Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 91 for listbox (0.08 seconds)

  1. src/main/webapp/js/suggestor.js

              var suggestor;
    
              suggestingSts = false;
              $boxElement = $("<div/>");
              $boxElement.addClass("suggestorBox");
              $boxElement.attr({
                role: "listbox",
                "aria-label": "Search suggestions"
              });
    
              // Apply default or custom CSS styles
              $boxElement.css({
                display: "none",
                position: "absolute",
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Nov 20 11:04:08 GMT 2025
    - 13.3K bytes
    - Click Count (0)
  2. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ListBody.java

    import java.util.Date;
    
    import org.codelibs.fess.app.web.admin.dict.ListForm;
    
    /**
     * The request body for listing dictionaries.
     */
    public class ListBody extends ListForm {
        /**
         * Default constructor.
         */
        public ListBody() {
            super();
        }
    
        /** The ID of the dictionary. */
        public String id;
        /** The type of the dictionary. */
        public String type;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Jul 17 08:28:31 GMT 2025
    - 1.2K bytes
    - Click Count (0)
  3. .teamcity/src/main/kotlin/model/CIBuildModel.kt

                    docsTests =
                        listOf(
                            DocsTestCoverage(
                                Os.LINUX,
                                JvmCategory.MAX_VERSION,
                                listOf(CONFIG_CACHE_ENABLED, CONFIG_CACHE_DISABLED),
                            ),
                            DocsTestCoverage(Os.WINDOWS, JvmCategory.MAX_VERSION, listOf(CONFIG_CACHE_DISABLED)),
                        ),
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jan 20 03:53:25 GMT 2026
    - 27.5K bytes
    - Click Count (0)
  4. src/main/java/org/codelibs/fess/mylasta/mail/EsStatusPostcard.java

        //                                                                         ===========
        public static EsStatusPostcard droppedInto(Postbox postbox, MPCall<EsStatusPostcard> postcardLambda) {
            EsStatusPostcard postcard = new EsStatusPostcard();
            postcardLambda.write(postcard);
            postbox.post(postcard);
            return postcard;
        }
    
        // ===================================================================================
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 15 06:53:53 GMT 2025
    - 4.7K bytes
    - Click Count (0)
  5. src/main/java/org/codelibs/fess/app/web/api/admin/dict/ApiAdminDictAction.java

         */
        protected ListBody createListBody(final DictionaryFile<? extends DictionaryItem> dictionaryFile) {
            final ListBody body = new ListBody();
            body.id = dictionaryFile.getId();
            body.type = dictionaryFile.getType();
            body.path = dictionaryFile.getPath();
            body.timestamp = dictionaryFile.getTimestamp();
            return body;
        }
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 2.6K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/fess/job/PingSearchEngineJob.java

                    }
                    final Postbox postbox = ComponentUtil.getComponent(Postbox.class);
                    try {
                        final NotificationHelper notificationHelper = ComponentUtil.getNotificationHelper();
                        SMailCallbackContext.setPreparedMessageHookOnThread(notificationHelper::send);
                        EsStatusPostcard.droppedInto(postbox, postcard -> {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Aug 07 03:06:29 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  7. .teamcity/src/main/kotlin/model/FunctionalTestBucketProvider.kt

        listOf(
            listOf("0.0", "5.0"), // 0.0 <= version < 5.0
            listOf("5.0", "6.0"), // 5.0 <=version < 6.0
            listOf("6.0", "7.3"), // 6.0 <=version < 7.3
            listOf("7.3", "7.6"), // 7.3 <=version < 7.6
            listOf("7.6", "8.2"), // 7.6 <=version < 8.2
            listOf("8.2", "8.4"), // 8.2 <=version < 8.4
            listOf("8.4", "8.6"), // 8.4 <=version < 8.6
            listOf("8.6", "8.8"), // 8.6 <=version < 8.8
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Feb 12 14:43:33 GMT 2026
    - 8.1K bytes
    - Click Count (0)
  8. .teamcity/src/test/kotlin/PerformanceTestBuildTypeTest.kt

                        StageName.PULL_REQUEST_FEEDBACK,
                        performanceTests = listOf(PerformanceTestCoverage(1, PerformanceTestType.PER_COMMIT, Os.LINUX)),
                    ),
                    PerformanceTestCoverage(1, PerformanceTestType.PER_COMMIT, Os.LINUX),
                    "Description",
                    "performance",
                    listOf("largeTestProject", "smallTestProject"),
                    2,
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 05:03:56 GMT 2026
    - 8.5K bytes
    - Click Count (0)
  9. build-logic/binary-compatibility/src/test/kotlin/gradlebuild/binarycompatibility/UpgradedPropertiesChangesTest.kt

                    "Method com.example.Task.getIsFailOnError(): Is not annotated with @since 2.0. Reason for accepting this: Upgraded property" to listOf("Method added to public class"),
                    "Method com.example.Task.isFailOnError(): Is not binary compatible. Reason for accepting this: Upgraded property" to listOf("Method has been removed"),
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 26.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/fess/mylasta/mail/LogNotificationPostcard.java

        public static LogNotificationPostcard droppedInto(Postbox postbox, MPCall<LogNotificationPostcard> postcardLambda) {
            LogNotificationPostcard postcard = new LogNotificationPostcard();
            postcardLambda.write(postcard);
            postbox.post(postcard);
            return postcard;
        }
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Thu Mar 26 02:24:08 GMT 2026
    - 5.3K bytes
    - Click Count (0)
Back to Top