Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 336 for Display (0.12 sec)

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

                    display = ParameterDisplay.PROMPT,
                    allowEmpty = true
                )
                text(
                    "confirmationCode",
                    "",
                    label = "Confirmation Code",
                    description = "Enter the value '$requiredConfirmationCode' (no quotes) to confirm the promotion",
                    display = ParameterDisplay.PROMPT,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 05 00:08:14 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalTestDescriptor.java

     *
     * @since 2.4
     */
    @NonNullApi
    public interface InternalTestDescriptor extends InternalOperationDescriptor {
        /**
         * Returns the display name of the test.
         *
         * @return The display name of the test
         * @since 8.8
         */
        String getTestDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/FileLockManager.java

         *
         * @param target The file to be locked.
         * @param options The lock options.
         * @param targetDisplayName A display name for the target file. This is used in log and error messages.
         * @param operationDisplayName A display name for the operation being performed on the target file. This is used in log and error messages.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:51 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/UnionFileTreeTest.groovy

    import spock.lang.Specification
    
    class UnionFileTreeTest extends Specification {
        private final UnionFileTree set = new UnionFileTree(TestFiles.taskDependencyFactory(), "<display name>")
    
        def setup() {
            NativeServicesTestFixture.initialize()
        }
    
        def canAddFileTree() {
            FileTreeInternal set1 = Mock(FileTreeInternal)
            when:
            set.addToUnion(set1)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  5. src/main/java/jcifs/SID.java

         * 
         * @return the RID
         */
        int getRid ();
    
    
        /**
         * Return a String representing this SID ideal for display to
         * users. This method should return the same text that the ACL
         * editor in Windows would display.
         * <p>
         * Specifically, if the SID has
         * been resolved and it is not a domain SID or builtin account,
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/internal/tasks/DefaultGroovySourceSetTest.groovy

        def sourceSet = TestUtil.newInstance(DefaultGroovySourceSet, "<name>", "<display-name>", TestUtil.objectFactory(tmpDir.testDirectory))
    
        void defaultValues() {
            expect:
            sourceSet.groovy instanceof GroovySourceDirectorySet
            sourceSet.groovy.isEmpty()
            sourceSet.groovy.name == '<name>'
            sourceSet.groovy.displayName == '<display-name> Groovy source'
            def includes = sourceSet.groovy.filter.includes
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 2.7K bytes
    - Viewed (0)
  7. platforms/software/testing-base/src/main/java/org/gradle/api/tasks/testing/logging/TestExceptionFormat.java

    /**
     * Determines how exceptions are formatted in test logging.
     */
    public enum TestExceptionFormat {
        /**
         * Short display of exceptions.  Shows the exception types and locations as well as the hierarchy of causes, but not exception messages or full stack traces.
         */
        SHORT,
        /**
         * Full display of exceptions.
         */
        FULL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1017 bytes
    - Viewed (0)
  8. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/TestDescriptorInternal.java

        @Nullable
        @Override
        TestDescriptorInternal getParent();
    
        Object getId();
    
        /**
         * The class name for display. It may be the same as or different from {@link #getClassName()}
         * @return the class name for display.
         */
        @Nullable
        String getClassDisplayName();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/logging/console/ConsoleStub.java

            }
    
            public List<String> getDisplay() {
                List<String> display = new ArrayList<String>(testableLabels.size());
                for (TestableRedrawableLabel label : testableLabels) {
                    display.add(label.getDisplay());
                }
                return display;
            }
    
            void redraw() {
                for (TestableRedrawableLabel label : testableLabels) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  10. platforms/core-execution/persistent-cache/src/main/java/org/gradle/cache/internal/ProcessMetaDataProvider.java

         * Returns a unique identifier for this process. Should be unique across all processes on the local machine.
         */
        String getProcessIdentifier();
    
        /**
         * Returns a display name for this process. Should allow a human to figure out which process the display name refers to.
         */
        String getProcessDisplayName();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:08:47 UTC 2023
    - 1.1K bytes
    - Viewed (0)
Back to top