Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 104 for U_comm (0.12 sec)

  1. src/cmd/compile/internal/syntax/scanner.go

    	case '(':
    		s.nextch()
    		s.tok = _Lparen
    
    	case '[':
    		s.nextch()
    		s.tok = _Lbrack
    
    	case '{':
    		s.nextch()
    		s.tok = _Lbrace
    
    	case ',':
    		s.nextch()
    		s.tok = _Comma
    
    	case ';':
    		s.nextch()
    		s.lit = "semicolon"
    		s.tok = _Semi
    
    	case ')':
    		s.nextch()
    		s.nlsemi = true
    		s.tok = _Rparen
    
    	case ']':
    		s.nextch()
    		s.nlsemi = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/scanner_test.go

    	{_Arrow, "<-", 0, 0},
    
    	// delimiters
    	{_Lparen, "(", 0, 0},
    	{_Lbrack, "[", 0, 0},
    	{_Lbrace, "{", 0, 0},
    	{_Rparen, ")", 0, 0},
    	{_Rbrack, "]", 0, 0},
    	{_Rbrace, "}", 0, 0},
    	{_Comma, ",", 0, 0},
    	{_Semi, ";", 0, 0},
    	{_Colon, ":", 0, 0},
    	{_Dot, ".", 0, 0},
    	{_DotDotDot, "...", 0, 0},
    
    	// keywords
    	{_Break, "break", 0, 0},
    	{_Case, "case", 0, 0},
    	{_Chan, "chan", 0, 0},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 14 16:11:21 UTC 2022
    - 21.9K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    		case ast.SEND:
    			children = append(children, tok(n.Begin, len("chan<-")))
    		case ast.RECV | ast.SEND:
    			children = append(children, tok(n.Begin, len("chan")))
    		}
    
    	case *ast.CommClause:
    		if n.Comm == nil {
    			children = append(children,
    				tok(n.Case, len("default")))
    		} else {
    			children = append(children,
    				tok(n.Case, len("case")))
    		}
    		children = append(children, tok(n.Colon, len(":")))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  4. src/cmd/cgo/ast.go

    		f.walk(n.Body, ctxSwitch, visit)
    	case *ast.TypeSwitchStmt:
    		f.walk(n.Init, ctxStmt, visit)
    		f.walk(n.Assign, ctxStmt, visit)
    		f.walk(n.Body, ctxTypeSwitch, visit)
    	case *ast.CommClause:
    		f.walk(n.Comm, ctxStmt, visit)
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.SelectStmt:
    		f.walk(n.Body, ctxStmt, visit)
    	case *ast.ForStmt:
    		f.walk(n.Init, ctxStmt, visit)
    		f.walk(&n.Cond, ctxExpr, visit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 07 16:54:27 UTC 2023
    - 14.3K bytes
    - Viewed (0)
  5. src/cmd/fix/fix.go

    	case *ast.TypeSwitchStmt:
    		walkBeforeAfter(&n.Init, before, after)
    		walkBeforeAfter(&n.Assign, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    	case *ast.CommClause:
    		walkBeforeAfter(&n.Comm, before, after)
    		walkBeforeAfter(&n.Body, before, after)
    	case *ast.SelectStmt:
    		walkBeforeAfter(&n.Body, before, after)
    	case *ast.ForStmt:
    		walkBeforeAfter(&n.Init, before, after)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 14.6K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb/SmbTreeImpl.java

         */
        public int getTreeType () {
            String connectedService = getService();
            if ( "LPT1:".equals(connectedService) ) {
                return SmbConstants.TYPE_PRINTER;
            }
            else if ( "COMM".equals(connectedService) ) {
                return SmbConstants.TYPE_COMM;
            }
            return SmbConstants.TYPE_SHARE;
        }
    
    
        /**
         * @return the service
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Thu Jan 05 13:06:39 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	EIDRM              = Errno(1141)
    	ENONET             = Errno(1142)
    	ERREMOTE           = Errno(1143)
    	ENOLINK            = Errno(1144)
    	EADV               = Errno(1145)
    	ESRMNT             = Errno(1146)
    	ECOMM              = Errno(1147)
    	EPROTO             = Errno(1148)
    	EMULTIHOP          = Errno(1149)
    	EDOTDOT            = Errno(1150)
    	EREMCHG            = Errno(1151)
    	ECANCELED          = Errno(1152)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  8. src/syscall/zerrors_solaris_amd64.go

    	EBADSLT         = Errno(0x37)
    	EBFONT          = Errno(0x39)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x2f)
    	ECHILD          = Errno(0xa)
    	ECHRNG          = Errno(0x25)
    	ECOMM           = Errno(0x46)
    	ECONNABORTED    = Errno(0x82)
    	ECONNREFUSED    = Errno(0x92)
    	ECONNRESET      = Errno(0x83)
    	EDEADLK         = Errno(0x2d)
    	EDEADLOCK       = Errno(0x38)
    	EDESTADDRREQ    = Errno(0x60)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 13:52:34 UTC 2024
    - 50.8K bytes
    - Viewed (0)
  9. src/syscall/zerrors_linux_386.go

    	EBADSLT         = Errno(0x39)
    	EBFONT          = Errno(0x3b)
    	EBUSY           = Errno(0x10)
    	ECANCELED       = Errno(0x7d)
    	ECHILD          = Errno(0xa)
    	ECHRNG          = Errno(0x2c)
    	ECOMM           = Errno(0x46)
    	ECONNABORTED    = Errno(0x67)
    	ECONNREFUSED    = Errno(0x6f)
    	ECONNRESET      = Errno(0x68)
    	EDEADLK         = Errno(0x23)
    	EDEADLOCK       = Errno(0x23)
    	EDESTADDRREQ    = Errno(0x59)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 19 16:12:50 UTC 2022
    - 57.4K bytes
    - Viewed (0)
  10. pkg/ctrlz/assets/static/js/prism-1.14.0.min.js

    )|`[^`]+`|(?!\1)[^\\])*\1/,greedy:!0,inside:b}],variable:b.variable,'function':{pattern:/(^|[\s;|&])(?:alias|apropos|apt-get|aptitude|aspell|awk|basename|bash|bc|bg|builtin|bzip2|cal|cat|cd|cfdisk|chgrp|chmod|chown|chroot|chkconfig|cksum|clear|cmp|comm|command|cp|cron|crontab|csplit|curl|cut|date|dc|dd|ddrescue|df|diff|diff3|dig|dir|dircolors|dirname|dirs|dmesg|du|egrep|eject|enable|env|ethtool|eval|exec|expand|expect|export|expr|fdformat|fdisk|fg|fgrep|file|find|fmt|fold|format|free|fsck|ftp|fu...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 16.3K bytes
    - Viewed (0)
Back to top