Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 97 for customFile (0.29 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m8/ToolingApiEclipseModelCrossVersionSpec.groovy

    import org.gradle.tooling.model.eclipse.EclipseProject
    
    class ToolingApiEclipseModelCrossVersionSpec extends ToolingApiSpecification implements WithOldConfigurationsSupport {
        def "can customize model late in the configuration phase"() {
            projectDir.file('build.gradle').text = """
    apply plugin: 'java'
    
    gradle.projectsEvaluated {
        ${mavenCentralRepository()}
    }
    dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  2. dbflute_fess/dfprop/outsideSqlMap.dfprop

        # - - - - - - - - - -/
    
        # /- - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        # o isGenerateProcedureCustomizeEntity: (NotRequired - Default false)
        #   [true]
        #     The customize entities for procedure's out-parameter
        #     and not-param-result are auto-generated.
        #     And also not-param-result's properties are auto-generated.
        #     Target procedures are executed actually at Sql2Entity task.
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sat Jul 25 06:04:16 UTC 2015
    - 8K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top