Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 2,155 for ADDS (0.04 sec)

  1. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/event/ListenerBroadcast.java

         */
        public int size() {
            return broadcast.size();
        }
    
        /**
         * Adds a listener.
         *
         * @param listener The listener.
         */
        public void add(T listener) {
            broadcast = broadcast.add(listener);
        }
    
        /**
         * Adds the given listeners.
         *
         * @param listeners The listeners
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:59:22 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/webApplication/customized/groovy/build.gradle

    }
    
    dependencies {
        providedCompile "javax.servlet:servlet-api:2.5"
    }
    
    war {
        webAppDirectory = file('src/main/webapp')
        from 'src/rootContent' // adds a file-set to the root of the archive
        webInf { from 'src/additionalWebInf' } // adds a file-set to the WEB-INF dir.
        webXml = file('src/someWeb.xml') // copies a file to WEB-INF/web.xml
    }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 538 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/core-plugins/codenarc_plugin.adoc

    ====
    
    The plugin adds a number of tasks to the project that perform the quality checks when used with the <<groovy_plugin.adoc#groovy_plugin, Groovy Plugin>>. You can execute the checks by running `gradle check`.
    
    [[sec:codenarc_tasks]]
    == Tasks
    
    The CodeNarc plugin adds the following tasks to the project:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 12:08:34 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/attributes/CompatibilityRuleChain.java

     * @param <T> the type of the attribute
     */
    @HasInternalProtocol
    public interface CompatibilityRuleChain<T> {
        /**
         * Adds an ordered check rule to this chain.
         *
         * @param comparator the comparator to use
         */
        void ordered(Comparator<? super T> comparator);
    
        /**
         * Adds an reverse ordered check rule to this chain.
         *
         * @param comparator the comparator to use
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3K bytes
    - Viewed (0)
  5. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/ContentFilterableExtensions.kt

     * limitations under the License.
     */
    package org.gradle.kotlin.dsl
    
    import org.gradle.api.file.ContentFilterable
    
    import java.io.FilterReader
    import kotlin.reflect.KClass
    
    
    /**
     * Adds a content filter to be used during the copy.
     * Multiple calls add additional filters to the filter chain.
     * Each filter should implement [FilterReader].
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3.9K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-groovy/src/test/groovy/org/gradle/api/plugins/GroovyPluginTest.groovy

        def "applies the java plugin to the project"() {
            when:
            groovyPlugin.apply(project)
    
            then:
            project.plugins.hasPlugin(JavaPlugin.class);
        }
    
        def "adds groovy configuration to the project"() {
            given:
            groovyPlugin.apply(project)
    
            when:
            def implementation = project.configurations.getByName(JvmConstants.IMPLEMENTATION_CONFIGURATION_NAME)
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 18:44:49 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/PropertiesFileContentMerger.java

    import org.gradle.api.internal.PropertiesTransformer;
    import org.gradle.util.internal.ClosureBackedAction;
    
    import java.util.Properties;
    
    /**
     * Models the generation/parsing/merging capabilities.
     * Adds properties-related hooks.
     * <p>
     * For examples see docs for {@link org.gradle.plugins.ide.eclipse.model.EclipseJdt} and others.
     */
    public class PropertiesFileContentMerger extends FileContentMerger {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/api/XmlFileContentMerger.java

    import groovy.lang.DelegatesTo;
    import org.gradle.api.Action;
    import org.gradle.api.XmlProvider;
    import org.gradle.internal.xml.XmlTransformer;
    
    /**
     * Models the generation/parsing/merging capabilities.
     * Adds XML-related hooks.
     * <p>
     * For examples see docs for {@link org.gradle.plugins.ide.eclipse.model.EclipseProject}
     * or {@link org.gradle.plugins.ide.idea.model.IdeaProject} and others.
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/remotecommand/constants.go

    	// attachment/execution. It is the third version of the subprotocol and
    	// adds support for resizing container terminals.
    	StreamProtocolV3Name = "v3.channel.k8s.io"
    
    	// The SPDY subprotocol "v4.channel.k8s.io" is used for remote command
    	// attachment/execution. It is the 4th version of the subprotocol and
    	// adds support for exit codes.
    	StreamProtocolV4Name = "v4.channel.k8s.io"
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 05 18:37:18 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/ear_plugin.adoc

    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    [[ear_plugin]]
    = The Ear Plugin
    
    The Ear plugin adds support for assembling web application EAR files.
    It adds a default EAR archive task.
    It doesn't require the <<java_plugin.adoc#java_plugin,Java plugin>>, but for projects that also use the Java plugin it disables the default JAR archive generation.
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5K bytes
    - Viewed (0)
Back to top