Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 49 for listbox (0.04 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. .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)
  3. .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)
  4. .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)
  5. 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)
  6. 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)
  7. src/test/java/org/codelibs/fess/job/PingSearchEngineJobTest.java

            };
    
            // Mock Postbox - no need to mock, the framework will handle it
    
            // Register components
            ComponentUtil.register(searchEngineClient, "searchEngineClient");
            ComponentUtil.register(systemHelper, "systemHelper");
            ComponentUtil.setFessConfig(fessConfig);
            ComponentUtil.register(notificationHelper, "notificationHelper");
            // Postbox is handled by the framework
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 18.9K bytes
    - Click Count (0)
  8. build-logic/dependency-modules/src/main/kotlin/gradlebuild/modules/model/License.kt

            "https://www.bouncycastle.org/licence.html",
            listOf("Bouncy Castle Licence"),
        ),
        EPL(
            "Eclipse Public License 1.0",
            "https://www.eclipse.org/legal/epl-v10.html",
            listOf("EPL-1.0", "Eclipse Public License v1.0"),
        ),
        EPL2(
            "Eclipse Public License 2.0",
            "https://www.eclipse.org/legal/epl-v20.html",
            listOf("EPL-2.0", "Eclipse Public License v2.0"),
        ),
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 13:24:46 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  9. build-logic-settings/configuration-cache-compatibility/src/main/kotlin/gradlebuild.configuration-cache-compatibility.settings.gradle.kts

            // Kotlin/JS
            // https://youtrack.jetbrains.com/issue/KT-50881
            task.name in listOf("generateExternals") -> true
    
            // JMH plugin
            task.name in listOf("jmh", "jmhJar", "jmhReport") -> true
    
            // Gradle Doctor plugin
            task.name in listOf(
                "graph", "graphMain",
                "projectGraphReport",
                "ripples",
                "aggregateAdvice",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 26 15:18:40 GMT 2026
    - 3.8K bytes
    - Click Count (0)
  10. .teamcity/src/test/kotlin/ApplyDefaultConfigurationTest.kt

            val linuxPaths =
                listOf(
                    "%linux.java8.oracle.64bit%",
                    "%linux.java11.openjdk.64bit%",
                    "%linux.java17.openjdk.64bit%",
                    "%linux.java21.openjdk.64bit%",
                    "%linux.java25.openjdk.64bit%",
                    "%linux.java26.openjdk.64bit%",
                )
            val windowsPaths =
                listOf(
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Mar 13 05:03:56 GMT 2026
    - 7.1K bytes
    - Click Count (0)
Back to Top