Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 347 for exit_1 (0.15 sec)

  1. guava-tests/test/com/google/common/util/concurrent/AbstractFutureTest.java

                    errorMessage.set("SetException call exited before future was complete.");
                  }
                }
              });
          executor.execute(
              new Runnable() {
                @Override
                public void run() {
                  future.cancel(true);
                  if (!future.isDone()) {
                    errorMessage.set("Cancel call exited before future was complete.");
                  }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 46.7K bytes
    - Viewed (0)
  2. src/runtime/semasleep_test.go

    		t.Fatalf("error reading from testprog: %v", err)
    	}
    
    	// Wait for child exit.
    	//
    	// Note that we must do this after waiting for the write/child end of
    	// stdout to close. Wait closes the read/parent end of stdout, so
    	// starting this goroutine prior to io.ReadAll introduces a race
    	// condition where ReadAll may get fs.ErrClosed if the child exits too
    	// quickly.
    	waiting = true
    	go func() {
    		doneCh <- cmd.Wait()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  3. src/syscall/syscall_linux.go

    // from stopped via the core dump bit.
    
    const (
    	mask    = 0x7F
    	core    = 0x80
    	exited  = 0x00
    	stopped = 0x7F
    	shift   = 8
    )
    
    func (w WaitStatus) Exited() bool { return w&mask == exited }
    
    func (w WaitStatus) Signaled() bool { return w&mask != stopped && w&mask != exited }
    
    func (w WaitStatus) Stopped() bool { return w&0xFF == stopped }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  4. src/cmd/test2json/main.go

    		err := cmd.Run()
    		if err != nil {
    			if w.n > 0 {
    				// Assume command printed why it failed.
    			} else {
    				fmt.Fprintf(c, "test2json: %v\n", err)
    			}
    		}
    		c.Exited(err)
    		if err != nil {
    			c.Close()
    			os.Exit(1)
    		}
    	}
    }
    
    type countWriter struct {
    	n int64
    	w io.Writer
    }
    
    func (w *countWriter) Write(b []byte) (int, error) {
    	w.n += int64(len(b))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/proxy/streamtranslator.go

    			metrics.IncStreamTranslatorRequest(req.Context(), strconv.Itoa(int(statusErr.Status().Code)))
    		} else if exitErr, ok := err.(exec.CodeExitError); ok && exitErr.Exited() {
    			websocketStreams.writeStatus(codeExitToStatusError(exitErr))
    			// Returned an exit code from the container, so not an error in
    			// stream translator--add StatusOK to metrics.
    			metrics.IncStreamTranslatorRequest(req.Context(), strconv.Itoa(http.StatusOK))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 23:21:55 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm/obj.go

    			Reloc1:    elfreloc1,
    			RelocSize: 8,
    			SetupPLT:  elfsetupplt,
    		},
    	}
    
    	return arch, theArch
    }
    
    func archinit(ctxt *ld.Link) {
    	switch ctxt.HeadType {
    	default:
    		ld.Exitf("unknown -H option: %v", ctxt.HeadType)
    
    	case objabi.Hplan9: /* plan 9 */
    		ld.HEADR = 32
    		if *ld.FlagRound == -1 {
    			*ld.FlagRound = 4096
    		}
    		if *ld.FlagTextAddr == -1 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:32:19 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. common/scripts/kind_provisioner.sh

    #####################################################################
    
    # cleanup_kind_cluster takes a single parameter NAME
    # and deletes the KinD cluster with that name
    function cleanup_kind_cluster() {
      echo "Test exited with exit code $?."
      NAME="${1}"
      kind export logs --name "${NAME}" "${ARTIFACTS}/kind" -v9 || true
      if [[ -z "${SKIP_CLEANUP:-}" ]]; then
        echo "Cleaning up kind cluster"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 19:12:55 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/running-builds/additional/continuous_builds.adoc

    == Terminating Continuous Build
    If Gradle is attached to an interactive input source, such as a terminal, the continuous build can be exited by pressing `CTRL-D` (On Microsoft Windows, it is required to also press `ENTER` or `RETURN` after `CTRL-D`).
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  9. pkg/kubelet/pleg/evented_test.go

    		newPodStatus := kubecontainer.PodStatus{
    			ID: podStatus.ID,
    			SandboxStatuses: []*v1.PodSandboxStatus{
    				{Id: podId},
    			},
    			ContainerStatuses: []*kubecontainer.Status{
    				// update state to container exited
    				{ID: kubecontainer.ContainerID{ID: podId}, State: kubecontainer.ContainerStateExited},
    			},
    		}
    
    		pleg.updateRunningPodMetric(&newPodStatus)
    		pleg.cache.Set(newPodStatus.ID, &newPodStatus, nil, time.Now())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 01 07:45:05 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. src/runtime/sys_linux_arm.s

    	MOVW	R0, m_procid(R8)
    
    nog:
    	// Call fn
    	MOVW	8(R13), R0
    	MOVW	$16(R13), R13
    	BL	(R0)
    
    	// It shouldn't return. If it does, exit that thread.
    	SUB	$16, R13 // restore the stack pointer to avoid memory corruption
    	MOVW	$0, R0
    	MOVW	R0, 4(R13)
    	BL	exit1<>(SB)
    
    	MOVW	$1234, R0
    	MOVW	$1005, R1
    	MOVW	R0, (R1)
    
    TEXT runtime·sigaltstack(SB),NOSPLIT,$0
    	MOVW	new+0(FP), R0
    	MOVW	old+4(FP), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 13.5K bytes
    - Viewed (0)
Back to top