Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 139 for _enter (0.05 seconds)

  1. architecture/standards/0009-use-american-english.md

    Use American English spelling, for example:
    
    * `color` (not `colour`)
    * `initialize` (not `initialise`)
    * `behavior` (not `behaviour`)
    * `analyze` (not `analyse`)
    * `organization` (not `organisation`)
    * `center` (not `centre`)
    * `canceled` (not `cancelled`)
    * `labeled` (not `labelled`)
    
    ### Rationale for American English
    
    American English was chosen for the following reasons:
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Mar 05 12:39:41 GMT 2026
    - 3.9K bytes
    - Click Count (0)
  2. src/test/java/org/codelibs/fess/crawler/interval/FessIntervalControllerTest.java

         */
        @Test
        public void test_constructor() {
            FessIntervalController controller = new FessIntervalController();
            assertNotNull(controller);
        }
    
        /**
         * Test getter and setter for delayMillisAfterProcessing
         */
        @Test
        public void test_delayMillisAfterProcessing() {
            FessIntervalController controller = new FessIntervalController();
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Wed Jan 14 14:29:07 GMT 2026
    - 6.2K bytes
    - Click Count (0)
  3. src/main/webapp/css/chat.css

       Empty State (ADS pattern)
       ============================================ */
    .empty-state {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 3rem 2rem;
        text-align: center;
        height: 100%;
        background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    }
    
    .empty-state-icon {
        width: 80px;
        height: 80px;
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 06:21:57 GMT 2026
    - 19.4K bytes
    - Click Count (0)
  4. build-logic/binary-compatibility/src/main/groovy/gradlebuild/EnrichedReportRenderer.groovy

                        return result;
                    }
    
                    function acceptAllErrorCorrections() {
                        var reason = prompt("Enter a reason for accepting these changes:");
                        if (!reason) {
                            alert("You must enter a reason to accept all changes.");
                            return;
                        }
    
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jan 22 12:18:18 GMT 2026
    - 7K bytes
    - Click Count (0)
  5. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/upgrades/UpgradedProperties.java

         *
         * Here we automatically accept the following cases:
         * - A setter `setX` of an upgraded property is removed
         * - A boolean `isX` of an upgraded property is removed
         * - A new getter `getX` is added, where the old getter is a boolean getter `isX` of an upgraded property
         * - A return type is changed for a getter `getX` of an upgraded property
         *
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Dec 24 14:15:15 GMT 2025
    - 9.3K bytes
    - Click Count (0)
  6. src/main/webapp/js/suggestor.js

     * Provides real-time search suggestions with keyboard and mouse navigation
     */
    (function ($) {
      "use strict";
    
      // Key code constants for better readability
      var KEY_CODES = {
        BACKSPACE: 8,
        ENTER: 13,
        SPACE: 32,
        UP: 38,
        DOWN: 40,
        DELETE: 46,
        NUM_0: 48,
        NUM_9: 57,
        A: 65,
        Z: 90,
        NUMPAD_0: 96,
        NUMPAD_9: 105,
    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)
  7. build-logic/binary-compatibility/src/main/kotlin/gradlebuild/binarycompatibility/metadata/HasKotlinFlagsMetadataQuery.kt

        for (p in properties) {
            when (jvmSignature) {
                p.fieldSignature?.toString() -> return predicate.match(p)
                p.getterSignature?.toString() -> return predicate.match(p.getter)
                p.setterSignature?.toString() -> return p.setter?.let { predicate.match(it) } ?: false
            }
        }
        return false
    }
    
    interface AttributePredicate {
        fun match(kmClass: KmClass): Boolean
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Fri Jul 04 09:21:38 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  8. src/test/java/org/codelibs/fess/dict/stopwords/StopwordsItemTest.java

            assertEquals(123, item.getId());
            assertEquals("and", item.getInput());
            assertNull(item.getNewInput());
        }
    
        @Test
        public void test_getNewInput_setNewInput() {
            // Test getter and setter for newInput
            StopwordsItem item = new StopwordsItem(1, "or");
            assertNull(item.getNewInput());
    
            item.setNewInput("nor");
            assertEquals("nor", item.getNewInput());
    
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Fri Mar 13 23:01:26 GMT 2026
    - 11.4K bytes
    - Click Count (0)
  9. src/main/webapp/WEB-INF/view/admin/suggest/admin_suggest.jsp

                                                    <th class="text-center" style="width: 10%"><la:message
                                                            key="labels.suggest_word_number"/></th>
                                                    <th class="text-center" style="width: 20%"></th>
                                                </tr>
                                                </thead>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 23 08:03:44 GMT 2026
    - 18.3K bytes
    - Click Count (0)
  10. .teamcity/src/main/kotlin/promotion/StartReleaseCycle.kt

                    description = "Enter the git 'user.email' configuration to commit change under",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = true,
                )
                text(
                    "confirmationCode",
                    "",
                    label = "Confirmation Code",
                    description = "Enter the value 'startCycle' (no quotes) to confirm the promotion",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Wed Feb 18 14:06:58 GMT 2026
    - 2.7K bytes
    - Click Count (0)
Back to Top