Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 29 for Enter (0.02 seconds)

  1. .teamcity/src/main/kotlin/promotion/PublishRelease.kt

                    description = "Enter the git 'user.email' configuration to commit change under",
                    display = ParameterDisplay.PROMPT,
                    allowEmpty = true,
                )
                text(
                    "confirmationCode",
                    "",
                    label = "Confirmation Code",
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Thu Jul 24 03:08:48 GMT 2025
    - 4K bytes
    - Click Count (0)
  2. 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)
  3. .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)
  4. src/main/webapp/WEB-INF/view/common/help.jsp

    <dl>
    	<dt>Field</dt>
    	<dd>
    		You can search any field by typing the field name followed by a colon
    		":" and then the term you are looking for. If you want to find
    		documents which has "Fess" as the document title, you can enter:
    		<pre>title:Fess</pre>
    		The available fields are "url", "host", "site", "title", "content",
    		"content_length", "last_modified" and "mimetype", and they are
    		customizable.
    	</dd>
    	<dt>Sort</dt>
    	<dd>
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Feb 26 14:01:31 GMT 2018
    - 2.4K bytes
    - Click Count (0)
  5. 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,
        SEMICOLON: 186,
        EQUALS: 187,
    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)
  6. src/main/webapp/js/admin/admin.js

        if (e.which === 13) {
          var $submitButton = $("input#submit, button#submit");
          if ($submitButton.size() > 0) {
            $submitButton[0].submit();
          }
          // ignore enter key down
          return false;
        }
      });
    
      $(".table tr[data-href]").each(function() {
        $(this)
          .css("cursor", "pointer")
          .hover(
            function() {
              $(this).addClass("active");
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Mon Aug 06 20:44:47 GMT 2018
    - 3.1K bytes
    - Click Count (0)
  7. src/main/resources/fess_label_en.properties

    labels.chat_step_intent=Analyze
    labels.chat_step_search=Search
    labels.chat_step_evaluate=Evaluate
    labels.chat_step_fetch=Retrieve
    labels.chat_step_answer=Answer
    labels.chat_input_hint=Press Enter to send, Shift+Enter for new line
    labels.chat_send=Send message
    labels.chat_retry=Retry
    labels.chat_dismiss=Dismiss
    labels.chat_copied=Copied!
    labels.chat_copy_failed=Copy failed
    
    labels.chat_filter=Filter
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  8. src/main/java/org/codelibs/fess/sso/spnego/SpnegoAuthenticator.java

     * which is commonly used for Kerberos-based authentication in Windows environments.
     * It handles the negotiation between client and server to establish a secure
     * authentication context without requiring users to explicitly enter credentials.
     *
     * The authenticator supports various configuration options including delegation,
     * basic authentication fallback, and localhost authentication bypass.
     */
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sun Mar 15 08:18:23 GMT 2026
    - 18.2K bytes
    - Click Count (3)
  9. src/main/resources/fess_label.properties

    labels.chat_step_intent=Analyze
    labels.chat_step_search=Search
    labels.chat_step_evaluate=Evaluate
    labels.chat_step_fetch=Retrieve
    labels.chat_step_answer=Answer
    labels.chat_input_hint=Press Enter to send, Shift+Enter for new line
    labels.chat_send=Send message
    labels.chat_retry=Retry
    labels.chat_dismiss=Dismiss
    labels.chat_copied=Copied!
    labels.chat_copy_failed=Copy failed
    labels.chat_filter=Filter
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 28 11:54:13 GMT 2026
    - 48.9K bytes
    - Click Count (0)
  10. src/main/webapp/js/admin/plugins/daterangepicker/daterangepicker.js

                this.setStartDate(start);
                this.setEndDate(end);
                this.updateView();
            },
    
            keydown: function(e) {
                //hide on tab or enter
                if ((e.keyCode === 9) || (e.keyCode === 13)) {
                    this.hide();
                }
    
                //hide on esc and prevent propagation
                if (e.keyCode === 27) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Oct 26 01:49:09 GMT 2024
    - 64.8K bytes
    - Click Count (0)
Back to Top