Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,901 for ADDS (0.22 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/exceptions/DiagnosticsVisitor.java

    public interface DiagnosticsVisitor {
        /**
         * Adds the description of some candidate.
         */
        DiagnosticsVisitor candidate(String displayName);
    
        /**
         * Adds an example for the previous candidate. Can have multiple examples.
         */
        DiagnosticsVisitor example(String example);
    
        /**
         * Adds a set of potential values for the previous candidate, if known.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/native/xcode_plugin.adoc

    | Adds a target representing the {cpp} application to the project file.
    
    | <<cpp_library_plugin.adoc#cpp_library_plugin,{cpp} Library>>
    | Adds a target for each specified linkage representing the shared and/or static library to the project file.
    
    | <<swift_application_plugin.adoc#swift_application_plugin,Swift Application>>
    | Adds a target representing the Swift application to the project file.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/preflight/checks_linux.go

    	)
    	return checks
    }
    
    // addIPv4Checks adds IPv4 related checks
    func addIPv4Checks(checks []Checker) []Checker {
    	checks = append(checks,
    		FileContentCheck{Path: ipv4Forward, Content: []byte{'1'}})
    	return checks
    }
    
    // addSwapCheck adds a swap check
    func addSwapCheck(checks []Checker) []Checker {
    	checks = append(checks, SwapCheck{})
    	return checks
    }
    
    // addExecChecks adds checks that verify if certain binaries are in PATH
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  10. platforms/software/platform-base/src/test/groovy/org/gradle/api/plugins/BasePluginTest.groovy

        def "adds convention objects"() {
            when:
            project.pluginManager.apply(BasePlugin)
    
            then:
            project.convention.plugins.base instanceof BasePluginConvention
            project.extensions.findByType(DefaultArtifactPublicationSet) != null
            project.extensions.findByType(BasePluginExtension) != null
        }
    
        def "adds extension object"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Oct 11 12:16:09 UTC 2023
    - 6K bytes
    - Viewed (0)
Back to top