Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 124 for exit_a (0.17 sec)

  1. 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)
  2. src/runtime/os2_aix.go

    	if resetLibcall {
    		mp.libcallsp = 0
    	}
    
    	return c.r1, c.err
    }
    
    func exit1(code int32)
    
    //go:nosplit
    func exit(code int32) {
    	gp := getg()
    
    	// Check the validity of g because without a g during
    	// newosproc0.
    	if gp != nil {
    		syscall1(&libc_exit, uintptr(code))
    		return
    	}
    	exit1(code)
    }
    
    func write2(fd, p uintptr, n int32) int32
    
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 20.9K bytes
    - Viewed (0)
  3. pkg/kubelet/kuberuntime/helpers.go

    		}
    	}
    
    	// If non of them is set, treat it as root.
    	return new(int64), "", nil
    }
    
    // isInitContainerFailed returns true under the following conditions:
    // 1. container has exited and exitcode is not zero.
    // 2. container is in unknown state.
    // 3. container gets OOMKilled.
    func isInitContainerFailed(status *kubecontainer.Status) bool {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 12K bytes
    - Viewed (0)
  4. src/internal/trace/summary.go

    	StartTime    Time   // Timestamp of the first time it started running. 0 if the goroutine never ran.
    	EndTime      Time   // Timestamp of when the goroutine exited. 0 if the goroutine never exited.
    
    	// List of regions in the goroutine, sorted based on the start time.
    	Regions []*UserRegionSummary
    
    	// Statistics of execution time during the goroutine execution.
    	GoroutineExecStats
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  5. src/net/http/responsecontroller_test.go

    		defer wg.Done()
    		defer pw.Close()
    		pw.Write([]byte("one"))
    		select {
    		case <-readc:
    		case <-donec:
    			select {
    			case <-readc:
    			default:
    				t.Errorf("server handler unexpectedly exited without closing readc")
    				return
    			}
    		}
    		pw.Write([]byte("two"))
    	}()
    	defer wg.Wait()
    	res, err := cst.c.Post(cst.ts.URL, "text/foo", pr)
    	if err == nil {
    		defer res.Body.Close()
    	}
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 19:20:31 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    	// of unexpected delay in Wait: a child process that fails to exit after the
    	// associated Context is canceled, and a child process that exits but leaves
    	// its I/O pipes unclosed.
    	//
    	// The WaitDelay timer starts when either the associated Context is done or a
    	// call to Wait observes that the child process has exited, whichever occurs
    	// first. When the delay has elapsed, the command shuts down the child process
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. tensorflow/cc/framework/scope.h

      /// Update the status on this scope.
      /// Note: The status object is shared between all children of this scope.
      /// If the resulting status is not OkStatus() and exit_on_error_ is set on
      /// this scope, this function exits by calling LOG(FATAL).
      void UpdateStatus(const Status& s) const;
    
      // START_SKIP_DOXYGEN
    
      /// Update the builder with properties accumulated in this scope. Does not set
      /// status().
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 13 09:08:33 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. src/runtime/sys_linux_386.s

    	INT $3	// not reached
    	RET
    
    TEXT exit1<>(SB),NOSPLIT,$0
    	MOVL	$SYS_exit, AX
    	MOVL	code+0(FP), BX
    	INVOKE_SYSCALL
    	INT $3	// not reached
    	RET
    
    // func exitThread(wait *atomic.Uint32)
    TEXT runtime·exitThread(SB),NOSPLIT,$0-4
    	MOVL	wait+0(FP), AX
    	// We're done using the stack.
    	MOVL	$0, (AX)
    	MOVL	$1, AX	// exit (just this thread)
    	MOVL	$0, BX	// exit code
    	INT	$0x80	// no stack; must not use CALL
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/Constants.java

        public static final String DEFAULT_JOB_TARGET = "all";
    
        public static final String DEFAULT_JOB_SCRIPT_TYPE = "groovy";
    
        public static final int EXIT_OK = 0;
    
        public static final int EXIT_FAIL = 1;
    
        public static final String DCF = "dcf";
    
        public static final String ALL_LANGUAGES = "all";
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  10. src/cmd/trace/gstate.go

    func (gs *gState[R]) blockedSyscallEnd(ts trace.Time, stack trace.Stack, ctx *traceContext) {
    	name := "exit blocked syscall"
    	gs.setStartCause(ts, name, trace.SyscallP, stack)
    
    	// Emit an syscall exit instant event for the "Syscall" lane.
    	ctx.Instant(traceviewer.InstantEvent{
    		Name:     name,
    		Ts:       ctx.elapsed(ts),
    		Resource: trace.SyscallP,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 11.9K bytes
    - Viewed (0)
Back to top