Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 395 for depends (0.04 sec)

  1. android/guava/src/com/google/common/collect/CompactHashSet.java

     * supported. The elements can be any objects.
     *
     * <p>{@code contains(x)}, {@code add(x)} and {@code remove(x)}, are all (expected and amortized)
     * constant time operations. Expected in the hashtable sense (depends on the hash function doing a
     * good job of distributing the elements to the buckets to a distribution not far from uniform), and
     * amortized since some operations can trigger a hash table resize.
     *
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue Jul 08 18:32:10 UTC 2025
    - 23.9K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/Kerb5AuthenticatorTest.java

            assertEquals(d1, d2);
    
            // Different type -> false
            assertFalse(a.equals("not-an-auth"));
        }
    
        @Test
        @DisplayName("isAnonymous: depends on subject presence and super")
        void isAnonymous_behaviour() {
            Kerb5Authenticator anon = new Kerb5Authenticator((Subject) null);
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 10.9K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

    import org.junit.After;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.JUnit4;
    
    /**
     * Unit test for {@link FinalizableReferenceQueue}.
     *
     * @author Bob Lee
     */
    // - depends on details of GC and classloading
    // - .class files aren't available
    // - possibly no real concept of separate ClassLoaders?
    @AndroidIncompatible
    @GwtIncompatible
    @RunWith(JUnit4.class)
    @NullUnmarked
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/base/FinalizableReferenceQueueTest.java

    import org.junit.After;
    import org.junit.Test;
    import org.junit.runner.RunWith;
    import org.junit.runners.JUnit4;
    
    /**
     * Unit test for {@link FinalizableReferenceQueue}.
     *
     * @author Bob Lee
     */
    // - depends on details of GC and classloading
    // - .class files aren't available
    // - possibly no real concept of separate ClassLoaders?
    @AndroidIncompatible
    @GwtIncompatible
    @RunWith(JUnit4.class)
    @NullUnmarked
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 8.7K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/util/concurrent/ListenableFuture.java

     * take advantage of the {@linkplain Futures utilities built atop the class}. The way that you will
     * create {@code ListenableFuture} instances depends on how you currently create {@code Future}
     * instances:
     *
     * <ul>
     *   <li>If you receive them from an {@code java.util.concurrent.ExecutorService}, convert that
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 8K bytes
    - Viewed (0)
  6. src/test/java/jcifs/smb/JAASAuthenticatorTest.java

        void testGetSubjectLoginFailuresCacheAndRefresh(SubjectVariant variant) throws Exception {
            JAASAuthenticator auth = buildAuthenticator(variant);
    
            // First call attempts a JAAS login; behavior depends on JAAS configuration
            Subject first = auth.getSubject();
    
            // Second call should return cached value (same as first)
            Subject second = auth.getSubject();
            if (first == null && second == null) {
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 9.9K bytes
    - Viewed (0)
  7. docs/em/docs/tutorial/security/simple-oauth2.md

    ๐Ÿ‘ˆ โ„น ๐Ÿ› ๏ธ ๐ŸŽฏ.
    
    Oauth2๏ธโƒฃ ๐Ÿ‘ซ ๐ŸŽป.
    
    ///
    
    ## ๐Ÿ“Ÿ ๐Ÿคš `username` &amp; `password`
    
    ๐Ÿ”œ โžก๏ธ โš™๏ธ ๐Ÿš™ ๐Ÿšš **FastAPI** ๐Ÿต ๐Ÿ‘‰.
    
    ### `OAuth2PasswordRequestForm`
    
    ๐Ÿฅ‡, ๐Ÿ—„ `OAuth2PasswordRequestForm`, &amp; โš™๏ธ โšซ๏ธ ๐Ÿ”— โฎ๏ธ `Depends` *โžก ๐Ÿ› ๏ธ* `/token`:
    
    {* ../../docs_src/security/tutorial003.py hl[4,76] *}
    
    `OAuth2PasswordRequestForm` ๐ŸŽ“ ๐Ÿ”— ๐Ÿ‘ˆ ๐Ÿ“ฃ ๐Ÿ“จ ๐Ÿ’ช โฎ๏ธ:
    
    *  `username`.
    *  `password`.
    * ๐Ÿ“ฆ `scope` ๐Ÿ‘ ๐Ÿฆ ๐ŸŽป, โœ ๐ŸŽป ๐ŸŽ ๐Ÿš€.
    * ๐Ÿ“ฆ `grant_type`.
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Multimap.java

       * depending on the implementation. For example, two {@link SetMultimap} instances with the same
       * key-value mappings are equal, but equality of two {@link ListMultimap} instances depends on the
       * ordering of the values for each key.
       *
       * <p>A non-empty {@link SetMultimap} cannot be equal to a non-empty {@link ListMultimap}, since
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Mon Mar 17 20:26:29 UTC 2025
    - 15.7K bytes
    - Viewed (0)
  9. docs/ja/docs/tutorial/security/first-steps.md

    ///
    
    ๅค‰ๆ•ฐ`oauth2_scheme`ใฏ`OAuth2PasswordBearer`ใฎใ‚คใƒณใ‚นใ‚ฟใƒณใ‚นใงใ™ใŒใ€ใ€Œๅ‘ผใณๅ‡บใ—ๅฏ่ƒฝใ€ใงใ™ใ€‚
    
    ๆฌกใฎใ‚ˆใ†ใซใ€ๅ‘ผใถใ“ใจใŒใงใใพใ™:
    
    ```Python
    oauth2_scheme(some, parameters)
    ```
    
    ใใฎใŸใ‚ใ€`Depends`ใจไธ€็ท’ใซไฝฟใ†ใ“ใจใŒใงใใพใ™ใ€‚
    
    ### ไฝฟใ„ๆ–น
    
    ใ“ใ‚Œใง`oauth2_scheme`ใ‚’`Depends`ใงไพๅญ˜้–ขไฟ‚ใซๆธกใ™ใ“ใจใŒใงใใพใ™ใ€‚
    
    {* ../../docs_src/security/tutorial001.py hl[10] *}
    
    ใ“ใฎไพๅญ˜้–ขไฟ‚ใฏใ€*path operation function*ใฎใƒ‘ใƒฉใƒกใƒผใ‚ฟใƒผ`token`ใซไปฃๅ…ฅใ•ใ‚Œใ‚‹`str`ใ‚’ๆไพ›ใ—ใพใ™ใ€‚
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  10. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProblemCollector.java

         */
        boolean problemsOverflow();
    
        /**
         * Reports a problem: always maintains the counters, but whether problem is preserved in memory, depends on
         * implementation and its configuration.
         *
         * @param problem the problem to report
         * @return {@code true} if passed problem is preserved by this call.
         */
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Jul 18 17:30:19 UTC 2025
    - 11.4K bytes
    - Viewed (0)
Back to top