Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 2,195 for fadds (0.05 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1beta1/namedrulewithoperations.go

    // apply.
    func NamedRuleWithOperations() *NamedRuleWithOperationsApplyConfiguration {
    	return &NamedRuleWithOperationsApplyConfiguration{}
    }
    
    // WithResourceNames adds the given value to the ResourceNames 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 21 20:56:23 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/rulewithoperations.go

    // apply.
    func RuleWithOperations() *RuleWithOperationsApplyConfiguration {
    	return &RuleWithOperationsApplyConfiguration{}
    }
    
    // WithOperations adds the given value to the Operations 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: Thu Mar 04 18:31:34 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/MapPropertyInternal.java

    package org.gradle.api.internal.provider;
    
    import org.gradle.api.Incubating;
    import org.gradle.api.provider.Provider;
    
    import java.util.Map;
    
    public interface MapPropertyInternal<K, V> {
        /**
         * Adds a map entry to the property value.
         *
         * <p>
         * When invoked on a property with no value, this method first sets the value
         * of the property to its current convention value, if set, or an empty map.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 18:32:13 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/execution/TaskExecutionGraph.java

        /**
         * <p>Adds a closure to be called when this graph has been populated. This graph is passed to the closure as a
         * parameter.</p>
         *
         * @param closure The closure to execute when this graph has been populated.
         */
        void whenReady(Closure closure);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 20:29:51 UTC 2023
    - 6.7K bytes
    - Viewed (0)
  5. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/visualstudio/plugins/VisualStudioPluginTest.groovy

        def "adds extension to root project"() {
            when:
            project.pluginManager.apply(VisualStudioPlugin)
    
            then:
            project.visualStudio instanceof VisualStudioRootExtension
            project.visualStudio.solution.location.get().asFile == project.file("root.sln")
        }
    
        def "adds extension to child project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 2K bytes
    - Viewed (0)
  6. platforms/ide/ide-native/src/test/groovy/org/gradle/ide/xcode/plugins/XcodePluginTest.groovy

        def "adds extension to root project"() {
            when:
            project.pluginManager.apply(XcodePlugin)
    
            then:
            project.xcode instanceof XcodeRootExtension
            project.xcode.workspace.location.get().asFile == project.file("root.xcworkspace")
        }
    
        def "adds extension to child project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/webApplication/customized/kotlin/build.gradle.kts

    }
    
    dependencies {
        providedCompile("javax.servlet:servlet-api:2.5")
    }
    
    tasks.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
    - 543 bytes
    - Viewed (0)
  8. src/os/file_mutex_plan9.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package os
    
    // File locking support for Plan 9. This uses fdMutex from the
    // internal/poll package.
    
    // incref adds a reference to the file. It returns an error if the file
    // is already closed. This method is on File so that we can incorporate
    // a nil test.
    func (f *File) incref(op string) (err error) {
    	if f == nil {
    		return ErrInvalid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Oct 08 03:57:40 UTC 2022
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/attributes/DisambiguationRuleChain.java

     * unmodified, meaning we still have an ambiguous match.</p>
     *
     * @param <T> the concrete type of the attribute
     */
    @HasInternalProtocol
    public interface DisambiguationRuleChain<T> {
    
        /**
         * <p>Adds an arbitrary disambiguation rule to the chain.</p>
         * <p>A disambiguation rule can select the best match from a list of candidates.</p>
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 3.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    include::sample[dir="snippets/antlr/useAntlrPlugin/groovy",files="build.gradle[tags=use-plugin]"]
    ====
    
    [[sec:antlr_tasks]]
    == Tasks
    
    The ANTLR plugin adds a number of tasks to your project, as shown below.
    
    `generateGrammarSource` — link:{groovyDslPath}/org.gradle.api.plugins.antlr.AntlrTask.html[AntlrTask]::
    Generates the source files for all production ANTLR grammars.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
Back to top