Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 208 for Display (0.14 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/platform/JUnitPlatformUserGuideIntegrationTest.groovy

    /**
     * These test cases are all from http://junit.org/junit5/docs/current/user-guide
     */
    class JUnitPlatformUserGuideIntegrationTest extends JUnitPlatformIntegrationSpec {
        def 'can display test case and test class in @DisplayName'() {
            given:
            file('src/test/java/org/gradle/DisplayNameDemo.java') << '''
    package org.gradle;
    import org.junit.jupiter.api.*;
    
    @DisplayName("A special test case")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  2. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileCollectionSpec.groovy

            }
            return collection
        }
    
        private static abstract class TestCollection extends CompositeFileCollection {
            @Override
            String getDisplayName() {
                return "<display-name>"
            }
    
            @Override
            protected void visitChildren(Consumer<FileCollectionInternal> visitor) {
                throw new UnsupportedOperationException();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 12K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-param-util.h

    // and calls RegisterTests() on each of them when asked.
    class ParameterizedTestCaseInfoBase {
     public:
      virtual ~ParameterizedTestCaseInfoBase() {}
    
      // Base part of test case name for display purposes.
      virtual const string& GetTestCaseName() const = 0;
      // Test case id to verify identity.
      virtual TypeId GetTestCaseTypeId() const = 0;
      // UnitTest class invokes this method to register tests in this
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 23.6K bytes
    - Viewed (0)
  4. licenses/sigs.k8s.io/yaml/LICENSE

          this License, each Contributor hereby grants to You a perpetual,
          worldwide, non-exclusive, no-charge, royalty-free, irrevocable
          copyright license to reproduce, prepare Derivative Works of,
          publicly display, publicly perform, sublicense, and distribute the
          Work and such Derivative Works in Source or Object form.
    
       3. Grant of Patent License. Subject to the terms and conditions of
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 31 19:53:28 UTC 2023
    - 15.8K bytes
    - Viewed (0)
  5. android/guava-testlib/src/com/google/common/collect/testing/google/SortedMultisetTestSuiteBuilder.java

            .suppressing(parentBuilder.getSuppressedTests())
            .createTestSuite();
      }
    
      /**
       * Returns an array of four bogus elements that will always be too high or too low for the
       * display. This includes two values for each extreme.
       *
       * <p>This method (dangerously) assume that the strings {@code "!! a"} and {@code "~~ z"} will
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Feb 26 19:46:10 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  6. src/syscall/security_windows.go

    		}
    		if e != ERROR_INSUFFICIENT_BUFFER {
    			return nil, "", 0, e
    		}
    		if n <= uint32(len(b)) {
    			return nil, "", 0, e
    		}
    	}
    }
    
    // String converts sid to a string format
    // suitable for display, storage, or transmission.
    func (sid *SID) String() (string, error) {
    	var s *uint16
    	e := ConvertSidToStringSid(sid, &s)
    	if e != nil {
    		return "", e
    	}
    	defer LocalFree((Handle)(unsafe.Pointer(s)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 12 16:42:41 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. maven-artifact/src/main/java/org/apache/maven/artifact/versioning/ComparableVersion.java

         * command to command line. Result of given command will be something like this:
         * <pre>
         * Display parameters as parsed by Maven (in canonical form) and comparison result:
         * 1. 1.2.7 == 1.2.7
         *    1.2.7 &gt; 1.2-SNAPSHOT
         * 2. 1.2-SNAPSHOT == 1.2-snapshot
         * </pre>
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 26K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/deprecation/DeprecationLogger.java

            return new ExplicitDeprecationMessageBuilder(feature);
        }
    
        /**
         * Indirect usage means that stack trace at the time the deprecation is logged does not indicate the call site.
         * This directs GE to not display unhelpful stacktraces with the deprecation.
         * <p>
         * Output: ${feature} has been deprecated.
         */
        @CheckReturnValue
        public static DeprecationMessageBuilder<?> deprecateIndirectUsage(String feature) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    In order to be able to visualize such issues, the outgoing variant reports handle those errors in a lenient fashion.
    This allows the report to display information about the issue.
    
    === Resolvable configurations report
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolvedArtifactsApiIntegrationTest.groovy

        doLast {
            println "files: " + artifacts.collect { it.file.name }
            println "ids: " + artifacts.collect { it.id.displayName }
            println "unique ids: " + artifacts.collect { it.id }.unique()
            println "display-names: " + artifacts.collect { it.toString() }
            println "components: " + artifacts.collect { it.id.componentIdentifier.displayName }
            println "unique components: " + artifacts.collect { it.id.componentIdentifier }.unique()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 32.7K bytes
    - Viewed (0)
Back to top