Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,901 for ADDS (0.15 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top