Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 170 for errorexit (0.12 sec)

  1. platforms/core-runtime/launcher/src/integTest/groovy/org/gradle/launcher/daemon/ProcessCrashHandlingIntegrationTest.groovy

                            ErrorExit(TEXT("FreeConsole"));
                        }
                    }
    
                    // AttachConsole also returns ERROR_GEN_FAILURE when the process
                    // doesn't exist, so we need to verify that the pid is valid.
                    if (OpenProcess(SYNCHRONIZE, FALSE, pid) == NULL) {
                        ErrorExit(TEXT("OpenProcess"));
                    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    		errorexit()
    	}
    	if seg.Fileoff != uint64(sect.pointerToRawData) {
    		Errorf(nil, "%s.PointerToRawData = %#x, want %#x", sect.name, uint64(int64(sect.pointerToRawData)), uint64(int64(seg.Fileoff)))
    		errorexit()
    	}
    }
    
    // pad adds zeros to the section sect. It writes as many bytes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/noder/noder.go

    			}()
    		}
    	}()
    
    	var lines uint
    	var m posMap
    	for _, p := range noders {
    		for e := range p.err {
    			base.ErrorfAt(m.makeXPos(e.Pos), 0, "%s", e.Msg)
    		}
    		if p.file == nil {
    			base.ErrorExit()
    		}
    		lines += p.file.EOF.Line()
    	}
    	base.Timer.AddEvent(int64(lines), "lines")
    
    	unified(m, noders)
    }
    
    // trimFilename returns the "trimmed" filename of b, which is the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 11 20:40:57 UTC 2023
    - 12.5K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/main.go

    		ctxt.Logf("%s", ctxt.loader.Stat())
    		ctxt.Logf("%d liveness data\n", liveness)
    	}
    	bench.Start("Flush")
    	ctxt.Bso.Flush()
    	bench.Start("archive")
    	ctxt.archive()
    	bench.Report(os.Stdout)
    
    	errorexit()
    }
    
    type Rpath struct {
    	set bool
    	val string
    }
    
    func (r *Rpath) Set(val string) error {
    	r.set = true
    	r.val = val
    	return nil
    }
    
    func (r *Rpath) String() string {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 16:59:50 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/elf.go

    	}
    	return uint32(ehdr.Shnum) * ELF32SHDRSIZE
    }
    
    func elfsetstring(ctxt *Link, s loader.Sym, str string, off int) {
    	if nelfstr >= len(elfstr) {
    		ctxt.Errorf(s, "too many elf strings")
    		errorexit()
    	}
    
    	elfstr[nelfstr].s = str
    	elfstr[nelfstr].off = off
    	nelfstr++
    }
    
    func elfwritephdrs(out *OutBuf) uint32 {
    	if elf64 {
    		for i := 0; i < int(ehdr.Phnum); i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  6. src/cmd/link/internal/ld/data.go

    			if int32(o) < 0 && target.Arch.PtrSize > 4 && siz == 4 {
    				st.err.Errorf(s, "non-pc-relative relocation address for %s is too big: %#x (%#x + %#x)", ldr.SymName(rs), uint64(o), ldr.SymValue(rs), r.Add())
    				errorexit()
    			}
    		case objabi.R_DWARFSECREF:
    			if ldr.SymSect(rs) == nil {
    				st.err.Errorf(s, "missing DWARF section for relocation target %s", ldr.SymName(rs))
    			}
    
    			if target.IsExternal() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  7. hack/lib/logging.sh

        done
      fi
      kube::log::error_exit "Error in ${BASH_SOURCE[1]}:${BASH_LINENO[0]}. '${BASH_COMMAND}' exited with status ${err}" "${1:-1}" 1
    }
    
    kube::log::install_errexit() {
      # trap ERR to provide an error handler whenever a command exits nonzero  this
      # is a more verbose version of set -o errexit
      trap 'kube::log::errexit' ERR
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 06 14:40:08 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/lib.go

    		}
    	}
    }
    
    func exitIfErrors() {
    	if nerrors != 0 || checkStrictDups > 1 && strictDupMsgCount > 0 {
    		mayberemoveoutfile()
    		Exit(2)
    	}
    
    }
    
    func errorexit() {
    	exitIfErrors()
    	Exit(0)
    }
    
    func loadinternal(ctxt *Link, name string) *sym.Library {
    	zerofp := goobj.FingerprintType{}
    	if ctxt.linkShared && ctxt.PackageShlib != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  9. hack/module-graph.sh

    }
    
    mkdir -p _output
    echo "digraph module_dependencies {" > _output/module-dependencies.dot || error_exit "Failed to open DOT file"
    if [[ -n "$1" && $1 == "staging" ]]; then
    	echo "Generating just staging modules"
    	staging_dependencies
    else
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 07 08:19:59 UTC 2020
    - 3K bytes
    - Viewed (0)
  10. src/cmd/vet/testdata/buildtag/buildtag2.go

    // license that can be found in the LICENSE file.
    
    // This file contains tests for the buildtag checker.
    
    // ERRORNEXT "possible malformed [+]build comment"
    // +builder
    // +build !ignore
    
    package testdata
    
    // ERRORNEXT "misplaced \+build comment"
    // +build toolate
    // ERRORNEXT "misplaced //go:build comment"
    //go:build toolate
    
    var _ = 3
    
    var _ = `
    // +build notacomment
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 20 03:54:48 UTC 2021
    - 483 bytes
    - Viewed (0)
Back to top