Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for Kissling (0.74 sec)

  1. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.go

    // license that can be found in the LICENSE file.
    
    //go:build zos && s390x
    
    // Many of the following syscalls are not available on all versions of z/OS.
    // Some missing calls have legacy implementations/simulations but others
    // will be missing completely. To achieve consistent failing behaviour on
    // legacy systems, we first test the function pointer via a safeloading
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/doc.go

    is okay, because cmd/link also processes the cgo_import_static directive and
    knows that _cgo_gcc_Cfunc_sin is expected to be supplied by a host
    object file, so cmd/link does not treat the missing symbol as an error when
    creating go.o. Indeed, the definition for _cgo_gcc_Cfunc_sin will be
    provided to the host linker by foo2.cgo.o, which in turn will need the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 17:12:16 UTC 2024
    - 42.2K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/x86/asm6.go

    		return false
    	}
    
    	return true
    }
    
    func (ab *AsmBuf) doasm(ctxt *obj.Link, cursym *obj.LSym, p *obj.Prog) {
    	o := opindex[p.As&obj.AMask]
    
    	if o == nil {
    		ctxt.Diag("asmins: missing op %v", p)
    		return
    	}
    
    	if pre := prefixof(ctxt, &p.From); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    	if pre := prefixof(ctxt, &p.To); pre != 0 {
    		ab.Put1(byte(pre))
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  4. src/cmd/internal/pgo/pprof.go

    			weight[namedEdge] += e.WeightValue()
    		}
    	}
    
    	if !seenStartLine {
    		// TODO(prattmic): If Function.start_line is missing we could
    		// fall back to using absolute line numbers, which is better
    		// than nothing.
    		return NamedEdgeMap{}, 0, fmt.Errorf("profile missing Function.start_line data (Go version of profiled application too old? Go 1.20+ automatically adds this to profiles)")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 20:20:01 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/check.go

    	if !blockMark[f.Entry.ID] {
    		f.Fatalf("entry block %v is missing", f.Entry)
    	}
    	for _, b := range f.Blocks {
    		for _, c := range b.Preds {
    			if !blockMark[c.b.ID] {
    				f.Fatalf("predecessor block %v for %v is missing", c, b)
    			}
    		}
    		for _, c := range b.Succs {
    			if !blockMark[c.b.ID] {
    				f.Fatalf("successor block %v for %v is missing", c, b)
    			}
    		}
    	}
    
    	if len(f.Entry.Preds) > 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 09 16:41:23 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/ifaceassert/ifaceassert.go

    // nil on success, or the first conflicting method on failure.
    func assertableTo(free *typeparams.Free, v, t types.Type) *types.Func {
    	if t == nil || v == nil {
    		// not assertable to, but there is no missing method
    		return nil
    	}
    	// ensure that v and t are interfaces
    	V, _ := v.Underlying().(*types.Interface)
    	T, _ := t.Underlying().(*types.Interface)
    	if V == nil || T == nil {
    		return nil
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/macho_combine_dwarf.go

    	if linkseg == nil {
    		return fmt.Errorf("missing __LINKEDIT segment")
    	}
    
    	if _, err := exef.Seek(0, 0); err != nil {
    		return err
    	}
    	if _, err := io.CopyN(outf, exef, int64(linkseg.Offset)); err != nil {
    		return err
    	}
    
    	realdwarf := dwarfm.Segment("__DWARF")
    	if realdwarf == nil {
    		return fmt.Errorf("missing __DWARF segment")
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/api_test.go

    		{`package m5; func f() {}`, `f`, `<missing>`},
    		{`package m6; func _(x int) {}`, `x`, `<missing>`},
    		{`package m6; func _()(x int) { return }`, `x`, `<missing>`},
    		{`package m6; type T int; func (x T) _() {}`, `x`, `<missing>`},
    	}
    
    	for _, test := range tests {
    		info := Info{Types: make(map[syntax.Expr]TypeAndValue)}
    		name := mustTypecheck(test.src, nil, &info).Name()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 93.3K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    		m := p.Mapping[0]
    		if execName != "" {
    			// Explicitly do not update KernelRelocationSymbol --
    			// the source override is most likely missing it.
    			m.File = execName
    		}
    		// Only apply the build ID override if the build ID in the main mapping is
    		// missing. Overwriting the build ID in case it's present is very likely a
    		// wrong thing to do so we refuse to do that.
    		if buildID != "" && m.BuildID == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  10. src/cmd/covdata/covdata.go

    	textfmtMode   = "textfmt"
    	debugDumpMode = "debugdump"
    )
    
    func main() {
    	telemetry.Start()
    
    	// First argument should be mode/subcommand.
    	if len(os.Args) < 2 {
    		usage("missing command selector")
    	}
    
    	// Select mode
    	var op covOperation
    	cmd := os.Args[1]
    	switch cmd {
    	case mergeMode:
    		op = makeMergeOp()
    	case debugDumpMode:
    		op = makeDumpOp(debugDumpMode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top