Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 112 for BarTest (0.17 sec)

  1. platforms/software/testing-base-infrastructure/src/test/groovy/org/gradle/api/internal/tasks/testing/filter/TestSelectionMatcherTest.groovy

            ["FooTest", "*BarTest"]             | "FooTest"                 | "test"                | true
            ["FooTest", "*BarTest"]             | "FooTest"                 | "xxxx"                | true
            ["FooTest", "*BarTest"]             | "BarTest"                 | "xxxx"                | true
            ["FooTest", "*BarTest"]             | "com.foo.BarTest"         | "xxxx"                | true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  2. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/AbstractTestFilteringIntegrationTest.groovy

                    @Test public void pass2() {}
                    @Test public void bar() {}
                }
            """
            file("src/test/java/BarTest.java") << """
                ${testFrameworkImports}
                public class BarTest {
                    @Test public void bar() {}
                }
            """
            file("src/test/java/OtherTest.java") << """
                ${testFrameworkImports}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 17.2K bytes
    - Viewed (0)
  3. platforms/software/testing-base/src/test/groovy/org/gradle/api/internal/tasks/testing/report/DefaultTestReportTest.groovy

            passedClassFile.assertHasLinkTo('../packages/org.gradle.aggregation', 'org.gradle.aggregation')
    
            def mixedClassFile = results(reportDir.file('classes/org.gradle.aggregation.BarTest.html'))
            mixedClassFile.assertHasTests(2)
            mixedClassFile.assertHasFailures(1)
            mixedClassFile.assertHasIgnored(0)
            mixedClassFile.assertHasSuccessRate(50)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 27.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // Values(T v1, T v2, ..., T vN)
    //   - returns a generator producing sequences with elements v1, v2, ..., vN.
    //
    // For example, this instantiates tests from test case BarTest each
    // with values "one", "two", and "three":
    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // Values(T v1, T v2, ..., T vN)
    //   - returns a generator producing sequences with elements v1, v2, ..., vN.
    //
    // For example, this instantiates tests from test case BarTest each
    // with values "one", "two", and "three":
    //
    // INSTANTIATE_TEST_CASE_P(NumSequence, BarTest, Values("one", "two", "three"));
    //
    // This instantiates tests from test case BazTest each with values 1, 2, 3.5.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  6. src/net/http/cookiejar/jar_test.go

    type query struct {
    	toURL string // the URL in the Cookies call
    	want  string // the expected list of cookies (order matters)
    }
    
    // run runs the jarTest.
    func (test jarTest) run(t *testing.T, jar *Jar) {
    	now := tNow
    
    	// Populate jar with cookies.
    	setCookies := make([]*http.Cookie, len(test.setCookies))
    	for i, cs := range test.setCookies {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. src/vendor/golang.org/x/text/unicode/norm/normalize.go

    // It is not guaranteed to return the largest such n.
    func (f Form) QuickSpan(b []byte) int {
    	n, _ := formTable[f].quickSpan(inputBytes(b), 0, len(b), true)
    	return n
    }
    
    // Span implements transform.SpanningTransformer. It returns a boundary n such
    // that b[0:n] == f(b[0:n]). It is not guaranteed to return the largest such n.
    func (f Form) Span(b []byte, atEOF bool) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 14.9K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/unicode/norm/normalize.go

    // It is not guaranteed to return the largest such n.
    func (f Form) QuickSpan(b []byte) int {
    	n, _ := formTable[f].quickSpan(inputBytes(b), 0, len(b), true)
    	return n
    }
    
    // Span implements transform.SpanningTransformer. It returns a boundary n such
    // that b[0:n] == f(b[0:n]). It is not guaranteed to return the largest such n.
    func (f Form) Span(b []byte, atEOF bool) (n int, err error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/apis/core/v1/helper/helpers.go

    	return resource.ParseQuantity(pageSize)
    }
    
    // HugePageUnitSizeFromByteSize returns hugepage size has the format.
    // `size` must be guaranteed to divisible into the largest units that can be expressed.
    // <size><unit-prefix>B (1024 = "1KB", 1048576 = "1MB", etc).
    func HugePageUnitSizeFromByteSize(size int64) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 30 23:03:54 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  10. src/html/template/transition.go

    		k = i + 1
    	}
    }
    
    // tError is the context transition function for the error state.
    func tError(c context, s []byte) (context, int) {
    	return c, len(s)
    }
    
    // eatAttrName returns the largest j such that s[i:j] is an attribute name.
    // It returns an error if s[i:] does not look like it begins with an
    // attribute name, such as encountering a quote mark without a preceding
    // equals sign.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 19:54:31 UTC 2024
    - 18.2K bytes
    - Viewed (0)
Back to top