Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for applicationId (0.34 sec)

  1. fastapi/applications.py

                    Boolean indicating if debug tracebacks should be returned on server
                    errors.
    
                    Read more in the
                    [Starlette docs for Applications](https://www.starlette.io/applications/#instantiating-the-application).
                    """
                ),
            ] = False,
            routes: Annotated[
                Optional[List[BaseRoute]],
                Doc(
                    """
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  2. cmd/server_test.go

    	// Uploading a new object with Content-Type  "application/json".
    	objectName = "test-object.json"
    	buffer2 := bytes.NewReader([]byte("hello world"))
    	request, err = newTestSignedRequest(http.MethodPut, getPutObjectURL(s.endPoint, bucketName, objectName),
    		int64(buffer2.Len()), buffer2, s.accessKey, s.secretKey, s.signer)
    	c.Assert(err, nil)
    	// setting the request header to be application/json.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  3. src/net/http/serve_test.go

    		{MethodHead, nil, "text/html; charset=utf-8", ""},
    		{MethodPost, nil, "", ""},
    		{MethodDelete, nil, "", ""},
    		{"foo", nil, "", ""},
    		{MethodGet, &ctHeader{[]string{"application/test"}}, "application/test", ""},
    		{MethodGet, &ctHeader{[]string{}}, "", ""},
    		{MethodGet, &ctHeader{nil}, "", ""},
    	}
    	for _, tt := range tests {
    		req := httptest.NewRequest(tt.method, "http://example.com/qux/", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  4. src/debug/elf/elf.go

    	ELFOSABI_CLOUDABI   OSABI = 17  /* Nuxi CloudABI */
    	ELFOSABI_ARM        OSABI = 97  /* ARM */
    	ELFOSABI_STANDALONE OSABI = 255 /* Standalone (embedded) application */
    )
    
    var osabiStrings = []intName{
    	{0, "ELFOSABI_NONE"},
    	{1, "ELFOSABI_HPUX"},
    	{2, "ELFOSABI_NETBSD"},
    	{3, "ELFOSABI_LINUX"},
    	{4, "ELFOSABI_HURD"},
    	{5, "ELFOSABI_86OPEN"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    			accessKey:        credentials.AccessKey,
    			secretKey:        credentials.SecretKey,
    			metadata: map[string]string{
    				"Content-Type": "application/json",
    			},
    			expectedRespStatus: http.StatusOK,
    		},
    
    		// Test case - 2.
    		// Test case with invalid source object.
    		2: {
    			bucketName:       bucketName,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	ts := httptest.NewTLSServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		klog.V(5).Infof("request: %+v", *r)
    		switch r.URL.Path {
    		case "/.testing/keys":
    			w.Header().Set("Content-Type", "application/json")
    			keyBytes, err := json.Marshal(keys)
    			if err != nil {
    				t.Fatalf("unexpected error while marshaling keys: %v", err)
    			}
    			klog.V(5).Infof("%v: returning: %+v", r.URL, string(keyBytes))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers_test.go

    						{
    							Type: autoscaling.ContainerResourceMetricSourceType,
    							ContainerResource: &autoscaling.ContainerResourceMetricSource{
    								Name:      api.ResourceCPU,
    								Container: "application",
    								Target: autoscaling.MetricTarget{
    									Type:         autoscaling.AverageValueMetricType,
    									AverageValue: resource.NewMilliQuantity(100, resource.DecimalSI),
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

          // o - output dim size, i - input dim size, s - stride, P - total pads
          // o = (i-k+1) + (s-1)(i-1) + P
          // Where the first term is the kernel applications on the input,
          // the second term is the additional applications from the stride
          // and P is a term that captures the total padding. After expanding we get
          // o = si + k - s + 2 + P
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  9. src/net/http/transport_test.go

    		// requests don't race with the call to SetRSTAvoidanceDelay for a retry.
    		defer cst.close()
    		ts := cst.ts
    		c := ts.Client()
    
    		res, err := c.Post(ts.URL, "application/octet-stream", neverEnding('a'))
    		if err != nil {
    			return fmt.Errorf("Post: %v", err)
    		}
    		got, err := io.ReadAll(res.Body)
    		if err != nil {
    			return fmt.Errorf("Body ReadAll: %v", err)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  10. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/AndroidSantaTrackerCachingSmokeTest.groovy

    import static org.gradle.testkit.runner.TaskOutcome.UP_TO_DATE
    
    class AndroidSantaTrackerCachingSmokeTest extends AbstractAndroidSantaTrackerSmokeTest {
    
        def "can cache Santa Tracker Android application (agp=#agpVersion)"() {
    
            given:
            AGP_VERSIONS.assumeCurrentJavaVersionIsSupportedBy(agpVersion)
    
            and:
            def originalDir = temporaryFolder.createDir("original")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 13:45:43 UTC 2024
    - 209.8K bytes
    - Viewed (0)
Back to top