Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 775 for display2 (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. tensorflow/compiler/mlir/lite/tests/debuginfo/saved_model_error.py

    # See the License for the specific language governing permissions and
    # limitations under the License.
    # ==============================================================================
    """Test file to display the error message and verify it with FileCheck."""
    
    # RUN: %p/saved_model_error | FileCheck %s
    
    import sys
    
    from absl import app
    
    import tensorflow.compat.v2 as tf
    if hasattr(tf, 'enable_v2_behavior'):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  6. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/TaskReportTask.java

            return detail;
        }
    
        /**
         * Set a specific task group to be displayed.
         *
         * @since 5.1
         */
        @Option(option = "group", description = "Show tasks for a specific group.")
        public void setDisplayGroup(String group) {
            this.group = group;
        }
    
        /**
         * Returns the task group to be displayed.
         *
         * This property can be set via command-line option '--group'.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Oct 24 23:13:41 UTC 2022
    - 9.7K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/css/base.css

    }
    
    .content, .sidebar {
        display: inline-block;
    }
    
    .sidebar {
        float: right;
        width: 12.5rem;
    }
    
    @media screen and (max-width: 45em) {
        .container, .footer {
            max-width: 100%;
        }
        .content {
            display: block;
            width: auto;
        }
        .sidebar {
            display: none;
        }
        .container,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/css/manual.css

    /** Correct `block` display not defined in IE 8/9. */
    article,
    aside,
    details,
    figcaption,
    figure,
    footer,
    header,
    hgroup,
    main,
    nav,
    section,
    summary {
    	display: block;
    }
    
    /** Correct `inline-block` display not defined in IE 8/9. */
    audio,
    canvas,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat May 25 05:15:02 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  9. JavadocStyleGuide.md

    `Settings -> Editor -> General -> Smart Keys -> "Insert closing tag on tag completion"`
    
    ### 1.5.2 Android Studio
    
    Android studio will not display javadoc following a `<p>` so make sure your summary fragment is well detailed:
    
    ```java
    /**
     * A // Displayed
     * <p>
     * B // Not displayed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 15:43:07 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformLoggingIntegrationTest.groovy

             """
    
            when:
            run("test")
    
            then:
            outputContains("Class level display name > Method display name")
            outputContains("Class level display name > Nested class display name > Nested test method display name")
        }
    
        def "should fall back to plain name if no display names present"() {
            given:
            file("src/test/java/pkg/TopLevelClass.java") << """
                package pkg;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top