Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for applicationId (0.19 sec)

  1. tests/test_application.py

                                "description": "Successful Response",
                                "content": {"application/json": {"schema": {}}},
                            },
                            "422": {
                                "description": "Validation Error",
                                "content": {
                                    "application/json": {
                                        "schema": {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  2. .teamcity/test-buckets.json

    				"subprojects":[
    					"language-native",
    					"tooling-native",
    					"core-api",
    					"wrapper-main",
    					"build-events",
    					"reporting",
    					"resources-s3",
    					"diagnostics",
    					"plugins-application",
    					"language-jvm"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"code-quality",
    					"signing",
    					"ide-native",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  3. src/crypto/tls/conn.go

    	// recordSizeBoostThreshold is the number of bytes of application data
    	// sent after which the TLS record size will be increased to the
    	// maximum.
    	recordSizeBoostThreshold = 128 * 1024
    )
    
    // maxPayloadSizeForWrite returns the maximum TLS payload size to use for the
    // next application data record. There is the following trade-off:
    //
    //   - For latency-sensitive applications, such as web browsing, each TLS
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/validation/validation_test.go

    				Metrics: []autoscaling.MetricSpec{{
    					Type: autoscaling.ContainerResourceMetricSourceType,
    					ContainerResource: &autoscaling.ContainerResourceMetricSource{
    						Name:      api.ResourceCPU,
    						Container: "test-application",
    						Target: autoscaling.MetricTarget{
    							Type:               autoscaling.UtilizationMetricType,
    							AverageUtilization: utilpointer.Int32(70),
    						},
    					},
    				}},
    			},
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/provider-task-properties.txt

    Method <org.gradle.jvm.application.tasks.CreateStartScripts.getApplicationName()> does not have raw return type assignable to org.gradle.api.provider.Property in (CreateStartScripts.java:0)
    Method <org.gradle.jvm.application.tasks.CreateStartScripts.getDefaultJvmOpts()> does not have raw return type assignable to org.gradle.api.provider.Property in (CreateStartScripts.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:33:20 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  6. src/runtime/mgcscavenge.go

    // application down to a goal.
    //
    // Before we consider what this looks like, we need to split the world into two
    // halves. One in which a memory limit is not set, and one in which it is.
    //
    // For the former, the goal is defined as:
    //   (retainExtraPercent+100) / 100 * (heapGoal / lastHeapGoal) * lastHeapInUse
    //
    // Essentially, we wish to have the application's RSS track the heap goal, but
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/crypto/tls/common.go

    	// Algorithms Extension is being used (see RFC 5246, Section 7.4.1.4.1).
    	SignatureSchemes []SignatureScheme
    
    	// SupportedProtos lists the application protocols supported by the client.
    	// SupportedProtos is set only if the Application-Layer Protocol
    	// Negotiation Extension is being used (see RFC 7301, Section 3.1).
    	//
    	// Servers can select a protocol by setting Config.NextProtos in a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

    [[sec:copy_deploy]]
    == Deploying single files into application servers
    
    Deploying a single file to an application server typically refers to the process of transferring a packaged application artifact, such as a WAR file, to the application server's deployment directory.
    
    === Using the `Copy` task
    
    When working with application servers, you can use a `Copy` task to deploy the application archive (e.g. a WAR file).
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
  9. operator/pkg/apis/istio/v1alpha1/values_types.proto

      //
      // See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
      TargetUtilizationConfig memory = 4 [deprecated = true];
    
      // K8s utilization setting for HorizontalPodAutoscaler target.
      //
      // See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
      TargetUtilizationConfig cpu = 5 [deprecated = true];
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  10. src/net/http/request.go

    		return
    	}
    	ct := r.Header.Get("Content-Type")
    	// RFC 7231, section 3.1.1.5 - empty type
    	//   MAY be treated as application/octet-stream
    	if ct == "" {
    		ct = "application/octet-stream"
    	}
    	ct, _, err = mime.ParseMediaType(ct)
    	switch {
    	case ct == "application/x-www-form-urlencoded":
    		var reader io.Reader = r.Body
    		maxFormSize := int64(1<<63 - 1)
    		if _, ok := r.Body.(*maxBytesReader); !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
Back to top