Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for snapshotting (0.16 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileSystemDefaultExcludesTest.groovy

            result.assertTasksSkipped(":$spec.copyTask")
    
            where:
            spec << DefaultExcludesFixture.specs()
        }
    
        def "default excludes defined in build#scriptLanguage are ignoring for snapshotting"() {
            given:
            def configurationCache = newConfigurationCacheFixture()
            def spec = new DefaultExcludesFixture.Spec(
                Collections.singletonList(new DefaultExcludesFixture.RootBuildLocation()),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileIntegrationTest.groovy

            'resources directory' | 'RESOURCES' | 'resources/main'    | 'processResources' | 'compileJava'
        }
    
        @Issue("gradle/gradle#1347")
        def "compile classpath snapshotting ignores non-relevant elements"() {
            def buildFileWithDependencies = { String... dependencies ->
                buildFile.text = """
                    apply plugin: 'java'
    
                    ${mavenCentralRepository()}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 20:20:39 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/MissingTaskDependenciesIntegrationTest.groovy

                    outputFile = file("classes.jar")
                }
            """
    
            // This is to make sure that:
            //   - The snapshotting of the zip task finishes after the outputs have been broadcast by the compile task
            //   - The snapshotting of the zip task finishes before the snapshotting of the outputs of the compile task
            server.expectConcurrent("zipFileSnapshottingStarted", "compileAction1")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 08:14:44 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

            long snapshotOutputDuration = timer.getElapsedMillis();
    
            // The origin execution time is recorded as “work duration” + “output snapshotting duration”,
            // As this is _roughly_ the amount of time that is avoided by reusing the outputs,
            // which is currently the _only_ thing this value is used for.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/vfs/impl/DefaultFileSystemAccess.java

            Supplier<T> readFromDisk
        ) {
            return virtualFileSystem.findSnapshot(location)
                .map(snapshotProcessor)
                // Avoid snapshotting the same location at the same time
                .orElseGet(() -> producingSnapshots.guardByKey(location,
                    () -> virtualFileSystem.findSnapshot(location)
                        .map(snapshotProcessor)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:35 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
Back to top