Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for no (0.11 sec)

  1. internal/http/listener.go

    			continue
    		}
    
    		if opts.Trace != nil {
    			opts.Trace(fmt.Sprint("adding listener to ", l.Addr()))
    		}
    
    		listeners = append(listeners, l)
    	}
    
    	if len(listeners) == 0 {
    		// No listeners initialized, no need to continue
    		return
    	}
    
    	listener = &httpListener{
    		listeners: listeners,
    		acceptCh:  make(chan acceptResult, len(listeners)),
    		opts:      opts,
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed Apr 24 04:08:47 GMT 2024
    - 5.6K bytes
    - Viewed (0)
  2. istioctl/pkg/writer/envoy/configdump/listener.go

    			if err != nil {
    				return nil, fmt.Errorf("unmarshal listener: %v", err)
    			}
    			listeners = append(listeners, listenerTyped)
    		}
    	}
    	if len(listeners) == 0 {
    		return nil, fmt.Errorf("no listeners found")
    	}
    	return listeners, nil
    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