Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 763 for pattern1 (0.29 sec)

  1. pkg/bootstrap/instance_test.go

    	var patterns []string
    	for _, pattern := range got.GetPatterns() {
    		var pat string
    		switch typ {
    		case "prefix":
    			pat = pattern.GetPrefix()
    		case "suffix":
    			pat = pattern.GetSuffix()
    		case "regexp":
    			// Migration tracked in https://github.com/istio/istio/issues/17127
    			//nolint: staticcheck
    			pat = pattern.GetSafeRegex().GetRegex()
    		}
    
    		if pat != "" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 19.5K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    			}
    			bits = 0
    		case '+', '-':
    			if c == '+' && result == false {
    				// Have already seen a -. Should be - from here on.
    				return nil, &parseError{"invalid pattern syntax (+ after -): " + pattern}
    			}
    			if i > 0 {
    				n := (i - start) * wid
    				if n > 64 {
    					return nil, &parseError{"pattern bits too long: " + pattern}
    				}
    				if n <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_patterns.td

    // Variadic op patterns.
    //===----------------------------------------------------------------------===//
    
    def : Pat<(MHLO_ConcatenateOp $inputs, $dim),
              (TF_ConcatV2Op $inputs, (TF_ConstOp $dim))>;
    
    //===----------------------------------------------------------------------===//
    // Compare op patterns.
    // Note that these are legalized from chlo.broadcast_* ops, since those are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Feb 03 08:58:22 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_patterns.td

    // Pattern to fuse redundant tanspose op
    def FoldDoubleTranspose : Pat<
      (TF_TransposeOp
        (TF_TransposeOp:$transpose_out1 $input, (Arith_ConstantOp:$permutation1 $p1)),
        (Arith_ConstantOp:$permutation2 $p2)),
      (TF_TransposeOp $input,
        (Arith_ConstantOp (RemapPermutation $permutation1, $permutation2))),
      [(HasOneUse $transpose_out1)]>;
    
    // Pattern to fuse trivial reshape op into transpose op
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 00:40:15 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modget/query.go

    	q := &query{
    		raw:            raw,
    		rawVersion:     rawVers,
    		pattern:        pattern,
    		patternIsLocal: filepath.IsAbs(pattern) || search.IsRelativePath(pattern),
    		version:        version,
    	}
    	if strings.Contains(q.pattern, "...") {
    		q.matchWildcard = pkgpattern.MatchPattern(q.pattern)
    		q.canMatchWildcardInModule = pkgpattern.TreeCanMatchPattern(q.pattern)
    	}
    	if err := q.validate(); err != nil {
    		return q, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 27 15:48:25 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/VersionRangeSelector.java

        private static final Pattern FINITE_RANGE = Pattern.compile(FINITE_PATTERN);
    
        private static final Pattern LOWER_INFINITE_RANGE = Pattern.compile(LOWER_INFINITE_PATTERN);
    
        private static final Pattern UPPER_INFINITE_RANGE = Pattern.compile(UPPER_INFINITE_PATTERN);
    
        private static final Pattern SINGLE_VALUE_RANGE = Pattern.compile(SINGLE_VALUE_PATTERN);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10K bytes
    - Viewed (0)
  7. src/runtime/mpallocbits_test.go

    		0x4040404040404040,
    		0x4000400040004000,
    	}
    	sizes := []uint{
    		2, 8, 32,
    	}
    	for _, pattern := range patterns {
    		for _, size := range sizes {
    			b.Run(fmt.Sprintf("Pattern%02XSize%d", pattern, size), func(b *testing.B) {
    				for i := 0; i < b.N; i++ {
    					FindBitRange64(pattern, size)
    				}
    			})
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 17 22:00:17 UTC 2020
    - 13.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/internal/bisect/bisect.go

    			}
    			bits = 0
    		case '+', '-':
    			if c == '+' && result == false {
    				// Have already seen a -. Should be - from here on.
    				return nil, &parseError{"invalid pattern syntax (+ after -): " + pattern}
    			}
    			if i > 0 {
    				n := (i - start) * wid
    				if n > 64 {
    					return nil, &parseError{"pattern bits too long: " + pattern}
    				}
    				if n <= 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 22 18:11:19 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r76/TestLauncherTestSpecCrossVersionSpec.groovy

            Test class: example.UnknownClass in task :test
            Test method com.OtherClass.unknownMethod() in task :test
            Test package com.unknown in task :test
            Test pattern not.matching.pattern in task :test"""
        }
    
        def "can use patterns in all include methods"() {
            setup:
            file('src/test/java/org/AnotherTest.java').text = '''
                package org;
                public class AnotherTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  10. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-typed-test.h

      ...
    }
    
    TYPED_TEST(FooTest, HasPropertyA) { ... }
    
    #endif  // 0
    
    // Type-parameterized tests are abstract test patterns parameterized
    // by a type.  Compared with typed tests, type-parameterized tests
    // allow you to define the test pattern without knowing what the type
    // parameters are.  The defined pattern can be instantiated with
    // different types any number of times, in any number of translation
    // units.
    //
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top