Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for exit2 (0.05 sec)

  1. platforms/core-runtime/daemon-server/src/main/java/org/gradle/launcher/daemon/bootstrap/DaemonMain.java

    import java.util.List;
    
    /**
     * The entry point for a daemon process.
     *
     * If the daemon hits the specified idle timeout the process will exit with 0. If the daemon encounters an internal error or is explicitly stopped (which can be via receiving a stop command, or
     * unexpected client disconnection) the process will exit with 1.
     */
    public class DaemonMain extends EntryPoint {
        private static final Logger LOGGER = Logging.getLogger(DaemonMain.class);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  2. src/os/exec.go

    // but false if the program terminated due to a signal.
    func (p *ProcessState) Exited() bool {
    	return p.exited()
    }
    
    // Success reports whether the program exited successfully,
    // such as with exit status 0 on Unix.
    func (p *ProcessState) Success() bool {
    	return p.success()
    }
    
    // Sys returns system-dependent exit information about
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  3. cni/pkg/cmd/root.go

    		"The expected termination message for the init container when crash-looping because of CNI misconfiguration")
    	registerIntegerParameter(constants.RepairInitExitCode, iptables.ValidationErrorCode,
    		"Expected exit code for the init container when crash-looping because of CNI misconfiguration")
    	registerStringParameter(constants.RepairLabelSelectors, "",
    		"A set of label selectors in label=value format that will be added to the pod list filters")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. cmd/storage-rest-server.go

    // or informative based on the `exit` flag, please look
    // at each implementation of error for added hints.
    //
    // FIXME: This is an unusual function but serves its purpose for
    // now, need to revisit the overall erroring structure here.
    // Do not like it :-(
    func logFatalErrs(err error, endpoint Endpoint, exit bool) {
    	switch {
    	case errors.Is(err, errXLBackend):
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  5. tests/integration/telemetry/api/dashboard_test.go

    			if err != nil {
    				t.Fatal(err)
    			}
    			t.ConfigKube().YAML("istio-system", yml.SplitYamlByKind(string(cfg))["ConfigMap"]).ApplyOrFail(t)
    
    			// We will send a bunch of requests until the test exits. This ensures we are continuously
    			// getting new metrics ingested. If we just send a bunch at once, Prometheus may scrape them
    			// all in a single scrape which can lead to `rate()` not behaving correctly.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 20:46:28 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/productpage.py

            self.file.write(data)
    
        def flush(self):
            self.file.flush()
    
    
    if __name__ == '__main__':
        if len(sys.argv) < 2:
            logging.error("usage: %s port" % (sys.argv[0]))
            sys.exit(-1)
    
        p = int(sys.argv[1])
        logging.info("start at port %s" % (p))
        # Make it compatible with IPv6 if Linux
        if sys.platform == "linux":
            app.run(host='::', port=p, debug=False, threaded=True)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  7. cmd/batch-expire.go

    	ri.Failed = failed || ri.ObjectsFailed > 0
    	globalBatchJobsMetrics.save(job.ID, ri)
    
    	// Close the saverQuitCh - this also triggers saving in-memory state
    	// immediately one last time before we exit this method.
    	xioutil.SafeClose(saverQuitCh)
    
    	// Notify expire jobs final status to the configured endpoint
    	buf, _ := json.Marshal(ri)
    	if err := r.Notify(context.Background(), bytes.NewReader(buf)); err != nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  8. pilot/pkg/xds/delta.go

    		// loading request, concurrency=1. Once that request is done, concurrency is enabled.
    		// However, the XDS stream is long lived, so the first request would block all others. As a
    		// result, we should exit the first request immediately; clients will retry.
    		firstRequest.Store(false)
    		return status.Error(codes.Unavailable, "server warmup not complete; try again")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  9. android/guava-tests/test/com/google/common/util/concurrent/JSR166TestCase.java

      //         for (int i = 0; i < iters; ++i) {
      //             junit.textui.TestRunner.run(s);
      //             System.gc();
      //             System.runFinalization();
      //         }
      //         System.exit(0);
      //     }
    
      //     public static TestSuite newTestSuite(Object... suiteOrClasses) {
      //         TestSuite suite = new TestSuite();
      //         for (Object suiteOrClass : suiteOrClasses) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 19:21:11 UTC 2024
    - 37.7K bytes
    - Viewed (0)
  10. pkg/features/kube_features.go

    	JobManagedBy featuregate.Feature = "JobManagedBy"
    
    	// owner: @mimowo
    	// kep: https://kep.k8s.io/3329
    	// alpha: v1.25
    	// beta: v1.26
    	//
    	// Allow users to specify handling of pod failures based on container exit codes
    	// and pod conditions.
    	JobPodFailurePolicy featuregate.Feature = "JobPodFailurePolicy"
    
    	// owner: @kannon92
    	// kep : https://kep.k8s.io/3939
    	// alpha: v1.28
    	// beta: v1.29
    	//
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 22:51:23 UTC 2024
    - 45.2K bytes
    - Viewed (0)
Back to top