Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 294 for kill (0.12 sec)

  1. pkg/volume/csi/csi_plugin.go

    	if err != nil {
    		return err
    	}
    
    	// Storing endpoint of newly registered CSI driver into the map, where CSI driver name will be the key
    	// all other CSI components will be able to get the actual socket of CSI drivers by its name.
    	csiDrivers.Set(pluginName, Driver{
    		endpoint:                endpoint,
    		highestSupportedVersion: highestSupportedVersion,
    	})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  2. pkg/kubelet/container/runtime.go

    	// KillPod kills all the containers of a pod. Pod may be nil, running pod must not be.
    	// TODO(random-liu): Return PodSyncResult in KillPod.
    	// gracePeriodOverride if specified allows the caller to override the pod default grace period.
    	// only hard kill paths are allowed to specify a gracePeriodOverride in the kubelet in order to not corrupt user data.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:23 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  3. src/crypto/tls/handshake_client_test.go

    }
    
    // opensslEndOfHandshake is a message that the “openssl s_server” tool will
    // print when a handshake completes if run with “-state”.
    const opensslEndOfHandshake = "SSL_accept:SSLv3/TLS write finished"
    
    // opensslReadKeyUpdate is a message that the “openssl s_server” tool will
    // print when a KeyUpdate message is received if run with “-state”.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    	plegChannelCapacity = 1000
    
    	// Generic PLEG relies on relisting for discovering container events.
    	// A longer period means that kubelet will take longer to detect container
    	// changes and to update pod status. On the other hand, a shorter period
    	// will cause more frequent relisting (e.g., container runtime operations),
    	// leading to higher cpu usage.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    For example, the following will execute the `test` and `deploy` tasks in the order that they are listed on the command-line and will also execute the dependencies for each task.
    
    ----
    $ gradle test deploy
    ----
    
    === Command line order safety
    Although Gradle will always attempt to execute the build quickly, command line ordering safety will also be honored.
    
    For example, the following will
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/genericapiserver.go

    	// is the maximum duration the apiserver will wait for all active
    	// watch request(s) to drain.
    	// Once this grace period elapses, the apiserver will no longer
    	// wait for any active watch request(s) in flight to drain, it will
    	// proceed to the next step in the graceful server shutdown process.
    	// If set to a positive value, the apiserver will keep track of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 42.9K bytes
    - Viewed (0)
  7. src/cmd/go/internal/test/test.go

    	-list regexp
    	    List tests, benchmarks, fuzz tests, or examples matching the regular
    	    expression. No tests, benchmarks, fuzz tests, or examples will be run.
    	    This will only list top-level tests. No subtest or subbenchmarks will be
    	    shown.
    
    	-parallel n
    	    Allow parallel execution of test functions that call t.Parallel, and
    	    fuzz targets that call t.Parallel when running the seed corpus.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  8. src/syscall/syscall_linux.go

    	runtime_entersyscall()
    	// N.B. Calling RawSyscall here is unsafe with atomic coverage
    	// instrumentation and race mode.
    	//
    	// Coverage instrumentation will add a sync/atomic call to RawSyscall.
    	// Race mode will add race instrumentation to sync/atomic. Race
    	// instrumentation requires a P, which we no longer have.
    	//
    	// RawSyscall6 is fine because it is implemented in assembly and thus
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 35.7K bytes
    - Viewed (0)
  9. src/runtime/signal_unix.go

    var testSigtrap func(info *siginfo, ctxt *sigctxt, gp *g) bool
    var testSigusr1 func(gp *g) bool
    
    // sighandler is invoked when a signal occurs. The global g will be
    // set to a gsignal goroutine and we will be running on the alternate
    // signal stack. The parameter gp will be the value of the global g
    // when the signal occurred. The sig, info, and ctxt parameters are
    // from the system signal handler: they are the parameters passed when
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    ResourceClaimTemplate object in the same namespace as this pod.\n\nThe template will be used to create a new ResourceClaim, which will be bound to this pod. When this pod is deleted, the ResourceClaim will also be deleted. The pod name and resource name, along with a generated component, will be used to form a unique name for the ResourceClaim, which will be recorded in pod.status.resourceClaimStatuses.\n\nThis field is immutable and no changes will be made to the corresponding ResourceClaim by the control plane...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
Back to top