Search Options

Results per page
Sort
Preferred Languages
Advance

Results 501 - 510 of 817 for users1 (0.06 sec)

  1. compat/maven-compat/src/main/java/org/apache/maven/artifact/resolver/ArtifactResolutionRequest.java

        public List<Proxy> getProxies() {
            if (proxies == null) {
                proxies = new ArrayList<>();
            }
    
            return proxies;
        }
    
        //
        // Used by Tycho and will break users and force them to upgrade to Maven 3.1 so we should really leave
        // this here, possibly indefinitely.
        //
        public ArtifactResolutionRequest setCache(RepositoryCache cache) {
            return this;
        }
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  2. android/guava-tests/benchmark/com/google/common/util/concurrent/FuturesGetCheckedBenchmark.java

       * other {@code ClassValue} entries for the exception type to be tested. This lets us evaluate
       * whether our solution scales to use with multiple exception types and to whether it is affected
       * by other {@code ClassValue} users. Some of the benchmarked implementations don't use one or
       * both of these mechanisms, so they will be unaffected.
       */
      @Param({"0", "1", "12"})
      int otherEntriesInDataStructure;
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Tue Mar 22 03:01:34 UTC 2022
    - 6.5K bytes
    - Viewed (0)
  3. ci/official/envs/rbe

      # A local firewall rule for the container is added in
      # ci/official/utilities/setup_docker.sh.
    else
      # The volume mapping flag below shares the user's gcloud credentials, if any,
      # with the container, in case the user has credentials stored there.
      # This would allow Bazel to authenticate for RBE.
      # Note: TF's CI does not have any credentials stored there.
    Registered: Tue Nov 05 12:39:12 UTC 2024
    - Last Modified: Fri Aug 09 16:05:18 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. 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`, ๐Ÿ‡ธ๐Ÿ‡ฒ ๐Ÿ”œ ๐Ÿค™ ๐Ÿšถ &amp; โ˜• ๐Ÿฌ โšช๏ธโžก๏ธ ๐Ÿ’ฝ `items` ๐Ÿ“ &amp; ๐Ÿ”— ๐Ÿ‘ซ ๐Ÿ“ฅ.
    
    &amp; ๐Ÿ•โ” ๐Ÿ” ๐Ÿ”ข `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)
  5. 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="******@****.***")
    ```
    
    &amp; โคด๏ธ ๐Ÿ‘ฅ ๐Ÿค™:
    
    ```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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top