Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 727 for iterations (0.2 sec)

  1. testing/soak/src/integTest/groovy/org/gradle/vfs/FileSystemWatchingSoakTest.groovy

            then:
            daemon.assertIdle()
    
            expect:
            long endOfDaemonLog = daemon.logLineCount
            numberOfRuns.times { iteration ->
                // when:
                println("Running iteration ${iteration + 1}")
                changeSourceFiles(iteration, numberOfChangesBetweenBuilds)
                waitForChangesToBePickedUp()
                succeeds("assemble")
    
                // then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  2. src/testing/fstest/mapfs.go

    // or to create an empty directory.
    //
    // File system operations read directly from the map,
    // so that the file system can be changed by editing the map as needed.
    // An implication is that file system operations must not run concurrently
    // with changes to the map, which would be a race.
    // Another implication is that opening or reading a directory requires
    // iterating over the entire map, so a MapFS should typically be used with not more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/CrossVersionRetryTest.groovy

    @TargetVersions(["1.9", "1.10"])
    class CrossVersionRetryTest extends CrossVersionIntegrationSpec {
    
        def iteration = 0
    
        def "retry for metadata directory creation issue in Gradle 1.9 or 1.10"() {
            given:
            iteration++
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildOperationTreeFixture.groovy

        private final BuildOperationTree operations
    
        BuildOperationTreeFixture(BuildOperationTree operations) {
            this.operations = operations
        }
    
        @Override
        List<BuildOperationRecord> getRoots() {
            operations.roots
        }
    
        @Override
        @SuppressWarnings("GrUnnecessaryPublicModifier")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:20 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/BuildCacheOperationFixtures.groovy

    import org.gradle.caching.internal.operations.BuildCacheArchivePackBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheArchiveUnpackBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheLocalLoadBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheLocalStoreBuildOperationType
    import org.gradle.caching.internal.operations.BuildCacheRemoteStoreBuildOperationType
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/jvm/JavaToolchainBuildOperationsFixture.groovy

    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata
    import org.gradle.internal.operations.BuildOperationType
    import org.gradle.internal.operations.trace.BuildOperationRecord
    import org.gradle.jvm.toolchain.internal.operations.JavaToolchainUsageProgressDetails
    
    /**
     * Captures build operations and allows to make assertions about events related to Java Toolchains.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. platforms/core-runtime/time/src/main/java/org/gradle/internal/time/ExponentialBackoff.java

            int iteration = 0;
            Result<T> result;
            while (!(result = query.run()).isSuccessful()) {
                if (timer.hasExpired()) {
                    break;
                }
                boolean signaled = signal.await(backoffPeriodFor(++iteration));
                if (signaled) {
                    iteration = 0;
                }
            }
            return result.getValue();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:49:35 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/ExecuteWorkBuildOperationFiringStep.java

    import org.gradle.internal.execution.caching.CachingState;
    import org.gradle.internal.hash.HashCode;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    import org.gradle.internal.operations.BuildOperationRunner;
    import org.gradle.operations.execution.ExecuteWorkBuildOperationType;
    
    import javax.annotation.Nullable;
    import java.util.List;
    import java.util.Optional;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  9. src/expvar/expvar.go

    	i, found := slices.BinarySearch(v.keys, key)
    	if found {
    		v.keys = slices.Delete(v.keys, i, i+1)
    		v.m.Delete(key)
    	}
    }
    
    // Do calls f for each entry in the map.
    // The map is locked during the iteration,
    // but existing entries may be concurrently updated.
    func (v *Map) Do(f func(KeyValue)) {
    	v.keysMu.RLock()
    	defer v.keysMu.RUnlock()
    	for _, k := range v.keys {
    		i, _ := v.m.Load(k)
    		val, _ := i.(Var)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 21:32:11 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/configuration/project/LifecycleProjectEvaluatorIntegrationTest.groovy

                }
            """
    
            when:
            succeeds('foo')
    
            then:
    
            def configOp = operations.only(ConfigureProjectBuildOperationType, { it.details.projectPath == ':foo' })
            with(operations.only(NotifyProjectBeforeEvaluatedBuildOperationType, { it.details.projectPath == ':foo' })) {
                displayName == 'Notify beforeEvaluate listeners of :foo'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top