Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,255 for iterations (0.41 sec)

  1. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerRetryTest.groovy

            //these meta tests mess with the daemon log: do not interfere with other tests when running in parallel
            requireIsolatedTestKitDir = true
        }
    
        def iteration = 0
    
        def "retries on clock shift issue for <2.10"() {
            given:
            iteration++
            def isVersionWithIssue = gradleVersion < GradleVersion.version('2.10')
    
            when:
            throwWhen(new GradleConnectionException("Test Exception",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 15:10:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/kernels/xla_ops.h

    #include "tensorflow/compiler/jit/xla_device.h"
    #include "tensorflow/compiler/jit/xla_launch_util.h"
    #include "tensorflow/compiler/jit/xla_platform_info.h"
    #include "xla/stream_executor/integrations/tf_allocator_adapter.h"
    #include "tensorflow/core/framework/allocator.h"
    #include "tensorflow/core/framework/op.h"
    #include "tensorflow/core/framework/op_kernel.h"
    #include "tensorflow/core/framework/tensor.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 16 23:44:26 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/loopclosure/doc.go

    //
    // This analyzer reports places where a function literal references the
    // iteration variable of an enclosing loop, and the loop calls the function
    // in such a way (e.g. with go or defer) that it may outlive the loop
    // iteration and possibly observe the wrong value of the variable.
    //
    // Note: An iteration variable can only outlive a loop iteration in Go versions <=1.21.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Nov 20 21:52:54 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/model/DomainObjectSet.java

         *
         * @return The elements of this set in the set's iteration order.
         */
        List<T> getAll();
    
        /**
         * Returns the element at the given index according to the set's iteration order.
         *
         * @param index The index of the element to get.
         * @return The element at the given index according to the set's iteration order.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  5. 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)
  6. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/fixture/ContinuousBuildCrossVersionToolingApiSpecificationRetryTest.groovy

    class ContinuousBuildCrossVersionToolingApiSpecificationRetryTest extends ContinuousBuildToolingApiSpecification {
    
        def iteration = 0
    
        def "retries if continuous build test times out"() {
            given:
            iteration++
    
            when:
            throwWhen(new RuntimeException("Timeout waiting for build to complete."), iteration == 1)
    
            then:
            true
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. 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)
  8. platforms/software/testing-base/src/integTest/groovy/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest.groovy

            operations.size() == 10
            def rootTestOp = this.operations.first(ExecuteTestBuildOperationType)
            assertJunit(rootTestOp, this.operations)
    
            when:
            run "test", "--rerun-tasks"
    
            rootTestOp = this.operations.first(ExecuteTestBuildOperationType)
            operations = this.operations.all(ExecuteTestBuildOperationType)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/operations/BuildOperationQueue.java

     */
    
    package org.gradle.internal.operations;
    
    /**
     * An individual active, single use, queue of build operations.
     * <p>
     * The queue is active in that operations are potentially executed as soon as they are added.
     * The queue is single use in that no further work can be added once {@link #waitForCompletion()} has completed.
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. 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)
Back to top