Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 224 for dumpbv (0.46 sec)

  1. src/cmd/compile/internal/ir/fmt.go

    	for i, n := range l {
    		fmt.Fprint(s, n)
    		if i+1 < len(l) {
    			fmt.Fprint(s, sep)
    		}
    	}
    }
    
    // Dump
    
    // Dump prints the message s followed by a debug dump of n.
    func Dump(s string, n Node) {
    	fmt.Printf("%s%+v\n", s, n)
    }
    
    // DumpList prints the message s followed by a debug dump of each node in the list.
    func DumpList(s string, list Nodes) {
    	var buf bytes.Buffer
    	FDumpList(&buf, s, list)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 05 15:20:28 UTC 2023
    - 26K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/profile.go

    		i := 0
    		for unit := range values {
    			units[i] = unit
    			i++
    		}
    		sort.Strings(units)
    		unitsIgnored[key] = units
    	}
    
    	return numLabelUnits, unitsIgnored
    }
    
    // String dumps a text representation of a profile. Intended mainly
    // for debugging purposes.
    func (p *Profile) String() string {
    	ss := make([]string, 0, len(p.Comments)+len(p.Sample)+len(p.Mapping)+len(p.Location))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 22.3K bytes
    - Viewed (0)
  3. src/cmd/doc/doc_test.go

    	{
    		"sanity check",
    		[]string{p},
    		[]string{`type ExportedType struct`},
    		nil,
    	},
    
    	// Package dump includes import, package statement.
    	{
    		"package clause",
    		[]string{p},
    		[]string{`package pkg.*cmd/doc/testdata`},
    		nil,
    	},
    
    	// Constants.
    	// Package dump
    	{
    		"full package",
    		[]string{p},
    		[]string{
    			`Package comment`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:16:55 UTC 2023
    - 31.2K bytes
    - Viewed (0)
  4. pkg/proxy/healthcheck/healthcheck_test.go

    	}
    	if len(listener.openPorts) != 1 {
    		t.Errorf("expected 1 open port, got %d\n%s", len(listener.openPorts), dump.Pretty(listener.openPorts))
    	}
    	if !listener.hasPort("0.0.0.0:9376") {
    		t.Errorf("expected port :9376 to be open\n%s", dump.Pretty(listener.openPorts))
    	}
    	// test the handler
    	testHandler(hcs, nsn, http.StatusServiceUnavailable, 0, t)
    
    	// sync an endpoint
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 13:27:41 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. platforms/software/platform-base/src/integTest/groovy/org/gradle/language/base/CustomComponentSourceSetIntegrationTest.groovy

                }
            }
        }
    
        apply plugin:MyBinaryDeclarationModel
    """
        }
    
        def "source order is retained"() {
            buildFile << '''
    class Dump extends RuleSource {
        @Mutate
        void tasks(ModelMap<Task> tasks, BinaryContainer binaries) {
            tasks.create("verify") {
                doLast {
                    binaries.each { binary ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 13.5K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/api/ResolutionResultApiIntegrationTest.groovy

            )
    
            def confList = configurations.collect { configuration ->
                """
                    // dump variant dependencies
                    def result_$configuration = ${configuration}.incoming.resolutionResult
                    dump("$configuration", result_${configuration}.root, null, 0)
    
                    // check that configuration attributes are visible and desugared
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 30.5K bytes
    - Viewed (0)
  7. src/reflect/abi.go

    	// Used by reflectcall to make result pointers visible
    	// to the GC.
    	inRegPtrs, outRegPtrs abi.IntArgRegBitmap
    }
    
    func (a *abiDesc) dump() {
    	println("ABI")
    	println("call")
    	a.call.dump()
    	println("ret")
    	a.ret.dump()
    	println("stackCallArgsSize", a.stackCallArgsSize)
    	println("retOffset", a.retOffset)
    	println("spill", a.spill)
    	print("inRegPtrs:")
    	dumpPtrBitMap(a.inRegPtrs)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 17:08:32 UTC 2024
    - 15K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/server/deleted_kinds_test.go

    limitations under the License.
    */
    
    package server
    
    import (
    	"reflect"
    	"strings"
    	"testing"
    
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/util/dump"
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apimachinery/pkg/version"
    	"k8s.io/apiserver/pkg/registry/rest"
    )
    
    func Test_newResourceExpirationEvaluator(t *testing.T) {
    	tests := []struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. security/pkg/server/ca/server_test.go

    			},
    			caller: &security.Caller{Identities: []string{callerID}},
    			ipAddr: mockIPAddr,
    			code:   codes.OK,
    		},
    	}
    
    	for id, c := range testCerts {
    		request := &pb.IstioCertificateRequest{Csr: "dumb CSR"}
    		ctx := context.Background()
    		if c.certChain != nil {
    			tlsInfo := credentials.TLSInfo{
    				State: tls.ConnectionState{VerifiedChains: c.certChain},
    			}
    			p := &peer.Peer{Addr: c.ipAddr, AuthInfo: tlsInfo}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. pilot/test/xdstest/extract.go

    	}
    }
    
    // DumpList will dump a list of protos.
    func DumpList[T any](t test.Failer, protoList []T) []string {
    	res := []string{}
    	for _, i := range protoList {
    		p, ok := any(i).(proto.Message)
    		if !ok {
    			t.Fatalf("expected proto, got %T", i)
    		}
    		res = append(res, Dump(t, p))
    	}
    	return res
    }
    
    func Dump(t test.Failer, p proto.Message) string {
    	v := reflect.ValueOf(p)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 19 22:42:42 UTC 2023
    - 13.9K bytes
    - Viewed (0)
Back to top