Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 131 for Brunner (0.28 sec)

  1. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/WorkItemOperationMapper.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.BuildEventSubscriptions;
    import org.gradle.internal.build.event.types.DefaultOperationFinishedProgressEvent;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  2. platforms/software/resources-http/src/main/java/org/gradle/internal/resource/transport/http/HttpClientConfigurer.java

         *
         * @implNote To support the Gradle embedded test runner, this method's return value should not be cached in a static field.
         */
        private String[] determineHttpsProtocols() {
            /*
             * System property retrieval is executed within the constructor to support the Gradle embedded test runner.
             */
            String httpsProtocols = System.getProperty(HTTPS_PROTOCOLS);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 18.5K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/ClientBuildEventGenerator.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.internal.Cast;
    import org.gradle.internal.build.event.BuildEventSubscriptions;
    import org.gradle.internal.operations.BuildOperationDescriptor;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 9K bytes
    - Viewed (0)
  4. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/TransformOperationMapper.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.api.internal.artifacts.transform.ExecutePlannedTransformStepBuildOperationDetails;
    import org.gradle.api.internal.artifacts.transform.TransformStepNode;
    import org.gradle.execution.plan.Node;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 15 16:16:16 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. platforms/ide/tooling-api-builders/src/main/java/org/gradle/tooling/internal/provider/runner/OperationDependencyLookup.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.execution.plan.Node;
    import org.gradle.tooling.internal.protocol.events.InternalOperationDescriptor;
    
    interface OperationDependencyLookup {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 911 bytes
    - Viewed (0)
  6. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/UnexpectedBuildSuccess.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;
    
    /**
     * Thrown when executing a build that was expected to fail, but succeeded.
     *
     * @since 2.6
     * @see GradleRunner#buildAndFail()
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 988 bytes
    - Viewed (0)
  7. 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)
  8. platforms/extensibility/test-kit/src/main/java/org/gradle/testkit/runner/internal/feature/TestKitFeature.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;
    
    import org.gradle.util.GradleVersion;
    
    public enum TestKitFeature {
    
        RUN_BUILDS(GradleVersion.version("2.6")),
        CAPTURE_BUILD_RESULT_TASKS(GradleVersion.version("2.6")),
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. platforms/extensibility/test-kit/src/testFixtures/groovy/org/gradle/testkit/runner/fixtures/Debug.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.*;
    
    /**
     * Indicates that the feature under test only works with debug on, or is testing something that doesn't make sense to test without debug on.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 966 bytes
    - Viewed (0)
  10. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/internal/tasks/testing/junit/JUnitTestClassDetector.java

        @Override
        protected boolean ignoreNonStaticInnerClass(){
            return true;
        }
    
        @Override
        public AnnotationVisitor visitAnnotation(String desc, boolean visible) {
            if ("Lorg/junit/runner/RunWith;".equals(desc)) {
                setTest(true);
            }
    
            return null;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 2K bytes
    - Viewed (0)
Back to top