Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 55 for goio (0.05 sec)

  1. src/go/parser/parser.go

    	token.BREAK:       true,
    	token.CONST:       true,
    	token.CONTINUE:    true,
    	token.DEFER:       true,
    	token.FALLTHROUGH: true,
    	token.FOR:         true,
    	token.GO:          true,
    	token.GOTO:        true,
    	token.IF:          true,
    	token.RETURN:      true,
    	token.SELECT:      true,
    	token.SWITCH:      true,
    	token.TYPE:        true,
    	token.VAR:         true,
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 20:07:50 UTC 2023
    - 72.2K bytes
    - Viewed (0)
  2. src/cmd/internal/obj/riscv/obj.go

    	// unnecessarily. See issue #35470.
    	p = ctxt.StartUnsafePoint(p, newprog)
    
    	var to_done, to_more *obj.Prog
    
    	if framesize <= abi.StackSmall {
    		// small stack
    		//	// if SP > stackguard { goto done }
    		//	BLTU	stackguard, SP, done
    		p = obj.Appendp(p, newprog)
    		p.As = ABLTU
    		p.From.Type = obj.TYPE_REG
    		p.From.Reg = REG_X6
    		p.Reg = REG_SP
    		p.To.Type = obj.TYPE_BRANCH
    		to_done = p
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/base/CharMatcher.java

       * illustrated <a
       * href="http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5Cp%7Bwhitespace%7D">here</a>.
       * This is not the same definition used by other Java APIs. (See a <a
       * href="https://goo.gl/Y6SLWx">comparison of several definitions of "whitespace"</a>.)
       *
       * <p>All Unicode White_Space characters are on the BMP and thus supported by this API.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/base/CharMatcher.java

       * illustrated <a
       * href="http://unicode.org/cldr/utility/list-unicodeset.jsp?a=%5Cp%7Bwhitespace%7D">here</a>.
       * This is not the same definition used by other Java APIs. (See a <a
       * href="https://goo.gl/Y6SLWx">comparison of several definitions of "whitespace"</a>.)
       *
       * <p>All Unicode White_Space characters are on the BMP and thus supported by this API.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  5. src/cmd/dist/build.go

    	}
    
    	// Is the target up-to-date?
    	var gofiles, sfiles []string
    	stale := rebuildall
    	files = filter(files, func(p string) bool {
    		for _, suf := range depsuffix {
    			if strings.HasSuffix(p, suf) {
    				goto ok
    			}
    		}
    		return false
    	ok:
    		t := mtime(p)
    		if !t.IsZero() && !strings.HasSuffix(p, ".a") && !shouldbuild(p, pkg) {
    			return false
    		}
    		if strings.HasSuffix(p, ".go") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  6. src/go/printer/testdata/parser.go

    			p.expectSemi()
    		}
    	case token.GO:
    		s = p.parseGoStmt()
    	case token.DEFER:
    		s = p.parseDeferStmt()
    	case token.RETURN:
    		s = p.parseReturnStmt()
    	case token.BREAK, token.CONTINUE, token.GOTO, token.FALLTHROUGH:
    		s = p.parseBranchStmt(p.tok)
    	case token.LBRACE:
    		s = p.parseBlockStmt()
    		p.expectSemi()
    	case token.IF:
    		s = p.parseIfStmt()
    	case token.SWITCH:
    		s = p.parseSwitchStmt()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 20:19:51 UTC 2023
    - 50.5K bytes
    - Viewed (0)
  7. src/runtime/mprof.go

    // system stack).
    func doRecordGoroutineProfile(gp1 *g, pcbuf []uintptr) {
    	if readgstatus(gp1) == _Grunning {
    		print("doRecordGoroutineProfile gp1=", gp1.goid, "\n")
    		throw("cannot read stack of running goroutine")
    	}
    
    	offset := int(goroutineProfile.offset.Add(1)) - 1
    
    	if offset >= len(goroutineProfile.records) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // TODO make exception message escape non-printable characters
      }
    
      @Test
      fun parseDoesNotTrimOtherWhitespaceCharacters() {
        // Whitespace characters list from Google's Guava team: http://goo.gl/IcR9RD
        // line tabulation
        assertThat(parse("http://h/\u000b").encodedPath).isEqualTo("/%0B")
        // information separator 4
        assertThat(parse("http://h/\u001c").encodedPath).isEqualTo("/%1C")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/syntax/parser.go

    			}
    		}
    		if keyword == _For {
    			if p.tok != _Semi {
    				if p.tok == _Lbrace {
    					p.syntaxError("expected for loop condition")
    					goto done
    				}
    				condStmt = p.simpleStmt(nil, 0 /* range not permitted */)
    			}
    			p.want(_Semi)
    			if p.tok != _Lbrace {
    				post = p.simpleStmt(nil, 0 /* range not permitted */)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/rewrite.go

    func mergePoint(b *Block, a ...*Value) *Block {
    	// Walk backward from b looking for one of the a's blocks.
    
    	// Max distance
    	d := 100
    
    	for d > 0 {
    		for _, x := range a {
    			if b == x.Block {
    				goto found
    			}
    		}
    		if len(b.Preds) > 1 {
    			// Don't know which way to go back. Abort.
    			return nil
    		}
    		b = b.Preds[0].b
    		d--
    	}
    	return nil // too far away
    found:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top