Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 761 for course (0.13 sec)

  1. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    she had never done such a thing before, but she remembered having
    seen in her brother's Latin Grammar, `A mouse--of a mouse--to a
    mouse--a mouse--O mouse!'  The Mouse looked at her rather
    inquisitively, and seemed to her to wink with one of its little
    eyes, but it said nothing.
    
      `Perhaps it doesn't understand English,' thought Alice; `I
    daresay it's a French mouse, come over with William the
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  2. docs/en/docs/advanced/custom-response.md

        A `Response` returned directly by your *path operation function* won't be documented in OpenAPI (for example, the `Content-Type` won't be documented) and won't be visible in the automatic interactive docs.
    
    !!! info
        Of course, the actual `Content-Type` header, status code, etc, will come from the `Response` object you returned.
    
    ### Document in OpenAPI and override `Response`
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/concepts.md

    Of course, there are some cases where there's no problem in running the previous steps multiple times, in that case, it's a lot easier to handle.
    
    !!! tip
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 18K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "cache_list_fetched_objects_total",
    			Help:           "Number of objects read from watch cache in the course of serving a LIST request",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource_prefix", "index"},
    	)
    	listCacheNumReturned = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  5. docs/en/docs/advanced/security/http-basic-auth.md

    #### A "professional" attack
    
    Of course, the attackers would not try all this by hand, they would write a program to do it, possibly with thousands or millions of tests per second. And would get just one extra correct letter at a time.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Jan 11 14:33:05 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  6. src/internal/types/testdata/examples/functions.go

    // result type from the assignment to keep things simple and
    // easy to understand.
    var _ = new[int]()
    var _ *float64 = new[float64]() // the result type is indeed *float64
    
    // A function may have multiple type parameters, of course.
    func foo[A, B, C any](a A, b []B, c *C) B {
    	// do something here
    	return b[0]
    }
    
    // As before, we can pass type parameters explicitly.
    var s = foo[int, string, float64](1, []string{"first"}, new[float64]())
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 30 20:19:38 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params.md

    ```
    http://127.0.0.1:8000/items/foo-item?needy=sooooneedy
    ```
    
    ...this would work:
    
    ```JSON
    {
        "item_id": "foo-item",
        "needy": "sooooneedy"
    }
    ```
    
    And of course, you can define some parameters as required, some as having a default value, and some entirely optional:
    
    === "Python 3.10+"
    
        ```Python hl_lines="8"
        {!> ../../../docs_src/query_params/tutorial006_py310.py!}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Oct 20 09:08:42 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/jenkins.adoc

    ----
    
    The following section will describe how to build the project with the help of Jenkins.
    
    == Setup Jenkins
    
    Jenkins is one of the most prominent players in the field.
    In the course of this section, you'll learn how to set up Jenkins, configure a job to pull the source code from GitHub and run the Gradle build.
    
    === Install and start Jenkins
    
    On the https://jenkins.io/download/[Jenkins website] you can pick from a variety of distributions.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  9. docs/en/docs/advanced/websockets.md

    Or you might have any other way to communicate with the WebSocket endpoint.
    
    ---
    
    But for this example, we'll use a very simple HTML document with some JavaScript, all inside a long string.
    
    This, of course, is not optimal and you wouldn't use it for production.
    
    In production you would have one of the options above.
    
    But it's the simplest way to focus on the server-side of WebSockets and have a working example:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 02 22:37:31 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  10. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/configurer/HierarchicalElementDeduplicator.java

     * For example, an elements with the name segments <code>root:impl:impl-simple</code> would initially get the name
     * <code>root-impl-impl-simple</code> and would then be shortened to <code>root-impl-simple</code>
     * This shortening is of course only applied if it does not introduce a new name conflict.
     *
     * @param <T> the type of element to de-duplicate
     */
    public class HierarchicalElementDeduplicator<T> {
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.6K bytes
    - Viewed (0)
Back to top