Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 80 for Dumps (0.04 sec)

  1. pilot/pkg/xds/debug_test.go

    		}
    		errorHandler("node id %v not found", nodeID)
    	}
    }
    
    func TestConfigDump(t *testing.T) {
    	tests := []struct {
    		name     string
    		wantCode int
    		proxyID  string
    	}{
    		{
    			name:     "dumps most recent proxy with 200",
    			proxyID:  "test.default",
    			wantCode: 200,
    		},
    		{
    			name:     "returns 404 if proxy not found",
    			proxyID:  "not-found",
    			wantCode: 404,
    		},
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 12 18:20:36 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. pkg/envoy/proxy.go

    	} else if cfg.ComponentLogLevel != "" {
    		// Use the old setting if we don't set any component log levels in LogLevel
    		args = append(args, "--component-log-level", cfg.ComponentLogLevel)
    	}
    
    	// Explicitly enable core dumps. This may be desirable more often (by default), but for now we only set it in VM tests.
    	if enableEnvoyCoreDump {
    		args = append(args, "--enable-core-dump")
    	}
    	return &envoy{
    		ProxyConfig: cfg,
    		extraArgs:   args,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  3. pkg/test/framework/resource/settings.go

    	EchoImage string
    
    	// CustomGRPCEchoImage if specified will run an extra container in the echo Pods responsible for gRPC ports
    	CustomGRPCEchoImage string
    
    	// MaxDumps is the maximum number of full test dumps that are allowed to occur within a test suite.
    	MaxDumps uint64
    
    	// EnableDualStack indicates the test should have dual stack enabled or not.
    	EnableDualStack bool
    
    	// Helm repo to be used for tests
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 19:04:51 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  4. src/internal/coverage/cformat/format.go

    // importpath, source file, and line number before emitting (this sorting
    // is not explicitly mandated by the format, but seems like a good idea
    // for repeatable/deterministic dumps).
    func (fm *Formatter) EmitTextual(w io.Writer) error {
    	if fm.cm == coverage.CtrModeInvalid {
    		panic("internal error, counter mode unset")
    	}
    	if _, err := fmt.Fprintf(w, "mode: %s\n", fm.cm.String()); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  5. src/net/http/httputil/dump.go

    func (failureToReadBody) Close() error             { return nil }
    
    // emptyBody is an instance of empty reader.
    var emptyBody = io.NopCloser(strings.NewReader(""))
    
    // DumpResponse is like DumpRequest but dumps a response.
    func DumpResponse(resp *http.Response, body bool) ([]byte, error) {
    	var b bytes.Buffer
    	var err error
    	save := resp.Body
    	savecl := resp.ContentLength
    
    	if !body {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  6. src/internal/types/testdata/check/gotos.go

    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	{
    	L:
    	}
    }
    
    func _() {
    	goto L /* ERROR "goto L jumps into block" */
    	goto L1 /* ERROR "goto L1 jumps into block" */
    	{
    	L: L1:
    	}
    }
    
    // goto backward into inner block still not okay
    func _() {
    	{
    	L:
    	}
    	goto L /* ERROR "goto L jumps into block" */
    }
    
    func _() {
    	{
    	L: L1:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 02:58:32 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  7. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtDataFlowInfoProvider.kt

         * @see [hasJumps] for the definition of jumps.
         */
        public val jumpExpressions: List<KtExpression>,
    
        /**
         * `true` if there are any control-flow statements that jump outside given statements.
         * Jumps include both loop jumps (`break` and `continue`) and `return`s.
         * Conditional blocks (`if`) and `throw`s are not considered as jumps.
         */
        public val hasJumps: Boolean,
    
        /**
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/go/types/labels.go

    	// If there are any forward jumps left, no label was found for
    	// the corresponding goto statements. Either those labels were
    	// never defined, or they are inside blocks and not reachable
    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Name
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    			code = JumpIntoBlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/labels.go

    	// If there are any forward jumps left, no label was found for
    	// the corresponding goto statements. Either those labels were
    	// never defined, or they are inside blocks and not reachable
    	// for the respective gotos.
    	for _, jmp := range fwdJumps {
    		var msg string
    		var code Code
    		name := jmp.Label.Value
    		if alt := all.Lookup(name); alt != nil {
    			msg = "goto %s jumps into block"
    			code = JumpIntoBlock
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  10. src/html/template/css_test.go

    		{`\'`, `'`},
    		{`\.`, `.`},
    		{`\. .`, `. .`},
    		{
    			`The \3c i\3equick\3c/i\3e,\d\A\3cspan style=\27 color:brown\27\3e brown\3c/span\3e  fox jumps\2028over the \3c canine class=\22lazy\22 \3e dog\3c/canine\3e`,
    			"The <i>quick</i>,\r\n<span style='color:brown'>brown</span> fox jumps\u2028over the <canine class=\"lazy\">dog</canine>",
    		},
    	}
    	for _, test := range tests {
    		got1 := string(decodeCSS([]byte(test.css)))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 02 19:38:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
Back to top