Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 39 for Brunner (0.29 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/polyglot/PolyglotDslTestInterceptor.java

    import org.spockframework.runtime.extension.IMethodInvocation;
    
    public class PolyglotDslTestInterceptor extends AbstractMultiTestInterceptor {
        private final static String DSL_LANGUAGE = "org.gradle.internal.runner.dsl";
    
        public PolyglotDslTestInterceptor(Class<?> target) {
            super(target);
        }
    
        public static GradleDsl getCurrentDsl() {
            String property = System.getProperty(DSL_LANGUAGE);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/software/testing-base-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/AbstractTestDescriptor.java

         *  TODO: move it to TestDescriptor interface with 9.0
         *
         * @return The method name. May return null.
         * @since 8.8
         * @see org.gradle.tooling.internal.provider.runner.TestOperationMapper#getLegacyOperationDisplayName(String, TestDescriptor)
         */
        @Incubating
        @Nullable
        public String getMethodName() {
            return null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/TestResources.java

    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    import org.gradle.util.internal.Resources;
    import org.junit.rules.MethodRule;
    import org.junit.runners.model.FrameworkMethod;
    import org.junit.runners.model.Statement;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.util.Arrays;
    import java.util.Collection;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. testing/internal-testing/src/main/groovy/org/gradle/util/SetSystemProperties.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.util;
    
    import org.junit.rules.TestRule;
    import org.junit.runner.Description;
    import org.junit.runners.model.Statement;
    
    import java.util.HashMap;
    import java.util.Map;
    import java.util.Properties;
    
    /**
     * A JUnit rule which restores system properties at the end of the test.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/Sample.java

    import org.gradle.test.fixtures.dsl.GradleDsl;
    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    import org.junit.rules.TestRule;
    import org.junit.runner.Description;
    import org.junit.runners.model.Statement;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import javax.annotation.Nullable;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestOperationMapper.java

     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    package org.gradle.tooling.internal.provider.runner;
    
    import com.google.common.collect.ImmutableList;
    import org.gradle.api.internal.tasks.testing.AbstractTestDescriptor;
    import org.gradle.api.internal.tasks.testing.DecoratingTestDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 08:42:44 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/fixture/GradleBuildExperimentRunner.java

    import java.util.function.Consumer;
    import java.util.stream.Collectors;
    import java.util.stream.Stream;
    
    import static java.util.concurrent.TimeUnit.MILLISECONDS;
    
    /**
     * {@inheritDoc}
     *
     * This runner uses Gradle profiler to execute the actual experiment.
     */
    @CompileStatic
    public class GradleBuildExperimentRunner extends AbstractBuildExperimentRunner {
        private static final String GRADLE_USER_HOME_NAME = "gradleUserHome";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/util/internal/Resources.java

    import org.apache.commons.io.FileUtils;
    import org.gradle.test.fixtures.file.TestDirectoryProvider;
    import org.gradle.test.fixtures.file.TestFile;
    import org.junit.rules.MethodRule;
    import org.junit.runners.model.FrameworkMethod;
    import org.junit.runners.model.Statement;
    
    import javax.annotation.Nonnull;
    import java.io.File;
    import java.io.IOException;
    import java.net.URISyntaxException;
    import java.net.URL;
    import java.nio.file.Files;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AggregatingProblemConsumer.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner;
    
    import com.google.common.collect.ArrayListMultimap;
    import com.google.common.collect.ImmutableList;
    import com.google.common.collect.Multimap;
    import org.gradle.api.NonNullApi;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 09:50:19 UTC 2024
    - 7K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestExecutionResultEvaluator.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.tooling.internal.provider.runner;
    
    import com.google.common.base.Strings;
    import org.gradle.api.Task;
    import org.gradle.api.internal.tasks.execution.ExecuteTaskBuildOperationDetails;
    import org.gradle.api.internal.tasks.testing.TestDescriptorInternal;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 10.1K bytes
    - Viewed (0)
Back to top