Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,660 for declareNS (0.15 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/internal/component/external/model/maven/MavenDependencyDescriptor.java

        /**
         * When a Maven dependency declares a classifier or type attribute, this is modelled as a 'dependency artifact'.
         * This means that instead of resolving the default artifacts for the target dependency, we'll use the one defined
         * for the dependency.
         */
        public ImmutableList<IvyArtifactName> getConfigurationArtifacts() {
            // Special handling for artifacts declared for optional dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 19 19:13:04 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/components/KtScopeProvider.kt

         * declared in the given [KaSymbolWithMembers].
         *
         * The declared member scope does not contain classifiers (including the companion object) except for inner classes. To retrieve the
         * classifiers declared in this [KaSymbolWithMembers], please use the *static* declared member scope provided by
         * [getStaticDeclaredMemberScope].
         *
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. maven-core/src/main/java/org/apache/maven/plugin/internal/MavenScopeDependenciesValidator.java

                        PluginValidationManager.IssueLocality.EXTERNAL,
                        session,
                        pluginArtifact,
                        "Plugin should declare Maven artifacts in `provided` scope. If the plugin already declares them in `provided` scope, update the maven-plugin-plugin to latest version. Artifacts found with wrong scope: "
                                + mavenArtifacts);
            }
        }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 07 09:51:56 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/core-configuration/model-core/src/main/java/org/gradle/model/ModelSet.java

     * To add elements to the set, the {@link #create(Action)} method can be used.
     *
     * @param <T> the type of model object
     */
    @Incubating
    public interface ModelSet<T> extends Set<T>, ModelElement {
    
        /**
         * Declares a new set element, configured by the given action.
         *
         * @param action the object configuration
         */
        void create(Action<? super T> action);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. docs/en/docs/tutorial/query-params-str-validations.md

        It is used by Pydantic and FastAPI to explicitly declare that a value is required.
    
    This will let **FastAPI** know that this parameter is required.
    
    ### Required with `None`
    
    You can declare that a parameter can accept `None`, but that it's still required. This would force clients to send a value, even if the value is `None`.
    
    To do that, you can declare that `None` is a valid type but still use `...` as the default:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/core-plugins/antlr_plugin.adoc

    .Declare ANTLR version
    ====
    include::sample[dir="snippets/antlr/useAntlrPlugin/kotlin",files="build.gradle.kts[tags=declare-dependency]"]
    include::sample[dir="snippets/antlr/useAntlrPlugin/groovy",files="build.gradle[tags=declare-dependency]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/CatalogPluginsKotlinDSLIntegrationTest.groovy

            """
    
            when:
            plugin.allowAll()
            succeeds taskName
    
            then:
            outputContains message
        }
    
        def "can declare a plugin using a version declared in a catalog"() {
            String taskName = 'greet'
            String message = 'Hello from plugin!'
            String pluginId = 'com.acme.greeter'
            String pluginVersion = '1.5'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  8. docs/fr/docs/advanced/additional-responses.md

    Vous pouvez déclarer un `response_model`, en utilisant le code HTTP par défaut `200` (ou un code personnalisé si vous en avez besoin), puis déclarer des informations supplémentaires pour cette même réponse dans `responses`, directement dans le schéma OpenAPI.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalogBuilder.java

                                "' which doesn't exist.", UNDEFINED_ALIAS_REFERENCE)
                                .details("Bundles can only contain references to existing library aliases.")
                                .solution("Make sure that the library alias '" + alias + "' is declared")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/types2/stmt.go

    			// _ := x.(type) is an invalid short variable declaration
    			check.softErrorf(lhs, NoNewVar, "no new variable on left side of :=")
    			lhs = nil // avoid declared and not used error below
    		} else {
    			check.recordDef(lhs, nil) // lhs variable is implicitly declared in each cause clause
    		}
    	}
    
    	// check rhs
    	var x operand
    	check.expr(nil, &x, guard.X)
    	if x.mode == invalid {
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 30.7K bytes
    - Viewed (0)
Back to top