Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for ActionImpl (0.18 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r22/BuildActionCrossVersionSpec.groovy

            def builder = new GradleBackedArtifactBuilder(new NoDaemonGradleExecuter(dist, temporaryFolder).withWarningMode(null), workDir)
    
            given:
            builder.sourceFile('ActionImpl.java') << """
    public class ActionImpl implements ${BuildAction.name}<java.io.File> {
        public java.io.File execute(${BuildController.name} controller) {
            try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r34/BuildActionCrossVersionSpec.groovy

            def builder = new GradleBackedArtifactBuilder(new NoDaemonGradleExecuter(dist, temporaryFolder).withWarningMode(null), temporaryFolder.testDirectory.file("action"))
            builder.sourceFile('ActionImpl.java') << """
                public class ActionImpl implements ${BuildAction.name}<Void> {
                    public Void execute(${BuildController.name} controller) {
                        return null;
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/MainTest.groovy

    class MainTest extends Specification {
    
        @Rule
        final RedirectStdOutAndErr outputs = new RedirectStdOutAndErr()
    
        CommandLineActionFactory.CommandLineExecution actionImpl
    
        void action(Closure closure) {
            actionImpl = closure as CommandLineActionFactory.CommandLineExecution
        }
    
        def actionFactoryImpl
    
        void actionFactory(Closure closure) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:29:13 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

            if (action.isCreateModel()) {
                // When creating a model, do not use continuous mode
                startParameter.setContinuous(false);
            }
    
            ActionImpl actionWrapper = new ActionImpl(action, requestContext);
            try {
                try (CrossBuildSessionState crossBuildSessionState = new CrossBuildSessionState(globalServices, startParameter)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/apiclient/dryrunclient.go

    				if !ok {
    					// If the GetAction cast fails, this could be an ActionImpl with a "get" verb.
    					// Such actions could be invoked from any of the fake discovery calls, such as ServerVersion().
    					// Attempt the cast to ActionImpl and construct a GetActionImpl from it.
    					actionImpl, ok := action.(core.ActionImpl)
    					if ok {
    						getAction = core.GetActionImpl{ActionImpl: actionImpl}
    					} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Dec 21 09:49:59 UTC 2022
    - 10.3K bytes
    - Viewed (0)
  6. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/history/impl/DefaultPreviousExecutionStateSerializer.java

            for (int j = 0; j < taskActionsCount; j++) {
                ImplementationSnapshot actionImpl = implementationSnapshotSerializer.read(decoder);
                taskActionImplementationsBuilder.add(actionImpl);
            }
            ImmutableList<ImplementationSnapshot> taskActionImplementations = taskActionImplementationsBuilder.build();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 02 08:25:58 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. pkg/kubelet/status/status_manager_test.go

    		}
    	}
    }
    
    func getAction() core.GetAction {
    	return core.GetActionImpl{ActionImpl: core.ActionImpl{Verb: "get", Resource: schema.GroupVersionResource{Resource: "pods"}}}
    }
    
    func patchAction() core.PatchAction {
    	return core.PatchActionImpl{ActionImpl: core.ActionImpl{Verb: "patch", Resource: schema.GroupVersionResource{Resource: "pods"}, Subresource: "status"}}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  8. pkg/controller/podgc/gc_controller_test.go

    			}
    			if test.expectedDeleteAction != nil {
    				if diff := cmp.Diff(*test.expectedDeleteAction, deleteAction, cmpopts.IgnoreFields(clienttesting.DeleteActionImpl{}, "ActionImpl")); diff != "" {
    					t.Fatalf("Unexpected diff on deleteAction (-want,+got):\n%s", diff)
    				}
    			}
    		})
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 08:16:48 UTC 2024
    - 29K bytes
    - Viewed (0)
Back to top