Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 39 of 39 for snapshotting (0.55 sec)

  1. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

     * if found correct.</li>
     * <li>If the workspace is inconsistent (the output hashes stored in {code metadata.bin} do not match
     * the hashes taken by snapshotting the current outputs), the workspace is moved to a temporary
     * location and we fall back to re-executing the work.</li>
     * <li>If we end up executing the work (either because there is no existing immutable workspace, or it is
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/verification/writer/WriteDependencyVerificationFile.java

            try {
                return checksumService.hash(file, kind.getAlgorithm()).toString();
            } catch (Exception e) {
                LOGGER.debug("Error while snapshotting " + file, e);
                return null;
            }
        }
    
        private static void resolveAllConfigurationsAndForceDownload(Project project) {
            ((ProjectInternal) project).getOwner().applyToMutableState(p ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. CHANGELOG/CHANGELOG-1.12.md

    With Kubernetes v1.12, SIG Storage also introduced alpha support for [volume snapshotting](https://github.com/kubernetes/enhancements/issues/177). This feature introduces the ability to create/delete volume snapshots and create new volumes from a snapshot using the Kubernetes API.
    
    ### SIG-vmware
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 06 06:04:15 UTC 2020
    - 293.8K bytes
    - Viewed (0)
  8. 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)
  9. src/internal/trace/traceviewer/static/trace_viewer_full.html

    lymer.dom(this.$.content).innerHTML=html;const snapshotsEl=Polymer.dom(this.$.content).querySelector('#snapshots');instance.snapshots.forEach(function(snapshot){const snapshotLink=document.createElement('tr-ui-a-analysis-link');snapshotLink.selection=new tr.model.EventSet(snapshot);Polymer.dom(snapshotsEl).appendChild(snapshotLink);});}});tr.ui.analysis.AnalysisSubView.register('tr-ui-a-single-object-instance-sub-view',tr.model.ObjectInstance,{multi:false,title:'Object Instance',});'use strict';...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
Back to top