Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 1,572 for iterations (0.2 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. src/internal/types/testdata/fixedbugs/issue50372.go

            for i = range s {}
            for i, j /* ERRORx `range over .* permits only one iteration variable` */ = range s {}
            for i, j, k /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
            for i, j, k, l /* ERRORx `range over .* permits only one iteration variable|at most 2 expressions` */ = range s {}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. 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)
  6. test/fixedbugs/issue59411.go

    		m[math.NaN()] = i
    	}
    	// Trigger growth.
    	m[math.NaN()] = N
    
    	// Iterate through map.
    	i := 0
    	for range m {
    		if i == 6 {
    			// Partway through iteration, clear the map.
    			clear(m)
    		} else if i > 6 {
    			// If we advance to the next iteration, that's a bug.
    			panic("BAD")
    		}
    		i++
    	}
    	if len(m) != 0 {
    		panic("clear did not empty the map")
    	}
    }
    
    func g() {
    	// Allocate map.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Apr 08 05:25:04 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top