Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 137 for actioned (0.13 sec)

  1. testing/integ-test/src/integTest/groovy/org/gradle/integtests/TaskErrorExecutionIntegrationTest.groovy

            failure.assertHasCause("broken closure")
        }
    
        def "reports task action execution fails from java with runtime exception"() {
            file("buildSrc/src/main/java/org/gradle/BrokenTask.java") << """
                package org.gradle;
    
                import org.gradle.api.Action;
                import org.gradle.api.DefaultTask;
                import org.gradle.api.Task;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/main/java/org/gradle/tooling/internal/provider/ProviderConnection.java

    import org.gradle.tooling.internal.protocol.test.InternalTestExecutionException;
    import org.gradle.tooling.internal.provider.action.BuildModelAction;
    import org.gradle.tooling.internal.provider.action.ClientProvidedBuildAction;
    import org.gradle.tooling.internal.provider.action.ClientProvidedPhasedAction;
    import org.gradle.tooling.internal.provider.action.TestExecutionRequestAction;
    import org.gradle.tooling.internal.provider.connection.ProviderConnectionParameters;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 30.5K bytes
    - Viewed (0)
  3. pilot/pkg/networking/core/listener_waypoint.go

    	// nolint: staticcheck
    	action.MaxGrpcTimeout = action.Timeout
    
    	out.Action = &route.Route_Route{Route: action}
    
    	if in.Rewrite != nil {
    		action.PrefixRewrite = in.Rewrite.GetUri()
    		if in.Rewrite.GetAuthority() != "" {
    			authority = in.Rewrite.GetAuthority()
    		}
    	}
    	if authority != "" {
    		action.HostRewriteSpecifier = &route.RouteAction_HostRewriteLiteral{
    			HostRewriteLiteral: authority,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 27.6K bytes
    - Viewed (0)
  4. subprojects/core/src/test/groovy/org/gradle/internal/build/DefaultBuildLifecycleControllerTest.groovy

        }
    
        void testWithSettings() {
            def action = Mock(Function)
    
            when:
            expectSettingsBuilt()
    
            def controller = controller()
            def result = controller.withSettings(action)
    
            then:
            result == "result"
    
            and:
            1 * action.apply(settingsMock) >> "result"
    
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/batch/v1/types.go

    	//   counter towards the .backoffLimit is incremented.
    	// Additional values are considered to be added in the future. Clients should
    	// react to an unknown action by skipping the rule.
    	Action PodFailurePolicyAction `json:"action" protobuf:"bytes,1,req,name=action"`
    
    	// Represents the requirement on the container exit codes.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modindex/read.go

    type Module struct {
    	modroot string
    	d       *decoder
    	n       int // number of packages
    }
    
    // moduleHash returns an ActionID corresponding to the state of the module
    // located at filesystem path modroot.
    func moduleHash(modroot string, ismodcache bool) (cache.ActionID, error) {
    	// We expect modules stored within the module cache to be checksummed and
    	// immutable, and we expect released modules within GOROOT to change only
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  7. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/api/provider/PropertyIntegrationTest.groovy

                }
    
                abstract class MyTask extends DefaultTask {
                    @Nested
                    abstract NestedType getNested()
    
                    void nested(Action<NestedType> action) {
                        action.execute(nested)
                    }
    
                    @TaskAction
                    void go() {
                        println("prop = \${nested.prop.get()}")
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 30.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ModelRuleExtractor.java

                        public ModelAction contextualize(final MethodRuleAction action) {
                            final List<ModelReference<?>> inputs = withImplicitInputs(action.getInputs());
                            final ModelReference<?> mappedSubject = mapSubject(action.getSubject(), targetPath);
                            mapInputs(inputs.subList(0, action.getInputs().size()), targetPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:45:02 UTC 2024
    - 26K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/build/DefaultBuildLifecycleController.java

            state.notInState(State.Finished, modelController::getLoadedSettings);
        }
    
        @Override
        public <T> T withSettings(Function<? super SettingsInternal, T> action) {
            return state.notInState(State.Finished, () -> action.apply(modelController.getLoadedSettings()));
        }
    
        @Override
        public void configureProjects() {
            state.notInState(State.Finished, modelController::getConfiguredModel);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 11:17:11 UTC 2024
    - 16.5K bytes
    - Viewed (0)
  10. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/KtAnalysisSession.kt

     * - It should not be leaked outside the read action it was created in. To ensure that an analysis session isn't leaked, there are
     *   additional conventions, explained further below.
     * - All entities retrieved from an analysis session should not be leaked outside the read action the analysis session was created in.
     *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 18:45:26 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top