Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 3,036 for Configurer (0.33 sec)

  1. 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)
  2. 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)
  3. subprojects/core/src/main/java/org/gradle/api/internal/project/ProjectStateInternal.java

        }
    
        public void toAfterEvaluate() {
            assert state == State.IN_EVALUATE;
            state = State.IN_AFTER_EVALUATE;
        }
    
        public void configured() {
            assert state != State.CONFIGURED;
            state = State.CONFIGURED;
        }
    
        public void failed(ProjectConfigurationException failure) {
            if (this.failure == null) {
                this.failure = failure;
            } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:52:05 UTC 2021
    - 3.8K 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. subprojects/core-api/src/main/java/org/gradle/api/PolymorphicDomainObjectContainer.java

         *
         * @param name The name of the object.
         * @param type The object type.
         * @param configurationAction The action to run to configure the object. This action runs when the object is required.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 27 15:00:20 UTC 2022
    - 5.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. releasenotes/notes/32462.yaml

    releaseNotes:
      - |
        **Added** two mutually-exclusive flags to `istioctl x workload entry configure`
    
        * `--internal-ip` configures the VM workload with a private IP address used for workload auto registration and health probes.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 03 15:12:32 UTC 2021
    - 625 bytes
    - Viewed (0)
Back to top