Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 619 for interest (0.18 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/junit/junit4/JUnit4CategoriesOrTagsCoverageIntegrationTest.groovy

            executedAndNotSkipped ":$task"
    
            where:
            suiteName   | suiteDeclaration              | task
            'test'      | 'test'                        | 'test'
            'integTest' | 'integTest(JvmTestSuite)'     | 'integTest'
        }
    
        @Issue('https://github.com/gradle/gradle/issues/4924')
        def "skips test on re-run when options are NOT changed"() {
            given:
            testSources.with {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptorResolver.java

     */
    
    package org.gradle.internal.classpath.intercept;
    
    import org.gradle.api.NonNullApi;
    import org.gradle.internal.instrumentation.api.types.BytecodeInterceptorFilter;
    import org.gradle.internal.lazy.Lazy;
    
    import javax.annotation.Nullable;
    import java.util.EnumMap;
    import java.util.Map;
    
    import static org.gradle.internal.classpath.intercept.CallInterceptorRegistry.getGroovyCallDecorator;
    
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Nov 24 13:33:59 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  3. testing/integ-test/src/integTest/groovy/org/gradle/integtests/BuildSourceBuilderIntegrationTest.groovy

        }
    
        void writeSharedClassFile(TestFile targetDirectory) {
            def packageDirectory = targetDirectory.createDir("src/main/java/org/gradle/integtest/test")
            new File(packageDirectory, "BuildSrcTask.java").text = """
            package org.gradle.integtest.test;
            import org.gradle.api.DefaultTask;
            import org.gradle.api.tasks.TaskAction;
    
            public class BuildSrcTask extends DefaultTask{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5K bytes
    - Viewed (0)
  4. platforms/core-runtime/base-services/src/main/java/org/gradle/api/Namer.java

    /**
     * A namer is capable of providing a name based on some inherent characteristic of an object.
     *
     * @param <T> The type of object that the namer can name
     */
    public interface Namer<T> {
    
        /**
         * Determines the name of the given object.
         *
         * @param object The object to determine the name of
         * @return The object's inherent name. Never null.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/SignatureAwareCallInterceptor.java

     * limitations under the License.
     */
    
    package org.gradle.internal.classpath.intercept;
    
    import org.gradle.api.NonNullApi;
    
    import javax.annotation.Nullable;
    
    /**
     * A call interceptor that can also tell if it is going to intercept a call to a method based on the argument types, not the specific argument values.
     */
    @NonNullApi
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 24 15:57:57 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/integTest/groovy/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest.groovy

            "He sleeps all night and he works all day."
        ]
        @Rule TestResources testResources = new TestResources(temporaryFolder)
    
        /* Relies on the resources directory:
         * integTest/resources/org/gradle/api/internal/tasks/testing/loggingConfig
         */
        def defaultLoggingConfigNoFineLevel() {
            given:
            testResources.maybeCopy('JULRedirectorIntegrationTest/loggingConfig')
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/AbstractCallInterceptor.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.internal.classpath.intercept;
    
    import com.google.common.collect.ImmutableSet;
    import org.codehaus.groovy.vmplugin.v8.IndyInterface;
    import org.gradle.api.GradleException;
    
    import java.lang.invoke.MethodHandle;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/ide/eclipse/kotlin/build.gradle.kts

            .setAttribute("facet", "jst2.java")
    })
    // end::wtp-with-xml[]
    
    val integTest by sourceSets.creating
    val functional by configurations.creating
    
    eclipse {
        classpath {
            plusConfigurations += functional
        }
    }
    
    // tag::test-sources[]
    eclipse {
        classpath {
            testSourceSets = testSourceSets.get() + setOf(integTest)
            testConfigurations = testConfigurations.get() + setOf(functional)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.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.internal.classpath.intercept;
    
    import org.codehaus.groovy.runtime.callsite.CallSite;
    
    import java.lang.invoke.MethodHandle;
    import java.lang.invoke.MethodHandles;
    import java.util.Set;
    
    /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/samples/templates/java-junit5-module-info-for-application/src/integrationTest/java/module-info.java

    open module org.gradle.sample.integtest.app {
        requires org.gradle.sample.app;
        requires org.junit.jupiter.api;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 120 bytes
    - Viewed (0)
Back to top