congrats Icon
New! Tabnine Pro 14-day free trial
Start a free trial
Tabnine Logo
Version.getReleaseFull
Code IndexAdd Tabnine to your IDE (free)

How to use
getReleaseFull
method
in
cascading.util.Version

Best Java code snippets using cascading.util.Version.getReleaseFull (Showing top 6 results out of 315)

origin: cwensel/cascading

public static String getVersionString()
 {
 if( getVersionProperties().isEmpty() )
  return null;
 String releaseVersion;
 if( getReleaseBuild() == null || getReleaseBuild().isEmpty() )
  releaseVersion = String.format( "%s %s", CASCADING, getReleaseFull() );
 else
  releaseVersion = String.format( "%s %s-%s", CASCADING, getReleaseFull(), getReleaseBuild() );
 return releaseVersion;
 }
origin: cwensel/cascading

public static String getRelease()
 {
 if( getVersionProperties().isEmpty() )
  return null;
 if( getReleaseBuild() == null || getReleaseBuild().isEmpty() )
  return String.format( "%s", getReleaseFull() );
 else
  return String.format( "%s-%s", getReleaseFull(), getReleaseBuild() );
 }
origin: cascading/lingual-core

public static String getProductVersion()
 {
 return createReleaseVersion( cascading.util.Version.getReleaseFull(), cascading.util.Version.getReleaseBuild() );
 }
origin: cwensel/cascading

 return true;
boolean isCurrentWip = Version.getReleaseFull() != null && Version.getReleaseFull().contains( "wip" );
boolean isCurrentDev = Version.getReleaseFull() == null || Version.getReleaseFull().contains( "wip-dev" );
origin: cwensel/cascading

sb.append( urlEncode( Version.CASCADING ) );
sb.append( "&version=" );
sb.append( urlEncode( Version.getReleaseFull() ) );
sb.append( "&version-build=" );
sb.append( urlEncode( Version.getReleaseBuild() ) );
origin: cwensel/cascading

public void writeStats( PlannerContext plannerContext, RuleResult ruleResult )
 {
 Path path = getPlanStatsPath();
 if( path == null )
  return;
 File file = path.resolve( String.format( "planner-stats-%s-%s.txt", ruleResult.getRegistry().getName(), ruleResult.getResultStatus() ) ).toFile();
 processLogger.logInfo( "writing planner stats to: {}", file );
 file.getParentFile().mkdirs();
 try( PrintWriter writer = new PrintWriter( file ) )
  {
  Flow flow = plannerContext.getFlow();
  Map<Object, Object> configAsProperties = flow.getConfigAsProperties();
  writer.format( "cascading version: %s, build: %s\n", emptyOrValue( Version.getReleaseFull() ), emptyOrValue( Version.getReleaseBuild() ) );
  writer.format( "application id: %s\n", emptyOrValue( AppProps.getApplicationID( configAsProperties ) ) );
  writer.format( "application name: %s\n", emptyOrValue( AppProps.getApplicationName( configAsProperties ) ) );
  writer.format( "application version: %s\n", emptyOrValue( AppProps.getApplicationVersion( configAsProperties ) ) );
  writer.format( "platform: %s\n", emptyOrValue( flow.getPlatformInfo() ) );
  writer.format( "frameworks: %s\n", emptyOrValue( AppProps.getApplicationFrameworks( configAsProperties ) ) );
  writer.println();
  ruleResult.writeStats( writer );
  }
 catch( IOException exception )
  {
  processLogger.logError( "could not write stats", exception );
  }
 }
cascading.utilVersiongetReleaseFull

Popular methods of Version

  • getRelease
  • getReleaseBuild
  • getReleaseMajor
  • getReleaseMinor
  • getVersionProperties
  • getVersionString
  • hasMajorMinorVersionInfo
  • loadVersionProperties
  • printBanner
  • warnOnDuplicate
    A shaded jar will have multiple version.properties, e.g. file:/mnt/var/lib/hadoop/tmp/hadoop-unjar7

Popular in Java

  • Parsing JSON documents to java classes using gson
  • getOriginalFilename (MultipartFile)
    Return the original filename in the client's filesystem.This may contain path information depending
  • runOnUiThread (Activity)
  • scheduleAtFixedRate (ScheduledExecutorService)
  • HttpURLConnection (java.net)
    An URLConnection for HTTP (RFC 2616 [http://tools.ietf.org/html/rfc2616]) used to send and receive d
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • KeyStore (java.security)
    KeyStore is responsible for maintaining cryptographic keys and their owners. The type of the syste
  • ResultSet (java.sql)
    An interface for an object which represents a database table entry, returned as the result of the qu
  • LinkedList (java.util)
    Doubly-linked list implementation of the List and Dequeinterfaces. Implements all optional list oper
  • Join (org.hibernate.mapping)
  • Top 25 Plugins for Webstorm
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimAtomGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyStudentsTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now