當前位置: 首頁>>代碼示例>>Java>>正文


Java Configuration.addDeprecation方法代碼示例

本文整理匯總了Java中org.apache.hadoop.conf.Configuration.addDeprecation方法的典型用法代碼示例。如果您正苦於以下問題:Java Configuration.addDeprecation方法的具體用法?Java Configuration.addDeprecation怎麽用?Java Configuration.addDeprecation使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在org.apache.hadoop.conf.Configuration的用法示例。


在下文中一共展示了Configuration.addDeprecation方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。

示例1: testReadWriteWithDeprecatedKeys

import org.apache.hadoop.conf.Configuration; //導入方法依賴的package包/類
public void testReadWriteWithDeprecatedKeys() throws Exception {
   Configuration conf = new Configuration();
   conf.setBoolean("old.config.yet.to.be.deprecated", true);
   Configuration.addDeprecation("old.config.yet.to.be.deprecated", 
new String[]{"new.conf.to.replace.deprecated.conf"});
   ByteArrayOutputStream out=new ByteArrayOutputStream();
   String fileContents;
   try {
     conf.writeXml(out);
     fileContents = out.toString();
   } finally {
     out.close();
   }
   assertTrue(fileContents.contains("old.config.yet.to.be.deprecated"));
   assertTrue(fileContents.contains("new.conf.to.replace.deprecated.conf"));
 }
 
開發者ID:nucypher,項目名稱:hadoop-oss,代碼行數:17,代碼來源:TestDeprecatedKeys.java

示例2: testIteratorWithDeprecatedKeysMappedToMultipleNewKeys

import org.apache.hadoop.conf.Configuration; //導入方法依賴的package包/類
@Test
public void testIteratorWithDeprecatedKeysMappedToMultipleNewKeys() {
  Configuration conf = new Configuration();
  Configuration.addDeprecation("dK", new String[]{"nK1", "nK2"});
  conf.set("k", "v");
  conf.set("dK", "V");
  assertEquals("V", conf.get("dK"));
  assertEquals("V", conf.get("nK1"));
  assertEquals("V", conf.get("nK2"));
  conf.set("nK1", "VV");
  assertEquals("VV", conf.get("dK"));
  assertEquals("VV", conf.get("nK1"));
  assertEquals("VV", conf.get("nK2"));
  conf.set("nK2", "VVV");
  assertEquals("VVV", conf.get("dK"));
  assertEquals("VVV", conf.get("nK2"));
  assertEquals("VVV", conf.get("nK1"));
  boolean kFound = false;
  boolean dKFound = false;
  boolean nK1Found = false;
  boolean nK2Found = false;
  for (Map.Entry<String, String> entry : conf) {
    if (entry.getKey().equals("k")) {
      assertEquals("v", entry.getValue());
      kFound = true;
    }
    if (entry.getKey().equals("dK")) {
      assertEquals("VVV", entry.getValue());
      dKFound = true;
    }
    if (entry.getKey().equals("nK1")) {
      assertEquals("VVV", entry.getValue());
      nK1Found = true;
    }
    if (entry.getKey().equals("nK2")) {
      assertEquals("VVV", entry.getValue());
      nK2Found = true;
    }
  }
  assertTrue("regular Key not found", kFound);
  assertTrue("deprecated Key not found", dKFound);
  assertTrue("new Key 1 not found", nK1Found);
  assertTrue("new Key 2 not found", nK2Found);
}
 
開發者ID:nucypher,項目名稱:hadoop-oss,代碼行數:45,代碼來源:TestDeprecatedKeys.java


注:本文中的org.apache.hadoop.conf.Configuration.addDeprecation方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。