Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 2,454 for actioned (0.34 sec)

  1. subprojects/core/src/main/java/org/gradle/invocation/IsolatedProjectEvaluationListenerProvider.java

         */
        void afterProject(IsolatedAction<? super Project> action);
    
        /**
         * Returns an isolated listener for the registered actions, if any. The listener makes it impossible for
         * the actions to carry any shared mutable state across projects and can be safely executed in parallel.
         */
        @Nullable
        ProjectEvaluationListener isolateFor(Gradle owner);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 11:22:06 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  2. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/cli/BuildActionsFactoryTest.groovy

        void isSingleUseDaemon(def action) {
            def runnable = unwrapAction(action)
            def executor = unwrapExecutor(runnable)
            assert executor instanceof SingleUseDaemonClient
        }
    
        private Runnable unwrapAction(Action<?> action) {
            assert action instanceof Actions.RunnableActionAdapter
            return action.runnable
        }
    
        private BuildActionExecutor unwrapExecutor(Runnable runnable) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 05:33:15 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/file-collections/src/test/groovy/org/gradle/api/internal/file/CompositeFileTreeTest.groovy

        }
    
        def matchingWithActionReturnsUnionOfFilteredSets() {
            final Action<PatternFilterable> action = Mock()
            final FileTreeInternal filtered1 = Mock()
            final FileTreeInternal filtered2 = Mock()
            final PatternSet patterns = Mock()
    
            when:
            FileTree filtered = tree.matching(action)
    
            then: // action is applied each time the contents are queried
            0 * _
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultComponentSelectionRulesTest.groovy

        }
    
        def "propagates error creating rule for action" () {
            def action = Mock(Action)
    
            when:
            rules.all action
    
            then:
            def e = thrown(InvalidUserCodeException)
            e.message == "bad action"
    
            and:
            1 * adapter.createFromAction(action) >> { throw new InvalidUserCodeException("bad action") }
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  5. .github/workflows/depsreview.yaml

    on: [pull_request]
    
    permissions:
      contents: read
    
    jobs:
      dependency-review:
        runs-on: ubuntu-latest
        steps:
          - name: 'Checkout Repository'
            uses: actions/checkout@v4
          - name: 'Dependency Review'
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 23:44:49 UTC 2024
    - 296 bytes
    - Viewed (0)
  6. pkg/controller/endpointslice/endpointslice_controller_test.go

    	return service
    }
    
    func expectAction(t *testing.T, actions []k8stesting.Action, index int, verb, resource string) {
    	t.Helper()
    	if len(actions) <= index {
    		t.Fatalf("Expected at least %d actions, got %d", index+1, len(actions))
    	}
    
    	action := actions[index]
    	if action.GetVerb() != verb {
    		t.Errorf("Expected action %d verb to be %s, got %s", index, verb, action.GetVerb())
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 65.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/BuildOperationCrossProjectConfigurator.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.project;
    
    import org.gradle.api.Action;
    import org.gradle.api.Project;
    import org.gradle.api.internal.DefaultMutationGuard;
    import org.gradle.api.internal.MutationGuard;
    import org.gradle.api.internal.WithMutationGuard;
    import org.gradle.internal.Actions;
    import org.gradle.internal.operations.BuildOperationContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 13:00:41 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1/types_swagger_doc_generated.go

    var map_SelfSubjectRulesReview = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/api/internal/tasks/execution/TaskExecution.java

            Iterator<InputChangesAwareTaskAction> actions = new ArrayList<>(task.getTaskActions()).iterator();
            while (actions.hasNext()) {
                InputChangesAwareTaskAction action = actions.next();
                task.getState().setDidWork(true);
                task.getStandardOutputCapture().start();
                boolean hasMoreWork = hasTaskListener || actions.hasNext();
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectCollectionSpec.groovy

        }
    
        @Override
        protected Map<String, Closure> getMutatingMethods() {
            return super.getMutatingMethods() + [
                "getByName(String, Action)": { container.getByName("a", Actions.doNothing()) }
            ]
        }
    
        def "disallow mutating from named actions using #mutatingMethods.key"() {
            setupContainerDefaults()
            addToContainer(a)
            String methodUnderTest = mutatingMethods.key
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 04 22:26:51 UTC 2021
    - 5.8K bytes
    - Viewed (0)
Back to top