Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 3,036 for Configurer (0.39 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/Script.java

     */
    public interface Script {
        /**
         * <p>Configures the delegate object for this script using plugins or scripts.
         *
         * <p>The given closure is used to configure an {@link org.gradle.api.plugins.ObjectConfigurationAction} which is
         * then used to configure the delegate object.</p>
         *
         * @param closure The closure to configure the {@code ObjectConfigurationAction}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return The configured objects.
         */
        Iterable<?> configure(Iterable<?> objects, Closure configureClosure);
    
        /**
         * Configures a collection of objects via an action.
         *
         * @param objects The objects to configure
         * @param configureAction The action to apply to each object
         * @return The configured objects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyHandler.java

         *
         * @since 2.0
         */
        ArtifactResolutionQuery createArtifactResolutionQuery();
    
        /**
         * Configures the attributes schema. The action is passed a {@link AttributesSchema} instance.
         * @param configureAction the configure action
         * @return the configured schema
         *
         * @since 3.4
         */
        AttributesSchema attributesSchema(Action<? super AttributesSchema> configureAction);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 12 19:16:36 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/plugin/management/PluginManagementSpec.java

        @Restricted
        RepositoryHandler getRepositories();
    
        /**
         * Configure the plugin resolution strategy.
         */
        void resolutionStrategy(Action<? super PluginResolutionStrategy> action);
    
        /**
         * The plugin resolution strategy.
         */
        PluginResolutionStrategy getResolutionStrategy();
    
        /**
         * Configure the default plugin versions.
         * @since 5.6
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Feb 06 23:16:59 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  5. platforms/jvm/plugins-java-base/src/main/java/org/gradle/api/plugins/JavaPluginConvention.java

         */
        public abstract Manifest manifest();
    
        /**
         * Creates and configures a new instance of a {@link Manifest}. The given closure configures
         * the new manifest instance before it is returned.
         *
         * @param closure The closure to use to configure the manifest.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/attributes/AttributesSchema.java

        <T> AttributeMatchingStrategy<T> attribute(Attribute<T> attribute);
    
        /**
         * Configures the matching strategy for an attribute. The first call to this method for a specific attribute
         * will create a new matching strategy, whereas subsequent calls will configure the existing one.
         *
         * @param attribute the attribute for which to configure the matching strategy
         * @param configureAction the strategy configuration
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 07 20:56:10 UTC 2022
    - 3.9K bytes
    - Viewed (0)
  7. tools/packaging/common/sidecar.env

    # is configured and used to route inbound connections to the loopback interface
    # in order to be redirected to Envoy.
    # If not set, defaults to "133".
    # ISTIO_INBOUND_TPROXY_ROUTE_TABLE=133
    
    # Comma separated list of local ports that will use Istio sidecar for inbound services.
    # If set, iptables rules will be configured to intercept inbound traffic and redirect to sidecar.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 18:02:42 UTC 2022
    - 4.7K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/ConfigurableConnection.java

        /**
         * Configures this connection with the given parameters.
         *
         * <p>Consumer compatibility: This method is used by all consumer versions from 1.2-rc-1.</p>
         * <p>Provider compatibility: This method is implemented by all provider versions from 1.2-rc-1.</p>
         *
         * @since 1.2-rc-1
         */
        void configure(ConnectionParameters parameters);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningExtension.java

            return new PgpSignatoryProvider();
        }
    
        /**
         * Configures the signatory provider (delegating to its {@link SignatoryProvider#configure(SigningExtension, Closure) configure method}).
         *
         * @param closure the signatory provider configuration DSL
         * @return the configured signatory provider
         */
        @SuppressWarnings("unused")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 22.3K bytes
    - Viewed (0)
  10. build-logic/integration-testing/src/main/kotlin/gradlebuild.test-fixtures.gradle.kts

    /**
     * Test Fixtures Plugin.
     *
     * Configures the Project as a test fixtures producer if `src/testFixtures` is a directory:
     * - adds a new `testFixtures` source set which should contain utilities/fixtures to assist in unit testing
     *   classes from the main source set,
     * - the test fixtures are automatically made available to the test classpath.
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 12 13:19:06 UTC 2024
    - 3.3K bytes
    - Viewed (0)
Back to top