Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 67 for customFile (0.19 sec)

  1. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishArtifactCustomizationIntegTest.groovy

        void "can publish custom artifacts"() {
            given:
            createBuildScripts("""
                file("customFile.foo") << 'some foo'
                file("customFile.bar") << 'some bar'
    
                publications {
                    ivy(IvyPublication) {
                        artifact "customFile.txt"
                        artifact customDocsTask.outputFile
                        artifact regularFileTask.outputFile
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.3K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishArtifactCustomizationIntegTest.groovy

            createBuildScripts("""
                file("customFile.foo") << 'some foo'
                file("customFile.bar") << 'some bar'
    
                publications {
                    mavenCustom(MavenPublication) {
                        artifact "customFile.txt"
                        artifact customJar
                        artifact regularFileTask.outputFile
                        artifact provider { file("customFile.foo") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jan 04 06:46:01 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  3. platforms/core-execution/execution-e2e-tests/src/integTest/groovy/org/gradle/integtests/StaleOutputIntegrationTest.groovy

                    outputs.file "customFile"
                    outputs.dir "build/dir"
                    doLast {}
                }
    
                clean {
                    delete "customFile"
                }
            """
            def dirInBuildDir = file("build/dir").createDir()
            file("build/dir/stale-file.txt").touch()
            def customFile = file("customFile").touch()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 10:15:40 UTC 2024
    - 23K bytes
    - Viewed (0)
  4. cmd/kubeadm/app/apis/kubeadm/v1beta3/doc.go

    // pod subnet or services subnet.
    //
    // - Etcd configurations; use it e.g. to customize the local etcd or to configure the API server
    // for using an external etcd cluster.
    //
    // - kube-apiserver, kube-scheduler, kube-controller-manager configurations; use it to customize control-plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 05 13:30:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_ivy.adoc

    .customizing the publication identity
    ====
    include::sample[dir="snippets/ivy-publish/customize-identity/kotlin",files="build.gradle.kts[tags=customize-identity]"]
    include::sample[dir="snippets/ivy-publish/customize-identity/groovy",files="build.gradle[tags=customize-identity]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/doc.go

    // pod subnet or services subnet.
    //
    // - Etcd configurations; use it e.g. to customize the local etcd or to configure the API server
    // for using an external etcd cluster.
    //
    // - kube-apiserver, kube-scheduler, kube-controller-manager configurations; use it to customize control-plane
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  7. schema/schema_test.go

    func (CustomizeTable) TableName() string {
    	return "customize"
    }
    
    func TestCustomizeTableName(t *testing.T) {
    	customize, err := schema.Parse(&CustomizeTable{}, &sync.Map{}, schema.NamingStrategy{})
    	if err != nil {
    		t.Fatalf("failed to parse pointer user, got error %v", err)
    	}
    
    	if customize.Table != "customize" {
    		t.Errorf("Failed to customize table with TableName method")
    	}
    }
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Fri Dec 15 08:31:23 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  8. src/go/doc/doc.go

    // customize it before use.
    func (p *Package) Parser() *comment.Parser {
    	return &comment.Parser{
    		LookupPackage: p.lookupPackage,
    		LookupSym:     p.lookupSym,
    	}
    }
    
    // Printer returns a doc comment printer configured
    // for printing doc comments from package p.
    // Each call returns a new printer, so that the caller may
    // customize it before use.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:03 UTC 2023
    - 11.2K bytes
    - Viewed (0)
  9. platforms/jvm/code-quality/src/test/groovy/org/gradle/api/plugins/quality/CheckstylePluginTest.groovy

                test
                other
            }
    
            expect:
            that(project.tasks['check'], dependsOn(hasItems("checkstyleMain", "checkstyleTest", "checkstyleOther")))
        }
    
        def "can customize settings via extension"() {
            project.pluginManager.apply(JavaBasePlugin)
            project.sourceSets {
                main
                test
                other
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 21 12:23:38 UTC 2023
    - 10.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/core-plugins/eclipse_plugin.adoc

    | Allows configuring wtp facet information only if `eclipse-wtp` plugin was applied.
    |===
    
    
    [[sec:eclipse_customizing_the_generated_files]]
    == Customizing the generated files
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 16.8K bytes
    - Viewed (0)
Back to top