Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 665 for termination (0.28 sec)

  1. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    	fn()
    }
    func newSignalInterceptingTestStep() *signalInterceptingTestStep {
    	return &signalInterceptingTestStep{
    		doneCh: make(chan struct{}),
    	}
    }
    
    //	 This test exercises the graceful termination scenario
    //	 described in the following diagram
    //	   - every vertical line is an independent timeline
    //	   - the leftmost vertical line represents the go routine that
    //	     is executing GenericAPIServer.Run method
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/SmbComNTCreateAndX.java

        }
    
        int writeParameterWordsWireFormat( byte[] dst, int dstIndex ) {
            int start = dstIndex;
    
            dst[dstIndex++] = (byte)0x00;
            // name length without counting null termination
            namelen_index = dstIndex;
            dstIndex += 2;
            writeInt4( flags0, dst, dstIndex );
            dstIndex += 4;
            writeInt4( rootDirectoryFid, dst, dstIndex );
            dstIndex += 4;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 6.6K bytes
    - Viewed (0)
  3. src/runtime/mprof.go

    // snapshot as of the last mark termination without advancing the heap
    // profile cycle.
    func mProf_PostSweep() {
    	// Flush cycle C+1 to the active profile so everything as of
    	// the last mark termination becomes visible. *Don't* advance
    	// the cycle, since we're still accumulating allocs in cycle
    	// C+2, which have to become C+1 in the next mark termination
    	// and so on.
    	cycle := mProfCycle.read() + 1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  4. cni/pkg/nodeagent/informers.go

    			// Unlike the other cases, we actually want to use the "old" event for terminated job pods
    			// - kubernetes will (weirdly) issue a new status to the pod with no IP on termination, meaning
    			// our check of `pod.status` will fail for (some) termination events.
    			//
    			// We will get subsequent events that append a new status with the IP put back, but it's simpler
    			// and safer to just check the old pod status for the IP.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 21:31:35 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  5. src/cmd/go/script_test.go

    		timeout := time.Until(deadline)
    
    		// If time allows, increase the termination grace period to 5% of the
    		// remaining time.
    		if gp := timeout / 20; gp > gracePeriod {
    			gracePeriod = gp
    		}
    
    		// When we run commands that execute subprocesses, we want to reserve two
    		// grace periods to clean up. We will send the first termination signal when
    		// the context expires, then wait one grace period for the process to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/graceful_shutdown_test.go

    	// after which the test shuts down the HTTP server
    	startServerShutdown = make(chan struct{})
    
    	// handlerLock used in the backendHTTPHandler to count the number of requests and signal the test that the termination can start
    	handlerLock = sync.Mutex{}
    )
    
    var backendCrt = []byte(`-----BEGIN CERTIFICATE-----
    MIIDTjCCAjagAwIBAgIJANYWBFaLyBC/MA0GCSqGSIb3DQEBCwUAMFAxCzAJBgNV
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 29 15:48:39 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/apis/testapigroup/types.go

    	// If this value is nil, the default grace period will be used instead.
    	// The grace period is the duration in seconds after the processes running in the carp are sent
    	// a termination signal and the time when the processes are forcibly halted with a kill signal.
    	// Set this value longer than the expected cleanup time for your process.
    	// +optional
    	TerminationGracePeriodSeconds *int64
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jul 03 06:34:52 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  8. pkg/controller/namespace/deletion/namespaced_resources_deleter.go

    //   - It ensures that deletion timestamp is set on the
    //     namespace (does nothing if deletion timestamp is missing).
    //   - Verifies that the namespace is in the "terminating" phase
    //     (updates the namespace phase if it is not yet marked terminating)
    //
    // After deleting the resources:
    // * It removes finalizer token from the given namespace.
    //
    // Returns an error if any of those steps fail.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 07:34:23 UTC 2023
    - 25.2K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/CharSource.java

       * text that is terminated by (but does not include) one of {@code \r\n}, {@code \r} or {@code
       * \n}. If the source's content does not end in a line termination sequence, it is treated as if
       * it does.
       *
       * @throws IOException if an I/O error occurs while reading from this source
       */
      @CheckForNull
      public String readFirstLine() throws IOException {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/loopbce.go

    			continue
    		}
    		step := inc.AuxInt
    		if step == 0 {
    			continue
    		}
    
    		// Increment sign must match comparison direction.
    		// When incrementing, the termination comparison must be ind </<= limit.
    		// When decrementing, the termination comparison must be ind >/>= limit.
    		// See issue 26116.
    		if step > 0 && !less {
    			continue
    		}
    		if step < 0 && less {
    			continue
    		}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 07 17:37:47 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top