com.google.common.collect.ImmutableSet#hashCode ( )源码实例Demo

下面列出了com.google.common.collect.ImmutableSet#hashCode ( ) 实例代码,或者点击链接到github查看源代码,也可以在右侧发表评论。

源代码1 项目: buck   文件: ExternalTestRunEvent.java

public static Started started(
    boolean isRunAllTests,
    TestSelectorList testSelectorList,
    boolean shouldExplainTestSelectorList,
    ImmutableSet<String> targets) {
  return new Started(
      targets.hashCode(),
      isRunAllTests,
      testSelectorList,
      shouldExplainTestSelectorList,
      targets);
}
 
源代码2 项目: buck   文件: TestRunEvent.java

public static Started started(
    boolean isRunAllTests,
    TestSelectorList testSelectorList,
    boolean shouldExplainTestSelectorList,
    ImmutableSet<String> targets) {
  return new Started(
      targets.hashCode(),
      isRunAllTests,
      testSelectorList,
      shouldExplainTestSelectorList,
      targets);
}
 
源代码3 项目: buck   文件: TestRunEvent.java

public static Finished finished(
    ImmutableSet<String> targets, List<TestResults> completedResults) {
  return new Finished(targets.hashCode(), completedResults);
}