Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 190 for customFile (0.25 sec)

  1. platforms/jvm/code-quality/src/integTest/groovy/org/gradle/api/plugins/quality/codenarc/CodeNarcPluginIntegrationTest.groovy

            succeeds 'check'
    
            then:
            executed(":codenarcMain")
            executed(":codenarcTest")
            executed(":codenarcOther")
            notExecuted(":codenarcCustom")
        }
    
        def "can customize per-source-set tasks via extension"() {
            given:
            buildFile << '''
                sourceSets {
                    other {
                        groovy
                    }
                }
                codenarc {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 08:01:57 UTC 2024
    - 8.3K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/SamplesMavenPublishIntegrationTest.groovy

            module.parsedPom.scopes.runtime.assertDependsOn("commons-collections:commons-collections:3.2.2")
    
            where:
            dsl << ['groovy', 'kotlin']
        }
    
        @UsesSample("maven-publish/customize-identity")
        def "customize publication identity with #dsl dsl"() {
            given:
            def sampleDir = sampleProject.dir.file(dsl)
            inDirectory(sampleDir)
    
            and:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/overview/about_manual.adoc

    <<getting_started_eng.adoc#introduction,Running Gradle Builds>> :: Learn Gradle basics and how to use Gradle to build your project.
    <<build_lifecycle.adoc#build_lifecycle,Authoring Gradle Builds>> :: Develop tasks and plugins to customize your build.
    <<building_java_projects.adoc#building_java_projects,Authoring JVM Builds>> :: Use Gradle with your Java project.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 02 07:52:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. src/go/doc/comment/doc.go

    To reformat it as a doc comment, HTML, Markdown, or plain text,
    use a [Printer]:
    
    	var pr comment.Printer
    	os.Stdout.Write(pr.Text(doc))
    
    The [Parser] and [Printer] types are structs whose fields can be
    modified to customize the operations.
    For details, see the documentation for those types.
    
    Use cases that need additional control over reformatting can
    implement their own logic by inspecting the parsed syntax itself.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 06 19:05:57 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  5. internal/config/scanner/help.go

    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	// Help provides help for config values
    	Help = config.HelpKVS{
    		config.HelpKV{
    			Key:         Speed,
    			Description: `customize scanner speed (default|slowest|slow|fast|fastest)` + defaultHelpPostfix(Speed),
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         ExcessVersions,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 12 07:41:53 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  6. clause/clause.go

    package clause
    
    // Interface clause interface
    type Interface interface {
    	Name() string
    	Build(Builder)
    	MergeClause(*Clause)
    }
    
    // ClauseBuilder clause builder, allows to customize how to build clause
    type ClauseBuilder func(Clause, Builder)
    
    type Writer interface {
    	WriteByte(byte) error
    	WriteString(string) (int, error)
    }
    
    // Builder builder interface
    type Builder interface {
    	Writer
    	WriteQuoted(field interface{})
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Thu Feb 02 09:15:08 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  7. platforms/core-execution/build-cache-http/src/main/java/org/gradle/caching/http/internal/HttpBuildCacheService.java

            final URI uri = root.resolve("./" + key.getHashCode());
            HttpGet httpGet = new HttpGet(uri);
            httpGet.addHeader(HttpHeaders.ACCEPT, BUILD_CACHE_CONTENT_TYPE + ", */*");
            requestCustomizer.customize(httpGet);
    
            try (HttpClientResponse response = httpClientHelper.performHttpRequest(httpGet)) {
                StatusLine statusLine = response.getStatusLine();
                if (LOGGER.isDebugEnabled()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 14:13:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/core-plugins/java_gradle_plugin.adoc

    === Ivy Publish Plugin
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  9. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/OperatingSystemFamily.java

    import org.gradle.api.tasks.Input;
    
    /**
     * Represents the operating system of a configuration. Typical operating system include Windows, Linux, and macOS.
     * This interface allows the user to customize operating systems by implementing this interface.
     *
     * @since 5.1
     */
    public abstract class OperatingSystemFamily implements Named {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  10. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishDescriptorCustomizationKotlinDslIntegTest.groovy

            testDirectory.file('settings.gradle.kts')
        }
    
        def setup() {
            requireOwnGradleUserHomeDir() // Isolate Kotlin DSL extensions API jar
        }
    
        def "can customize Ivy descriptor using Kotlin DSL"() {
            given:
            settingsFile << 'rootProject.name = "customizeIvy"'
            buildFile << """
                plugins {
                    `ivy-publish`
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 3.5K bytes
    - Viewed (0)
Back to top