Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for Whatever (0.29 sec)

  1. fastapi/routing.py

                        not include that field, the JSON sent to the client would not have
                        that `password`.
                    * Validation: whatever you return will be serialized with the
                        `response_model`, converting any data as necessary to generate the
                        corresponding JSON. But if the data in the object returned is not
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Apr 02 02:48:51 UTC 2024
    - 170.1K bytes
    - Viewed (0)
  2. fastapi/applications.py

                        not include that field, the JSON sent to the client would not have
                        that `password`.
                    * Validation: whatever you return will be serialized with the
                        `response_model`, converting any data as necessary to generate the
                        corresponding JSON. But if the data in the object returned is not
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 00:48:03 UTC 2024
    - 172.2K bytes
    - Viewed (0)
  3. cmd/object-handlers.go

    			if err != nil {
    				writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    				return
    			}
    			event := evalActionFromLifecycle(ctx, *lc, rcfg, replcfg, objInfo)
    			if event.Action.Delete() {
    				// apply whatever the expiry rule is.
    				applyExpiryRule(event, lcEventSrc_s3GetObject, objInfo)
    				if !event.Action.DeleteRestored() {
    					// If the ILM action is not on restored object return error.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 124.2K bytes
    - Viewed (0)
  4. src/net/http/server.go

    				err = w.reqBody.Close()
    				if err != nil {
    					w.closeAfterReply = true
    				}
    			default:
    				// Some other kind of error occurred, like a read timeout, or
    				// corrupt chunked encoding. In any case, whatever remains
    				// on the wire must not be parsed as another HTTP request.
    				w.closeAfterReply = true
    			}
    		}
    
    		if tooBig {
    			w.requestTooLarge()
    			delHeader("Connection")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  5. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

                    conf
                }
                task insight(type: DependencyInsightReportTask) {
                    showingAllVariants = false
                    setDependencySpec { it.requested.module == 'whatever' }
                    configuration = configurations.conf
                }
            """
    
            when:
            run "insight"
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  6. pkg/controller/garbagecollector/garbagecollector_test.go

    						{Name: "services", Namespaced: true, Kind: "Service"},
    					},
    				},
    				{
    					// Invalid GroupVersion, should be ignored
    					GroupVersion: "foo//whatever",
    					APIResources: []metav1.APIResource{
    						{Name: "bars", Namespaced: true, Kind: "Bar", Verbs: metav1.Verbs{"delete", "list", "watch"}},
    					},
    				},
    				{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  7. cluster/gce/gci/configure-helper.sh

      # NOTE: These locations on the PD store persistent data, so to maintain
      # upgradeability, these locations should not change.  If they do, take care
      # to maintain a migration path from these locations to whatever new
      # locations.
    
      # Contains all the data stored in etcd.
      mkdir -p "${mount_point}/var/etcd"
      chmod 700 "${mount_point}/var/etcd"
      ln -s -f "${mount_point}/var/etcd" /var/etcd
      mkdir -p /etc/srv
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

            "properties": {
              "ready": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
  9. src/reflect/value.go

    	if dummy.b {
    		escapes(*(*any)(x)) // the dereference may not always be safe, but never executed
    	}
    }
    
    // This is just a wrapper around abi.NoEscape. The inlining heuristics are
    // finnicky and for whatever reason treat the local call to noescape as much
    // lower cost with respect to the inliner budget. (That is, replacing calls to
    // noescape with abi.NoEscape will cause inlining tests to fail.)
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  10. cluster/gce/util.sh

          DEFAULT_GCI_PROJECT=cos-cloud
        fi
    
        # If the node image is not set, we use the latest image based on image
        # family.
        # Otherwise, we respect whatever is set by the user.
        NODE_IMAGE_PROJECT=${KUBE_GCE_NODE_PROJECT:-${DEFAULT_GCI_PROJECT}}
        local kube_node_image
    
        kube_node_image="${KUBE_GCE_NODE_IMAGE:-${GCI_VERSION}}"
        if [[ -z "${kube_node_image}" ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
Back to top