Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 131 for Brunner (0.08 sec)

  1. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/HideEnvVariableValuesInDaemonLog.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.ElementType;
    import java.lang.annotation.Inherited;
    import java.lang.annotation.Retention;
    import java.lang.annotation.RetentionPolicy;
    import java.lang.annotation.Target;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/RequiredFeature.java

    import java.lang.annotation.Repeatable;
    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 feature is enabled, where enabled means
     * that the feature value is the one defined by {@link #value()}.
     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target({ElementType.TYPE, ElementType.METHOD})
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/mirror/SetMirrorsSampleModifier.java

    package org.gradle.integtests.fixtures.mirror;
    
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil;
    import org.gradle.exemplar.model.Command;
    import org.gradle.exemplar.model.Sample;
    import org.gradle.exemplar.test.runner.SampleModifier;
    
    import java.io.File;
    import java.util.ArrayList;
    import java.util.List;
    
    import static org.gradle.api.internal.artifacts.BaseRepositoryFactory.PLUGIN_PORTAL_OVERRIDE_URL_PROPERTY;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/ServiceScopeValidatorWorkarounds.java

            "org.gradle.internal.serialize.Serializer",
            "org.gradle.execution.DefaultWorkValidationWarningRecorder",
            "org.gradle.api.internal.classpath.DefaultModuleRegistry",
            "org.gradle.tooling.internal.provider.runner.ToolingApiBuildEventListenerFactory",
            "org.gradle.cache.internal.ProducerGuard",
            "org.gradle.internal.typeconversion.NotationParser",
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun May 05 22:23:18 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TestTaskExecutionTracker.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 org.gradle.api.Task;
    import org.gradle.api.internal.tasks.execution.ExecuteTaskBuildOperationDetails;
    import org.gradle.api.tasks.testing.AbstractTestTask;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  6. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/file/TestDistributionDirectoryProvider.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.test.fixtures.file;
    
    import org.junit.runners.model.FrameworkMethod;
    
    import java.io.File;
    
    public class TestDistributionDirectoryProvider extends AbstractTestDirectoryProvider {
        public TestDistributionDirectoryProvider(Class<?> klass) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. platforms/software/version-control/src/testFixtures/groovy/org/gradle/vcs/fixtures/GitHttpRepository.java

    import org.gradle.internal.ErroringAction;
    import org.gradle.test.fixtures.file.TestFile;
    import org.gradle.test.fixtures.server.http.BlockingHttpServer;
    import org.junit.rules.TestRule;
    import org.junit.runner.Description;
    import org.junit.runners.model.Statement;
    
    import java.io.ByteArrayOutputStream;
    import java.io.File;
    import java.io.InputStream;
    import java.net.URI;
    import java.util.zip.GZIPInputStream;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/AbstractClientProvidedBuildActionRunner.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.buildtree.BuildActionRunner;
    import org.gradle.internal.buildtree.BuildTreeLifecycleController;
    import org.gradle.internal.buildtree.BuildTreeModelAction;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 08:55:55 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/BuildPhaseOperationListener.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.build.event.types.AbstractOperationResult;
    import org.gradle.internal.build.event.types.DefaultBuildPhaseDescriptor;
    import org.gradle.internal.build.event.types.DefaultFailure;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  10. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/FeatureCheckBuildResult.java

     * limitations under the License.
     */
    
    package org.gradle.testkit.runner.internal;
    
    import org.gradle.testkit.runner.BuildResult;
    import org.gradle.testkit.runner.BuildTask;
    import org.gradle.testkit.runner.TaskOutcome;
    import org.gradle.testkit.runner.internal.feature.BuildResultOutputFeatureCheck;
    import org.gradle.testkit.runner.internal.feature.FeatureCheck;
    
    import javax.annotation.Nullable;
    import java.util.List;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top