Examples of resolve()


Examples of com.sun.tools.hat.internal.model.Snapshot.resolve()

        } catch (RuntimeException ex) {
            ex.printStackTrace();
            System.exit(1);
        }
        System.out.println("Snapshot read, resolving...");
        model.resolve(calculateRefs);
        System.out.println("Snapshot resolved.");

        if (excludeFile != null) {
            model.setReachableExcludes(new ReachableExcludesImpl(excludeFile));
        }
View Full Code Here

Examples of com.sun.xml.internal.ws.api.wsdl.parser.MetaDataResolver.resolve()

        RuntimeWSDLParser wsdlParser = null;

        //Currently we try the first available MetadataResolverFactory that gives us a WSDL document
        for (MetadataResolverFactory resolverFactory : ServiceFinder.find(MetadataResolverFactory.class)) {
            mdResolver = resolverFactory.metadataResolver(resolver);
            serviceDescriptor = mdResolver.resolve(wsdlLoc.toURI());
            //we got the ServiceDescriptor, now break
            if (serviceDescriptor != null)
                break;
        }
        if (serviceDescriptor != null) {
View Full Code Here

Examples of com.sun.xml.ws.api.wsdl.parser.MetaDataResolver.resolve()

        RuntimeWSDLParser wsdlParser = null;

        //Currently we try the first available MetadataResolverFactory that gives us a WSDL document
        for (MetadataResolverFactory resolverFactory : ServiceFinder.find(MetadataResolverFactory.class)) {
            mdResolver = resolverFactory.metadataResolver(resolver);
            serviceDescriptor = mdResolver.resolve(wsdlLoc.toURI());
            //we got the ServiceDescriptor, now break
            if (serviceDescriptor != null)
                break;
        }
        if (serviceDescriptor != null) {
View Full Code Here

Examples of com.tuenti.supernanny.resolution.DepFetcher.resolve()

    try {
      CliParser p = new CliParser();
      p.depfile = this.depFile;
      p.skipCleanup = this.skipCleanup;
      util.setRoot(new File(root));
      fetcher.resolve(new File(root), p);
    } catch (IOException e) {
      log("Errors resolving dependencies for project in " + root);
      throw new BuildException(e);
    }
  }
View Full Code Here

Examples of com.tuenti.supernanny.resolution.Resolver.resolve()

    Resolver resolver = injector.getInstance(EagerResolver.class);
    List<Requirement> initialRequirements = new ArrayList<Requirement>();
    initialRequirements.add(new Requirement("befw", ReqType.EQ, "1.0.0", RepositoryType.TARBZ2,
        "http://localhost"));
    Set<Artifact> artifacts = resolver.resolve(initialRequirements);

    ArtifactData[] expected = { new ArtifactData("tuenti-common", "1.7.0"),
        new ArtifactData("futi", "3.0"), new ArtifactData("tuenti-build", "9.0"),
        new ArtifactData("befw", "1.0.0") };
    expectArtifacts(expected, artifacts);
View Full Code Here

Examples of com.typesafe.config.Config.resolve()

  protected static Map<String, String> configuration() {
    Map<String, String> conf = new HashMap<String, String>();
    Config config = ConfigFactory.parseFileAnySyntax(new File(
        "conf/application.conf"));
    config = config.resolve();
    for (Entry<String, ConfigValue> entry : config.entrySet()) {
      ConfigValue value = entry.getValue();
      conf.put(entry.getKey(), value.unwrapped().toString());
    }
    conf.putAll(inMemoryDatabase());
View Full Code Here

Examples of com.volantis.mcs.context.TranscodableUrlResolver.resolve()

    // Javadoc inherited.
    public void visit(StyleTranscodableURI value, Object object) {
        try {
            final TranscodableUrlResolver urlResolver =
                protocol.getMarinerPageContext().getTranscodableUrlResolver();
            final String url = urlResolver.resolve(value.getUri());
            if (url != null) {
                insertImage(parent, url);
            }
        } catch (RepositoryException e) {
            throw new ExtendedRuntimeException(e);
View Full Code Here

Examples of com.volantis.styling.compiler.FunctionResolver.resolve()

    // Javadoc inherited.
    public StylingFunction resolve(String name) {
        StylingFunction function = null;
        for (int i = 0; i < resolvers.length; i++) {
            FunctionResolver resolver = resolvers[i];
            function = resolver.resolve(name);
            if (function != null) {
                return function;
            }
        }
View Full Code Here

Examples of com.volantis.synergetics.path.Path.resolve()

        // If in OSGI container, load configuration using OSGi mechanism
        if (context != null) {
            String configArea = context.getBundleContext().
                getProperty(BootConstants.CONTEXT_AREA);
            Path configPath = Path.parse(configArea);
            configPath = configPath.resolve(location);
            File config = new File(configPath.asPlatformSpecificString());

            try {
                is = new FileInputStream(config);
View Full Code Here

Examples of de.anomic.http.server.AlternativeDomainNames.resolve()

        }
       
        // resolve yacy and yacyh domains
        AlternativeDomainNames yacyResolver = HTTPDemon.getAlternativeResolver();
        if(yacyResolver != null) {
          String yAddress = yacyResolver.resolve(host);
          if(yAddress != null) {
            url = new DigestURI(url.getProtocol() + "://" + yAddress + path);
          }
        }
       
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.