Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 131 for Brunner (0.4 sec)

  1. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/GradleProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal;
    
    import org.gradle.testkit.runner.GradleRunner;
    import org.gradle.tooling.GradleConnector;
    import org.gradle.tooling.internal.consumer.DefaultGradleConnector;
    
    import java.io.File;
    import java.net.URI;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ProjectConfigurationTracker.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.ImmutableList;
    import org.gradle.configuration.project.ConfigureProjectBuildOperationType;
    import org.gradle.internal.build.event.types.DefaultPluginApplicationResult;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/Bucket1SnippetsTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.docs.samples;
    
    import org.junit.runner.RunWith;
    
    @RunWith(PartitioningSamplesRunner.SnippetsBucket1.class)
    public class Bucket1SnippetsTest extends BaseSamplesTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 805 bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/Bucket3SnippetsTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.docs.samples;
    
    import org.junit.runner.RunWith;
    
    @RunWith(PartitioningSamplesRunner.SnippetsBucket3.class)
    public class Bucket3SnippetsTest extends BaseSamplesTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 805 bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docsTest/java/org/gradle/docs/samples/SamplesTest.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.docs.samples;
    
    import org.junit.runner.RunWith;
    
    @RunWith(PartitioningSamplesRunner.SamplesBucket.class)
    public class SamplesTest extends BaseSamplesTest {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 794 bytes
    - Viewed (0)
  6. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestEventAdapter.java

    import org.gradle.api.tasks.testing.TestResult;
    import org.gradle.internal.id.IdGenerator;
    import org.gradle.internal.time.Clock;
    import org.junit.runner.Description;
    import org.junit.runner.notification.Failure;
    import org.junit.runner.notification.RunListener;
    
    import javax.annotation.Nullable;
    import java.util.Arrays;
    import java.util.HashMap;
    import java.util.HashSet;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  7. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/feature/FeatureCheck.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.testkit.runner.internal.feature;
    
    public interface FeatureCheck {
        void verify();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 723 bytes
    - Viewed (0)
  8. platforms/software/testing-base/src/integTest/resources/org/gradle/testing/TestExecutionBuildOperationsIntegrationTest/emitsBuildOperationsForJUnitTests/src/test/java/org/gradle/TestSuite.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle;
    
    import org.junit.runner.RunWith;
    import org.junit.runners.Suite;
    
    @RunWith(Suite.class)
    @Suite.SuiteClasses({Test.class, OtherTest.class})
    public class TestSuite {
        @org.junit.BeforeClass public static void init() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/BuildOperationParameters.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.testkit.runner.internal;
    
    import org.gradle.util.GradleVersion;
    
    public class BuildOperationParameters {
        private final GradleVersion targetGradleVersion;
        private final boolean embedded;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/InjectsPluginClasspath.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.testkit.runner.fixtures;
    
    import java.lang.annotation.*;
    
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    @Inherited
    public @interface InjectsPluginClasspath {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 834 bytes
    - Viewed (0)
Back to top