Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,031 for actors (0.29 sec)

  1. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

    import org.gradle.api.internal.tasks.testing.filter.TestFilterSpec;
    import org.gradle.api.internal.tasks.testing.filter.TestSelectionMatcher;
    import org.gradle.internal.actor.Actor;
    import org.gradle.internal.actor.ActorFactory;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.reflect.JavaMethod;
    import org.gradle.internal.reflect.JavaReflectionUtil;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  2. 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)
  3. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/common_caching_problems.adoc

    As a consequence, compilation outputs can't be re-used on Windows since the input sources are different.
    If sharing the build cache across multiple operating systems is important in your environment, then setting `autocrlf=false` across your build machines is crucial for optimal build cache usage.
    
    == Symbolic links
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  4. subprojects/core/src/integTest/groovy/org/gradle/process/internal/LoggingProcess.java

        private final List<SerializableLogAction> actions;
    
        public LoggingProcess(SerializableLogAction... actions){
            this.actions = Arrays.asList(actions);
        }
    
        @Override
        public void execute(WorkerProcessContext workerProcessContext) {
            workerProcessContext.getServerConnection().connect();
            for (SerializableLogAction action : actions) {
                action.execute();
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 06 17:14:50 UTC 2016
    - 1.3K bytes
    - Viewed (0)
  5. .github/workflows/contributor-pr.yml

          contents: read
        runs-on: ubuntu-latest
        needs: build
        steps:
          - name: git clone
            uses: actions/checkout@v4
          - name: setup java
            uses: actions/setup-java@v4
            with:
              distribution: temurin
              java-version: 11
          - uses: actions/download-artifact@v4
            with:
              name: build-receipt.properties
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 09:13:16 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/file/FilePermissions.java

     * <ul>
     *     <li>OWNER (user) permissions: what actions the owner of the file/directory can perform on the file/directory</li>
     *     <li>GROUP permissions: what actions a user, who is a member of the group that a file/directory belongs to, can perform on the file/directory</li>
     *     <li>OTHER (world) permissions: what actions all other users (non-owner, non-group) can perform on the file/directory</li>
     * </ul>
     * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 12:31:43 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pkg/registry/core/service/ipallocator/controller/repairip_test.go

    	}
    	return serviceCIDR
    }
    
    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 \ndiff: %v", len(expected), len(actions), cmp.Diff(expected, actions))
    	}
    
    	for i, action := range actions {
    		verb := expected[i][0]
    		if action.GetVerb() != verb {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 21:05:06 UTC 2023
    - 20.3K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/configuration/project/PluginsProjectConfigureActions.java

        }
    
        private final Iterable<Action<ProjectInternal>> actions;
    
        private PluginsProjectConfigureActions(Iterable<Action<ProjectInternal>> actions) {
            this.actions = actions;
        }
    
        @Override
        public void execute(ProjectInternal project) {
            for (Action<ProjectInternal> action : actions) {
                action.execute(project);
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 10:39:11 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractTaskSpec.groovy

            setup:
            def task = createTask("task")
            when:
            def actions = task.actions
            and:
            def action = Mock(Action)
    
            actions.add(action)
            then:
            task.actions.size() == 1
            actions.size() == 1
        }
    
        def "can detect tasks with custom actions added"() {
            when:
            def task = createTask("task")
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 29 22:32:34 UTC 2022
    - 1.9K bytes
    - Viewed (0)
  10. subprojects/core/src/test/groovy/org/gradle/api/internal/file/copy/DuplicateHandlingCopyActionExecutorTest.groovy

                }
                fileTree
            }
            copySpec.walk(_) >> { Action it -> it.execute(copySpecResolver) }
        }
    
        void actions(Closure... actions) {
            copySpecResolver.allCopyActions >> actions.collect { new ClosureBackedAction<>(it) }
        }
    
        void visit() {
            executer.execute(copySpec, delegate)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 02 14:30:00 UTC 2024
    - 7.5K bytes
    - Viewed (0)
Back to top