Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 32 for applicationId (0.5 sec)

  1. samples/bookinfo/src/productpage/productpage.py

    #
    # Although Istio proxies are able to automatically send spans, they need some
    # hints to tie together the entire trace. Applications need to propagate the
    # appropriate HTTP headers so that when the proxies send span information, the
    # spans can be correlated correctly into a single trace.
    #
    # To do this, an application needs to collect and propagate headers from the
    # incoming request to any outgoing requests. The choice of headers to propagate
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 10 14:35:54 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. docs/en/data/external_links.yml

    https://pythonbytes.fm/ link: https://www.pythonpodcast.com/fastapi-web-application-framework-episode-259/ title: 'Do you dare to press "."? - Episode 247 - Dan #6: SQLModel - use the same models for SQL and FastAPI' - author: Podcast.`__init__` author_link: https://www.pythonpodcast.com/ link: https://www.pythonpodcast.com/fastapi-web-application-framework-episode-259/ title: Build The Next Generation Of Python Web Applications With FastAPI - Episode 259 - interview to Sebastían Ramírez (tiangolo)...
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Jun 12 00:47:57 UTC 2024
    - 22K bytes
    - Viewed (0)
  3. platforms/documentation/docs/build.gradle

            }
    
            javaJunit5TestForApplication {
                target = "application"
            }
            javaJunit5TestForListLibrary {
                target = "list"
            }
            javaJunit5TestForUtilitiesLibrary {
                target = "utilities"
            }
            javaJunit5IntegrationTestForApplication {
                target = "application"
            }
            javaJunit5IntegrationTestForUtilitiesLibrary {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 15:37:11 UTC 2024
    - 42K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheJavaIntegrationTest.groovy

            assertTestsExecuted("ThingTest", "ok")
        }
    
        def "build on Java application project with no dependencies"() {
            given:
            settingsFile << """
                rootProject.name = 'someapp'
            """
            buildFile << """
                plugins { id 'application' }
                application.mainClass = 'Thing'
            """
            file("src/main/java/Thing.java") << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 21.9K bytes
    - Viewed (0)
  5. cluster/gce/upgrade.sh

      echo "The default etcd storage media type in 1.6 has changed from application/json to application/vnd.kubernetes.protobuf."
      echo "Documentation about the change can be found at https://kubernetes.io/docs/admin/etcd_upgrade."
      echo ""
      echo "ETCD2 DOES NOT SUPPORT PROTOBUF: If you wish to have to ability to downgrade to etcd2 later application/json must be used."
      echo ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 25.2K bytes
    - Viewed (0)
  6. cmd/bucket-listobjects-handlers.go

    // of the objects in a bucket. You can use the request parameters as selection
    // criteria to return a subset of the objects in a bucket.
    //
    // NOTE: It is recommended that this API to be used for application development.
    // MinIO continues to support ListObjectsV1 and V2 for supporting legacy tools.
    func (api objectAPIHandlers) ListObjectsV2MHandler(w http.ResponseWriter, r *http.Request) {
    	ctx := newContext(r, w, "ListObjectsV2M")
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. cmd/signature-v4_test.go

    				"X-Amz-Credential":      fmt.Sprintf(credentialTemplate, accessKeyID, now.Format(yyyymmdd), region),
    				"X-Amz-Content-Sha256":  payloadSHA256,
    				"response-content-type": "application/json",
    			},
    			headers: map[string]string{
    				"X-Amz-Date":           now.Format(iso8601Format),
    				"X-Amz-Content-Sha256": payloadSHA256,
    			},
    			region:   "",
    			expected: ErrSignatureDoesNotMatch,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiIdeaProjectIntegrationTest.groovy

            then:
            fixture.assertStateStored {
                // IdeaProject, plugin application "model", intermediate IsolatedGradleProjectInternal, IsolatedIdeaModuleInternal
                modelsCreated(":", models(IdeaProject, pluginApplyingModel, IsolatedGradleProjectInternal, IsolatedIdeaModuleInternal))
                // plugin application "model", intermediate IsolatedGradleProject, IsolatedIdeaModule
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.9K bytes
    - Viewed (0)
  9. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/DebugSymbolRenderer.kt

            return prettyPrint { analysisSession.renderSymbol(symbol, this@prettyPrint) }
        }
    
        public fun renderAnnotationApplication(analysisSession: KaSession, application: KaAnnotation): String {
            return prettyPrint { analysisSession.renderAnnotationApplication(application, this@prettyPrint) }
        }
    
        public fun renderType(analysisSession: KaSession, type: KaType): String {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 19.8K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildOperationsIntegrationTest.groovy

                    includeBuild '../lib'
                """
                file('build.gradle') << """
                    plugins {
                        id 'java'
                        id 'application'
                    }
                    application {
                       mainClass = 'Main'
                    }
                    dependencies {
                        implementation 'org.test:lib:1.0'
                    }
                """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
Back to top