Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for decorativo (0.18 sec)

  1. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BeanCodec.kt

                }
            }
    
        private
        suspend fun WriteContext.writeBeanOf(beanType: Class<*>, value: Any) {
            writeClass(beanType)
            // TODO - should collect the details of the decoration (eg enabled annotations, etc), and also carry this information with the serialized class reference
            //  instead of separately for each bean
            val generated = value is GeneratedSubclass
            writeBoolean(generated)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/CustomCompilationUnit.java

        public void addPhaseOperation(IPrimaryClassNodeOperation op, int phase) {
            if (phase != Phases.CLASS_GENERATION) {
                super.addPhaseOperation(op, phase);
            }
        }
    
        // this is using a decoration of the existing classgen implementation
        // it can't be implemented as a phase as our customVerifier needs to visit closures as well
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 22 10:43:11 UTC 2021
    - 4K bytes
    - Viewed (0)
  3. subprojects/core/src/integTest/groovy/org/gradle/api/PluginDetectionIntegrationTest.groovy

                plugins.withId("$detectedBy") {
                    operations << 'withId for ' + it.class.simpleName
                }
                pluginManager.withPlugin("$detectedBy") {
                    // assert we are using our closure decoration and not closure coercion
                    assert delegate instanceof $AppliedPlugin.name
                    operations << 'withPlugin'
                }
                operations << "applying"
                apply plugin: '$appliedBy'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 18:26:28 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  4. platforms/jvm/plugins-groovy/src/integTest/groovy/org/gradle/integtests/GroovyToJavaConversionIntegrationTest.groovy

        def "For every boolean is getter there is a get Getter"() {
            given:
            executer.requireDaemon().requireIsolatedDaemons() // We need to fork - if we do not fork Class-Decoration does not happen
    
            when:
            def convertedClasses = this.getClass().getResource( '/org/gradle/initialization/converted-types.txt' ).readLines()
            buildFile << """
                task checkHasGetters {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 20:01:36 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/internal/metaobject/DynamicObject.java

     *
     * The semantics of each method is completely up to the implementation. For example, {@link BeanDynamicObject}
     * provides a dynamic view of the functionality of an object and does not provide any decoration or extra functionality.
     * The {@link org.gradle.internal.extensibility.ExtensibleDynamicObject} implementation on the other hand does provide extra functionality.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 26 11:50:19 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/configuration/BuildOperationScriptPlugin.java

    import org.gradle.internal.resource.ResourceLocation;
    import org.gradle.internal.resource.TextResource;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.net.URI;
    
    /**
     * A decorating {@link ScriptPlugin} implementation that delegates to a given
     * delegatee implementation, but wraps the apply() execution in a
     * {@link org.gradle.internal.operations.BuildOperation}.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. subprojects/core/src/main/resources/org/gradle/reporting/base-style.css

    }
    
    ul.tabLinks li.selected {
        background-color: #c5f0f5;
        border-color: #c5f0f5;
    }
    
    ul.tabLinks a {
        font-size: 120%;
        display: block;
        outline: none;
        text-decoration: none;
        margin: 0;
        padding: 0;
    }
    
    ul.tabLinks li h2 {
        margin: 0;
        padding: 0;
    }
    
    div.tab {
    }
    
    div.selected {
        display: block;
    }
    
    div.deselected {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 10 15:05:34 UTC 2020
    - 2.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeLifecycleControllerFactory.kt

            cache.attachRootBuild(targetBuild.gradle.services.get())
    
            cache.initializeCacheEntry()
    
            // Currently, apply the decoration only to the root build, as the cache implementation is still scoped to the root build (that is, it assumes it is only applied to the root build)
            return createController(true, targetBuild, workExecutor, finishExecutor)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  9. subprojects/core/src/main/java/org/gradle/configuration/internal/ListenerBuildOperationDecorator.java

         * @param closure the closure to decorate
         */
        <T> Closure<T> decorate(String registrationPoint, Closure<T> closure);
    
        /**
         * Decorates a listener type object.
         * <p>
         * Supports decorating {@link BuildListener}, {@link ProjectEvaluationListener} and {@link TaskExecutionGraphListener} listeners
         * <p>
         * Does not decorate any action that implements {@link InternalListener}.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 06:02:19 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/core/ModelMapGroovyView.java

    /**
     * Used as the superclass for views for types that extend {@link org.gradle.model.ModelMap}. Mixes in Groovy DSL support.
     */
    // TODO - mix in Groovy support using bytecode decoration instead
    // TODO - validate closure parameters to check they are within bounds
    public abstract class ModelMapGroovyView<I> extends GroovyObjectSupport implements ModelMap<I> {
        @Override
        public String toString() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top