Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 187 for goTo (0.26 sec)

  1. 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)
  2. 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)
  3. 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)
  4. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

              #expected_exception ".\n  Actual: it throws a different type."; \
          goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
        } \
        if (!gtest_caught_expected) { \
          gtest_msg.value = \
              "Expected: " #statement " throws an exception of type " \
              #expected_exception ".\n  Actual: it throws nothing."; \
          goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
        } \
      } else \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 43.1K bytes
    - Viewed (0)
  5. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-internal.h

              #expected_exception ".\n  Actual: it throws a different type."; \
          goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
        } \
        if (!gtest_caught_expected) { \
          gtest_msg.value = \
              "Expected: " #statement " throws an exception of type " \
              #expected_exception ".\n  Actual: it throws nothing."; \
          goto GTEST_CONCAT_TOKEN_(gtest_label_testthrow_, __LINE__); \
        } \
      } else \
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 43.1K bytes
    - Viewed (0)
  6. ci/official/containers/linux_arm64/builder.devtoolset/stringop_trunc.patch

         {
           if (len >= room_left)
     	goto no_more_room;
    @@ -98,7 +98,7 @@ _nss_nisplus_parse_pwent (nis_result *result, struct passwd *pw,
     
       numstr = NISOBJVAL (3, obj);
       len = NISOBJLEN (3, obj);
    -  if (len == 0 && numstr[len - 1] != '\0')
    +  if (len == 0 || numstr[len - 1] != '\0')
         {
           if (len >= room_left)
     	goto no_more_room;
    diff --git a/string/bits/string2.h b/string/bits/string2.h
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Sep 18 14:52:45 UTC 2023
    - 42.9K bytes
    - Viewed (0)
  7. src/go/scanner/scanner_test.go

    	{token.ELSE, "else", keyword},
    	{token.FALLTHROUGH, "fallthrough", keyword},
    	{token.FOR, "for", keyword},
    
    	{token.FUNC, "func", keyword},
    	{token.GO, "go", keyword},
    	{token.GOTO, "goto", keyword},
    	{token.IF, "if", keyword},
    	{token.IMPORT, "import", keyword},
    
    	{token.INTERFACE, "interface", keyword},
    	{token.MAP, "map", keyword},
    	{token.PACKAGE, "package", keyword},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 28 15:38:31 UTC 2023
    - 34.6K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/tools/go/ast/astutil/enclosing.go

    	case *ast.BlockStmt:
    		return "block"
    	case *ast.BranchStmt:
    		switch n.Tok {
    		case token.BREAK:
    			return "break statement"
    		case token.CONTINUE:
    			return "continue statement"
    		case token.GOTO:
    			return "goto statement"
    		case token.FALLTHROUGH:
    			return "fall-through statement"
    		}
    	case *ast.CallExpr:
    		if len(n.Args) == 1 && !n.Ellipsis.IsValid() {
    			return "function call (or conversion)"
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  9. internal/grid/muxclient.go

    				}
    				m.respMu.Unlock()
    			case <-m.ctx.Done():
    				// Client canceled. Don't block.
    				// Next loop will catch it.
    			case <-pingTimer:
    				if !m.doPing(respHandler) {
    					return
    				}
    				goto sendResp
    			}
    		case <-pingTimer:
    			if !m.doPing(respHandler) {
    				return
    			}
    		}
    	}
    }
    
    // doPing checks last ping time and sends another ping.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 07 15:51:52 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. internal/logger/target/http/http.go

    				fmt.Errorf("unable to send webhook log entry to '%s' err '%w'", name, err),
    				name,
    			)
    
    			if errors.Is(err, context.Canceled) {
    				return
    			}
    
    			time.Sleep(3 * time.Second)
    			goto retry
    		}
    
    		entries = make([]interface{}, 0)
    
    		if !isDirQueue {
    			buf.Reset()
    		}
    
    		if !mainWorker && len(h.logCh) < cap(h.logCh)/2 {
    			if time.Since(h.lastStarted).Seconds() > 30 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jun 02 03:03:39 UTC 2024
    - 14.9K bytes
    - Viewed (0)
Back to top