Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 158 for Class2 (0.16 sec)

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

     */
    
    package org.gradle.internal.cc.impl
    
    class ConfigurationCacheSkipCacheIntegrationTest extends AbstractConfigurationCacheIntegrationTest {
    
        def "skip reading cached state on #commandLine"() {
    
            def configurationCache = newConfigurationCacheFixture()
    
            given:
            buildFile << """
                abstract class MyTask extends DefaultTask {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/JavaPluginImplementation.groovy

                import ${Project.name};
                import ${Plugin.name};
                import ${Task.name};
                ${read.requiredImports().collect { "import $it;" }.join("\n")}
    
                public class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        Object value = ${read.javaExpression};
                        System.out.println("apply = " + value);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/testng/TestNGOptions.java

            this.useDefaultListeners = useDefaultListeners;
        }
    
        /**
         * Sets a custom threadPoolExecutorFactory class.
         * This should be a fully qualified class name and the class should implement org.testng.IExecutorFactory
         * More details in https://github.com/testng-team/testng/pull/2042
         * Requires TestNG 7.0 or higher
         * @since 8.7
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. maven-plugin-api/src/main/java/org/apache/maven/plugin/lifecycle/LifecycleConfiguration.java

    /**
     * Root element of the <code>lifecycle.xml</code> file.
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public class LifecycleConfiguration implements java.io.Serializable {
    
        // --------------------------/
        // - Class/Member Variables -/
        // --------------------------/
    
        /**
         * Field lifecycles.
         */
        private java.util.List<Lifecycle> lifecycles;
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 19:51:46 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/services/RemoteScriptUpToDateChecker.kt

    import org.gradle.internal.service.scopes.Scope
    import org.gradle.internal.service.scopes.ServiceScope
    import java.net.URI
    
    
    @ServiceScope(Scope.BuildTree::class)
    class RemoteScriptUpToDateChecker(
        private val lockingAccessCoordinator: ArtifactCacheLockingAccessCoordinator,
        private val startParameter: ConfigurationCacheStartParameter,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/CachedEnvironmentStateCodec.kt

                when (clazz) {
                    ConfigurationCacheEnvironmentChangeTracker.SystemPropertyMutate::class.java ->
                        ConfigurationCacheEnvironmentChangeTracker.SystemPropertyMutate(key, value, PropertyTrace.Unknown)
                    ConfigurationCacheEnvironmentChangeTracker.SystemPropertyLoad::class.java ->
                        ConfigurationCacheEnvironmentChangeTracker.SystemPropertyLoad(key, value, null)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/PropertyDelegate.kt

    
    private
    class NullableDynamicPropertyDelegate(
        private val dynamicLookupRoutine: DynamicLookupRoutine,
        private val owner: DynamicObject,
        private val name: String
    ) : PropertyDelegate {
    
        override fun <T> getValue(receiver: Any?, property: KProperty<*>): T =
            uncheckedCast(dynamicLookupRoutine.findProperty(owner, name))
    }
    
    
    private
    class NonNullDynamicPropertyDelegate(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 09:50:04 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/DefaultRootComponentMetadataBuilder.java

    import org.gradle.internal.component.model.VariantGraphResolveState;
    import org.gradle.internal.model.ModelContainer;
    
    import javax.annotation.Nullable;
    import javax.inject.Inject;
    import java.lang.ref.SoftReference;
    
    public class DefaultRootComponentMetadataBuilder implements RootComponentMetadataBuilder, HoldsProjectState {
        private final DependencyMetaDataProvider metadataProvider;
        private final ComponentIdentifierFactory componentIdentifierFactory;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultIgnoredConfigurationInputs.kt

    import org.gradle.internal.service.scopes.ServiceScope
    import org.gradle.util.internal.GFileUtils
    import java.io.File
    import java.util.EnumSet
    import javax.inject.Inject
    
    
    @ServiceScope(BuildTree::class)
    class DefaultIgnoredConfigurationInputs(
        ignoredPathsString: String?,
        isCaseSensitive: Boolean,
        private val rootDirectory: File
    ) : IgnoredConfigurationInputs {
    
        @Inject
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/GroovyPluginImplementation.groovy

            sourceFile << """
                import ${Project.name}
                import ${Plugin.name}
    
                ${read.requiredImports().collect { "import $it" }.join("\n")}
    
                class SneakyPlugin implements Plugin<Project> {
                    public void apply(Project project) {
                        def value = ${read.groovyExpression}
                        println("apply = " + value)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.7K bytes
    - Viewed (0)
Back to top