Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,195 for fadds (0.08 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  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/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)
  8. 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)
  9. 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)
  10. 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)
Back to top