Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 131 - 140 of 669 for type1 (0.01 seconds)

  1. compat/maven-model-builder/src/main/java/org/apache/maven/model/interpolation/reflection/MethodMap.java

                        && (actual == Long.TYPE || actual == Integer.TYPE || actual == Short.TYPE || actual == Byte.TYPE)) {
                    return true;
                }
                if (formal == Double.TYPE
                        && (actual == Float.TYPE
                                || actual == Long.TYPE
                                || actual == Integer.TYPE
                                || actual == Short.TYPE
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Feb 25 08:27:34 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  2. compat/maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/type/DefaultTypeProvider.java

        @Override
        public Collection<Type> provides() {
            return (Collection) types();
        }
    
        public Collection<DefaultType> types() {
            return Arrays.asList(
                    // Maven types
                    new DefaultType(Type.POM, Language.NONE, "pom", null, false),
                    new DefaultType(Type.BOM, Language.NONE, "pom", null, false),
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 25 12:31:46 GMT 2024
    - 4.1K bytes
    - Click Count (0)
  3. src/main/java/org/codelibs/core/exception/NoSuchConstructorRuntimeException.java

         */
        private final Class<?> targetClass;
    
        /**
         * The parameter types.
         */
        private final Class<?>[] argTypes;
    
        /**
         * Creates a {@link NoSuchConstructorRuntimeException}.
         *
         * @param targetClass
         *            Target class
         * @param argTypes
         *            Array of parameter types
         * @param cause
         *            The cause of the exception
         */
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 2.1K bytes
    - Click Count (0)
  4. architecture/standards/0006-use-of-provider-apis-in-gradle.md

    Given these constraints, we cannot always follow best practices.  This ADR proposes the way we should handle the use of Provider APIs in the gradle/gradle codebase.
    
    ## Decision
    
    ### Types of properties that should not use lazy types
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Tue Oct 15 20:00:57 GMT 2024
    - 10K bytes
    - Click Count (0)
  5. docs/ru/docs/tutorial/query-params-str-validations.md

    ///
    
    ## Использовать `Annotated` в типе для параметра `q` { #use-annotated-in-the-type-for-the-q-parameter }
    
    Помните, я уже говорил, что `Annotated` можно использовать для добавления метаданных к параметрам в разделе [Введение в типы Python](../python-types.md#type-hints-with-metadata-annotations){.internal-link target=_blank}?
    
    Пришло время использовать его с FastAPI. 🚀
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Wed Dec 17 20:41:43 GMT 2025
    - 26.2K bytes
    - Click Count (0)
  6. src/main/java/org/codelibs/core/text/Tokenizer.java

         * @param ctype2
         *            The array of character types.
         * @param val
         *            The character code.
         */
        protected static void wordChar(final byte[] ctype2, final int val) {
            ctype2[val] |= CT_ALPHA;
        }
    
        /**
         * Sets characters as whitespace.
         *
         * @param ctype2
         *            The array of character types.
         * @param low
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 8.8K bytes
    - Click Count (0)
  7. docs/fr/docs/features.md

    ### Faite en python moderne
    
    Tout est basé sur la déclaration de type standard de **Python 3.8** (grâce à Pydantic). Pas de nouvelles syntaxes à apprendre. Juste du Python standard et moderne.
    
    Si vous souhaitez un rappel de 2 minutes sur l'utilisation des types en Python (même si vous ne comptez pas utiliser FastAPI), jetez un oeil au tutoriel suivant: [Python Types](python-types.md){.internal-link target=_blank}.
    
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Oct 11 17:48:49 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  8. .github/workflows/issue-manager.yml

    name: Issue Manager
    
    on:
      schedule:
        - cron: "13 22 * * *"
      issue_comment:
        types:
          - created
      issues:
        types:
          - labeled
      pull_request_target:
        types:
          - labeled
      workflow_dispatch:
    
    permissions:
      issues: write
      pull-requests: write
    
    jobs:
      issue-manager:
        if: github.repository_owner == 'fastapi'
        runs-on: ubuntu-latest
        steps:
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sat Oct 11 19:36:25 GMT 2025
    - 1.6K bytes
    - Click Count (0)
  9. api/go1.24.txt

    pkg go/types, method (*Interface) EmbeddedTypes() iter.Seq[Type] #66626
    pkg go/types, method (*Interface) ExplicitMethods() iter.Seq[*Func] #66626
    pkg go/types, method (*Interface) Methods() iter.Seq[*Func] #66626
    pkg go/types, method (*MethodSet) Methods() iter.Seq[*Selection] #66626
    pkg go/types, method (*Named) Methods() iter.Seq[*Func] #66626
    pkg go/types, method (*Scope) Children() iter.Seq[*Scope] #66626
    Created: Tue Dec 30 11:13:12 GMT 2025
    - Last Modified: Tue Dec 17 21:28:29 GMT 2024
    - 14.2K bytes
    - Click Count (0)
  10. src/main/java/org/codelibs/core/exception/NoSuchMethodRuntimeException.java

         */
        private final String methodName;
    
        /**
         * The argument types.
         */
        private final Class<?>[] argTypes;
    
        /**
         * Creates a {@link NoSuchMethodRuntimeException}.
         *
         * @param targetClass the target class
         * @param methodName the method name
         * @param argTypes the argument types
         * @param cause the underlying exception
         */
    Created: Sat Dec 20 08:55:33 GMT 2025
    - Last Modified: Sat Jul 05 00:11:05 GMT 2025
    - 2.3K bytes
    - Click Count (0)
Back to Top