Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 347 for exit_1 (0.16 sec)

  1. 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)
  2. src/internal/fuzz/worker.go

    				return fmt.Errorf("fuzzing process exited unexpectedly due to an internal failure: %w", err)
    			}
    			// Worker exited non-zero or was terminated by a non-interrupt
    			// signal (for example, SIGSEGV) while fuzzing.
    			return fmt.Errorf("fuzzing process hung or terminated unexpectedly: %w", err)
    			// TODO(jayconrod,katiehockman): if -keepfuzzing, restart worker.
    
    		case input := <-w.coordinator.inputC:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_executor.cc

    //===----------------------------------------------------------------------===//
    // tf_executor.Exit
    //===----------------------------------------------------------------------===//
    
    void ExitOp::print(OpAsmPrinter &p) {
      p << ' ';
      p.printOperands(getOperands());
      p << " : " << getType(0);
      p.printOptionalAttrDict(getOperation()->getAttrs());
    }
    
    ParseResult ExitOp::parse(OpAsmParser &parser, OperationState &result) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 42.7K bytes
    - Viewed (0)
  4. pkg/kubelet/pleg/evented.go

    		if sandboxStatus.State == runtimeapi.PodSandboxState_SANDBOX_READY {
    			return status.IPs
    		}
    	}
    
    	// For pods with no ready containers or sandboxes (like exited pods)
    	// use the old status' pod IP
    	return oldStatus.IPs
    }
    
    func (e *EventedPLEG) sendPodLifecycleEvent(event *PodLifecycleEvent) {
    	select {
    	case e.eventChannel <- event:
    	default:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 10:46:06 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/syscall_zos_s390x.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 08 16:12:58 UTC 2024
    - 84.4K bytes
    - Viewed (0)
  6. pkg/kubelet/container/runtime.go

    	Status(ctx context.Context) (*RuntimeStatus, error)
    	// GetPods returns a list of containers grouped by pods. The boolean parameter
    	// specifies whether the runtime returns all containers including those already
    	// exited and dead containers (used for garbage collection).
    	GetPods(ctx context.Context, all bool) ([]*Pod, error)
    	// GarbageCollect removes dead containers using the specified container gc policy
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  7. pkg/util/iptables/iptables.go

    	}
    	if err == nil {
    		return true, nil
    	}
    	if ee, ok := err.(utilexec.ExitError); ok {
    		// iptables uses exit(1) to indicate a failure of the operation,
    		// as compared to a malformed commandline, for example.
    		if ee.Exited() && ee.ExitStatus() == 1 {
    			return false, nil
    		}
    	}
    	return false, fmt.Errorf("error checking rule: %v: %s", err, out)
    }
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  8. src/go/doc/testdata/testing.go

    	//
    	// This previous version duplicated code (those lines are in
    	// tRunner no matter what), but worse the goroutine teardown
    	// implicit in runtime.Goexit was not guaranteed to complete
    	// before the test exited. If a test deferred an important cleanup
    	// function (like removing temporary files), there was no guarantee
    	// it would run on a test failure. Because we send on c.signal during
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 11.8K bytes
    - Viewed (0)
  9. src/cmd/go/internal/cache/prog.go

    			if c.closing.Load() {
    				return // quietly
    			}
    			if err == io.EOF {
    				c.mu.Lock()
    				inFlight := len(c.inFlight)
    				c.mu.Unlock()
    				base.Fatalf("GOCACHEPROG exited pre-Close with %v pending requests", inFlight)
    			}
    			base.Fatalf("error reading JSON from GOCACHEPROG: %v", err)
    		}
    		c.mu.Lock()
    		ch, ok := c.inFlight[res.ID]
    		delete(c.inFlight, res.ID)
    		c.mu.Unlock()
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. src/runtime/os_freebsd.go

    	}
    
    	minitSignals()
    }
    
    // Called from dropm to undo the effect of an minit.
    //
    //go:nosplit
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    // resources in minit, semacreate, or elsewhere. Do not take locks after calling this.
    func mdestroy(mp *m) {
    }
    
    func sigtramp()
    
    type sigactiont struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
Back to top