Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 665 for termination (0.16 sec)

  1. src/syscall/exec_linux.go

    	// Pdeathsig, if non-zero, is a signal that the kernel will send to
    	// the child process when the creating thread dies. Note that the signal
    	// is sent on thread termination, which may happen before process termination.
    	// There are more details at https://go.dev/issue/27505.
    	Pdeathsig    Signal
    	Cloneflags   uintptr        // Flags for clone calls.
    	Unshareflags uintptr        // Flags for unshare calls.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  2. docs/en/docs/deployment/concepts.md

    We also saw that HTTPS is normally provided by a component **external** to your application server, a **TLS Termination Proxy**.
    
    And there has to be something in charge of **renewing the HTTPS certificates**, it could be the same component or it could be something different.
    
    ### Example Tools for HTTPS
    
    Some of the tools you could use as a TLS Termination Proxy are:
    
    * Traefik
        * Automatically handles certificates renewals ✨
    * Caddy
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  3. platforms/core-execution/file-watching/src/main/java/org/gradle/internal/watch/registry/impl/DefaultFileWatcherRegistry.java

                }
            } catch (InterruptedException e) {
                Thread.currentThread().interrupt();
                throw new InterruptedIOException("Awaiting termination of watcher was interrupted");
            } finally {
                consumeEvents = false;
                eventConsumerThread.interrupt();
            }
        }
    
        private static class MutableFileWatchingStatistics {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 25 15:08:33 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  4. manifests/charts/istio-cni/templates/daemonset.yaml

          serviceAccountName: {{ template "name" . }}
          # Minimize downtime during a rolling upgrade or deletion; tell Kubernetes to do a "force
          # deletion": https://kubernetes.io/docs/concepts/workloads/pods/pod/#termination-of-pods.
          terminationGracePeriodSeconds: 5
          containers:
            # This container installs the Istio CNI binaries
            # and CNI network config file on each node.
            - name: install-cni
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager.go

    		return false
    	}
    	// If this is an update completing pod termination then we know the pod termination is finished.
    	if podIsFinished {
    		klog.V(3).InfoS("The pod termination is finished as SyncTerminatedPod completes its execution", "phase", pod.Status.Phase, "localPhase", status.Phase, "pod", klog.KObj(pod), "podUID", pod.UID)
    		return true
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 44.3K bytes
    - Viewed (0)
  6. android/guava-testlib/src/com/google/common/util/concurrent/testing/TestingExecutors.java

       *
       * <p>Although all tasks are immediately executed in the thread that submitted the task, this
       * {@code ExecutorService} imposes a small locking overhead on each task submission in order to
       * implement shutdown and termination behavior.
       *
       * <p>Because of the nature of single-thread execution, the methods {@code scheduleAtFixedRate}
       * and {@code scheduleWithFixedDelay} are not supported by this class and will throw an
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 17:12:37 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  7. pkg/filewatcher/worker.go

    		}
    	}
    }
    
    // used only by the worker goroutine
    func (wk *worker) drainRetiringTrackers() {
    	// cleanup any trackers that were in the process
    	// of being retired, but didn't get processed due
    	// to termination
    	for {
    		select {
    		case ft := <-wk.retireTrackerCh:
    			retireTracker(ft)
    		default:
    			return
    		}
    	}
    }
    
    // make a local copy of the set of trackers to avoid contention with callers
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 22:31:06 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. src/runtime/sigtab_aix.go

    	_SIGUSR2:    {_SigNotify, "SIGUSR2: user-defined signal 2"},
    	_SIGPIPE:    {_SigNotify, "SIGPIPE: write to broken pipe"},
    	_SIGALRM:    {_SigNotify, "SIGALRM: alarm clock"},
    	_SIGTERM:    {_SigNotify + _SigKill, "SIGTERM: termination"},
    	_SIGCHLD:    {_SigNotify + _SigUnblock, "SIGCHLD: child status has changed"},
    	_SIGCONT:    {_SigNotify + _SigDefault, "SIGCONT: continue"},
    	_SIGSTOP:    {0, "SIGSTOP: stop"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 03 20:58:16 UTC 2018
    - 11.3K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/httpstream/spdy/connection.go

    	// now that all streams are fully torn down, it's safe to call close on the underlying connection,
    	// which should be able to terminate immediately at this point, instead of waiting for any
    	// remaining graceful stream termination.
    	return c.conn.Close()
    }
    
    // RemoveStreams can be used to removes a set of streams from the Connection.
    func (c *connection) RemoveStreams(streams ...httpstream.Stream) {
    	c.streamLock.Lock()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 01 15:04:07 UTC 2021
    - 6.7K bytes
    - Viewed (0)
  10. src/runtime/mgcwork.go

    //	gcw := &getg().m.p.ptr().gcw
    //	.. call gcw.put() to produce and gcw.tryGet() to consume ..
    //
    // It's important that any use of gcWork during the mark phase prevent
    // the garbage collector from transitioning to mark termination since
    // gcWork may locally hold GC work buffers. This can be done by
    // disabling preemption (systemstack or acquirem).
    type gcWork struct {
    	// wbuf1 and wbuf2 are the primary and secondary work buffers.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top