Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for countRule (0.16 sec)

  1. src/cmd/compile/internal/ssa/func.go

    	PrintOrHtmlSSA bool           // true if GOSSAFUNC matches, true even if fe.Log() (spew phase results to stdout) is false.  There's an odd dependence on this in debug.go for method logf.
    	ruleMatches    map[string]int // number of times countRule was called during compilation for any given string
    	ABI0           *abi.ABIConfig // A copy, for no-sync access
    	ABI1           *abi.ABIConfig // A copy, for no-sync access
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/rewrite.go

    func noteRule(s string) bool {
    	fmt.Println(s)
    	return true
    }
    
    // countRule increments Func.ruleMatches[key].
    // If Func.ruleMatches is non-nil at the end
    // of compilation, it will be printed to stdout.
    // This is intended to make it easier to find which functions
    // which contain lots of rules matches when developing new rules.
    func countRule(v *Value, key string) bool {
    	f := v.Block.Func
    	if f.ruleMatches == nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
  3. pkg/proxy/iptables/proxier_test.go

    	expectedFilterRules := countRules(logger, utiliptables.TableFilter, iptablesData)
    
    	if nFilterRules != expectedFilterRules {
    		t.Fatalf("Wrong number of filter rule: expected %d got %d\n%s", expectedFilterRules, nFilterRules, iptablesData)
    	}
    
    	nNatRules := countRulesFromMetric(logger, utiliptables.TableNAT)
    	expectedNatRules := countRules(logger, utiliptables.TableNAT, iptablesData)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
Back to top