Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 4,572 for Actions (0.26 sec)

  1. pkg/controller/serviceaccount/legacy_serviceaccount_token_cleaner_test.go

    			cleaner.evaluateSATokens(ctx)
    
    			actions := client.Actions()
    			if len(actions) != len(tc.ExpectedActions) {
    				t.Fatalf("got %d actions, wanted %d actions", len(actions), len(tc.ExpectedActions))
    			}
    			for i, action := range actions {
    				if len(tc.ExpectedActions) < i+1 {
    					t.Errorf("%s: %d unexpected actions: %+v", k, len(actions)-len(tc.ExpectedActions), actions[i:])
    					break
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 03:52:06 UTC 2023
    - 21.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/configuration/project/DelayedConfigurationActions.java

    import org.gradle.api.Action;
    import org.gradle.api.internal.project.ProjectInternal;
    
    public class DelayedConfigurationActions implements ProjectConfigureAction {
        @Override
        public void execute(ProjectInternal projectInternal) {
            ProjectConfigurationActionContainer actions = projectInternal.getConfigurationActions();
            try {
                for (Action<? super ProjectInternal> action : actions.getActions()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/api/internal/AbstractTask.java

        private InputChangesAwareTaskAction wrap(final Action<? super Task> action) {
            return wrap(action, "unnamed action");
        }
    
        private InputChangesAwareTaskAction wrap(final Action<? super Task> action, String actionName) {
            if (action instanceof InputChangesAwareTaskAction) {
                return (InputChangesAwareTaskAction) action;
            }
            if (action instanceof ConfigureUtil.WrappedConfigureAction) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 34.7K bytes
    - Viewed (0)
  4. subprojects/core/src/main/java/org/gradle/api/internal/PropertiesTransformer.java

        private final MutableActionSet<Properties> actions = new MutableActionSet<Properties>();
    
        /**
         * Adds an action to be executed when properties are transformed.
         * @param action the action to add
         */
        public void addAction(Action<? super Properties> action) {
            actions.add(action);
        }
    
        /**
         * Transforms a properties object.  This will modify the
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 2.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/work/cover.go

    // run actions. Note that this function has to be called A) after the
    // build actions are complete for all packages being tested, and B)
    // before any of the "run test" actions for those packages happen.
    // This requirement is enforced by adding making this action ("a")
    // dependent on all test package build actions, and making all test
    // run actions dependent on this action.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 19:09:38 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. subprojects/core/src/testFixtures/groovy/org/gradle/api/tasks/AbstractTaskTest.groovy

            when:
            getTask().getActions().add(Actions.doNothing())
            getTask().getActions().add(Actions.doNothing())
    
            then:
            getTask().getActions().size() == 2
    
            when:
            List<Action<? super Task>> actions = new ArrayList<>()
            actions.add(Actions.doNothing())
            getTask().setActions(actions)
    
            then:
            getTask().getActions().size() == 1
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r42/BuildProgressTaskActionsCrossVersionSpec.groovy

        ProgressEvents events
    
        def setup() {
            events = ProgressEvents.create()
            settingsFile << "rootProject.name = 'root'"
        }
    
        //This is not a task action, but it is logged on the same level as the actions
        def "clean stale output action has an informative name"() {
            given:
            buildFile << """
                apply plugin: 'base'
    
                task custom {
                    outputs.dir 'build/outputs'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/model/VariantAttributesRules.java

        public VariantAttributesRules(ImmutableAttributesFactory attributesFactory) {
            this.attributesFactory = attributesFactory;
        }
    
        public void addAttributesAction(VariantMetadataRules.VariantAction<? super AttributeContainer> action) {
            actions.add(action);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  9. pkg/test/framework/resource/setup.go

    // limitations under the License.
    
    package resource
    
    // SetupFn is a function used for performing setup actions.
    type SetupFn func(ctx Context) error
    
    // TeardownFn is a function used for performing tear-down actions.
    type TeardownFn func(ctx Context)
    
    // ShouldSkipFn is a function used for performing skip actions; if it returns true a job is skipped
    // Note: function may be called multiple times during the setup process.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 16:44:32 UTC 2024
    - 1018 bytes
    - Viewed (0)
  10. platforms/core-runtime/concurrent/src/main/java/org/gradle/internal/concurrent/ExecutorFactory.java

    @ServiceScope(Scope.Global.class)
    public interface ExecutorFactory {
        /**
         * Creates an executor which can run multiple actions concurrently. It is the caller's responsibility to stop the executor.
         *
         * The executor will collect failures thrown by actions and rethrow when the executor is stopped.
         *
         * @param displayName The display name for the this executor. Used for thread names, logging and error message.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 19:07:35 UTC 2024
    - 3.4K bytes
    - Viewed (0)
Back to top