Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 362 for display2 (0.27 sec)

  1. Development.md

    2. That should be it. The suggestion will be displayed in the "Try" section.
    
    ### Remove generic suggestions
    
    For some scenarios, it doesn't make sense to display all the generic suggestions we currently have.
    E.g. `--stacktrace` for a compilation error is not helpful.
    
    To influence the generic suggestions Gradle displays, the NonGradleCause interface was introduced.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 22:54:40 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/internal/driver/html/common.css

      right: 2px;
    }
    
    {{/* Used to disable events when a modal dialog is displayed */}}
    #dialog-overlay {
      display: none;
      position: fixed;
      left: 0px;
      top: 0px;
      width: 100%;
      height: 100%;
      background-color: rgba(1,1,1,0.1);
    }
    
    .dialog {
      {{/* Displayed centered horizontally near the top */}}
      display: none;
      position: fixed;
      margin: 0px;
      top: 60px;
      left: 50%;
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 18:58:12 UTC 2022
    - 5.5K bytes
    - Viewed (0)
  3. docs/en/docs/css/termynal.css

        width: 100%;
        text-align: center;
    }
    
    a[data-terminal-control] {
        text-align: right;
        display: block;
        color: #aebbff;
    }
    
    [data-ty] {
        display: block;
        line-height: 2;
    }
    
    [data-ty]:before {
        /* Set up defaults and ensure empty lines are displayed. */
        content: '';
        display: inline-block;
        vertical-align: middle;
    }
    
    [data-ty="input"]:before,
    [data-ty-prompt]:before {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java

         *
         * @param message the message to display
         * @return the password entered by the user
         * @throws PrompterException if an exception occurs
         */
        @Nonnull
        String promptForPassword(@Nullable String message) throws PrompterException;
    
        /**
         * Displays a message to the user.
         *
         * @param message the message to display
         * @throws PrompterException if an exception occurs
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/reporting/model/ModelReportTaskIntegrationTest.groovy

    @UnsupportedWithConfigurationCache(because = "software model")
    class ModelReportTaskIntegrationTest extends AbstractIntegrationSpec {
    
        def "should display the model report task options"() {
            when:
            run "help", "--task", "model"
    
            then:
            output.contains("Displays the configuration model of root project '${getTestDirectory().name}'. [deprecated]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 29 12:52:59 UTC 2020
    - 1.2K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/test/groovy/org/gradle/api/plugins/HelpTasksPluginSpec.groovy

            child.pluginManager.apply(HelpTasksPlugin)
    
            then:
            project.tasks[ProjectInternal.TASKS_TASK].description == "Displays the tasks runnable from root project 'test-project' (some of the displayed tasks may belong to subprojects)."
            child.tasks[ProjectInternal.TASKS_TASK].description == "Displays the tasks runnable from project ':child'."
        }
    
        private hasHelpTask(String name, Class type) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 22:32:34 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server_windows.go

    		klog.ErrorS(err, "Unable to get current user")
    		return err
    	}
    
    	// For Windows user.UserName contains the login name and user.Name contains
    	// the user's display name - https://pkg.go.dev/os/user#User
    	klog.InfoS("Kubelet is running as", "login name", u.Username, "dispaly name", u.Name)
    
    	if !windows.GetCurrentProcessToken().IsElevated() {
    		return errors.New("kubelet needs to run with elevated permissions!")
    	}
    
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 24 21:57:08 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/report/stacks.go

    	FileName   string
    	UniqueName string // Disambiguates functions with same names
    	Inlined    bool   // If true this source was inlined into its caller
    
    	// Alternative names to display (with decreasing lengths) to make text fit.
    	// Guaranteed to be non-empty.
    	Display []string
    
    	// Places holds the list of stack slots where this source occurs.
    	// In particular, if [a,b] is an element in Places,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  9. platforms/jvm/ear/src/integTest/resources/org/gradle/plugins/ear/application_1_3.dtd

    tools used by the application ear file consumer will display the description when processing the parent element that contains the description. Used in: application, security-role --> <!ELEMENT description (#PCDATA)> <!-- The display-name element contains a short name that is intended to be displayed by tools. The display name need not be unique. Used in: application Example: <display-name>Employee Self Service</display-name> --> <!ELEMENT display-name (#PCDATA)> <!-- The ejb element specifies the URI...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/tests/debuginfo/concrete_function_error.py

    """Test file to display the error message and verify it with FileCheck."""
    
    # RUN: %p/concrete_function_error | FileCheck %s
    
    import sys
    
    from absl import app
    
    import tensorflow.compat.v2 as tf
    if hasattr(tf, 'enable_v2_behavior'):
      tf.enable_v2_behavior()
    
    
    class TestGraphDebugInfo(object):
      """Test stack trace can be displayed."""
    
      def testConcreteFunctionDebugInfo(self):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.5K bytes
    - Viewed (0)
Back to top