Codota Logo
DeployState$Builder.configDefinitionRepo
Code IndexAdd Codota to your IDE (free)

How to use
configDefinitionRepo
method
in
com.yahoo.config.model.deploy.DeployState$Builder

Best Java code snippets using com.yahoo.config.model.deploy.DeployState$Builder.configDefinitionRepo (Showing top 2 results out of 315)

  • Add the Codota plugin to your IDE and get smart completions
private void myMethod () {
Gson g =
  • Codota Iconnew Gson()
  • Codota IconGsonBuilder gsonBuilder;gsonBuilder.create()
  • Codota Iconnew GsonBuilder().create()
  • Smart code suggestions by Codota
}
origin: com.yahoo.vespa/config-model

private DeployState createDeployState(ModelContext modelContext, ValidationParameters validationParameters) {
  DeployState.Builder builder = new DeployState.Builder()
    .applicationPackage(modelContext.applicationPackage())
    .deployLogger(modelContext.deployLogger())
    .configDefinitionRepo(modelContext.configDefinitionRepo())
    .fileRegistry(modelContext.getFileRegistry())
    .permanentApplicationPackage(modelContext.permanentApplicationPackage())
    .properties(modelContext.properties())
    .vespaVersion(version())
    .modelHostProvisioner(createHostProvisioner(modelContext))
    .rotations(modelContext.properties().rotations())
    .modelImporters(modelImporters)
    .zone(zone)
    .now(clock.instant())
    .wantedNodeVespaVersion(modelContext.wantedNodeVespaVersion());
  modelContext.previousModel().ifPresent(builder::previousModel);
  return builder.build(validationParameters);
}
origin: com.yahoo.vespa/standalone-container

private static DeployState createDeployState(ApplicationPackage applicationPackage, FileRegistry fileRegistry, DeployLogger logger) {
  DeployState.Builder builder = new DeployState.Builder()
      .applicationPackage(applicationPackage)
      .fileRegistry(fileRegistry)
      .deployLogger(logger)
      .configDefinitionRepo(configDefinitionRepo);
  /* Temporarily disable until we know how status.html is updated for config servers/controllers
  if (isConfigServer())
    builder.properties(new DeployProperties.Builder()
                  .hostedVespa(new CloudConfigInstallVariables().hostedVespa().orElse(Boolean.FALSE))
                  .build());
  */
  return builder.build();
}
com.yahoo.config.model.deployDeployState$BuilderconfigDefinitionRepo

Popular methods of DeployState$Builder

  • <init>
  • applicationPackage
  • build
  • deployLogger
  • fileRegistry
  • closeIgnoreException
  • createSearchDocumentModel
  • getSearchDefinitionRelativePath
  • modelHostProvisioner
  • modelImporters
  • now
  • permanentApplicationPackage
  • now,
  • permanentApplicationPackage,
  • properties,
  • rotations,
  • stripSuffix,
  • vespaVersion,
  • wantedNodeVespaVersion,
  • zone

Popular in Java

  • Updating database using SQL prepared statement
  • findViewById (Activity)
  • runOnUiThread (Activity)
  • setScale (BigDecimal)
    Returns a BigDecimal whose scale is the specified value, and whose value is numerically equal to thi
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • Collections (java.util)
    This class consists exclusively of static methods that operate on or return collections. It contains
  • Set (java.util)
    A collection that contains no duplicate elements. More formally, sets contain no pair of elements e1
  • SortedSet (java.util)
    A Set that further provides a total ordering on its elements. The elements are ordered using their C
  • Runner (org.openjdk.jmh.runner)
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
Codota Logo
  • Products

    Search for Java codeSearch for JavaScript codeEnterprise
  • IDE Plugins

    IntelliJ IDEAWebStormAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogCodota Academy Plugin user guide Terms of usePrivacy policyJava Code IndexJavascript Code Index
Get Codota for your IDE now