Tabnine Logo
FilesystemConfig.setStoreMetadata
Code IndexAdd Tabnine to your IDE (free)

How to use
setStoreMetadata
method
in
com.emc.ecs.sync.config.storage.FilesystemConfig

Best Java code snippets using com.emc.ecs.sync.config.storage.FilesystemConfig.setStoreMetadata (Showing top 4 results out of 315)

origin: EMCECS/ecs-sync

@Test
public void testFilesystem() {
  final File tempDir = new File("/tmp/ecs-sync-filesystem-test"); // File.createTempFile("ecs-sync-filesystem-test", "dir");
  tempDir.mkdir();
  tempDir.deleteOnExit();
  if (!tempDir.exists() || !tempDir.isDirectory())
    throw new RuntimeException("unable to make temp dir");
  FilesystemConfig filesystemConfig = new FilesystemConfig();
  filesystemConfig.setPath(tempDir.getPath());
  filesystemConfig.setStoreMetadata(true);
  multiEndToEndTest(filesystemConfig, new TestConfig(), false);
  new File(tempDir, ObjectMetadata.METADATA_DIR).delete(); // delete this so the temp dir can go away
}
origin: EMCECS/ecs-sync

object.setModifiedSince("2015-01-01T00:00:00Z");
object.setExcludedPaths(new String[]{".*\\.bak", ".*/\\.snapshot"});
object.setStoreMetadata(true);
origin: EMCECS/ecs-sync

fsConfig.setStoreMetadata(true);
origin: EMCECS/ecs-sync

tmpConfig.setStoreMetadata(true);
com.emc.ecs.sync.config.storageFilesystemConfigsetStoreMetadata

Popular methods of FilesystemConfig

  • <init>
  • getPath
  • isUseAbsolutePath
  • setPath
  • getDeleteCheckScript
  • getDeleteOlderThan
  • getExcludedPaths
  • getModifiedSince
  • isFollowLinks
  • isIncludeBaseDir
  • setExcludedPaths
  • setModifiedSince
    Date/time should be provided in ISO-8601 UTC format (i.e. 2015-01-01T04:30:00Z)
  • setExcludedPaths,
  • setModifiedSince,
  • isStoreMetadata,
  • setDeleteCheckScript,
  • setDeleteOlderThan,
  • setFollowLinks,
  • setUseAbsolutePath

Popular in Java

  • Making http requests using okhttp
  • getContentResolver (Context)
  • notifyDataSetChanged (ArrayAdapter)
  • setContentView (Activity)
  • Menu (java.awt)
  • Thread (java.lang)
    A thread is a thread of execution in a program. The Java Virtual Machine allows an application to ha
  • Date (java.util)
    A specific moment in time, with millisecond precision. Values typically come from System#currentTime
  • List (java.util)
    An ordered collection (also known as a sequence). The user of this interface has precise control ove
  • Filter (javax.servlet)
    A filter is an object that performs filtering tasks on either the request to a resource (a servlet o
  • BoxLayout (javax.swing)
  • Top 12 Jupyter Notebook extensions
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