Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 102 for errorexit (0.15 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/ginkgo-e2e.sh

          program+=("--nodes=25")
        fi
        program+=("${ginkgo_args[@]:+${ginkgo_args[@]}}")
        ;;
      delve) program=("dlv" "exec") ;;
      gdb) program=("gdb") ;;
      *) kube::log::error_exit "Unsupported E2E_TEST_DEBUG_TOOL=${E2E_TEST_DEBUG_TOOL}" ;;
    esac
    
    # Move Ginkgo arguments that are understood by the suite when not using
    # the CLI.
    suite_args=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 13:25:50 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/util/error.go

    	ValidationExitCode = 3
    )
    
    var (
    	// ErrInvalidSubCommandMsg is an error message returned on invalid subcommands
    	ErrInvalidSubCommandMsg = "invalid subcommand"
    	// ErrExit is an error returned when kubeadm is about to exit
    	ErrExit = errors.New("exit")
    )
    
    // fatal prints the message if set and then exits.
    func fatal(msg string, code int) {
    	if len(msg) > 0 {
    		// add newline if needed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 25 16:35:10 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top