Search Options

Results per page
Sort
Preferred Languages
Advance

Results 281 - 290 of 1,801 for paras (0.03 sec)

  1. tests/test_dependency_overrides.py

                {"in": "main-depends", "params": {"q": None, "skip": 5, "limit": 10}},
            ),
            (
                "/main-depends/?q=foo",
                200,
                {"in": "main-depends", "params": {"q": "foo", "skip": 5, "limit": 10}},
            ),
            (
                "/main-depends/?q=foo&skip=100&limit=200",
                200,
                {"in": "main-depends", "params": {"q": "foo", "skip": 5, "limit": 10}},
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/exception/ClRuntimeException.java

         *
         * @param messageCode message code
         * @param cause cause of exception
         */
        public ClRuntimeException(final String messageCode, final Throwable cause) {
            this(messageCode, new Object[0], cause);
        }
    
        /**
         * Creates {@link ClRuntimeException}.
         *
         * @param messageCode message code
         * @param args arguments for messages
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  3. compat/maven-model-builder/src/main/java/org/apache/maven/model/resolution/UnresolvableModelException.java

         *
         * @param message The detail message, may be {@code null}.
         * @param groupId The group id of the unresolvable model, may be {@code null}.
         * @param artifactId The artifact id of the unresolvable model, may be {@code null}.
         * @param version The version of the unresolvable model, may be {@code null}.
         * @param cause The cause, may be {@code null}.
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  4. compat/maven-compat/src/main/java/org/apache/maven/ProjectDependenciesResolver.java

         *
         * @param project         The project whose dependencies should be resolved, must not be {@code null}.
         * @param scopesToCollect The dependency scopes that should be collected, may be {@code null}.
         * @param scopesToResolve The dependency scopes that should be collected and also resolved, may be {@code null}.
         * @param session         The current build session, must not be {@code null}.
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  5. docs/pt/docs/how-to/custom-request-and-route.md

    ### Criar uma classe `GzipRequest` personalizada
    
    /// tip | Dica
    
    Isso é um exemplo de brincadeira para demonstrar como funciona, se você precisar de suporte para Gzip, você pode usar o [`GzipMiddleware`](../advanced/middleware.md#gzipmiddleware){.internal-link target=_blank} fornecido.
    
    ///
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Tue Oct 22 17:33:00 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  6. api/maven-api-core/src/main/java/org/apache/maven/api/services/Prompter.java

        }
    
        /**
         * Prompts the user for a string using a list of possible values and a default reply.
         *
         * @param message the message to display
         * @param possibleValues the list of possible values
         * @param defaultReply the default reply value
         * @return the string entered by the user
         * @throws PrompterException if an exception occurs
         */
        @Nonnull
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Nov 17 15:52:15 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  7. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolver.java

         * does not actually resolve the artifact files.
         *
         * @param session the {@link Session}, must not be {@code null}
         * @param root the Maven Dependency, must not be {@code null}
         * @param scope the {link PathScope} to collect dependencies, must not be {@code null}
         * @return the collection result, never {@code null}
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Wed Oct 16 14:15:37 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/ParserRequest.java

        /**
         * Creates a new Builder instance for constructing a ParserRequest.
         *
         * @param command the Maven command to be executed
         * @param commandName the Maven command Name to be executed
         * @param args the command-line arguments
         * @param logger the logger to be used during parsing
         * @param messageBuilderFactory the factory for creating message builders
         * @return a new Builder instance
         */
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  9. api/maven-api-cli/src/main/java/org/apache/maven/api/cli/Parser.java

         * This is a convenience method that internally creates a ParserRequest using
         * {@link ParserRequest#mvn(String[], Logger, MessageBuilderFactory)}.
         *
         * @param args the command-line arguments
         * @param logger the logger to use during parsing
         * @param messageBuilderFactory the factory for creating message builders
         * @return the parsed InvokerRequest
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 04 12:23:10 UTC 2024
    - 3K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/core/io/ResourceBundleUtil.java

                return null;
            }
        }
    
        /**
         * バンドルを返します。 見つからない場合は、<code>null</code>を返します。
         *
         * @param name
         *            リソースバンドルの名前。{@literal null}や空文字列であってはいけません
         * @param locale
         *            ロケール
         * @param classLoader
         *            クラスローダ。{@literal null}や空文字列であってはいけません
         * @return {@link ResourceBundle}
    Registered: Fri Nov 01 20:58:10 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 6K bytes
    - Viewed (0)
Back to top