Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,195 for fadds (0.04 sec)

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

         */
        @Incubating
        GradleLifecycle getLifecycle();
    
        /**
         * Adds a closure to be called immediately before a project is evaluated. The project is passed to the closure as a
         * parameter.
         *
         * @param closure The closure to execute.
         */
        void beforeProject(Closure closure);
    
        /**
         * Adds an action to be called immediately before a project is evaluated.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 22:53:34 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/LoggingOutputInternal.java

     */
    public interface LoggingOutputInternal extends LoggingOutput {
        /**
         * Adds System.out and System.err as logging destinations. The output will include plain text only, with no color or dynamic text.
         */
        void attachSystemOutAndErr();
    
        /**
         * Adds the current processes' stdout and stderr as logging destinations. The output will also include color and dynamic text when one of these
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:05:18 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/inspect/ValidationProblemCollector.java

        boolean hasProblems();
    
        /**
         * Adds a problem with the type.
         */
        void add(String problem);
    
        /**
         * Adds a problem with a field.
         */
        void add(Field field, String problem);
    
        /**
         * Adds a problem with a method.
         */
        void add(Method method, String role, String problem);
    
        /**
         * Adds a problem with a constructor.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  4. platforms/software/plugins-distribution/src/integTest/groovy/org/gradle/api/distribution/plugins/DistributionPluginTest.groovy

        }
    
        def "adds distZip task for main distribution"() {
            when:
            project.pluginManager.apply(DistributionPlugin)
    
            then:
            def task = project.tasks.distZip
            task instanceof Zip
            task.archiveFile.get().asFile == project.file("build/distributions/test-project.zip")
        }
    
        def "adds distZip task for custom distribution"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Oct 20 21:03:51 UTC 2023
    - 5.6K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/DependencyConstraintHandlerScope.kt

                DependencyConstraintHandlerScope(constraints)
        }
    
        override val delegate: DependencyConstraintHandler
            get() = constraints
    
        /**
         * Adds a dependency constraint to the given configuration.
         *
         * @param dependencyConstraintNotation notation for the dependency constraint to be added.
         * @return The dependency constraint.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 04 06:41:25 UTC 2023
    - 6K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/RepositoryHandler.java

        /**
         * Adds and configures a repository which will look for dependencies in a number of local directories.
         *
         * @param action The action to execute to configure the repository.
         * @return The repository.
         */
        FlatDirectoryArtifactRepository flatDir(Action<? super FlatDirectoryArtifactRepository> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 09 03:42:11 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. cmd/kubeadm/app/preflight/checks_other.go

    )
    
    // addOSValidator adds a new OSValidator
    // No-op for Darwin (MacOS), Windows.
    func addOSValidator(validators []system.Validator, _ *system.StreamReporter) []system.Validator {
    	return validators
    }
    
    // addIPv6Checks adds IPv6 related checks
    // No-op for Darwin (MacOS), Windows.
    func addIPv6Checks(checks []Checker) []Checker {
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 23 07:37:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  8. platforms/software/signing/src/main/java/org/gradle/plugins/signing/SigningPlugin.java

    import org.gradle.api.plugins.BasePlugin;
    
    /**
     * Adds the ability to digitally sign files and artifacts.
     *
     * @see <a href="https://docs.gradle.org/current/userguide/signing_plugin.html">Signing plugin reference</a>
     */
    public abstract class SigningPlugin implements Plugin<Project> {
    
        /**
         * <p>Adds the ability to digitally sign files and artifacts.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/TestSpec.java

    @Incubating
    public interface TestSpec {
    
        /**
         * Adds all tests declared in the target package to the test execution.
         * <p>
         * The effect is recursive, meaning that the tests defined in sub-packages will also be executed.
         *
         * @param pkg The target package.
         * @return this
         */
        TestSpec includePackage(String pkg);
    
        /**
         * Adds all tests declared in the target packages to the test execution.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/ComponentMetadataHandler.java

     */
    @HasInternalProtocol
    public interface ComponentMetadataHandler {
        /**
         * Adds a rule action that may modify the metadata of any resolved software component.
         *
         * @param rule the rule to be added
         * @return this
         */
        ComponentMetadataHandler all(Action<? super ComponentMetadataDetails> rule);
    
        /**
         * Adds a rule closure that may modify the metadata of any resolved software component.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 06 22:26:55 UTC 2022
    - 7.4K bytes
    - Viewed (0)
Back to top