Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 118 for GOTO (0.09 sec)

  1. 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)
  2. src/cmd/compile/internal/ssa/shortcircuit.go

    					}
    					v.SetArg(i, cf)
    				}
    			}
    		}
    	}
    
    	// Step 2: Redirect control flow around known branches.
    	// p:
    	//   ... goto b ...
    	// b: <- p ...
    	//   v = phi(true, ...)
    	//   if v goto t else u
    	// We can redirect p to go directly to t instead of b.
    	// (If v is not live after b).
    	fuse(f, fuseTypePlain|fuseTypeShortCircuit)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 03 17:47:02 UTC 2022
    - 12.6K bytes
    - Viewed (0)
  3. 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)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/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: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. src/go/constant/value.go

    			c.AndNot(a, b)
    		default:
    			goto Error
    		}
    		return makeInt(c)
    
    	case ratVal:
    		a := x.val
    		b := y.(ratVal).val
    		c := newRat()
    		switch op {
    		case token.ADD:
    			c.Add(a, b)
    		case token.SUB:
    			c.Sub(a, b)
    		case token.MUL:
    			c.Mul(a, b)
    		case token.QUO:
    			c.Quo(a, b)
    		default:
    			goto Error
    		}
    		return makeRat(c)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 34K bytes
    - Viewed (0)
  8. 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)
  9. cmd/iam-etcd-store.go

    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					if err := watchResp.Err(); err != nil {
    						iamLogIf(ctx, err)
    						// log and retry.
    						time.Sleep(1 * time.Second)
    						// Upon an error on watch channel
    						// re-init the watch channel.
    						goto outerLoop
    					}
    					for _, event := range watchResp.Events {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  10. src/runtime/softfloat64.go

    again1:
    	if q1 >= b || q1*vn0 > b*rhat+un1 {
    		q1--
    		rhat += vn1
    		if rhat < b {
    			goto again1
    		}
    	}
    
    	un21 := un32*b + un1 - q1*v
    	q0 := un21 / vn1
    	rhat = un21 - q0*vn1
    
    again2:
    	if q0 >= b || q0*vn0 > b*rhat+un0 {
    		q0--
    		rhat += vn1
    		if rhat < b {
    			goto again2
    		}
    	}
    
    	return q1*b + q0, (un21*b + un0 - q0*v) >> s
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Oct 08 17:58:41 UTC 2021
    - 11.5K bytes
    - Viewed (0)
Back to top