Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 191 for mdump (0.34 sec)

  1. src/cmd/compile/internal/types2/builtins.go

    		// (no argument evaluated yet)
    		if nargs == 0 {
    			check.dump("%v: trace() without arguments", atPos(call))
    			x.mode = novalue
    			break
    		}
    		var t operand
    		x1 := x
    		for _, arg := range argList {
    			check.rawExpr(nil, x1, arg, nil, false) // permit trace for types, e.g.: new(trace(T))
    			check.dump("%v: %s", atPos(x1), x1)
    			x1 = &t // use incoming x only for first argument
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/types2/decl.go

    				// initialize a variable with the function.
    			}
    
    		default:
    			panic("unreachable")
    		}
    		assert(obj.Type() != nil)
    		return
    	}
    
    	d := check.objMap[obj]
    	if d == nil {
    		check.dump("%v: %s should have been declared", obj.Pos(), obj)
    		panic("unreachable")
    	}
    
    	// save/restore current environment and set up object environment
    	defer func(env environment) {
    		check.environment = env
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/README

    commands are more easily found, and the elapsed time for a completed phase
    is shown next to the phase heading. To see the entire execution, use "go test -v",
    which also adds an initial environment dump to the beginning of the log.
    
    Note also that in reported output, the actual name of the per-script temporary directory
    has been consistently replaced with the literal string $WORK.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. src/go/types/infer.go

    		defer func() {
    			assert(inferred == nil || len(inferred) == len(tparams) && !containsNil(inferred))
    		}()
    	}
    
    	if traceInference {
    		check.dump("== infer : %s%s ➞ %s", tparams, params, targs) // aligned with rename print below
    		defer func() {
    			check.dump("=> %s ➞ %s\n", tparams, inferred)
    		}()
    	}
    
    	// There must be at least one type parameter, and no more type arguments than type parameters.
    	n := len(tparams)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.5K bytes
    - Viewed (0)
  5. src/crypto/tls/handshake_test.go

    			if len(currentFlow) > 0 || len(flows) > 0 {
    				flows = append(flows, currentFlow)
    				currentFlow = nil
    			}
    			continue
    		}
    
    		// Otherwise the line is a line of hex dump that looks like:
    		// 00000170  fc f5 06 bf (...)  |.....X{&?......!|
    		// (Some bytes have been omitted from the middle section.)
    		_, after, ok := strings.Cut(line, " ")
    		if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 24.5K bytes
    - Viewed (0)
  6. pkg/kube/inject/inject_test.go

    		},
    		{
    			in:       "hello.yaml",
    			want:     "hello-never.yaml.injected",
    			setFlags: []string{"values.global.imagePullPolicy=Never"},
    		},
    		{
    			in:       "enable-core-dump.yaml",
    			want:     "enable-core-dump.yaml.injected",
    			setFlags: []string{"values.global.proxy.enableCoreDump=true"},
    		},
    		{
    			in:   "format-duration.yaml",
    			want: "format-duration.yaml.injected",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 20:35:11 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/quantize_model.cc

      // unquantized tensors are only inserted in the unquantized model
      // whereas `DumpTensor` ops for the quantized tensors are only inserted
      // in the quantized model. Both models are required to be able to dump
      // both quantized and unquantized tensors and compare them offline.
      if (quantization_options.has_debugger_config() &&
          quantization_options.debugger_config().debugger_type() ==
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. src/go/types/decl.go

    				// initialize a variable with the function.
    			}
    
    		default:
    			panic("unreachable")
    		}
    		assert(obj.Type() != nil)
    		return
    	}
    
    	d := check.objMap[obj]
    	if d == nil {
    		check.dump("%v: %s should have been declared", obj.Pos(), obj)
    		panic("unreachable")
    	}
    
    	// save/restore current environment and set up object environment
    	defer func(env environment) {
    		check.environment = env
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 31K bytes
    - Viewed (0)
  9. src/net/http/pprof/pprof.go

    		fmt.Fprintf(&b, "<tr><td>%d</td><td><a href='%s'>%s</a></td></tr>\n", profile.Count, link, html.EscapeString(profile.Name))
    	}
    
    	b.WriteString(`</table>
    <a href="goroutine?debug=2">full goroutine stack dump</a>
    <br>
    <p>
    Profile Descriptions:
    <ul>
    `)
    	for _, profile := range profiles {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testsanitizers/cc_test.go

    	}
    }
    
    func (c *config) checkRuntime() (skip bool, err error) {
    	if c.sanitizer != "thread" {
    		return false, nil
    	}
    
    	// libcgo.h sets CGO_TSAN if it detects TSAN support in the C compiler.
    	// Dump the preprocessor defines to check that works.
    	// (Sometimes it doesn't: see https://golang.org/issue/15983.)
    	cmd, err := cc(c.cFlags...)
    	if err != nil {
    		return false, err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 09 20:00:56 UTC 2024
    - 14.4K bytes
    - Viewed (0)
Back to top