Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 517 for Enum (0.04 sec)

  1. docs/em/docs/tutorial/path-operation-configuration.md

    <img src="/img/tutorial/path-operation-configuration/image01.png">
    
    ### ๐Ÿ”– โฎ๏ธ ๐Ÿ”ข
    
    ๐Ÿšฅ ๐Ÿ‘† โœ”๏ธ ๐Ÿฆ ๐Ÿˆธ, ๐Ÿ‘† 5๏ธโƒฃ๐Ÿ“† ๐Ÿ”š ๐Ÿ†™ ๐Ÿ“ˆ **๐Ÿ“š ๐Ÿ”–**, &amp; ๐Ÿ‘† ๐Ÿ”œ ๐Ÿ’š โš’ ๐Ÿ’ญ ๐Ÿ‘† ๐Ÿ•ง โš™๏ธ **๐ŸŽ ๐Ÿ”–** ๐Ÿ”— *โžก ๐Ÿ› ๏ธ*.
    
    ๐Ÿ‘ซ ๐Ÿ’ผ, โšซ๏ธ ๐Ÿ’ช โš’ ๐Ÿ”‘ ๐Ÿช ๐Ÿ”– `Enum`.
    
    **FastAPI** ๐Ÿ•โ€๐Ÿฆบ ๐Ÿ‘ˆ ๐ŸŽ ๐ŸŒŒ โฎ๏ธ โœ… ๐ŸŽป:
    
    {* ../../docs_src/path_operation_configuration/tutorial002b.py hl[1,8:10,13,18] *}
    
    ## ๐Ÿ“„ &amp; ๐Ÿ“›
    
    ๐Ÿ‘† ๐Ÿ’ช ๐Ÿšฎ `summary` &amp; `description`:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  2. src/test/java/jcifs/smb/SmbTreeInternalTest.java

        @EnumSource(RequestParam.class)
        @DisplayName("send handles each RequestParam enum constant")
        void send_eachRequestParam_isAccepted(RequestParam param) throws Exception {
            // Arrange: stub per-call return to ensure interaction with the exact enum
            when(tree.send(eq(request), eq(param))).thenReturn(response);
    
            // Act
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Thu Aug 14 05:31:44 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  3. compat/maven-builder-support/src/main/java/org/apache/maven/building/Problem.java

     */
    @Deprecated(since = "4.0.0")
    public interface Problem {
    
        /**
         * The different severity levels for a problem, in decreasing order.
         */
        enum Severity {
            FATAL, //
            ERROR, //
            WARNING //
        }
    
        /**
         * Gets the hint about the source of the problem. While the syntax of this hint is unspecified and depends on the
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Wed Jan 15 18:51:29 UTC 2025
    - 3.4K bytes
    - Viewed (0)
  4. docs/ja/docs/tutorial/path-params.md

    ### `Enum` ใ‚ฏใƒฉใ‚นใฎไฝœๆˆ
    
    `Enum` ใ‚’ใ‚คใƒณใƒใƒผใƒˆใ—ใ€ `str` ใจ `Enum` ใ‚’็ถ™ๆ‰ฟใ—ใŸใ‚ตใƒ–ใ‚ฏใƒฉใ‚นใ‚’ไฝœๆˆใ—ใพใ™ใ€‚
    
    `str` ใ‚’็ถ™ๆ‰ฟใ™ใ‚‹ใ“ใจใงใ€APIใƒ‰ใ‚ญใƒฅใƒกใƒณใƒˆใฏๅ€คใŒ `ๆ–‡ๅญ—ๅˆ—` ใงใชใ‘ใ‚Œใฐใ„ใ‘ใชใ„ใ“ใจใ‚’็Ÿฅใ‚Šใ€ๆญฃ็ขบใซใƒฌใƒณใƒ€ใƒชใƒณใ‚ฐใงใใ‚‹ใ‚ˆใ†ใซใชใ‚Šใพใ™ใ€‚
    
    ใใ—ใฆใ€ๅ›บๅฎšๅ€คใฎใ‚ฏใƒฉใ‚นๅฑžๆ€งใ‚’ไฝœใ‚Šใพใ™ใ€‚ใ™ใ‚‹ใจใ€ใใฎๅ€คใŒไฝฟ็”จๅฏ่ƒฝใชๅ€คใจใชใ‚Šใพใ™:
    
    {* ../../docs_src/path_params/tutorial005.py hl[1,6,7,8,9] *}
    
    /// info | ๆƒ…ๅ ฑ
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/opensearch/config/exentity/CrawlingConfig.java

            if (StringUtil.isNotBlank(scriptType)) {
                return scriptType;
            }
            return Constants.DEFAULT_SCRIPT;
        }
    
        public enum ConfigType {
            WEB("W"), FILE("F"), DATA("D");
    
            private final String typePrefix;
    
            ConfigType(final String typePrefix) {
                this.typePrefix = typePrefix;
            }
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Mar 15 06:53:53 UTC 2025
    - 5.6K bytes
    - Viewed (0)
  6. guava-tests/benchmark/com/google/common/collect/BinaryTreeTraverserBenchmark.java

        final Optional<BinaryNode> right;
    
        BinaryNode(int x, Optional<BinaryNode> left, Optional<BinaryNode> right) {
          this.x = x;
          this.left = left;
          this.right = right;
        }
      }
    
      enum Topology {
        BALANCED {
          @Override
          Optional<BinaryNode> createTree(int size, Random rng) {
            if (size == 0) {
              return Optional.absent();
            } else {
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Dec 19 18:03:30 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. src/test/java/jcifs/internal/witness/WitnessEnumTest.java

            assertNotNull(WitnessRegistration.WitnessRegistrationState.EXPIRED);
        }
    
        @Test
        void testEnumToStringConversions() {
            // Test that enum toString methods work properly
            assertEquals("CLUSTER_WITNESS", WitnessServiceType.CLUSTER_WITNESS.toString());
            assertEquals("FILE_SERVER_WITNESS", WitnessServiceType.FILE_SERVER_WITNESS.toString());
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 23 09:06:40 UTC 2025
    - 6.1K bytes
    - Viewed (0)
  8. docs/em/docs/tutorial/query-params.md

    {* ../../docs_src/query_params/tutorial006.py hl[10] *}
    
    ๐Ÿ‘‰ ๐Ÿ’ผ, ๐Ÿ“ค 3๏ธโƒฃ ๐Ÿ”ข ๐Ÿ”ข:
    
    * `needy`, โœ” `str`.
    * `skip`, `int` โฎ๏ธ ๐Ÿ”ข ๐Ÿ’ฒ `0`.
    * `limit`, ๐Ÿ“ฆ `int`.
    
    /// tip
    
    ๐Ÿ‘† ๐Ÿ’ช โš™๏ธ `Enum`โ“‚ ๐ŸŽ ๐ŸŒŒ โฎ๏ธ [โžก ๐Ÿ”ข](path-params.md#_7){.internal-link target=_blank}.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  9. okhttp-logging-interceptor/api/logging-interceptor.api

    }
    
    public final class okhttp3/logging/HttpLoggingInterceptor$Companion {
    }
    
    public final class okhttp3/logging/HttpLoggingInterceptor$Level : java/lang/Enum {
    	public static final field BASIC Lokhttp3/logging/HttpLoggingInterceptor$Level;
    	public static final field BODY Lokhttp3/logging/HttpLoggingInterceptor$Level;
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Sat Apr 06 09:14:38 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  10. android/guava-testlib/src/com/google/common/collect/testing/google/ReflectionFreeAssertThrows.java

                  + " but returned result: "
                  + result);
        } else {
          throw new AssertionError("expected to throw " + expectedThrowable.getSimpleName());
        }
      }
    
      private enum PlatformSpecificExceptionBatch {
        PLATFORM {
          @GwtIncompatible
          @J2ktIncompatible
          @Override
          // returns the types available in "normal" environments
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 6.3K bytes
    - Viewed (0)
Back to top