Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for srvErr (0.33 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection_test.go

    	}
    	defer listener.Close()
    
    	srvErr := make(chan error, 1)
    	go func() {
    		defer close(srvErr)
    
    		srvConn, err := listener.Accept()
    		if err != nil {
    			srvErr <- fmt.Errorf("server: error accepting connection: %v", err)
    			return
    		}
    		defer srvConn.Close()
    
    		spdyConn, err := spdystream.NewConnection(srvConn, true)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 01 11:58:57 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  2. src/main/java/jcifs/netbios/NbtException.java

        public static final int ERR_NAM_SRVC = 0x01;
        public static final int ERR_SSN_SRVC = 0x02;
    
        // name service error codes
        public static final int FMT_ERR = 0x1;
        public static final int SRV_ERR = 0x2;
        public static final int IMP_ERR = 0x4;
        public static final int RFS_ERR = 0x5;
        public static final int ACT_ERR = 0x6;
        public static final int CFT_ERR = 0x7;
    
        // session service error codes
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 3.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb1/netbios/NbtException.java

        public static final int ERR_NAM_SRVC = 0x01;
        public static final int ERR_SSN_SRVC = 0x02;
    
        // name service error codes
        public static final int FMT_ERR = 0x1;
        public static final int SRV_ERR = 0x2;
        public static final int IMP_ERR = 0x4;
        public static final int RFS_ERR = 0x5;
        public static final int ACT_ERR = 0x6;
        public static final int CFT_ERR = 0x7;
    
        // session service error codes
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 3.9K bytes
    - Viewed (0)
Back to top