Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for srvErr (0.12 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/smb1/netbios/NameServicePacket.java

                    break;
            }
            switch( resultCode ) {
                case FMT_ERR:
                    resultCodeString = "FMT_ERR";
                    break;
                case SRV_ERR:
                    resultCodeString = "SRV_ERR";
                    break;
                case IMP_ERR:
                    resultCodeString = "IMP_ERR";
                    break;
                case RFS_ERR:
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 12.4K bytes
    - Viewed (0)
  3. src/main/java/jcifs/netbios/NameServicePacket.java

                break;
            }
            switch ( this.resultCode ) {
            case FMT_ERR:
                resultCodeString = "FMT_ERR";
                break;
            case SRV_ERR:
                resultCodeString = "SRV_ERR";
                break;
            case IMP_ERR:
                resultCodeString = "IMP_ERR";
                break;
            case RFS_ERR:
                resultCodeString = "RFS_ERR";
                break;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 12K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/io/io_test.go

    		for offset := int64(-3); offset <= 4; offset++ {
    			brOff, brErr := br.Seek(offset, whence)
    			srOff, srErr := sr.Seek(offset, whence)
    			if (brErr != nil) != (srErr != nil) || brOff != srOff {
    				t.Errorf("For whence %d, offset %d: bytes.Reader.Seek = (%v, %v) != SectionReader.Seek = (%v, %v)",
    					whence, offset, brOff, brErr, srErr, srOff)
    			}
    		}
    	}
    
    	// And verify we can just seek past the end and get an EOF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 09 22:04:41 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  7. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&squ;":                             "\u25a1",
    	"&square;":                          "\u25a1",
    	"&squarf;":                          "\u25aa",
    	"&squf;":                            "\u25aa",
    	"&srarr;":                           "\u2192",
    	"&sscr;":                            "\U0001d4c8",
    	"&ssetmn;":                          "\u2216",
    	"&ssmile;":                          "\u2323",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
  8. src/html/entity.go

    		"squ;":                             '\U000025A1',
    		"square;":                          '\U000025A1',
    		"squarf;":                          '\U000025AA',
    		"squf;":                            '\U000025AA',
    		"srarr;":                           '\U00002192',
    		"sscr;":                            '\U0001D4C8',
    		"ssetmn;":                          '\U00002216',
    		"ssmile;":                          '\U00002323',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
Back to top