Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for application (0.21 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(
                    """
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  2. istioctl/pkg/authz/testdata/configdump.yaml

             "port_value": 9080
            }
           },
           "filter_chains": [
            {
             "filter_chain_match": {
              "transport_protocol": "raw_buffer",
              "application_protocols": [
               "http/1.1",
               "h2c"
              ]
             },
             "filters": [
              {
               "name": "envoy.filters.network.http_connection_manager",
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed Jun 21 14:20:23 GMT 2023
    - 206.7K bytes
    - Viewed (2)
  3. 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.
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/CallTest.kt

          executeSynchronously(
            "/",
            "Accept-Language",
            "en-US",
            "Accept-Charset",
            "UTF-8",
          )
    
        // Check the merged response. The request is the application's original request.
        cacheHit.assertCode(200)
          .assertBody("A")
          .assertHeaders(
            Headers.Builder()
              .add("ETag", "v1")
              .add("Cache-Control", "max-age=60")
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Wed Apr 10 19:46:48 GMT 2024
    - 142.5K bytes
    - Viewed (0)
  5. fastapi/routing.py

        in another `APIRouter` (ultimately included in the app).
    
        Read more about it in the
        [FastAPI docs for Bigger Applications - Multiple Files](https://fastapi.tiangolo.com/tutorial/bigger-applications/).
    
        ## Example
    
        ```python
        from fastapi import APIRouter, FastAPI
    
        app = FastAPI()
        router = APIRouter()
    
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  6. 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,
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Sun Apr 28 17:53:50 GMT 2024
    - 160K bytes
    - Viewed (0)
  7. cmd/bucket-replication.go

    	ReplicationReset = "replication-reset"
    	// ReplicationStatus has internal replication status - stringified representation of target's replication status for all replication
    	// activity initiated from this cluster
    	ReplicationStatus = "replication-status"
    	// ReplicationTimestamp - the last time replication was initiated on this cluster for this object version
    	ReplicationTimestamp = "replication-timestamp"
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Mon Apr 22 17:49:30 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  8. cmd/site-replication.go

    				v2.Failed.ErrCounts[k] += v
    			}
    			if v2.XferStats == nil {
    				v2.XferStats = make(map[replication.MetricName]replication.XferStats)
    			}
    			for rm, x := range v.XferStats {
    				x2, ok := v2.XferStats[replication.MetricName(rm)]
    				if !ok {
    					x2 = replication.XferStats{}
    				}
    				x2.AvgRate += x.Avg
    				x2.CurrRate += x.Curr
    				if x.Peak > x2.PeakRate {
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 184.1K bytes
    - Viewed (1)
  9. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        public static final String ERRORS_not_found_on_file_system = "{errors.not_found_on_file_system}";
    
        /** The key of the message: Could not open {0}. <br/>Please check if the file is associated with an application. */
        public static final String ERRORS_could_not_open_on_system = "{errors.could_not_open_on_system}";
    
        /** The key of the message: No more results could be displayed. */
    Java
    - Registered: Mon Apr 29 08:04:11 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 119.9K bytes
    - Viewed (0)
  10. docs/metrics/prometheus/grafana/grafana-replication.png

    grafana-replication.png...
    PNG Image
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Aug 31 15:31:16 GMT 2023
    - 227.7K bytes
    - Viewed (0)
Back to top