Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 55 of 55 for reachable (0.2 sec)

  1. src/cmd/go/internal/toolchain/switch.go

    		return
    	}
    
    	fmt.Fprintf(os.Stderr, "go: %v requires go >= %v; switching to %v\n", s.TooNew.What, s.TooNew.GoVersion, tv)
    	counterSwitchExec.Inc()
    	Exec(tv)
    	panic("unreachable")
    }
    
    var counterSwitchExec = telemetry.NewCounter("go/toolchain/switch-exec")
    
    // SwitchOrFatal attempts a toolchain switch based on the information in err
    // and otherwise falls back to base.Fatal(err).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/universe.go

    	if obj.Exported() {
    		scope = Unsafe.scope
    		// set Pkg field
    		switch obj := obj.(type) {
    		case *TypeName:
    			obj.pkg = Unsafe
    		case *Builtin:
    			obj.pkg = Unsafe
    		default:
    			panic("unreachable")
    		}
    	}
    	if scope.Insert(obj) != nil {
    		panic("double declaration of predeclared identifier")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/go/types/universe.go

    	if obj.Exported() {
    		scope = Unsafe.scope
    		// set Pkg field
    		switch obj := obj.(type) {
    		case *TypeName:
    			obj.pkg = Unsafe
    		case *Builtin:
    			obj.pkg = Unsafe
    		default:
    			panic("unreachable")
    		}
    	}
    	if scope.Insert(obj) != nil {
    		panic("double declaration of predeclared identifier")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  4. hack/golangci-strict.yaml

          path: _test.go$
    
        # The Kubernetes naming convention for conversion functions uses underscores
        # and intentionally deviates from normal Go conventions to make those function
        # names more readable. Same for SetDefaults_*.
        #
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1507028627
        # https://github.com/kubernetes/kubernetes/issues/117288#issuecomment-1514201592
        - linters:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 15 12:10:09 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  5. src/internal/coverage/cformat/format.go

    // Copyright 2022 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package cformat
    
    // This package provides apis for producing human-readable summaries
    // of coverage data (e.g. a coverage percentage for a given package or
    // set of packages) and for writing data in the legacy test format
    // emitted by "go test -coverprofile=<outfile>".
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
Back to top