congrats Icon
New! Announcing Tabnine Chat Beta
Learn More
Tabnine Logo
FileInfo.getInAlluxioPercentage
Code IndexAdd Tabnine to your IDE (free)

How to use
getInAlluxioPercentage
method
in
alluxio.wire.FileInfo

Best Java code snippets using alluxio.wire.FileInfo.getInAlluxioPercentage (Showing top 6 results out of 315)

origin: Alluxio/alluxio

/**
 * @return the percentage of blocks in Alluxio tier storage, mutable
 */
public int getInAlluxioPercentage() {
 return mInfo.getInAlluxioPercentage();
}
origin: Alluxio/alluxio

long fileId = mFileSystemMaster.getFileId(file);
FileInfo fileInfo = mFileSystemMaster.getFileInfo(fileId);
if (fileInfo != null && fileInfo.getInAlluxioPercentage() == 100) {
 fileInfos.add(new UIFileInfo(fileInfo));
origin: Alluxio/alluxio

.addAllFileBlockInfos(fileBlockInfos)
.setTtlAction(fileInfo.getTtlAction()).setMountId(fileInfo.getMountId())
.setInAlluxioPercentage(fileInfo.getInAlluxioPercentage())
.setInMemoryPercentage(fileInfo.getInMemoryPercentage())
.setUfsFingerprint(fileInfo.getUfsFingerprint())
origin: org.alluxio/alluxio-core-common

/**
 * @return the percentage of blocks in Alluxio tier storage, mutable
 */
public int getInAlluxioPercentage() {
 return mInfo.getInAlluxioPercentage();
}
origin: Alluxio/alluxio

Assert.assertEquals(a.isPersisted(), b.isPersisted());
Assert.assertEquals(a.isPinned(), b.isPinned());
Assert.assertEquals(a.getInAlluxioPercentage(), b.getInAlluxioPercentage());
Assert.assertEquals(a.getAcl(), b.getAcl());
Assert.assertEquals(a.getDefaultAcl(), b.getDefaultAcl());
origin: org.alluxio/alluxio-core-server-master

long fileId = fileSystemMaster.getFileId(file);
FileInfo fileInfo = fileSystemMaster.getFileInfo(fileId);
if (fileInfo != null && fileInfo.getInAlluxioPercentage() == 100) {
 fileInfos.add(new UIFileInfo(fileInfo));
alluxio.wireFileInfogetInAlluxioPercentage

Popular methods of FileInfo

  • <init>
    Creates a new instance of FileInfo.
  • getPath
  • isFolder
  • setFileBlockInfos
  • getGroup
  • getLastModificationTimeMs
  • getLength
  • getMode
  • getName
  • getOwner
  • getUfsPath
  • isCompleted
  • getUfsPath,
  • isCompleted,
  • setBlockIds,
  • setFolder,
  • setLength,
  • setPath,
  • getBlockIds,
  • getBlockSizeBytes,
  • getCreationTimeMs,
  • getFileId

Popular in Java

  • Making http post requests using okhttp
  • onRequestPermissionsResult (Fragment)
  • getResourceAsStream (ClassLoader)
  • getExternalFilesDir (Context)
  • MalformedURLException (java.net)
    This exception is thrown when a program attempts to create an URL from an incorrect specification.
  • LinkedHashMap (java.util)
    LinkedHashMap is an implementation of Map that guarantees iteration order. All optional operations a
  • StringTokenizer (java.util)
    Breaks a string into tokens; new code should probably use String#split.> // Legacy code: StringTo
  • ConcurrentHashMap (java.util.concurrent)
    A plug-in replacement for JDK1.5 java.util.concurrent.ConcurrentHashMap. This version is based on or
  • HttpServlet (javax.servlet.http)
    Provides an abstract class to be subclassed to create an HTTP servlet suitable for a Web site. A sub
  • LoggerFactory (org.slf4j)
    The LoggerFactory is a utility class producing Loggers for various logging APIs, most notably for lo
  • Best IntelliJ plugins
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

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