Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,697 for Configurer (0.26 sec)

  1. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelMap.java

         *
         * <p>The given action is invoked to configure the item when the item is required. It is called after any actions provided to {@link #beforeEach(org.gradle.api.Action)} and {@link #create(String,
         * org.gradle.api.Action)}.
         *
         * @param name The name.
         * @param configAction An action that configures the item. The action is executed when the item is required.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.2K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/execution/DefaultTaskSelectorTest.groovy

            then:
            1 * projectConfigurer.configure(projectModel1)
            1 * resolver.selectWithName("b", projectModel1, false) >> selectionResult
            _ * selectionResult.collectTasks(_) >> { it[0] << excluded }
            0 * _
    
            and:
            !filter.isSatisfiedBy(excluded)
            filter.isSatisfiedBy(notExcluded)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 05 22:49:56 UTC 2022
    - 4.8K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/IvyArtifactRepository.java

         * @param configureAction the action to use to configure the rule.
         *
         * @since 4.0
         */
        @Override
        void setMetadataSupplier(Class<? extends ComponentMetadataSupplier> rule, Action<? super ActionConfiguration> configureAction);
    
        /**
         * Configures the metadata sources for this repository. This method will replace any previously configured sources
         * of metadata.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 02 20:32:11 UTC 2023
    - 9.9K bytes
    - Viewed (0)
  4. architecture/security/istio-agent.md

    * Users may have external CA setups that pre-configure certificates.
    * The CaClient can use JWT token for the initial setup, then switch to mTLS certificates.
    
    Note that `OUTPUT_CERTS` can be used to refresh certificates using previously provisioned certificates, by configuring
    the ca client to use certificates written to the same directory we have configured them to be written to.
    
    ## Authentication
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 22 16:45:50 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/BinaryProvider.java

    /**
     * Represents a binary that is created and configured as required.
     *
     * @since 4.5
     * @param <T> The type of binary.
     */
    public interface BinaryProvider<T> extends Provider<T> {
        /**
         * Registers an action to execute to configure the binary. The action is executed only when the element is required.
         */
        void configure(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/test/groovy/org/gradle/plugins/ide/eclipse/model/EclipseModelTest.groovy

            when: "configure classpath file"
            model.classpath.file({ fcm -> fcm.xmlTransformer } as Action<XmlFileContentMerger>)
    
            then:
            1 * xmlMerger.getXmlTransformer()
    
            when: "configure classpath XML"
            model.classpath.file.withXml(xmlAction)
    
            then:
            1 * xmlTransformer.addAction(xmlAction)
        }
    
        def "can configure jdt with Actions"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 6.8K bytes
    - Viewed (0)
  7. platforms/jvm/testing-jvm/src/main/java/org/gradle/api/tasks/testing/Test.java

         */
        public TestFrameworkOptions options(@DelegatesTo(TestFrameworkOptions.class) Closure testFrameworkConfigure) {
            return ConfigureUtil.configure(testFrameworkConfigure, getOptions());
        }
    
        /**
         * Configures test framework specific options.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 42.6K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r73/DeferredConfigurationCrossVersionSpec.groovy

    @TargetGradleVersion(">=7.3")
    class DeferredConfigurationCrossVersionSpec extends ToolingApiSpecification {
        final String prefix = "-> configure"
        final String settingsMessage = "$prefix settings"
        final String rootProjectMessage = "$prefix root project"
    
        def "does not configure build when action does not query any models"() {
            setupBuild()
    
            when:
            def model = withConnection {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  9. docs/zh/docs/how-to/configure-swagger-ui.md

    Lucas-lyh <******@****.***> 1714944853 +0800
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sun May 05 21:34:13 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  10. platforms/software/publish/src/main/java/org/gradle/api/publish/PublishingExtension.java

         * for information on how this can be used for publishing to Ivy repositories.
         *
         * @param configure The action to configure the container of repositories with.
         */
        void repositories(Action<? super RepositoryHandler> configure);
    
        /**
         * The publications of the project.
         * <p>
         * See {@link #publications(org.gradle.api.Action)} for more information.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
Back to top