Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 114 for exit_a (0.21 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cmd/kubeadm/app/util/apiclient/idempotency_test.go

    	defaultTimeouts.KubernetesAPICall = &metav1.Duration{Duration: apiCallRetryInterval}
    
    	exitVal := m.Run()
    
    	// Restore the default interval and timeouts
    	apiCallRetryInterval = defaultRetryInterval
    	defaultTimeouts.KubernetesAPICall = defaultAPICallTimeout
    
    	os.Exit(exitVal)
    }
    
    func TestCreateOrUpdateConfigMap(t *testing.T) {
    	tests := []struct {
    		name          string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Feb 18 11:14:32 UTC 2024
    - 33.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top