Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 327 for goio (0.04 sec)

  1. 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)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.pb.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/apimachinery/pkg/apis/meta/v1beta1/generated.proto
    
    package v1beta1
    
    import (
    	fmt "fmt"
    
    	io "io"
    
    	proto "github.com/gogo/protobuf/proto"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    
    	math "math"
    	math_bits "math/bits"
    	reflect "reflect"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 11K bytes
    - Viewed (0)
  3. 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)
  4. pkg/controller/statefulset/stateful_pod_control_test.go

    	fakeClient.AddReactor("update", "pods", func(action core.Action) (bool, runtime.Object, error) {
    		pod.Name = "goo-0"
    		return true, nil, apierrors.NewInternalError(errors.New("API server down"))
    	})
    	pod.Name = "goo-0"
    	if err := control.UpdateStatefulPod(ctx, set, pod); err == nil {
    		t.Error("Failed update does not generate an error")
    	}
    	events := collectEvents(recorder.Events)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 35.5K 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/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)
  8. src/runtime/netpoll_kqueue.go

    			throw("runtime: netpoll failed")
    		}
    		// If a timed sleep was interrupted, just return to
    		// recalculate how long we should sleep now.
    		if delay > 0 {
    			return gList{}, 0
    		}
    		goto retry
    	}
    	var toRun gList
    	delta := int32(0)
    	for i := 0; i < int(n); i++ {
    		ev := &events[i]
    
    		if isWakeup(ev) {
    			if delay != 0 {
    				// netpollBreak could be picked up by a nonblocking poll.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/ssa/prove.go

    		//		if ind < end
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    		//		do something without using ind nor nxt
    		//		nxt = inc + ind
    		//		goto loop
    		//
    		//	exit_loop:
    		//
    		// is rewritten to:
    		//
    		//	loop:
    		//		ind = (Phi end nxt)
    		//		if (Const [x]) < ind
    		//		then goto enter_loop
    		//		else goto exit_loop
    		//
    		//	enter_loop:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/x86/asm6.go

    		}
    		if a.Index == REG_TLS {
    			ctxt.Diag("unexpected TYPE_ADDR with index==REG_TLS")
    		}
    		goto bad
    
    	case obj.TYPE_REG:
    		const regFirst = REG_AL
    		const regLast = REG_Z31
    		if a.Reg < regFirst || regLast < a.Reg {
    			goto bad
    		}
    		if v != 0 {
    			goto bad
    		}
    		ab.Put1(byte(3<<6 | reg[a.Reg]<<0 | r<<3))
    		ab.rexflag |= regrex[a.Reg]&(0x40|Rxb) | rex
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top