Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 2,648 for action1 (0.19 sec)

  1. .github/actions/notify-translations/action.yml

    Sebastián Ramírez <******@****.***> 1629292028 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Aug 18 13:07:08 UTC 2021
    - 346 bytes
    - Viewed (0)
  2. .github/actions/people/action.yml

    Sebastián Ramírez <******@****.***> 1688917480 +0200
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun Jul 09 15:44:40 UTC 2023
    - 333 bytes
    - Viewed (0)
  3. platforms/ide/problems-api/src/test/groovy/org/gradle/internal/code/DefaultUserCodeApplicationContextTest.groovy

            def action2 = Mock(Action)
            def id1
    
            when:
            context.apply(source, action)
    
            then:
            1 * action.execute(_) >> { UserCodeApplicationId id ->
                id1 = id
                context.apply(source2, action2)
                assert context.current().id == id
                assert context.current().source == source
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Sep 27 13:19:04 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  4. 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)
  5. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/ActionsTest.groovy

            composite(actions[0], actions[1]) != composite(actions[1], actions[0])
            composite(actions[0], actions[1]) != composite(actions[0], actions[2])
            composite() == composite()
            composite() != composite(actions[0])
            composite(actions[0]) != composite()
        }
    
        def "adapting runnables"() {
            given:
            def runnable = Mock(Runnable)
            def arg = Mock(Object)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/buildtree/IntermediateBuildActionRunner.java

        }
    
        public <T> List<T> run(List<Supplier<T>> actions) {
            List<NestedAction<T>> wrappers = new ArrayList<>(actions.size());
            for (Supplier<T> action : actions) {
                wrappers.add(new NestedAction<>(buildOperationDescription, action));
            }
            runActions(wrappers);
    
            List<T> results = new ArrayList<>(actions.size());
            List<Throwable> failures = new ArrayList<>();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 07:46:55 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  7. pkg/controlplane/controller/systemnamespaces/system_namespaces_controller_test.go

    	}
    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, expected [][]string) {
    	t.Helper()
    	if len(actions) != len(expected) {
    		t.Fatalf("Expected at least %d actions, got %d", len(expected), len(actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    			t.Errorf("Expected action %d verb to be %s, got %s", i, verb, action.GetVerb())
    		}
    		resource := expected[i][1]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 27 12:19:56 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/DefaultIsolatedProjectEvaluationListenerProvider.kt

                "afterEvaluate action cannot execute before beforeEvaluate"
            }
            executeAll(actions.afterProject, project)
        }
    
        private
        fun executeAll(actions: IsolatedProjectActionList, project: Project) {
            for (action in actions) {
                action.execute(project)
            }
        }
    
        private
        fun isolatedActions() = IsolateOwners.OwnerGradle(gradle).let { owner ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/MutableActionSet.java

     */
    public class MutableActionSet<T> implements Action<T>, InternalListener {
        private ImmutableActionSet<T> actions = ImmutableActionSet.empty();
    
        public void add(Action<? super T> action) {
            this.actions = actions.add(action);
        }
    
        public void clear() {
            actions = ImmutableActionSet.empty();
        }
        @Override
        public void execute(T t) {
            actions.execute(t);
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/configuration/project/DefaultProjectConfigurationActionContainerTest.groovy

            container.actions == [action]
        }
    
        def "can add action as closure"() {
            def run = false
            def action = { run = true }
    
            when:
            container.add(action)
    
            then:
            container.actions.size() == 1
    
            when:
            container.actions[0].execute(Stub(ProjectInternal))
    
            then:
            run
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 22:54:35 UTC 2013
    - 1.4K bytes
    - Viewed (0)
Back to top