Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 501 for regUsed (0.84 sec)

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

            }
    
            when: "the build is re-run with the file system entry still missing"
            assert !accessedFile.exists()
            configurationCacheRunLenient()
    
            then: "the cache entry is reused"
            configurationCache.assertStateLoaded()
    
            when: "there was no file system entry at the path used in configuration and a file is created at that path"
            assert accessedFile.createNewFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            then:
            configurationCache.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because cached version information for thing:lib:1.+ has expired.")
            outputContains("result = [lib-1.3.jar]")
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

    import org.gradle.internal.cc.impl.fixtures.SomeToolingModel
    
    class IsolatedProjectsToolingApiParallelModelQueryIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
        def "intermediate model is cached and reused for nested concurrent requests"() {
            // Sleep to ensure concurrent requests for the same model catch up before the first one is finished
            withSomeToolingModelBuilderPluginInBuildSrc("""
                Thread.sleep(3000)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/NativeServicesIntegrationTest.groovy

            false                        | false                         | 1                   | "reused"
            true                         | false                         | 2                   | "not reused"
            false                        | true                          | 2                   | "not reused"
        }
    
        @Issue("GRADLE-3573")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 05:18:22 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/configurationcache/ConfigurationCacheFixture.groovy

            def messages = reasons.collect { reason ->
                if (details.runsTasks) {
                    "Calculating task graph as configuration cache cannot be reused because $reason has changed."
                } else {
                    "Creating tooling model as configuration cache cannot be reused because $reason has changed."
                }
            }
    
            def found = messages.any { message -> spec.output.contains(message) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/configurationCache/problemsFixed/tests/store-another.out

    Calculating task graph as configuration cache cannot be reused because system property 'someDestination' has changed.
    > Task :someTask
    
    BUILD SUCCESSFUL in 0s
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            dir.createFile("file3")
            configurationCacheRun("report")
    
            then:
            fixture.assertStateStored()
            outputContains("Calculating task graph as configuration cache cannot be reused because an input to build file 'build.gradle' has changed.")
            outputContains(output2)
    
            when:
            configurationCacheRun("report")
    
            then:
            fixture.assertStateLoaded()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. pkg/istio-agent/health/health_probers_test.go

    		},
    		{
    			desc:                "Unhealthy - Could not connect to server",
    			statusCode:          -1,
    			expectedProbeResult: Unhealthy,
    			expectedError:       errors.New("dial tcp 127.0.0.1:<port>: connect: connection refused"),
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    			server, port := createHTTPServer(tt.statusCode)
    			defer server.Close()
    			httpProber := NewHTTPProber(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 14 19:26:09 UTC 2021
    - 4.8K bytes
    - Viewed (0)
  9. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             * An empty list means the work was up-to-date and hasn't been executed.
             */
            ImmutableList<String> getExecutionReasons();
    
            /**
             * If a previously produced output was reused in some way, the reused output's origin metadata is returned.
             */
            Optional<OriginMetadata> getReusedOutputOriginMetadata();
    
            /**
             * State after execution.
             */
            @VisibleForTesting
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. pkg/scheduler/util/utils_test.go

    			name: "retry patch request when an 'connection refused' error is returned",
    			client: func() *clientsetfake.Clientset {
    				client := clientsetfake.NewSimpleClientset()
    
    				reqcount := 0
    				client.PrependReactor("patch", "pods", func(action clienttesting.Action) (bool, runtime.Object, error) {
    					defer func() { reqcount++ }()
    					if reqcount == 0 {
    						// return an connection refused error for the first patch request.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Sep 21 01:40:44 UTC 2023
    - 14.5K bytes
    - Viewed (0)
Back to top