Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 271 for goTo (0.04 sec)

  1. src/cmd/pack/pack.go

    		f, err := os.Open(file)
    		if err != nil {
    			log.Fatal(err)
    		}
    		aro, err := archive.Parse(f, false)
    		if err != nil || !isGoCompilerObjFile(aro) {
    			f.Seek(0, io.SeekStart)
    			ar.addFile(f)
    			goto close
    		}
    
    		for _, e := range aro.Entries {
    			if e.Type != archive.EntryGoObj || e.Name != "_go_.o" {
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/return.go

    		if call, ok := syntax.Unparen(s.X).(*syntax.CallExpr); ok && check.isPanic[call] {
    			return true
    		}
    
    	case *syntax.ReturnStmt:
    		return true
    
    	case *syntax.BranchStmt:
    		if s.Tok == syntax.Goto || s.Tok == syntax.Fallthrough {
    			return true
    		}
    
    	case *syntax.BlockStmt:
    		return check.isTerminatingList(s.List, "")
    
    	case *syntax.IfStmt:
    		if s.Else != nil &&
    			check.isTerminating(s.Then, "") &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  3. src/runtime/profbuf.go

    			b.w.cas(bw, bw&^profWriteExtra)
    			goto Read
    		}
    
    		// Nothing to read right now.
    		// Return or sleep according to mode.
    		if mode == profBufNonBlocking {
    			// Necessary on Darwin, notetsleepg below does not work in signal handler, root cause of #61768.
    			return nil, nil, false
    		}
    		if !b.w.cas(bw, bw|profReaderSleeping) {
    			goto Read
    		}
    		// Committed to sleeping.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  4. src/go/build/build.go

    					if dir := ctxt.joinPath(ctxt.GOROOT, "src", sub); ctxt.isDir(dir) {
    						p.ConflictDir = dir
    						goto Found
    					}
    				}
    				for _, earlyRoot := range all[:i] {
    					if dir := ctxt.joinPath(earlyRoot, "src", sub); ctxt.isDir(dir) {
    						p.ConflictDir = dir
    						goto Found
    					}
    				}
    
    				// sub would not name some other directory instead of this one.
    				// Record it.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/security.go

    Args:
    	for i := 0; i < len(list); i++ {
    		arg := list[i]
    		if disallow != nil && disallow.FindString(arg) == arg {
    			goto Bad
    		}
    		if allow != nil && allow.FindString(arg) == arg {
    			continue Args
    		}
    		for _, re := range invalid {
    			if re.FindString(arg) == arg { // must be complete match
    				goto Bad
    			}
    		}
    		for _, re := range valid {
    			if re.FindString(arg) == arg { // must be complete match
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:47:34 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. src/go/types/return.go

    		if call, ok := ast.Unparen(s.X).(*ast.CallExpr); ok && check.isPanic[call] {
    			return true
    		}
    
    	case *ast.ReturnStmt:
    		return true
    
    	case *ast.BranchStmt:
    		if s.Tok == token.GOTO || s.Tok == token.FALLTHROUGH {
    			return true
    		}
    
    	case *ast.BlockStmt:
    		return check.isTerminatingList(s.List, "")
    
    	case *ast.IfStmt:
    		if s.Else != nil &&
    			check.isTerminating(s.Body, "") &&
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 22 19:32:17 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. src/runtime/netpoll_epoll.go

    			throw("runtime: netpoll failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if waitms > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    	var toRun gList
    	delta := int32(0)
    	for i := int32(0); i < n; i++ {
    		ev := events[i]
    		if ev.Events == 0 {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

        ::testing::internal::DeathTest* gtest_dt; \
        if (!::testing::internal::DeathTest::Create(#statement, &gtest_regex, \
            __FILE__, __LINE__, &gtest_dt)) { \
          goto GTEST_CONCAT_TOKEN_(gtest_label_, __LINE__); \
        } \
        if (gtest_dt != NULL) { \
          ::testing::internal::scoped_ptr< ::testing::internal::DeathTest> \
              gtest_dt_ptr(gtest_dt); \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.1K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/walk/switch.go

    		// goto outerLabel
    		// len5:
    		//   ... search among length 5 strings ...
    		//   goto endLabel
    		// len8:
    		//   ... search among length 8 strings ...
    		//   goto endLabel
    		// ... other lengths ...
    		// outerLabel:
    		// switch len(s) {
    		//   case 5: goto len5
    		//   case 8: goto len8
    		//   ... other lengths ...
    		// }
    		// endLabel:
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:34:01 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/liveness/intervals.go

    //
    //          b1:
    //  0        VarDef abc
    //  1        memset(abc,0)
    //  2        VarDef xyz
    //  3        memset(xyz,0)
    //  4        abc.f1 = 2
    //  5        xyz.f3 = 9
    //  6        if q goto B4
    //  7 B3:    z = xyz.x
    //  8        goto B5
    //  9 B4:    z = abc.x
    //           // fallthrough
    // 10 B5:    z++
    //
    // To describe the lifetime of the variables above we might use these
    // intervals:
    //
    //    "abc"   [1,7), [9,10)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 29 21:55:27 UTC 2024
    - 10K bytes
    - Viewed (0)
Back to top