Search Options

Results per page
Sort
Preferred Languages
Advance

Results 431 - 440 of 541 for Warnings (0.58 sec)

  1. ci/official/utilities/code_check_full.bats

    }
    
    @test "No duplicate files on Windows" {
        cat <<EOF
    Please rename files so there are no repeats. For example, README.md and
    Readme.md would be the same file on Windows. In this test, you would get a
    warning for "readme.md" because it makes everything lowercase. There are
    repeats of these filename(s) with different casing:
    EOF
        find . | tr '[A-Z]' '[a-z]' | sort | uniq -d | tee $BATS_FILE_TMPDIR/repeats
    Registered: Tue Sep 09 12:39:10 UTC 2025
    - Last Modified: Wed Aug 06 20:43:08 UTC 2025
    - 13.4K bytes
    - Viewed (0)
  2. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/DefaultWagonManager.java

                releaseWagon(protocol, wagon);
            }
        }
    
        private void cleanupTemporaryFiles(List<File> files) {
            for (File file : files) {
                // really don't care if it failed here only log warning
                if (!file.delete()) {
                    logger.warn("skip failed to delete temporary file : " + file.getAbsolutePath());
                    file.deleteOnExit();
                }
            }
        }
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Sat Apr 05 11:52:05 UTC 2025
    - 29.9K bytes
    - Viewed (0)
  3. docs/en/docs/advanced/behind-a-proxy.md

    Right as we wanted it. โœ”๏ธ
    
    This is because FastAPI uses this `root_path` to create the default `server` in OpenAPI with the URL provided by `root_path`.
    
    ## Additional servers { #additional-servers }
    
    /// warning
    
    This is a more advanced use case. Feel free to skip it.
    
    ///
    
    By default, **FastAPI** will create a `server` in the OpenAPI schema with the URL for the `root_path`.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 19:34:08 UTC 2025
    - 16K bytes
    - Viewed (0)
  4. docs/em/docs/advanced/security/oauth2-scopes.md

    ๐Ÿ”  ๐Ÿ•ฐ ๐Ÿ‘† "๐Ÿ•น โฎ๏ธ" ๐Ÿ‘ฑ๐Ÿ“”, ๐Ÿ‡บ๐Ÿ‡ธ๐Ÿ”, ๐Ÿ“‚, ๐Ÿคธโ€โ™‚, ๐Ÿ‘ฑ๐Ÿ“”, ๐Ÿ‘ˆ ๐Ÿˆธ โš™๏ธ Oauth2๏ธโƒฃ โฎ๏ธ โ†”.
    
    ๐Ÿ‘‰ ๐Ÿ“„ ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ‘€ โ” ๐Ÿ› ๏ธ ๐Ÿค &amp; โœ” โฎ๏ธ ๐ŸŽ Oauth2๏ธโƒฃ โฎ๏ธ โ†” ๐Ÿ‘† **FastAPI** ๐Ÿˆธ.
    
    /// warning
    
    ๐Ÿ‘‰ ๐ŸŒ… โš–๏ธ ๐ŸŒ˜ ๐Ÿง ๐Ÿ“„. ๐Ÿšฅ ๐Ÿ‘† โ–ถ๏ธ, ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšถ โšซ๏ธ.
    
    ๐Ÿ‘† ๐Ÿšซ ๐ŸŽฏ ๐Ÿ’ช Oauth2๏ธโƒฃ โ†”, &amp; ๐Ÿ‘† ๐Ÿ’ช ๐Ÿต ๐Ÿค &amp; โœ” ๐Ÿ‘ ๐Ÿ‘† ๐Ÿ’š.
    
    โœ‹๏ธ Oauth2๏ธโƒฃ โฎ๏ธ โ†” ๐Ÿ’ช ๐ŸŽ† ๐Ÿ› ๏ธ ๐Ÿ”˜ ๐Ÿ‘† ๐Ÿ› ๏ธ (โฎ๏ธ ๐Ÿ—„) &amp; ๐Ÿ‘† ๐Ÿ› ๏ธ ๐Ÿฉบ.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Sun Aug 31 10:03:10 UTC 2025
    - 10.8K bytes
    - Viewed (0)
  5. guava-tests/test/com/google/common/collect/ImmutableListTest.java

        assertThrows(NullPointerException.class, () -> ImmutableList.of("a", null, "b"));
      }
    
      public void testCreation_generic() {
        List<String> a = ImmutableList.of("a");
        // only verify that there is no compile warning
        ImmutableList<List<String>> unused = ImmutableList.of(a, a);
      }
    
      public void testCreation_arrayOfArray() {
        String[] array = new String[] {"a"};
        List<String[]> list = ImmutableList.<String[]>of(array);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 23.6K bytes
    - Viewed (0)
  6. guava/src/com/google/common/math/LongMath.java

       * @throws ArithmeticException if {@code mode} is {@link RoundingMode#UNNECESSARY} and {@code x}
       *     is not a power of two
       */
      @SuppressWarnings("fallthrough")
      // TODO(kevinb): remove after this warning is disabled globally
      public static int log2(long x, RoundingMode mode) {
        checkPositive("x", x);
        switch (mode) {
          case UNNECESSARY:
            checkRoundingUnnecessary(isPowerOfTwo(x));
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Fri Aug 29 16:20:07 UTC 2025
    - 46.8K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/primitives/CharsTest.java

        testSortDescending(new char[] {'A', '1', 'B', '2'}, 1, 3, new char[] {'A', 'B', '1', '2'});
      }
    
      public void testToArray() {
        // need explicit type parameter to avoid javac warning!?
        List<Character> none = Arrays.<Character>asList();
        assertThat(Chars.toArray(none)).isEqualTo(EMPTY);
    
        List<Character> one = Arrays.asList((char) 1);
        assertThat(Chars.toArray(one)).isEqualTo(ARRAY1);
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 25.9K bytes
    - Viewed (0)
  8. docs/ja/docs/tutorial/dependencies/dependencies-with-yield.md

    ใใฎๅพŒใฎ`open("./somefile.txt")`ใฏใ€Œใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒžใƒใƒผใ‚ธใƒฃใ€ใจๅ‘ผใฐใ‚Œใ‚‹ใ‚ชใƒ–ใ‚ธใ‚งใ‚ฏใƒˆใ‚’ไฝœๆˆใ—ใพใ™ใ€‚
    
    `with`ใƒ–ใƒญใƒƒใ‚ฏใŒ็ต‚ไบ†ใ™ใ‚‹ใจใ€ไพ‹ๅค–ใŒใ‚ใฃใŸใจใ—ใฆใ‚‚ใƒ•ใ‚กใ‚คใƒซใ‚’็ขบใ‹ใซ้–‰ใ˜ใพใ™ใ€‚
    
    `yield`ใ‚’ไพๅญ˜้–ขไฟ‚ใ‚’ไฝœๆˆใ™ใ‚‹ใจใ€**FastAPI** ใฏๅ†…้ƒจ็š„ใซใใ‚Œใ‚’ใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒžใƒใƒผใ‚ธใƒฃใซๅค‰ๆ›ใ—ใ€ไป–ใฎ้–ข้€ฃใƒ„ใƒผใƒซใจ็ต„ใฟๅˆใ‚ใ›ใพใ™ใ€‚
    
    ### `yield`ใ‚’ๆŒใคไพๅญ˜้–ขไฟ‚ใงใฎใ‚ณใƒณใƒ†ใ‚ญใ‚นใƒˆใƒžใƒใƒผใ‚ธใƒฃใฎไฝฟ็”จ
    
    /// warning | ๆณจๆ„
    
    ใ“ใ‚Œใฏๅคšใ‹ใ‚Œๅฐ‘ใชใ‹ใ‚Œใ€ใ€Œ้ซ˜ๅบฆใชใ€็™บๆƒณใงใ™ใ€‚
    
    **FastAPI** ใ‚’ไฝฟใ„ๅง‹ใ‚ใŸใฐใ‹ใ‚Šใฎๆ–นใฏใ€ใจใ‚Šใ‚ใˆใšใ‚นใ‚ญใƒƒใƒ—ใ—ใŸๆ–นใŒใ‚ˆใ„ใ‹ใ‚‚ใ—ใ‚Œใพใ›ใ‚“ใ€‚
    
    ///
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/collect/Iterators.java

       * iterable}. The iterator's {@code hasNext()} method returns {@code true} until {@code iterable}
       * is empty.
       *
       * <p><b>Warning:</b> Typical uses of the resulting iterator may produce an infinite loop. You
       * should use an explicit {@code break} or be certain that you will eventually remove all the
       * elements.
       */
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 50.5K bytes
    - Viewed (0)
  10. src/main/webapp/WEB-INF/orig/view/advance.jsp

    									title="<la:message key="labels.development_mode_warning" />"
    								><a class="nav-link active" href="${installationLink}" target="_olh"><em
    										class="fa fa-exclamation-triangle text-warning"
    									></a></li>
    							</c:if>
    							<c:choose>
    								<c:when test="${!empty username && username != 'guest'}">
    									<li class="nav-item">
    										<div class="dropdown">
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jan 18 12:09:07 UTC 2025
    - 14.1K bytes
    - Viewed (0)
Back to top