Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 47 for Matcher (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/go/build/build.go

    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    // if GOOS=android, then files with GOOS=linux are also matched.
    // if GOOS=illumos, then files with GOOS=solaris are also matched.
    // if GOOS=ios, then files with GOOS=darwin are also matched.
    func (ctxt *Context) goodOSArchFile(name string, allTags map[string]bool) bool {
    	name, _, _ = strings.Cut(name, ".")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  7. pkg/controller/replicaset/replica_set_test.go

    		return fmt.Errorf("Unexpected number of deletes.  Expected %d, saw %d\n", e, a)
    	}
    
    	if e, a := expectedPatches, len(fakePodControl.Patches); e != a {
    		return fmt.Errorf("Unexpected number of patches.  Expected %d, saw %d\n", e, a)
    	}
    
    	return nil
    }
    
    func TestSyncReplicaSetDoesNothing(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/versions/VersionConflictResolutionIntegrationTest.groovy

                }
            }
        }
    
        @Issue("GRADLE-2555")
        void "batched up conflicts with conflicted parent and child"() {
            /*
            Dependency tree:
    
            a->c1
            b->c2->x1
            d->x1
            f->x2
    
            Everything is resolvable but not x2
    
            Scenario:
             - We have batched up conflicts
             - root of one conflicted version is also conflicted
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:33:46 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	}
    	t.runPending(nil)
    	timelog("end", "dist test")
    
    	if !t.json {
    		if t.failed {
    			fmt.Println("\nFAILED")
    		} else if !anyIncluded {
    			fmt.Println()
    			errprintf("go tool dist: warning: %q matched no tests; use the -list flag to list available tests\n", t.runRxStr)
    			fmt.Println("NO TESTS TO RUN")
    		} else if someExcluded {
    			fmt.Println("\nALL TESTS PASSED (some were excluded)")
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. src/time/time_test.go

    	}
    
    	if !(t0.Equal(t1) && t1.Equal(t2)) {
    		if !t0.Equal(t1) {
    			t.Errorf("The result t1: %+v after Marshal is not matched original t0: %+v", t1, t0)
    		}
    		if !t1.Equal(t2) {
    			t.Errorf("The result t2: %+v after Unmarshal is not matched original t1: %+v", t2, t1)
    		}
    	}
    }
    
    func TestUnmarshalTextAllocations(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:13:47 UTC 2024
    - 56.5K bytes
    - Viewed (0)
Back to top