Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,195 for fadds (0.04 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/options.go

    	o.ParentPath = o.ParentPath[:l]
    }
    
    // AppendKey adds a key (i.e. field) to the current parent
    // path, if TrackUnknownFieldPaths is true.
    func (o *UnknownFieldPathOptions) AppendKey(key string) {
    	if !o.TrackUnknownFieldPaths {
    		return
    	}
    	if len(o.ParentPath) > 0 {
    		o.ParentPath = append(o.ParentPath, ".")
    	}
    	o.ParentPath = append(o.ParentPath, key)
    }
    
    // AppendIndex adds an index to the most recent field of
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 18 14:55:12 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. 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)
  3. pkg/config/analysis/analyzers/testdata/envoy-filter-patch-operation.yaml

                    [":path"] = "/acl",
                    [":authority"] = "internal.org.net"
                   },
                  "authorize call",
                  5000)
                end
      # The second patch adds the cluster that is referenced by the Lua code
      # cds match is omitted as a new cluster is being added
      - applyTo: CLUSTER
        match:
          context: SIDECAR_OUTBOUND
        patch:
          operation: REPLACE
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 31 19:38:42 UTC 2022
    - 5K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

        def projectDir = tmpDir.createDir("project")
        def project = ProjectBuilder.builder().withProjectDir(projectDir).withName("testLib").build()
    
        def "adds generate task"() {
            given:
            project.pluginManager.apply(SwiftPackageManagerExportPlugin)
    
            expect:
            def generateManifest = project.tasks['generateSwiftPmManifest']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/internal/build/BuildWorkGraph.java

        boolean schedule(Collection<ExportedTaskNode> taskNodes);
    
        /**
         * Adds tasks and other nodes to this work graph.
         */
        void populateWorkGraph(Consumer<? super BuildLifecycleController.WorkGraphBuilder> action);
    
        /**
         * Adds a task filter to this work graph.
         */
        void addFilter(Spec<Task> filter);
    
        /**
         * Adds a finalization step to this work graph.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 31 05:15:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top