Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 250 for customJar (0.59 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/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)
  4. 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)
  5. internal/crypto/header_test.go

    			"X-Amz-Server-Side-Encryption-Customer-Algorithm": []string{""},
    			"X-Amz-Server-Side-Encryption-Customer-Key":       []string{""},
    			"X-Amz-Server-Side-Encryption-Customer-Key-Md5":   []string{""},
    		},
    		Expected: true,
    	}, // 4
    	{
    		Header: http.Header{
    			"X-Amz-Server-Side-Encryption-Customer-Algorithm": []string{"AES256"},
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jul 13 14:52:15 UTC 2022
    - 21.4K bytes
    - Viewed (0)
  6. 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)
  7. tests/test_sub_callbacks.py

                                    # TODO: remove when deprecating Pydantic v1
                                    {"title": "Title", "type": "string"}
                                ),
                                "customer": {"title": "Customer", "type": "string"},
                                "total": {"title": "Total", "type": "number"},
                            },
                        },
                        "InvoiceEvent": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jul 07 17:12:13 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  8. 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)
  9. pilot/pkg/networking/core/tracing_test.go

    	assert.Equal(t, want, hcm.Tracing)
    }
    
    func defaultTracingTags() []*tracing.CustomTag {
    	return append(slices.Clone(optionalPolicyTags),
    		&tracing.CustomTag{
    			Tag: "istio.canonical_revision",
    			Type: &tracing.CustomTag_Literal_{
    				Literal: &tracing.CustomTag_Literal{
    					Value: "latest",
    				},
    			},
    		},
    		&tracing.CustomTag{
    			Tag: "istio.canonical_service",
    			Type: &tracing.CustomTag_Literal_{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 20:47:52 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  10. platforms/jvm/ear/src/test/groovy/org/gradle/plugins/ear/EarPluginTest.groovy

        }
    
        def "applies mappings to archive tasks"() {
            when:
            project.pluginManager.apply(EarPlugin)
    
            and:
            def task = project.task(type: Ear, 'customEar')
    
            then:
            task.destinationDirectory.get() == project.libsDirectory.get()
        }
    
        def "works with java base plugin applied before ear plugin"() {
            when:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 02 14:55:02 UTC 2023
    - 11.7K bytes
    - Viewed (0)
Back to top