Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 78 for customJar (0.33 sec)

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

        def "can attach an archive task provider as an artifact"() {
            createBuildScripts("""
                def customJar = tasks.register("myJar", Jar) {
                    archiveClassifier = 'classy'
                }
                publications {
                    mavenCustom(IvyPublication) {
                        artifact(customJar)
                    }
                }
            """)
    
            when:
            succeeds(":publish")
    
    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

            module.assertPublished()
            module.assertArtifactsPublished("projectText-1.0.pom", "projectText-1.0.txt", "projectText-1.0.foo", "projectText-1.0.bar", "projectText-1.0-customjar.jar", "projectText-1.0.reg")
            result.assertTasksExecuted(":customJar", ":regularFileTask", ":generatePomFileForMavenCustomPublication", ":publishMavenCustomPublicationToMavenRepository", ":publish")
    
            and:
            resolveArtifacts(module) {
    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/ide/ide-plugins/src/test/groovy/org/gradle/plugins/ide/internal/tooling/eclipse/EclipseModelBuilderDependenciesTest.groovy

                    customDependency.buildDependencies(":child1:jar")
                    customDependency.publication = fileReference("customJar.jar")
                    customDependency.publicationJavadocPath = fileReference("customJar-javadoc.jar")
                    customDependency.publicationSourcePath = fileReference("customJar-sources.jar")
                    entries += [customDependency]
                }
            }
            child4.dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Mar 24 15:55:52 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  4. platforms/jvm/scala/src/test/groovy/org/gradle/api/plugins/scala/ScalaBasePluginTest.groovy

            task.analysisMappingFile.get().asFile == new File("$project.buildDir/tmp/scala/compilerAnalysis/compileCustomScala.mapping")
        }
    
        def incrementalCompileOptionsCanBeOverridden() {
            when:
            project.sourceSets.create('custom')
            project.tasks.create('customJar', Jar)
            def task = project.tasks['compileCustomScala']
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  5. platforms/software/signing/src/integTest/groovy/org/gradle/plugins/signing/SigningPublicationsIntegrationSpec.groovy

                ${keyInfo.addAsPropertiesScript()}
    
                task customJar(type:Jar) {
                    with jar
                    archiveClassifier = 'custom'
                }
    
                publishing {
                    publications {
                        custom(MavenPublication) {
                            artifact customJar
                        }
                    }
                }
    
                signing {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 09 01:09:32 UTC 2024
    - 26.9K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginTest.groovy

        }
    
        def "applies mappings to custom jar tasks"() {
            when:
            project.pluginManager.apply(JavaBasePlugin)
            def task = project.task('customJar', type: Jar)
    
            then:
            TaskDependencyMatchers.dependsOn().matches(task)
            task.destinationDirectory.get().asFile == project.libsDirectory.get().asFile
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 16.4K bytes
    - Viewed (0)
  7. src/cmp/cmp_test.go

    		return cmp.Or(
    			strings.Compare(a.Customer, b.Customer),
    			strings.Compare(a.Product, b.Product),
    			cmp.Compare(b.Price, a.Price),
    		)
    	})
    	for _, order := range orders {
    		fmt.Printf("%s %s %.2f\n", order.Product, order.Customer, order.Price)
    	}
    
    	// Output:
    	// foo alice 2.00
    	// foo alice 1.00
    	// bar bob 3.00
    	// foo bob 4.00
    	// bar carol 1.00
    	// baz carol 4.00
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 23:39:07 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. docs/hotfixes.md

    ```
    λ CRED_DIR=/media/builder/minio make docker-hotfix-push
    ```
    
    #### Builds the hotfix container and pushes to registry.min.dev/<customer>/minio
    
    ```
    λ REPO="registry.min.dev/<customer>" CRED_DIR=/media/builder/minio make docker-hotfix-push
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Feb 14 21:36:02 UTC 2024
    - 5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/tracing.go

    	var tags []*tracing.CustomTag
    	for tagName, tagInfo := range providerTags {
    		if tagInfo == nil {
    			log.Warnf("while building custom tags from provider, encountered nil custom tag: %s, skipping", tagName)
    			continue
    		}
    		switch tag := tagInfo.Type.(type) {
    		case *telemetrypb.Tracing_CustomTag_Environment:
    			env := &tracing.CustomTag{
    				Tag: tagName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. internal/http/headers.go

    	AmzServerSideEncryptionCustomerAlgorithm     = AmzServerSideEncryption + "-Customer-Algorithm"
    	AmzServerSideEncryptionCustomerKey           = AmzServerSideEncryption + "-Customer-Key"
    	AmzServerSideEncryptionCustomerKeyMD5        = AmzServerSideEncryption + "-Customer-Key-Md5"
    	AmzServerSideEncryptionCopyCustomerAlgorithm = "X-Amz-Copy-Source-Server-Side-Encryption-Customer-Algorithm"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
Back to top