Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for Brunner (0.14 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/AbstractTestDirectoryProvider.java

    package org.gradle.test.fixtures.file;
    
    import groovy.lang.Closure;
    import org.gradle.api.GradleException;
    import org.gradle.test.fixtures.ConcurrentTestUtil;
    import org.junit.rules.TestRule;
    import org.junit.runner.Description;
    import org.junit.runners.model.Statement;
    
    import java.io.IOException;
    import java.util.Random;
    import java.util.regex.Pattern;
    
    
    /**
     * A JUnit rule which provides a unique temporary folder for the test.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  2. subprojects/core/src/testFixtures/groovy/org/gradle/internal/operations/TestBuildOperationExecutor.java

            public final BuildOperationRunner runner;
    
            public TestBuildOperationQueue() {
                this(new TestBuildOperationRunner());
            }
    
            private TestBuildOperationQueue(BuildOperationRunner runner) {
                this.runner = runner;
            }
    
            @Override
            public void add(O operation) {
                runner.run(operation);
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 12:12:49 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/IncrementalTestProject.java

    public interface IncrementalTestProject extends TestProject {
        void configureForAbiChange(CrossVersionPerformanceTestRunner runner);
        void configureForAbiChange(GradleBuildExperimentSpec.GradleBuilder builder);
        void configureForNonAbiChange(CrossVersionPerformanceTestRunner runner);
        void configureForNonAbiChange(GradleBuildExperimentSpec.GradleBuilder builder);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/feature/BuildResultOutputFeatureCheck.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal.feature;
    
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.testkit.runner.UnsupportedFeatureException;
    import org.gradle.util.GradleVersion;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 14:27:21 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/BaseSamplesTest.java

    import org.gradle.exemplar.test.normalizer.GradleOutputNormalizer;
    import org.gradle.exemplar.test.normalizer.JavaObjectSerializationOutputNormalizer;
    import org.gradle.exemplar.test.runner.SampleModifiers;
    import org.gradle.exemplar.test.runner.SamplesOutputNormalizers;
    import org.gradle.integtests.fixtures.executer.MoreMemorySampleModifier;
    import org.gradle.integtests.fixtures.logging.ArtifactResolutionOmittingOutputNormalizer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 03:26:38 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ToolingBuilderServices.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner;
    
    import org.gradle.internal.service.ServiceRegistration;
    import org.gradle.internal.service.scopes.AbstractGradleModuleServices;
    
    public class ToolingBuilderServices extends AbstractGradleModuleServices {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 13:39:48 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  7. testing/internal-testing/src/test/groovy/org/gradle/testing/internal/util/ExpectedFailureRule.java

     * limitations under the License.
     */
    
    package org.gradle.testing.internal.util;
    
    import org.junit.rules.MethodRule;
    import org.junit.runners.model.FrameworkMethod;
    import org.junit.runners.model.Statement;
    
    public class ExpectedFailureRule implements MethodRule {
    
        @Override
        public Statement apply(final Statement base, final FrameworkMethod method, Object target) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RequiredFeatures.java

    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    /**
     * Indicates that the test runner should only create execution if the nested features are enabled.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Inherited
    public @interface RequiredFeatures {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/validation/ValidationProblem.java

    /**
     * A dummy annotation which is used to trigger validation problems during tests.
     *
     * This is handled via {@link ValidationProblemPropertyAnnotationHandler},
     * a service available globally in the embedded integration test runner only.
     *
     * @see ValidationServicesFixture
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.METHOD, ElementType.FIELD})
    public @interface ValidationProblem {
        Severity value() default Severity.WARNING;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  10. subprojects/core/src/testFixtures/groovy/org/gradle/internal/operations/BuildOperationExecutorSupport.java

                this.timeSupplier = timeSupplier;
                return this;
            }
    
            public Builder withRunner(BuildOperationRunner runner) {
                this.runner = runner;
                return this;
            }
    
            public Builder withWorkerLeaseService(WorkerLeaseService workerLeaseService) {
                this.workerLeaseService = workerLeaseService;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 4.5K bytes
    - Viewed (0)
Back to top