Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. staging/src/k8s.io/apiserver/pkg/util/proxy/websocket.go

    	channels[constants.StreamStdIn] = readChannel(opts.Stdin)
    	channels[constants.StreamStdOut] = writeChannel(opts.Stdout)
    	channels[constants.StreamStdErr] = writeChannel(opts.Stderr)
    	channels[constants.StreamErr] = wsstream.WriteChannel
    	channels[constants.StreamResize] = wsstream.ReadChannel
    	return channels
    }
    
    // readChannel returns wsstream.ReadChannel if real is true, or wsstream.IgnoreChannel.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/wsstream/legacy.go

    )
    
    type ChannelType = apimachinerywsstream.ChannelType
    
    const (
    	IgnoreChannel    = apimachinerywsstream.IgnoreChannel
    	ReadChannel      = apimachinerywsstream.ReadChannel
    	WriteChannel     = apimachinerywsstream.WriteChannel
    	ReadWriteChannel = apimachinerywsstream.ReadWriteChannel
    )
    
    type ChannelProtocolConfig = apimachinerywsstream.ChannelProtocolConfig
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 18:21:43 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top