Search Options

Results per page
Sort
Preferred Languages
Advance

Results 501 - 510 of 814 for users6 (0.06 sec)

  1. docs/em/docs/tutorial/sql-databases.md

    {!../../docs_src/sql_databases/sql_app/models.py!}
    ```
    
    ๐Ÿ•โ” ๐Ÿ” ๐Ÿ”ข `items` `User`, `my_user.items`, โšซ๏ธ ๐Ÿ”œ โœ”๏ธ ๐Ÿ“‡ `Item` ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿท (โšช๏ธโžก๏ธ `items` ๐Ÿ“) ๐Ÿ‘ˆ โœ”๏ธ ๐Ÿ’ฑ ๐Ÿ”‘ โ˜ ๐Ÿ‘‰ โบ `users` ๐Ÿ“.
    
    ๐Ÿ•โ” ๐Ÿ‘† ๐Ÿ” `my_user.items`, ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ”œ ๐Ÿค™ ๐Ÿšถ & โ˜• ๐Ÿฌ โšช๏ธโžก๏ธ ๐Ÿ’ฝ `items` ๐Ÿ“ & ๐Ÿ”— ๐Ÿ‘ซ ๐Ÿ“ฅ.
    
    & ๐Ÿ•โ” ๐Ÿ” ๐Ÿ”ข `owner` `Item`, โšซ๏ธ ๐Ÿ”œ ๐Ÿ”Œ `User` ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿท โšช๏ธโžก๏ธ `users` ๐Ÿ“. โšซ๏ธ ๐Ÿ”œ โš™๏ธ `owner_id` ๐Ÿ”ข/๐Ÿ“ โฎ๏ธ ๐Ÿšฎ ๐Ÿ’ฑ ๐Ÿ”‘ ๐Ÿ’ญ โ” โบ ๐Ÿคš โšช๏ธโžก๏ธ `users` ๐Ÿ“.
    
    ## โœ Pydantic ๐Ÿท
    
    ๐Ÿ”œ โžก๏ธ โœ… ๐Ÿ“ `sql_app/schemas.py`.
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 25K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/extra-models.md

    ```
    
    ////
    
    ### ๐Ÿ”ƒ `**user_in.dict()`
    
    #### Pydantic `.dict()`
    
    `user_in` Pydantic ๐Ÿท ๐ŸŽ“ `UserIn`.
    
    Pydantic ๐Ÿท โœ”๏ธ `.dict()` ๐Ÿ‘ฉโ€๐Ÿ”ฌ ๐Ÿ‘ˆ ๐Ÿ“จ `dict` โฎ๏ธ ๐Ÿท ๐Ÿ’ฝ.
    
    , ๐Ÿšฅ ๐Ÿ‘ฅ โœ Pydantic ๐ŸŽš `user_in` ๐Ÿ’–:
    
    ```Python
    user_in = UserIn(username="john", password="secret", email="******@****.***")
    ```
    
    & โคด๏ธ ๐Ÿ‘ฅ ๐Ÿค™:
    
    ```Python
    user_dict = user_in.dict()
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. build-logic/build-update-utils/src/main/kotlin/gradlebuild/buildutils/tasks/AbstractCheckOrUpdateContributorsInReleaseNotes.kt

            }
            return Gson().fromJson(response.body(), klass)
        }
    
        private
        fun getUserInfo(login: String): GitHubUser {
            val uri = "https://api.github.com/users/$login"
            return invokeGitHubApi(uri, GitHubUser::class.java)
        }
    
        private
        fun getMergedContributorPullRequests(pageNumber: Int): List<GitHubPullRequest> {
    Registered: Wed Nov 06 11:36:14 UTC 2024
    - Last Modified: Fri Jun 28 08:29:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
  4. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

         * @return the Maven home directory path, or null if not set
         */
        @Nullable
        Path mavenHome();
    
        /**
         * Returns the user's home directory.
         * If not explicitly set, this value will be detected during parsing.
         *
         * @return the user's home directory path, or null if not set
         */
        @Nullable
        Path userHome();
    
        /**
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  5. internal/bucket/lifecycle/transition.go

    	err := d.DecodeElement(&dateStr, &startElement)
    	if err != nil {
    		return err
    	}
    	// While AWS documentation mentions that the date specified
    	// must be present in ISO 8601 format, in reality they allow
    	// users to provide RFC 3339 compliant dates.
    	trnDate, err := time.Parse(time.RFC3339, dateStr)
    	if err != nil {
    		return errTransitionInvalidDate
    	}
    	// Allow only date timestamp specifying midnight GMT
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Mon Jan 10 17:07:49 UTC 2022
    - 5.1K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/collect/ImmutableSortedMultiset.java

       * explained in the {@link Comparator} documentation.
       *
       * @since 33.2.0 (available since 21.0 in guava-jre)
       */
      @SuppressWarnings("Java7ApiChecker")
      @IgnoreJRERequirement // Users will use this only if they're already using streams.
      public static <E> Collector<E, ?, ImmutableSortedMultiset<E>> toImmutableSortedMultiset(
          Comparator<? super E> comparator) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 16 21:21:17 UTC 2024
    - 35.4K bytes
    - Viewed (0)
  7. docs/sts/tls.md

    ## Caveat
    
    Registered: Sun Nov 03 19:28:11 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 6K bytes
    - Viewed (1)
  8. src/main/java/jcifs/smb/NtlmUtil.java

        /**
         * Creates the LMv2 response for the supplied information.
         *
         * @param domain
         *            The domain in which the username exists.
         * @param user
         *            The username.
         * @param password
         *            The user's password.
         * @param challenge
         *            The server challenge.
         * @param clientChallenge
         *            The client challenge (nonce).
    Registered: Sun Nov 03 00:10:13 UTC 2024
    - Last Modified: Tue Jul 07 12:07:20 UTC 2020
    - 9.7K bytes
    - Viewed (0)
  9. guava-tests/test/com/google/common/base/OptionalTest.java

      }
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeFine2() {
        FluentIterable<? extends Number> numbers = getSomeNumbers();
    
        // Sadly, the following is what users will have to do in some circumstances.
    
        @SuppressWarnings("unchecked") // safe covariant cast
        Optional<Number> first = (Optional<Number>) numbers.first();
        Number value = first.or(0.5); // fine
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Sep 17 18:14:12 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.10.md

    * Kubernetes version command line parameter in kubeadm has been updated to drop an unnecessary redirection from ci/latest.txt to ci-cross/latest.txt. Users should know exactly where the builds are stored on Google Cloud storage buckets from now on. For example for 1.9 and 1.10, users can specify ci/latest-1.9 and ci/latest-1.10 as the CI build jobs what build images correctly updates those. The CI jobs for master update the ci-cross/latest location, so if you are...
    Registered: Fri Nov 01 09:05:11 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 341.8K bytes
    - Viewed (0)
Back to top