Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for toProvider (0.04 sec)

  1. impl/maven-core/src/main/java/org/apache/maven/execution/scope/internal/MojoExecutionScopeModule.java

            bind(MavenProject.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider(MavenProject.class))
                    .in(scope);
            bind(MojoExecution.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider(MojoExecution.class))
                    .in(scope);
            bind(Log.class)
                    .toProvider(MojoExecutionScope.seededKeyProvider(Log.class))
                    .in(scope);
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. impl/maven-core/src/main/java/org/apache/maven/internal/impl/SisuDiBridgeModule.java

                super.bind(key, binding);
                if (key.getQualifier() != null) {
                    com.google.inject.Key<U> k = toGuiceKey(key);
                    this.binder.bind(k).toProvider(new BridgeProvider<>(binding));
                }
                return this;
            }
    
            @SuppressWarnings("unchecked")
            private static <U> com.google.inject.Key<U> toGuiceKey(Key<U> key) {
    Registered: Sun Nov 03 03:35:11 UTC 2024
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 10.8K bytes
    - Viewed (0)
Back to top