Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Flush (0.25 sec)

  1. istioctl/pkg/authz/listener.go

    			}
    		}
    	}
    
    	w := new(tabwriter.Writer).Init(writer, 0, 8, 3, ' ', 0)
    	if _, err := fmt.Fprint(w, buf.String()); err != nil {
    		log.Errorf("failed to print output: %s", err)
    	}
    	_ = w.Flush()
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Sep 11 15:29:30 GMT 2023
    - 6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/listener.go

    			matches := newMatcher(fc, l)
    			destination := getFilterType(fc.GetFilters())
    			for _, match := range matches {
    				fmt.Fprintf(w, "%v\t%v\t%v\t%v\n", lname, name, match, destination)
    			}
    		}
    	}
    	return w.Flush()
    }
    
    func newMatcher(fc *listener.FilterChain, l *listener.Listener) []string {
    	if l.FilterChainMatcher == nil {
    		return []string{getMatches(fc.GetFilterChainMatch())}
    	}
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed Nov 29 12:37:14 GMT 2023
    - 18.1K bytes
    - Viewed (0)
Back to top