Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for getPaths (0.18 sec)

  1. istioctl/pkg/writer/envoy/configdump/endpoint.go

    	addr := ep.GetEndpoint().GetAddress()
    	if addr := addr.GetSocketAddress(); addr != nil {
    		return addr.Address + ":" + strconv.Itoa(int(addr.GetPortValue()))
    	}
    	if addr := addr.GetPipe(); addr != nil {
    		return addr.GetPath()
    	}
    	if internal := addr.GetEnvoyInternalAddress(); internal != nil {
    		switch an := internal.GetAddressNameSpecifier().(type) {
    		case *core.EnvoyInternalAddress_ServerListenerName:
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Sun Apr 21 17:42:54 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. src/archive/zip/reader_test.go

    			continue
    		}
    		var gotPaths []string
    		for _, f := range zr.File {
    			gotPaths = append(gotPaths, f.Name)
    		}
    		if !reflect.DeepEqual(gotPaths, []string{path}) {
    			t.Errorf("NewReader for archive with file %q: got files %q", path, gotPaths)
    			continue
    		}
    	}
    }
    
    func TestDisableInsecurePathCheck(t *testing.T) {
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Wed Mar 27 18:23:49 GMT 2024
    - 55.3K bytes
    - Viewed (0)
Back to top