Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getParts (0.05 sec)

  1. fastapi/_compat/shared.py

        origin = get_origin(annotation)
        if origin is Union or origin is UnionType:
            return any(field_annotation_is_complex(arg) for arg in get_args(annotation))
    
        if origin is Annotated:
            return field_annotation_is_complex(get_args(annotation)[0])
    
        return (
            _annotation_is_complex(annotation)
            or _annotation_is_complex(origin)
            or hasattr(origin, "__pydantic_core_schema__")
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 6.7K bytes
    - Viewed (0)
  2. fastapi/_compat/v2.py

    from pydantic_core import CoreSchema as CoreSchema
    from pydantic_core import PydanticUndefined, PydanticUndefinedType
    from pydantic_core import Url as Url
    from typing_extensions import Literal, get_args, get_origin
    
    try:
        from pydantic_core.core_schema import (
            with_info_plain_validator_function as with_info_plain_validator_function,
        )
    except ImportError:  # pragma: no cover
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 19.1K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/exception/ClSQLException.java

         */
        public String getMessageCode() {
            return messageCode;
        }
    
        /**
         * Returns the array of arguments.
         *
         * @return Array of arguments
         */
        public Object[] getArgs() {
            return args;
        }
    
        /**
         * Returns the SQL.
         *
         * @return SQL
         */
        public String getSql() {
            return sql;
        }
    
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 5.4K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

         */
        public String getMessageCode() {
            return messageCode;
        }
    
        /**
         * Returns arguments of a message
         *
         * @return array of arguments
         */
        public Object[] getArgs() {
            return args;
        }
    
        @Override
        public String getMessage() {
            return message;
        }
    
        /**
         * Returns a simple message without a message code.
         *
    Registered: Sat Dec 20 08:55:33 UTC 2025
    - Last Modified: Sat Jul 05 00:11:05 UTC 2025
    - 3.1K bytes
    - Viewed (0)
  5. fastapi/dependencies/utils.py

        QueryParams,
        UploadFile,
    )
    from starlette.requests import HTTPConnection, Request
    from starlette.responses import Response
    from starlette.websockets import WebSocket
    from typing_extensions import Literal, get_args, get_origin
    
    multipart_not_installed_error = (
        'Form data requires "python-multipart" to be installed. \n'
        'You can install "python-multipart" with: \n\n'
        "pip install python-multipart\n"
    )
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 37.6K bytes
    - Viewed (3)
  6. compat/maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            assertEquals("C:\\myRootDirectory/my-child", request.getCommandLine().getOptionValue('f'));
            assertArrayEquals(
                    new String[] {"prefix:3.0.0:bar", "validate"},
                    request.getCommandLine().getArgs());
    
            Path p = fs.getPath(request.getUserProperties().getProperty("valTopDirectory"));
            assertEquals("C:\\myRootDirectory\\myTopDirectory\\pom.xml", p.toString());
        }
    
        @Test
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Wed Sep 17 10:01:14 UTC 2025
    - 30.9K bytes
    - Viewed (0)
  7. compat/maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            CommandLine.Builder commandLineBuilder = new CommandLine.Builder();
    
            // the args are easy, CLI only since maven.config file can only contain options
            for (String arg : mavenCli.getArgs()) {
                commandLineBuilder.addArg(arg);
            }
    
            /* Although this looks wrong in terms of order Commons CLI stores the value of options in
    Registered: Sun Dec 28 03:35:09 UTC 2025
    - Last Modified: Mon Oct 27 13:24:03 UTC 2025
    - 78.1K bytes
    - Viewed (0)
Back to top