Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 486 for injecting (0.17 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/MetadataResolutionContext.java

         * The cache policy of a repository
         *
         * @return the cache policy
         */
        CachePolicy getCachePolicy();
    
        /**
         * Provides an injecting instantiator, giving access to services potentially contextual to a repository.
         *
         * @return a injecting instantiator
         */
        Instantiator getInjectingInstantiator();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  2. maven-model-builder/src/main/java/org/apache/maven/model/profile/ProfileInjector.java

    import org.apache.maven.model.building.ModelProblemCollector;
    
    /**
     * Handles profile injection into the model.
     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Nov 07 08:20:52 UTC 2023
    - 4.2K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/api/services/model/ProfileInjector.java

    import org.apache.maven.api.services.ModelProblemCollector;
    
    /**
     * Handles profile injection into the model.
     *
     */
    public interface ProfileInjector {
    
        /**
         * Merges values from the specified profile into the given model. Implementations are expected to keep the profile
         * and model completely decoupled by injecting deep copies rather than the original objects from the profile.
         *
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    [%header%autowidth,compact]
    |===
    | Feature | Minimum Version | Description
    
    | Inspecting executed tasks
    | 2.5
    | Inspecting the executed tasks, using link:{javadocPath}/org/gradle/testkit/runner/BuildResult.html#getTasks--[BuildResult.getTasks()] and similar methods.
    
    | <<#sub:test-kit-classpath-injection,Plugin classpath injection>>
    | 2.8
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. platforms/software/antlr/src/main/java/org/gradle/api/plugins/antlr/AntlrSourceDirectorySet.java

     */
    
    package org.gradle.api.plugins.antlr;
    
    import org.gradle.api.file.SourceDirectorySet;
    
    /**
     * Contract for a Gradle extension that acts as a handler for what I call a virtual directory mapping,
     * injecting a virtual directory named 'antlr' into the project's various {@link org.gradle.api.tasks.SourceSet source
     * sets}.
     *
     * @since 7.1
     */
    public interface AntlrSourceDirectorySet extends SourceDirectorySet {
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/inheritance/InheritanceAssembler.java

     */
    public interface InheritanceAssembler {
    
        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/injection/injection.go

    )
    
    // Analyzer checks conditions related to Istio sidecar injection.
    type Analyzer struct{}
    
    var _ analysis.Analyzer = &Analyzer{}
    
    // We assume that enablement is via an istio-injection=enabled or istio.io/rev namespace label
    // In theory, there can be alternatives using Mutatingwebhookconfiguration, but they're very uncommon
    // See https://istio.io/docs/ops/troubleshooting/injection/ for more info.
    var (
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 02 21:29:40 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/api/services/model/InheritanceAssembler.java

     */
    public interface InheritanceAssembler {
    
        /**
         * Merges values from the specified parent model into the given child model. Implementations are expected to keep
         * parent and child completely decoupled by injecting deep copies of objects into the child rather than the original
         * objects from the parent.
         *
         * @param child The child model into which to merge the values inherited from the parent, must not be
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/classpath/TransformedClassPathTest.groovy

            classPathAsList(AGENT_INSTRUMENTATION_MARKER.fileName, "instrumented/instrumented-1.jar")                                                                ...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 20 11:14:30 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/InjectUtil.java

         * @param type the type to find the injectable constructor of.
         */
        static Constructor<?> selectConstructor(final Class<?> type) {
            if (isInnerClass(type)) {
                // The DI system doesn't support injecting non-static inner classes.
                throw new ServiceValidationException(
                    String.format(
                        "Unable to select constructor for non-static inner class %s.",
                        format(type)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 4K bytes
    - Viewed (0)
Back to top