Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 38 for BarTest (0.11 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/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)
  3. 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)
  4. 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)
  5. src/compress/flate/deflate.go

    	minMatchLength  = 4       // The smallest match length that the compressor actually emits
    	maxMatchLength  = 258     // The largest match length
    	baseMatchOffset = 1       // The smallest match offset
    	maxMatchOffset  = 1 << 15 // The largest match offset
    
    	// The maximum number of tokens we put into a single flate block, just to
    	// stop things from getting too large.
    	maxFlateBlockTokens = 1 << 14
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 13:32:40 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  6. guava/src/com/google/common/primitives/UnsignedBytes.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class UnsignedBytes {
      private UnsignedBytes() {}
    
      /**
       * The largest power of two that can be represented as an unsigned {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/primitives/UnsignedBytes.java

    @GwtIncompatible
    @ElementTypesAreNonnullByDefault
    public final class UnsignedBytes {
      private UnsignedBytes() {}
    
      /**
       * The largest power of two that can be represented as an unsigned {@code byte}.
       *
       * @since 10.0
       */
      public static final byte MAX_POWER_OF_TWO = (byte) 0x80;
    
      /**
       * The largest value that fits into an unsigned byte.
       *
       * @since 13.0
       */
      public static final byte MAX_VALUE = (byte) 0xFF;
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 18.3K bytes
    - Viewed (0)
  8. pilot/pkg/config/kube/gateway/conversion_test.go

    								MatchType: &istio.StringMatch_Regex{
    									Regex: ".*foo",
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		{
    			"path prefix matching with largest characters",
    			[]*istio.HTTPRoute{
    				{
    					Match: []*istio.HTTPMatchRequest{
    						{
    							Uri: &istio.StringMatch{
    								MatchType: &istio.StringMatch_Prefix{
    									Prefix: "/foo",
    								},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 20:24:52 UTC 2024
    - 34.9K bytes
    - Viewed (0)
  9. src/math/big/float.go

    		panic(ErrNaN{"NewFloat(NaN)"})
    	}
    	return new(Float).SetFloat64(x)
    }
    
    // Exponent and precision limits.
    const (
    	MaxExp  = math.MaxInt32  // largest supported exponent
    	MinExp  = math.MinInt32  // smallest supported exponent
    	MaxPrec = math.MaxUint32 // largest (theoretically) supported precision; likely memory-limited
    )
    
    // Internal representation: The mantissa bits x.mant of a nonzero finite
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 15:46:54 UTC 2024
    - 44.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/cel/library/cost.go

    				// If the replacement does not make the result longer, use the original string length.
    				replaceCount.Max = 0
    				retainedSz.Max = sz.Max
    			} else {
    				// Replace the smallest possible substrings with the largest possible replacement
    				// as many times as possible.
    				replaceCount.Max = uint64(math.Ceil(float64(sz.Max) / float64(toReplaceSz.Min)))
    			}
    
    			// find the shortest replacement:
    			if toReplaceSz.Max == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 17:22:44 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top