Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 81 for Matcher (0.13 sec)

  1. src/cmd/internal/testdir/testdir_test.go

    	//	"(\w+)" matches "arm64" (architecture name)
    	//	"(/[\w.]+)?" matches "v8.1" (architecture version)
    	//	"(/\w*)?" doesn't match anything here (it's an optional part of the triplet)
    	//	"\s*:\s*" matches " : " (semi-colon)
    	//	"(" starts a capturing group
    	//      first reMatchCheck matches "-`ADD`"
    	//	`(?:" starts a non-capturing group
    	//	"\s*,\s*` matches " , "
    	//	second reMatchCheck matches "`SUB`"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/replica_calculator_test.go

    		selector, err := metav1.LabelSelectorAsSelector(tc.metric.selector)
    		if err != nil {
    			return true, nil, fmt.Errorf("failed to convert label selector specified in test client")
    		}
    		assert.Equal(t, selector, listAction.GetListRestrictions().Labels, "the metric selector should have matched the one specified")
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Aug 19 03:31:34 UTC 2023
    - 68.4K bytes
    - Viewed (0)
  3. src/cmd/go/go_test.go

    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    	tg.grepStderrNot("symlink", "list should not have reported symlink")
    
    	tg.run("list", "example/xx/...")
    	tg.grepStdoutNot(".", "list should not have matched anything")
    	tg.grepStderr("matched no packages", "list should have reported that pattern matched no packages")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
  4. pilot/pkg/model/push_context.go

    			Patches: make(map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper),
    		}
    		// merge EnvoyFilterWrapper
    		for _, efw := range matchedEnvoyFilters {
    			for applyTo, cps := range efw.Patches {
    				for _, cp := range cps {
    					if proxyMatch(proxy, cp) {
    						out.Patches[applyTo] = append(out.Patches[applyTo], cp)
    					}
    				}
    			}
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
  5. cmd/iam.go

    func (sys *IAMSys) periodicRoutines(ctx context.Context, baseInterval time.Duration) {
    	// Watch for IAM config changes for iamStorageWatcher.
    	watcher, isWatcher := sys.store.IAMStorageAPI.(iamStorageWatcher)
    	if isWatcher {
    		go func() {
    			ch := watcher.watch(ctx, iamConfigPrefix)
    			for event := range ch {
    				if err := sys.loadWatchedEvent(ctx, event); err != nil {
    					// we simply log errors
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/base/Preconditions.java

       * @param errorMessageTemplate a template for the exception message should the check fail. The
       *     message is formed by replacing each {@code %s} placeholder in the template with an
       *     argument. These are matched by position - the first {@code %s} gets {@code
       *     errorMessageArgs[0]}, etc. Unmatched arguments will be appended to the formatted message in
       *     square braces. Unmatched placeholders will be left as-is.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 11 11:52:14 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  7. src/cmd/dist/build.go

    			return false
    		}
    		if !strings.HasPrefix(p, "//") {
    			break
    		}
    		if strings.HasPrefix(p, "//go:build ") {
    			matched, err := matchexpr(p[len("//go:build "):])
    			if err != nil {
    				errprintf("%s: %v", file, err)
    			}
    			return matched
    		}
    	}
    
    	return true
    }
    
    // copyfile copies the file src to dst, via memory (so only good for small files).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modget/get.go

    github.com/ can only use git; paths on evil.com cannot use any version
    control command, and all other paths (* matches everything) can use
    only git or hg.
    
    The special patterns "public" and "private" match public and private
    module or import paths. A path is private if it matches the GOPRIVATE
    variable; otherwise it is public.
    
    If no rules in the GOVCS variable match a particular module or import path,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  9. src/runtime/mgcpacer.go

    	// and stolen by mutator assists.  Updates occur in bounded batches,
    	// since it is both written and read throughout the cycle.
    	bgScanCredit atomic.Int64
    
    	// assistTime is the nanoseconds spent in mutator assists
    	// during this cycle. This is updated atomically, and must also
    	// be updated atomically even during a STW, because it is read
    	// by sysmon. Updates occur in bounded batches, since it is both
    	// written and read throughout the cycle.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    	return true
    }
    
    // noteRule is an easy way to track if a rule is matched when writing
    // new ones.  Make the rule of interest also conditional on
    //
    //	noteRule("note to self: rule of interest matched")
    //
    // and that message will print when the rule matches.
    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top