Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,417 for Configurer (0.3 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. subprojects/core-api/src/main/java/org/gradle/api/file/FileSystemOperations.java

         * The given action is used to configure a {@link DeleteSpec}, which is then used to delete the files.
         *
         * @param action Action to configure the DeleteSpec
         * @return {@link WorkResult} that can be used to check if delete did any work.
         */
        WorkResult delete(Action<? super DeleteSpec> action);
    
        /**
         * Creates and configures file access permissions. Differs from directory permissions due to
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 15 08:02:27 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  10. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/MavenSessionBuilderSupplier.java

         * Maven-based resolution. In more detail, this method configures settings relevant for the processing of dependency
         * graphs, most other settings remain at their generic default value. Use the various setters to further configure
         * the session with authentication, mirror, proxy and other information required for your environment. At least,
         * local repository manager needs to be configured to make session be able to create session instance.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top