Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 2,495 for para2 (0.07 sec)

  1. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/GroovyInteroperability.kt

    /**
     * Adapts a ternary Kotlin function to a ternary Groovy [Closure].
     *
     * @param T the type of the first argument.
     * @param U the type of the second argument.
     * @param V the type of the third argument.
     * @param R the return type.
     * @param function the function to be adapted.
     * @param owner optional owner of the Closure.
     * @param thisObject optional _this Object_ of the Closure.
     *
     * @see [Closure]
     */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/artifacts/dsl/DependencyCollector.java

         * Add a dependency.
         *
         * @param dependencyNotation dependency to add
         * @see DependencyFactory#create(CharSequence) Valid dependency notation for this method
         *
         * @since 8.6
         */
        void add(CharSequence dependencyNotation);
    
        /**
         * Add a dependency and configure it.
         *
         * @param dependencyNotation dependency to add
         * @param configuration an action to configure the dependency
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 09 22:19:12 UTC 2024
    - 8K bytes
    - Viewed (0)
  3. src/main/java/org/codelibs/core/misc/AssertionUtil.java

            }
        }
    
        /**
         * インデックスが不正でないことを表明します。
         *
         * @param argName
         *            {@code null} であってはならない引数の名前
         * @param argValue
         *            インデックスの値
         * @param arraySize
         *            インデックスが参照する配列の長さ
         * @throws ClIllegalArgumentException
         *             引数が配列のインデックスとして不正な場合場合。
         */
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/test/resources/org/gradle/kotlin/dsl/accessors/tasks/PrintAccessors-expected-output.txt

         *
         * @param group the group of the module to be added as a dependency.
         * @param name the name of the module to be added as a dependency.
         * @param version the optional version of the module to be added as a dependency.
         * @param configuration the optional configuration of the module to be added as a dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 15.1K bytes
    - Viewed (0)
  5. tests/test_application.py

                                "name": "item_id",
                                "in": "path",
                            }
                        ],
                    }
                },
                "/path/param/{item_id}": {
                    "get": {
                        "responses": {
                            "200": {
                                "description": "Successful Response",
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 21:56:59 UTC 2024
    - 52.2K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/BuildController.java

         * </p>
         *
         * <p>See {@link #getModel(Class)} for more details.
         *
         * @param target The target element, usually a project.
         * @param modelType The model type.
         * @param <T> The model type.
         * @param parameterType The parameter type.
         * @param <P> The parameter type.
         * @param parameterInitializer Action to configure the parameter
         * @return The model.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Dec 19 19:46:37 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/Describables.java

        }
    
        private static class TwoPartDescribable extends AbstractDescribable {
            private final Object part1;
            private final Object part2;
    
            TwoPartDescribable(Object part1, Object part2) {
                this.part1 = part1;
                this.part2 = part2;
            }
    
            @Override
            public String getDisplayName() {
                StringBuilder builder = new StringBuilder(48);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  8. maven-plugin-api/src/main/java/org/apache/maven/plugin/logging/Log.java

         *
         * @param content
         */
        void debug(CharSequence content);
    
        /**
         * Send a message (and accompanying exception) to the user in the <b>debug</b> error level.<br>
         * The error's stacktrace will be output when this error level is enabled.
         *
         * @param content
         * @param error
         */
        void debug(CharSequence content, Throwable error);
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  9. 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: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  10. subprojects/core-api/src/main/java/org/gradle/api/artifacts/repositories/InclusiveRepositoryContentDescriptor.java

         *
         * @param group the group name
         * @param moduleName the module name
         */
        void includeModule(String group, String moduleName);
    
        /**
         * Declares that an entire module should be searched for in this repository, using regular expressions.
         *
         * @param groupRegex the group name regular expression
         * @param moduleNameRegex the module name regular expression
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 10 23:09:47 UTC 2023
    - 3.6K bytes
    - Viewed (0)
Back to top