Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for output (0.15 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

    			if !match {
    				continue
    			}
    			for _, child := range children {
    				outputs = append(outputs, fmt.Sprintf("%v%v%v -> %v", n, equality, k, child))
    			}
    		}
    	}
    	return outputs, len(outputs) > 0
    }
    
    // PrintListenerSummary prints a summary of the relevant listeners in the config dump to the ConfigWriter stdout
    func (c *ConfigWriter) PrintListenerSummary(filter ListenerFilter) error {
    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