Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for _Decorated (0.36 sec)

  1. platforms/native/language-native/src/integTest/groovy/org/gradle/language/assembler/AssemblyLanguageParallelIntegrationTest.groovy

            buildFile << """
                // prevent assembly and c compile tasks from running in parallel
                // this is because we don't want the c compile tasks to accidentally use
                // the decorated tool provider we set up for testing the parallelism
                tasks.withType(CCompile) { mustRunAfter tasks.withType(Assemble) }
            """
    
            when:
            succeeds("assemble", "parallelTask")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/initialization/BuildOperationSettingsProcessorTest.groovy

        def startParameter = Mock(StartParameter)
        def state = Mock(SettingsState)
        def settingsInternal = Mock(SettingsInternal)
        def rootDir = new File("root")
    
        def "delegates to decorated settings processor"() {
            given:
            settings()
    
            when:
            buildOperationScriptPlugin.process(gradleInternal, settingsLocation, classLoaderScope, startParameter)
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/classpath/intercept/CallInterceptor.java

    import java.lang.invoke.MethodHandles;
    import java.util.Set;
    
    /**
     * Intercepts method and constructor calls as well as property reads in dynamic Groovy bytecode.
     * <p>
     * The interceptor serves as a factory for decorated Groovy {@link CallSite} instances.
     * These instances replace original CallSites where the calls are to be intercepted.
     * <p>
     * Descendants of this class should be thread-safe, making a stateless implementation is perfect.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 14:02:30 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. build-logic/documentation/src/main/groovy/gradlebuild/docs/DecorateReleaseNotes.java

        /**
         * The rendered HTML release notes that need decoration.
         */
        @InputFile
        @PathSensitive(PathSensitivity.NONE)
        public abstract RegularFileProperty getHtmlFile();
    
        /**
         * The decorated HTML file
         */
        @OutputFile
        public abstract RegularFileProperty getDestinationFile();
    
        /**
         * JQuery used by the added decoration
         */
        @InputFiles
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 28 06:35:15 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/plugins/DslObject.java

    import static org.gradle.internal.Cast.uncheckedCast;
    
    /**
     * Provides a unified, typed, interface to an enhanced DSL object.
     *
     * This is intended to be used with objects that have been decorated by the class generator.
     * <p>
     * Accessing each “aspect” of a DSL object may fail (with an {@link IllegalStateException}) if the DSL
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  6. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/AnnotationProcessingCompileTask.java

    /**
     * Wraps another {@link JavaCompiler.CompilationTask} and sets up its annotation processors
     * according to the provided processor declarations and processor path. Incremental processors
     * are decorated in order to validate their behavior.
     *
     * This class also serves a purpose when incremental annotation processing is not active.
     * It replaces the normal processor discovery, which suffers from file descriptor leaks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 13:42:29 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/doc/c4/C4_3_Component.puml

            Container_Boundary(provider, "Kotlin DSL Provider") {
    
                Component(gradleKotlinDslApi, "Generated `gradleKotlinDslApi()` API JAR", "The Gradle Kotlin DSL API & Kotlin decorated gradleApi()")
    
                Component(providerFactory, "Gradle ScriptPluginFactory", "Provides script evaluation to Gradle, main entry point")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 17:46:30 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/api/services/internal/RegisteredBuildServiceProvider.java

            }
        }
    
        private Try<T> instantiate() {
            // TODO - extract some shared infrastructure to take care of instantiation (eg which services are visible, strict vs lenient, decorated or not?)
            // TODO - should hold the project lock to do the isolation. Should work the same way as artifact transforms (a work node does the isolation, etc)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 09:24:00 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    	"net/http"
    )
    
    // UserProvidedDecorator represensts a user (client that uses this package)
    // provided decorator that wraps an inner http.ResponseWriter object.
    // The user-provided decorator object must return the inner (decorated)
    // http.ResponseWriter object via the Unwrap function.
    type UserProvidedDecorator interface {
    	http.ResponseWriter
    
    	// Unwrap returns the inner http.ResponseWriter object associated
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/events.md

    And the part after the `yield` will be executed **after** the application has finished.
    
    ### Async Context Manager
    
    If you check, the function is decorated with an `@asynccontextmanager`.
    
    That converts the function into something called an "**async context manager**".
    
    ```Python hl_lines="1  13"
    {!../../../docs_src/events/tutorial003.py!}
    ```
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top