Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 15 of 15 for snapshotting (0.19 sec)

  1. src/runtime/trace.go

    	//
    	// We also don't care if the GC starts again after this for the same reasons.
    	releasem(mp)
    	semrelease(&worldsema)
    
    	// Snapshot allm and freem.
    	//
    	// Snapshotting after the generation counter update is sufficient.
    	// Because an m must be on either allm or sched.freem if it has an active trace
    	// buffer, new threads added to allm after this point must necessarily observe
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/jvm/java_library_plugin.adoc

    [[sub:java_library_known_issues_windows_performance]]
    === Significant build performance drop on Windows for huge multi-projects
    
    Another side effect of the snapshotting of individual class files, only affecting Windows systems, is that the performance can significantly drop when processing a very large amount of class files on the compile classpath.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/apis/kubeadm/validation/validation.go

    // Should be a small cidr due to how it is stored in etcd.
    // bigger cidr (specially those offered by IPv6) will add no value
    // and significantly increase snapshotting time.
    // NOTE: This is identical to validation performed in the apiserver.
    func ValidateServiceSubnetSize(subnetStr string, fldPath *field.Path) field.ErrorList {
    	allErrs := field.ErrorList{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  4. pkg/scheduler/schedule_one.go

    	defer trace.LogIfLong(100 * time.Millisecond)
    	if err := sched.Cache.UpdateSnapshot(klog.FromContext(ctx), sched.nodeInfoSnapshot); err != nil {
    		return result, err
    	}
    	trace.Step("Snapshotting scheduler cache and node infos done")
    
    	if sched.nodeInfoSnapshot.NumNodes() == 0 {
    		return result, ErrNoNodesAvailable
    	}
    
    	feasibleNodes, diagnosis, err := sched.findNodesThatFitPod(ctx, fwk, state, pod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 06 13:28:08 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  5. CHANGELOG/CHANGELOG-1.8.md

    For the 1.8 release, SIG Storage extended the Kubernetes storage API. In addition to providing simple
    volume availability, the API now enables volume resizing and snapshotting. These features are in alpha.
    The SIG also focused on providing more control over storage: the ability to set requests and
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
Back to top