Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 58 for classPath (0.19 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDirectoryPluginIntegrationTest.groovy

            generateExternalPlugin("second", "SecondPlugin", "second.property")
            buildFile.text = """
                buildscript {
                    dependencies {
                        classpath(files("./first/build/classes/java/main"))
                        classpath(files("./second/build/classes/java/main"))
                    }
                }
                apply plugin: FirstPlugin
                apply plugin: SecondPlugin
            """
    
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/initialization/DefaultScriptClassPathResolver.java

    import org.gradle.api.internal.model.NamedObjectInstantiator;
    import org.gradle.api.invocation.Gradle;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.classpath.TransformedClassPath;
    import org.gradle.internal.component.local.model.OpaqueComponentIdentifier;
    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.lazy.Lazy;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/launcher/build.gradle.kts

        runtimeOnly(project(":problems"))
    
        runtimeOnly(libs.commonsIo)
        runtimeOnly(libs.commonsLang)
        runtimeOnly(libs.slf4jApi)
    
        // The wrapper expects the launcher Jar to have classpath entries that contain the main class and its runtime classpath
        manifestClasspath(project(":gradle-cli-main"))
    
        testImplementation(project(":internal-integ-testing"))
        testImplementation(project(":native"))
        testImplementation(project(":cli"))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 4K bytes
    - Viewed (0)
  4. android/guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    // Note: @Test annotations are deliberate, as some subclasses specify @RunWith(JUnit4).
    @GwtIncompatible
    @J2ktIncompatible
    @J2ObjCIncompatible // com.google.common.reflect.ClassPath
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

    import org.gradle.initialization.layout.BuildLayoutFactory;
    import org.gradle.internal.Actions;
    import org.gradle.internal.SystemProperties;
    import org.gradle.internal.buildprocess.BuildProcessState;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.concurrent.CompositeStoppable;
    import org.gradle.internal.concurrent.Stoppable;
    import org.gradle.internal.daemon.client.execution.ClientBuildRequestContext;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. guava-testlib/src/com/google/common/testing/AbstractPackageSanityTests.java

     *
     * <p>This class incurs IO because it scans the classpath and reads classpath resources.
     *
     * @author Ben Yu
     * @since 14.0
     */
    // TODO: Switch to JUnit 4 and use @Parameterized and @BeforeClass
    // Note: @Test annotations are deliberate, as some subclasses specify @RunWith(JUnit4).
    @GwtIncompatible
    @J2ktIncompatible
    @J2ObjCIncompatible // com.google.common.reflect.ClassPath
    @ElementTypesAreNonnullByDefault
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 11 16:13:05 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/InstrumentedExecutionAccessListener.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl
    
    import org.gradle.execution.ExecutionAccessChecker
    import org.gradle.internal.classpath.InstrumentedExecutionAccess
    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    
    
    @ServiceScope(Scope.BuildTree::class)
    internal
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/InstrumentedExecutionAccessListenerRegistry.kt

     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.initialization
    
    import org.gradle.internal.cc.impl.InstrumentedExecutionAccessListener
    import org.gradle.internal.classpath.InstrumentedExecutionAccess
    import org.gradle.internal.concurrent.Stoppable
    import org.gradle.internal.service.scopes.ListenerService
    
    
    @ListenerService
    internal
    class InstrumentedExecutionAccessListenerRegistry(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/initialization/VintageInjectedClasspathInstrumentationStrategy.kt

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package org.gradle.internal.cc.impl.initialization
    
    import org.gradle.internal.classpath.CachedClasspathTransformer
    
    
    class VintageInjectedClasspathInstrumentationStrategy : AbstractInjectedClasspathInstrumentationStrategy() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  10. platforms/core-runtime/tooling-api-provider/src/main/java/org/gradle/tooling/internal/provider/DefaultConnection.java

    import org.gradle.initialization.BuildLayoutParameters;
    import org.gradle.internal.Cast;
    import org.gradle.internal.buildprocess.BuildProcessState;
    import org.gradle.internal.classpath.ClassPath;
    import org.gradle.internal.deprecation.DeprecationLogger;
    import org.gradle.internal.instrumentation.agent.AgentStatus;
    import org.gradle.internal.jvm.UnsupportedJavaRuntimeException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 13.1K bytes
    - Viewed (0)
Back to top