Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 716 for course (0.12 sec)

  1. guava/src/com/google/common/collect/ImmutableCollection.java

       * type. That said, we could *accept* a `@Nullable T[]` (which, given that we treat arrays as
       * covariant, would still permit a plain `T[]`) and return a plain `T[]`. But of course that would
       * require its own suppression, since it is also unsound. toArray(T[]) is just a mess from a
       * nullness perspective. The signature below at least has the virtue of being relatively simple.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 18.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/plan/DefaultPlanExecutor.java

                }
            });
        }
    
        private static class PlanDetails {
            final WorkSource<Object> source;
            final Action<Object> worker;
    
            public PlanDetails(WorkSource<Object> source, Action<Object> worker) {
                this.source = source;
                this.worker = worker;
            }
        }
    
        private static class WorkItem {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 16:29:26 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  3. docs/en/docs/deployment/docker.md

    It would depend mainly on the tool you use to **install** those requirements.
    
    The most common way to do it is to have a file `requirements.txt` with the package names and their versions, one per line.
    
    You would of course use the same ideas you read in [About FastAPI versions](versions.md){.internal-link target=_blank} to set the ranges of versions.
    
    For example, your `requirements.txt` could look like:
    
    ```
    fastapi>=0.112.0,<0.113.0
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 18 23:43:13 UTC 2024
    - 34K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/ImmutableCollection.java

       * type. That said, we could *accept* a `@Nullable T[]` (which, given that we treat arrays as
       * covariant, would still permit a plain `T[]`) and return a plain `T[]`. But of course that would
       * require its own suppression, since it is also unsound. toArray(T[]) is just a mess from a
       * nullness perspective. The signature below at least has the virtue of being relatively simple.
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 21.5K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    	// Adjust which prefixes will be displayed.
    	// The rule is to display all the prefixes not implied by
    	// the usual instruction display, that is, all the prefixes
    	// except the ones with PrefixImplicit set.
    	// However, of course, there are exceptions to the rule.
    	switch inst.Op {
    	case CRC32:
    		// CRC32 has a mandatory F2 prefix.
    		// If there are multiple F2s and no F3s, the extra F2s do not print.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  6. src/math/big/natdiv.go

    each step is more work.
    
    Where basic long division uses a 2-by-1-digit division to guess the initial q̂,
    the new algorithm must use a 2-by-1-wide-digit division, which is of course
    really an n-by-n/2-digit division. That's OK: if we implement n-digit division
    in terms of n/2-digit division, the recursion will terminate when the divisor
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 14 17:02:38 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  7. docs/en/docs/tutorial/query-params-str-validations.md

        ```
    
    But know that this is deprecated and it should be updated to use the new parameter `pattern`. 🤓
    
    ## Default values
    
    You can, of course, use default values other than `None`.
    
    Let's say that you want to declare the `q` query parameter to have a `min_length` of `3`, and to have a default value of `"fixedquery"`:
    
    === "Python 3.9+"
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/mod/sumdb/client.go

    	// The notes alone are not enough to prove the inconsistency.
    	// We also need to show that the newer note's tree hash for older.N
    	// does not match older.Hash. The consumer of this report could
    	// of course consult the server to try to verify the inconsistency,
    	// but we are holding all the bits we need to prove it right now,
    	// so we might as well print them and make the report not depend
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 17:50:49 UTC 2024
    - 19.1K bytes
    - Viewed (0)
  9. src/runtime/metrics/doc.go

    about the metric.
    
    Thus, users of this API are encouraged to sample supported metrics defined by the
    slice returned by All to remain compatible across Go versions. Of course, situations
    arise where reading specific metrics is critical. For these cases, users are
    encouraged to use build tags, and although metrics may be deprecated and removed,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:58:43 UTC 2024
    - 20K bytes
    - Viewed (0)
  10. guava/src/com/google/common/io/ByteSource.java

       * Returns a view of a slice of this byte source that is at most {@code length} bytes long
       * starting at the given {@code offset}. If {@code offset} is greater than the size of this
       * source, the returned source will be empty. If {@code offset + length} is greater than the size
       * of this source, the returned source will contain the slice starting at {@code offset} and
       * ending at the end of this source.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 17 14:35:11 UTC 2023
    - 26.2K bytes
    - Viewed (0)
Back to top