Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,901 for ADDS (0.21 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/JacocoReportBase.java

            return sourceEncoding;
        }
    
        /**
         * Adds execution data files to be used during coverage analysis.
         *
         * @param files one or more files to add
         */
        public void executionData(Object... files) {
            executionData.from(files);
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/RepositoryHandlerExtensions.kt

    import org.gradle.api.artifacts.dsl.RepositoryHandler
    import org.gradle.api.artifacts.repositories.IvyArtifactRepository
    import org.gradle.api.artifacts.repositories.MavenArtifactRepository
    
    
    /**
     * Adds and configures a Maven repository.
     *
     * The provided [url] value is evaluated as per [org.gradle.api.Project.uri]. This means, for example, you can pass in a `File` object, or a relative path to be evaluated relative
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. src/cmd/go/internal/base/flag.go

    	*f.value = v
    	if v != "" {
    		*f.explicit = true
    	}
    	return nil
    }
    
    // AddBuildFlagsNX adds the -n and -x build flags to the flag set.
    func AddBuildFlagsNX(flags *flag.FlagSet) {
    	flags.BoolVar(&cfg.BuildN, "n", false, "")
    	flags.BoolVar(&cfg.BuildX, "x", false, "")
    }
    
    // AddChdirFlag adds the -C flag to the flag set.
    func AddChdirFlag(flags *flag.FlagSet) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 19:23:42 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. doc/next/6-stdlib/3-iter.md

      sub-slices of up to n elements of a slice.
    
    The [maps] package adds several functions that work with iterators:
    - [All](/pkg/maps#All) returns an iterator over key-value pairs from m.
    - [Keys](/pkg/maps#Keys) returns an iterator over keys in m.
    - [Values](/pkg/maps#Values) returns an iterator over values in m.
    - [Insert](/pkg/maps#Insert) adds the key-value pairs from seq to m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:13 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top