Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 103 for examine (0.16 sec)

  1. fastapi/routing.py

        `APIRouter` class, used to group *path operations*, for example to structure
        an app in multiple files. It would then be included in the `FastAPI` app, or
        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
    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. src/net/http/serve_test.go

    	mux := NewServeMux()
    	mux.Handle("example.com/pkg/foo/", stringHandler("example.com/pkg/foo/"))
    	mux.Handle("example.com/pkg/bar", stringHandler("example.com/pkg/bar"))
    	mux.Handle("example.com/pkg/bar/", stringHandler("example.com/pkg/bar/"))
    	mux.Handle("example.com:3000/pkg/connect/", stringHandler("example.com:3000/pkg/connect/"))
    	mux.Handle("example.com:9000/", stringHandler("example.com:9000/"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  3. src/net/http/transport_test.go

    	{want: "<nil>"},
    
    	{noenv: "example.com", req: "http://example.com/", env: "proxy", want: "<nil>"},
    	{noenv: ".example.com", req: "http://example.com/", env: "proxy", want: "http://proxy"},
    	{noenv: "ample.com", req: "http://example.com/", env: "proxy", want: "http://proxy"},
    	{noenv: "example.com", req: "http://foo.example.com/", env: "proxy", want: "<nil>"},
    	{noenv: ".foo.com", req: "http://example.com/", env: "proxy", want: "http://proxy"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"url('/path').getScheme() == ''",
    				"url('https://example.com/').getScheme() == 'https'",
    				"url('https://example.com:80/').getHost() == 'example.com:80'",
    				"url('https://example.com/').getHost() == 'example.com'",
    				"url('https://[::1]:80/').getHost() == '[::1]:80'",
    				"url('https://[::1]/').getHost() == '[::1]'",
    				"url('/path').getHost() == ''",
    				"url('https://example.com:80/').getHostname() == 'example.com'",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. pkg/printers/internalversion/printers_test.go

    				Controller: "example.com/controller",
    				Parameters: &networking.IngressClassParametersReference{
    					APIGroup: utilpointer.StringPtr("example.com"),
    					Kind:     "customgroup",
    					Name:     "example",
    				},
    			},
    		},
    		expected: []metav1.TableRow{{Cells: []interface{}{"test1", "example.com/controller", "customgroup.example.com/example", "10y"}}},
    	}, {
    		name: "example without params",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  6. src/net/http/server.go

    //
    //   - "/index.html" matches the path "/index.html" for any host and method.
    //   - "GET /static/" matches a GET request whose path begins with "/static/".
    //   - "example.com/" matches any request to the host "example.com".
    //   - "example.com/{$}" matches requests with host "example.com" and path "/".
    //   - "/b/{bucket}/o/{objectname...}" matches paths whose first segment is "b"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        is a boolean value. For example:
    
        ```mlir
        tfl.if %b  {
          ...
        } else {
          ...
        }
        ```
    
        `tfl.if` may also return results that are defined in its regions. The
        values defined are determined by which execution path is taken.
    
        Example:
    
        ```mlir
        %x, %y = tfl.if %b -> (tensor<f32>, tensor<f32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__autoscaling__v2_openapi.json

              },
              "pods": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.autoscaling.v2.PodsMetricSource"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 186.6K bytes
    - Viewed (0)
  9. src/main/java/jcifs/smb1/smb1/SmbFile.java

     * <code>smb1://domain;username:password@server/share/path/to/file.txt</code></td><td>
     * A prototypical example that uses all the fields.
     * </td></tr>
     * 
     * <tr><td width="20%"><code>smb1://myworkgroup/angus/ &lt;-- ILLEGAL </code></td><td>
     * Despite the hierarchial relationship between workgroups, servers, and
     * filesystems this example is not valid.
     * </td></tr>
     *
     * <tr><td width="20%">
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Mon Mar 13 12:00:57 UTC 2023
    - 107.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/util/concurrent/ClosingFuture.java

     *         .transform((closer, result) -> result.get("userName"), directExecutor())
     *         .catching(DBException.class, e -> "no user", directExecutor())
     *         .finishToFuture();
     * }</pre>
     *
     * In this example, when the {@code userName} {@link Future} is done, the transaction and the query
     * result cursor will both be closed, even if the operation is cancelled or fails.
     *
     * <h4>Manually closing</h4>
     *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
Back to top