Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 56 for getExecution (0.13 sec)

  1. maven-core/src/main/java/org/apache/maven/execution/MojoExecutionEvent.java

            this.cause = cause;
        }
    
        public MavenSession getSession() {
            return session;
        }
    
        public MavenProject getProject() {
            return project;
        }
    
        public MojoExecution getExecution() {
            return mojoExecution;
        }
    
        public Mojo getMojo() {
            return mojo;
        }
    
        public Throwable getCause() {
            return cause;
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 22 13:26:01 UTC 2022
    - 2.4K bytes
    - Viewed (0)
  2. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStepConcurrencyTest.groovy

            getWorkspaceProvider() >> immutableWorkspaceProvider
        }
        def originMetadata = Stub(OriginMetadata)
        def delegateResult = Stub(CachingResult) {
            getDuration() >> Duration.ofSeconds(1)
            getExecution() >> Try.successful(Stub(ExecutionEngine.Execution))
            getAfterExecutionOutputState() >> Optional.of(new DefaultExecutionOutputState(true, ImmutableSortedMap.of(), originMetadata, false))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:46:25 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  3. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/StoreExecutionStateStep.java

                    .flatMap(cacheKeyCalculatedState -> result.getAfterExecutionOutputState()
                        .filter(afterExecutionState -> result.getExecution().isSuccessful() || shouldPreserveFailedState(context, afterExecutionState))
                        .map(executionOutputState -> new DefaultAfterExecutionState(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 08 08:29:47 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/CaptureOutputsAfterExecutionStep.java

                    operationContext.setResult(Operation.Result.INSTANCE);
                    return new DefaultExecutionOutputState(result.getExecution().isSuccessful(), outputsProducedByWork, originMetadata, false);
                },
                BuildOperationDescriptor
                    .displayName("Snapshot outputs after executing " + work.getDisplayName())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 16:02:33 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/ExecutionEngine.java

             */
            <T> Deferrable<Try<T>> executeDeferred(Cache<Identity, IdentityCacheResult<T>> cache);
        }
    
        interface Result {
            Try<Execution> getExecution();
    
            CachingState getCachingState();
    
            /**
             * Get the output of the work. For immutable work this is resolved from the immutable workspace.
             */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 23:08:17 UTC 2024
    - 6K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/work/DefaultConditionalExecutionQueue.java

             * Executes a conditional execution and then releases its resource lock.
             */
            private void runExecution(final ConditionalExecution<?> execution) {
                try {
                    execution.getExecution().run();
                } finally {
                    execution.complete();
                }
            }
    
            private void shutDown() {
                lock.lock();
                try {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 7.2K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/BuildCacheStep.java

                    cacheableWork.getDisplayName(), cacheKey.getHashCode());
            }
            AfterExecutionResult result = executeWithoutCache(cacheableWork.work, context);
            try {
                result.getExecution().ifSuccessfulOrElse(
                    executionResult -> storeInCacheUnlessDisabled(cacheableWork, cacheKey, result, executionResult),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 13:41:13 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/AssignImmutableWorkspaceStep.java

                CachingResult delegateResult = delegate.execute(work, previousExecutionContext);
    
                if (delegateResult.getExecution().isSuccessful()) {
                    // Store workspace metadata
                    // TODO Capture in the type system the fact that we always have an after-execution output state here
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 16:44:11 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  9. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/Phase.java

            getExecutions().add(execution);
        } // -- void addExecution( Execution )
    
        /**
         * Get configuration to pass to all goals run in this phase.
         *
         * @return Object
         */
        public Object getConfiguration() {
            return this.configuration;
        } // -- Object getConfiguration()
    
        /**
         * Method getExecutions.
         *
         * @return List
         */
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/FlakinessDetectionPerformanceExecutionDataProvider.java

            List<? extends PerformanceTestExecution> executionsOfSameCommit = history.getExecutions().stream().filter(e -> e.getVcsCommits().contains(commitId)).collect(toList());
            List<? extends PerformanceTestExecution> currentExecutions = executionsOfSameCommit.isEmpty()
                ? history.getExecutions().stream().limit(3).collect(toList())
                : executionsOfSameCommit;
            return new PerformanceReportScenario(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.1K bytes
    - Viewed (0)
Back to top