Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 284 for customJar (0.13 sec)

  1. tests/test_tutorial/test_openapi_callbacks/test_tutorial001.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
    - 9K bytes
    - Viewed (0)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/documentation/docs/src/snippets/ear/earCustomized/kotlin/ear/build.gradle.kts

        deploymentDescriptor {  // custom entries for application.xml:
    //      fileName = "application.xml"  // same as the default value
    //      version = "6"  // same as the default value
            applicationName = "customear"
            initializeInOrder = true
            displayName = "Custom Ear"  // defaults to project.name
            // defaults to project.description if not set
            description = "My customized EAR for the Gradle documentation"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. docs/site-replication/run-ssec-object-replication.sh

    src_obj1_etag=$(echo "${stat_out1}" | jq '.etag')
    src_obj1_size=$(echo "${stat_out1}" | jq '.size')
    src_obj1_md5=$(echo "${stat_out1}" | jq '.metadata."X-Amz-Server-Side-Encryption-Customer-Key-Md5"')
    echo "Stat minio1/test-bucket/defpartsize"
    ./mc stat minio1/test-bucket/defpartsize --enc-c "minio1/test-bucket/defpartsize=${TEST_MINIO_ENC_KEY}" --insecure --json
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  9. platforms/jvm/language-java/src/integTest/resources/org/gradle/api/tasks/javadoc/JavadocIntegrationTest/handlesTagsAndTaglets/src/main/java/Person.java

    /**
     * This is the Person class.
     *
     * @author author value
     * @version version value
     * @deprecated deprecated value
     * @customtag custom tag value
     * @customtaglet custom taglet value
     */
    public class Person {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 214 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/tutorial/antLoadfile/groovy/antLoadfileResources/agile.manifesto.txt

    Individuals and interactions over processes and tools
    Working software over comprehensive documentation
    Customer collaboration  over contract negotiation
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 196 bytes
    - Viewed (0)
Back to top