Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Fontan (0.31 sec)

  1. fastapi/routing.py

                        `response_model` would be used to serialize that object into the
                        corresponding JSON.
                    * Filtering: the JSON sent to the client will only contain the data
                        (fields) defined in the `response_model`. If you returned an object
                        that contains an attribute `password` but the `response_model` does
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 170.1K bytes
    - Viewed (0)
  2. fastapi/applications.py

                        text representation.
                    * `externalDocs`: Additional external documentation for this tag. If
                        provided, it would contain a `dict` with:
                        * `description`: A short description of the target documentation.
                            [CommonMark syntax](https://commonmark.org/) MAY be used for
    Python
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Tue Apr 02 02:48:51 GMT 2024
    - 172.2K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       * removal operations, and these are reflected in the underlying map.
       *
       * <p>It's acceptable for the underlying map to contain null keys, and even null values provided
       * that the function is capable of accepting null input. The transformed map might contain null
       * values, if the function sometimes gives a null result.
       *
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Wed May 01 18:44:57 GMT 2024
    - 159.6K bytes
    - Viewed (0)
  4. cmd/server_test.go

    	response, err = s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response.StatusCode, http.StatusOK)
    
    	objectName2 := "testObject2"
    	// Unlike the actual PUT object request, the request to Copy Object doesn't contain request body,
    	// empty body with the "X-Amz-Copy-Source" header pointing to the object to copies it in the backend.
    	request, err = newTestRequest(http.MethodPut, getPutObjectURL(s.endPoint, bucketName, objectName2), 0, nil)
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Feb 22 06:26:06 GMT 2024
    - 108K bytes
    - Viewed (0)
  5. cmd/object-handlers.go

    	// so we do not want to override them, copy them instead.
    	for k, v := range encMetadata {
    		srcInfo.UserDefined[k] = v
    	}
    
    	// Ensure that metadata does not contain sensitive information
    	crypto.RemoveSensitiveEntries(srcInfo.UserDefined)
    
    	// If we see legacy source, metadataOnly we have to overwrite the content.
    	if srcInfo.Legacy {
    		srcInfo.metadataOnly = false
    	}
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu May 02 20:15:54 GMT 2024
    - 125.2K bytes
    - Viewed (0)
  6. doc/go1.17_spec.html

    SwitchStmt = ExprSwitchStmt | TypeSwitchStmt .
    </pre>
    
    <p>
    There are two forms: expression switches and type switches.
    In an expression switch, the cases contain expressions that are compared
    against the value of the switch expression.
    In a type switch, the cases contain types that are compared against the
    type of a specially annotated switch expression.
    The switch expression is evaluated exactly once in a switch statement.
    </p>
    HTML
    - Registered: Tue May 07 11:14:38 GMT 2024
    - Last Modified: Thu Apr 11 20:22:45 GMT 2024
    - 211.6K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    		if anonParam != anonymizeStrict {
    			return addr
    		}
    		newAddr, found := hostAnonymizer[addr]
    		if found {
    			return newAddr
    		}
    
    		// If we reach here, it means that the given addr doesn't contain any of the hosts.
    		// Return it as is. Can happen for drive paths in non-distributed mode
    		return addr
    	}
    
    	// anonymizedAddr - Updated the addr of the node info with anonymized one
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Mon Apr 29 17:39:04 GMT 2024
    - 97.8K bytes
    - Viewed (2)
  8. api/maven-api-model/src/main/mdo/maven.mdo

                  {@code war},
                  {@code ear},
                  {@code pom}.
                Plugins can create their own packaging, and
                therefore their own packaging types,
                so this list does not contain all possible types.
              </description>
              <type>String</type>
              <defaultValue>jar</defaultValue>
            </field>
    
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Tue Apr 23 13:29:46 GMT 2024
    - 115.1K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    kyotamba.kyoto.jp
    kyotanabe.kyoto.jp
    kyotango.kyoto.jp
    maizuru.kyoto.jp
    minami.kyoto.jp
    minamiyamashiro.kyoto.jp
    miyazu.kyoto.jp
    muko.kyoto.jp
    nagaokakyo.kyoto.jp
    nakagyo.kyoto.jp
    nantan.kyoto.jp
    oyamazaki.kyoto.jp
    sakyo.kyoto.jp
    seika.kyoto.jp
    tanabe.kyoto.jp
    uji.kyoto.jp
    ujitawara.kyoto.jp
    wazuka.kyoto.jp
    yamashina.kyoto.jp
    yawata.kyoto.jp
    asahi.mie.jp
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Wed Dec 20 23:27:07 GMT 2023
    - 240.3K bytes
    - Viewed (3)
  10. tensorflow/c/c_api.cc

        } else {
          status->status = AddSymbolicGradients(scope, y_arg, x_arg, &dy_arg);
        }
    
        // Update g->name_map with the name_map from the scope, which will contain
        // the new gradient ops.
        for (int i = first_new_node_id; i < g->graph.num_node_ids(); ++i) {
          Node* n = g->graph.FindNodeId(i);
          if (n == nullptr) continue;
    
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 102.3K bytes
    - Viewed (0)
Back to top