Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 48 of 48 for getServices (0.14 sec)

  1. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultMavenPluginManager.java

                if (pathScope != null && !pathScope.isEmpty()) {
                    // resolution
                    PathScope ps = sessionV4.getService(PathScopeRegistry.class).require(pathScope);
                    DependencyResolverResult res =
                            sessionV4.getService(DependencyResolver.class).resolve(sessionV4, project, ps);
                    if (field.getType() == DependencyResolverResult.class) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 46.5K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolver.java

                root = null;
                dependencies = project.getDependencies();
                managedDependencies = project.getManagedDependencies();
                remoteRepositories = session.getService(ProjectManager.class).getRemoteProjectRepositories(project);
            } else {
                rootArtifact = request.getRootArtifact().orElse(null);
                root = request.getRoot().orElse(null);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/core-configuration/core-serialization-codecs/src/main/kotlin/org/gradle/internal/serialize/codecs/core/WorkNodeCodec.kt

                    setupNode.run(object : NodeExecutionContext {
                        override fun <T : Any> getService(type: Class<T>): T {
                            return ownerService(type)
                        }
                    })
                    successors = successors + setupNode.postExecutionNodes
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  4. maven-embedder/src/main/java/org/apache/maven/cli/internal/BootstrapCoreExtensionManager.java

                return new SimpleSession(mavenSession, getRepositorySystem(), repositories);
            }
    
            @Override
            public <T extends Service> T getService(Class<T> clazz) throws NoSuchElementException {
                if (clazz == ArtifactCoordinateFactory.class) {
                    return (T) new DefaultArtifactCoordinateFactory();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 13K bytes
    - Viewed (0)
  5. analysis/analysis-api-standalone/analysis-api-standalone-base/src/org/jetbrains/kotlin/analysis/api/standalone/base/declarations/KotlinStandaloneDeclarationProvider.kt

                root: VirtualFile,
                storage: (VirtualFile) -> Map<VirtualFile, KotlinFileStubImpl>
            ): Map<VirtualFile, KotlinFileStubImpl>? {
                val service = ApplicationManager.getApplication().getService(KotlinFakeClsStubsCache::class.java) ?: return null
                return service.fakeFileClsStubs.computeIfAbsent(root.path) { _ ->
                    storage(root)
                }
            }
        }
    }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Jun 06 17:44:50 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/conversion.go

    		}
    		hostname := fmt.Sprintf("%s.%s.svc.%s", to.Name, namespace, ctx.Domain)
    		if ctx.Context.GetService(hostname, namespace) == nil {
    			invalidBackendErr = &ConfigError{Reason: InvalidDestinationNotFound, Message: fmt.Sprintf("backend(%s) not found", hostname)}
    		}
    		return &istio.Destination{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

            serviceImplementation()
            buildFile << """
                interface ForwardingParams extends BuildServiceParameters {
                    Property<CountingService> getService()
                }
    
                abstract class ForwardingService implements BuildService<ForwardingParams> {
                    void increment() {
                        println("delegating to counting service")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. pilot/pkg/model/sidecar.go

    	if _, f := sidecarScopedKnownConfigTypes[config.Kind]; !f {
    		return true
    	}
    
    	return sc.configDependencies.Contains(config.HashCode())
    }
    
    func (sc *SidecarScope) GetService(hostname host.Name) *Service {
    	if sc == nil {
    		return nil
    	}
    	return sc.servicesByHostname[hostname]
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
Back to top