Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,155 for ADDS (0.08 sec)

  1. platforms/documentation/docs/src/docs/userguide/core-plugins/war_plugin.adoc

    ====
    
    [[sec:war_project_layout]]
    == Project layout
    
    In addition to the <<java_plugin.adoc#sec:java_project_layout,standard Java project layout>>, the War Plugin adds:
    
    `src/main/webapp`::
    Web application sources
    
    [[sec:war_tasks]]
    == Tasks
    
    The War plugin adds and modifies the following tasks:
    
    `war` — link:{groovyDslPath}/org.gradle.api.tasks.bundling.War.html[War]::
    _Depends on_: `compile`
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 01 20:23:16 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  2. platforms/jvm/plugins-application/src/test/groovy/org/gradle/api/plugins/ApplicationPluginTest.groovy

            task.defaultJvmOpts == []
        }
    
        def "adds distZip task to project"() {
            when:
            plugin.apply(project)
    
            then:
            def task = project.tasks[ApplicationPlugin.TASK_DIST_ZIP_NAME]
            task instanceof Zip
            task.archiveFileName.get() == "${project.applicationName}.zip"
        }
    
        def "adds distTar task to project"() {
            when:
            plugin.apply(project)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/StatsAccumulator.java

        }
      }
    
      /**
       * Adds the given values to the dataset.
       *
       * @param values a series of values, which will be converted to {@code double} values (this may
       *     cause loss of precision)
       */
      public void addAll(Iterable<? extends Number> values) {
        for (Number value : values) {
          add(value.doubleValue());
        }
      }
    
      /**
       * Adds the given values to the dataset.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 12 17:02:53 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/graph/MutableGraph.java

    /**
     * A subinterface of {@link Graph} which adds mutation methods. When mutation is not required, users
     * should prefer the {@link Graph} interface.
     *
     * @author James Sexton
     * @author Joshua O'Madadhain
     * @param <N> Node parameter type
     * @since 20.0
     */
    @Beta
    @ElementTypesAreNonnullByDefault
    public interface MutableGraph<N> extends Graph<N> {
    
      /**
       * Adds {@code node} if it is not already present.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 3.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/composite/internal/BuildController.java

    public interface BuildController extends Stoppable {
        /**
         * Adds tasks and nodes to the work graph of this build.
         */
        void populateWorkGraph(Consumer<? super BuildLifecycleController.WorkGraphBuilder> action);
    
        /**
         * Adds a filter to the work graph of this build.
         */
        void addFilter(Spec<Task> filter);
    
        /**
         * Adds a finalization step to the work graph of this build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/client-go/applyconfigurations/core/v1/podstatus.go

    func (b *PodStatusApplyConfiguration) WithPhase(value v1.PodPhase) *PodStatusApplyConfiguration {
    	b.Phase = &value
    	return b
    }
    
    // WithConditions adds the given value to the Conditions field in the declarative configuration
    // and returns the receiver, so that objects can be build by chaining "With" function invocations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 01:43:16 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  7. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/CopySpecExtensions.kt

    import org.gradle.api.file.CopySpec
    
    import java.io.FilterReader
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    inline fun <reified T : FilterReader> CopySpec.filter(vararg properties: Pair<String, Any?>) =
        filter(mapOf(*properties), T::class.java)
    
    
    /**
     * Adds a content filter to be used during the copy.
     *
     * @see [CopySpec.filter]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  8. subprojects/core-platform/build.gradle.kts

        }
        runtime(project(":kotlin-dsl")) {
            because("Adds support for Kotlin DSL scripts.")
        }
        runtime(project(":declarative-dsl-provider")) {
            because("Adds support for interpreting files with the declarative DSL")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 06:16:07 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ConfigurationPublications.java

         */
        PublishArtifactSet getArtifacts();
    
        /**
         * Adds an outgoing artifact to this configuration. This artifact is included in all variants.
         *
         * <p>See {@link org.gradle.api.artifacts.dsl.ArtifactHandler} for details of the supported notations.
         */
        void artifact(Object notation);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 08 17:57:43 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/moduleconverter/dependencies/DefaultLocalConfigurationMetadataBuilderTest.groovy

            then:
            1 * configuration.runDependencyActions()
    
            metaData.dependencies.size() == 0
            metaData.files.size() == 0
            metaData.excludes.size() == 0
        }
    
        def "adds ModuleDependency instances from configuration"() {
            def dependencyDescriptor1 = Mock(LocalOriginDependencyMetadata)
            def dependencyDescriptor2 = Mock(LocalOriginDependencyMetadata)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 11:21:15 UTC 2024
    - 6.5K bytes
    - Viewed (0)
Back to top