Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 520 for Result (0.07 sec)

  1. platforms/ide/tooling-api-builders/src/test/groovy/org/gradle/tooling/internal/provider/runner/ClientProvidedPhasedActionRunnerTest.groovy

        def "can run actions and results are sent to event consumer"() {
            def result1 = 'result1'
            def serializedResult1 = Mock(SerializedPayload)
            def result2 = 'result2'
            def serializedResult2 = Mock(SerializedPayload)
    
            given:
            payloadSerializer.serialize(result1) >> serializedResult1
            payloadSerializer.serialize(result2) >> serializedResult2
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:56:14 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheScriptTaskDefinitionIntegrationTest.groovy

            then:
            result.groupedOutput.task(":some").assertOutputContains("FIRST").assertOutputContains("LAST")
            result.groupedOutput.task(":other").assertOutputContains("OTHER")
    
            when:
            configurationCacheRun "some", "other"
    
            then:
            result.groupedOutput.task(":some").assertOutputContains("FIRST").assertOutputContains("LAST")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/peer_authentication_simulation_test.go

    					Result: simulation.Result{Error: simulation.ErrNoFilterChain},
    				},
    				{
    					Name:   "mtls on port 8000",
    					Call:   mkCall(8000, simulation.MTLS),
    					Result: simulation.Result{ClusterMatched: "inbound|8000||"},
    				},
    				{
    					Name:   "plaintext port 9000",
    					Call:   mkCall(9000, simulation.Plaintext),
    					Result: simulation.Result{ClusterMatched: "InboundPassthroughCluster"},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            """
    
            when:
            configurationCacheRun "build"
    
            then:
            assertStateStored()
            result.assertTasksExecuted(":compileJava", ":processResources", ":classes", ":jar", ":compileTestJava", ":processTestResources", ":testClasses", ":test", ":assemble", ":check", ":build")
            result.assertTasksNotSkipped(":jar", ":assemble", ":build")
            def jarFile = file("build/libs/somelib.jar")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/FetchAllIdeaProjects.java

        @Override
        public Result execute(BuildController controller) {
            Result result = new Result();
    
            GradleBuild buildModel = controller.getBuildModel();
            result.rootBuild = buildModel;
            result.rootIdeaProject = controller.getModel(IdeaProject.class);
    
            collectAllNestedBuilds(buildModel, controller, result);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  6. pilot/pkg/networking/core/sidecar_simulation_test.go

    		Disabled   simulation.Result
    		Permissive simulation.Result
    		Strict     simulation.Result
    	}{
    		{
    			Name: "tcp",
    			Call: simulation.Call{
    				Port:     70,
    				Protocol: simulation.TCP,
    				CallMode: simulation.CallModeInbound,
    			},
    			Disabled: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    			Permissive: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. maven-core/src/main/java/org/apache/maven/project/DefaultProjectDependenciesResolver.java

            }
    
            return result;
        }
    
        private void process(DefaultDependencyResolutionResult result, Collection<ArtifactResult> results) {
            for (ArtifactResult ar : results) {
                DependencyNode node = ar.getRequest().getDependencyNode();
                if (ar.isResolved()) {
                    result.addResolvedDependency(node.getDependency());
                } else {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/examples/client-go/pkg/client/clientset/versioned/typed/cr/v1/example.go

    	} else if hasWatchListOptionsPrepared {
    		result, err := c.watchList(ctx, watchListOptions)
    		if err == nil {
    			consistencydetector.CheckWatchListFromCacheDataConsistencyIfRequested(ctx, "watchlist request for examples", c.list, opts, result)
    			return result, nil
    		}
    		klog.Warningf("The watchlist request for examples ended with an error, falling back to the standard LIST semantics, err = %v", err)
    	}
    	result, err := c.list(ctx, opts)
    	if err == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 10:52:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

            configurationCache.assertStateLoaded()
            result.assertTaskOrder(":additionalFile", ":resolve")
            result.assertTaskOrder(":a:producer", ":resolve")
            result.assertTaskOrder(":b:producer", ":resolve")
            result.assertTaskSkipped(":additionalFile")
            result.assertTaskSkipped(":a:producer")
            result.assertTaskSkipped(":b:producer")
            outputContains("result = [a.thing, b.thing, a.out, b.out, lib1-6500.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionFeaturesIntegrationTest.groovy

            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateStored()
            outputContains("result = [lib-1.3.jar]")
    
            when:
            configurationCacheRun("resolve1")
    
            then:
            configurationCache.assertStateLoaded()
            outputContains("result = [lib-1.3.jar]")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 33K bytes
    - Viewed (0)
Back to top