Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for forTree (0.04 sec)

  1. android/guava-tests/test/com/google/common/graph/TraverserTest.java

      public void forTree_breadthFirstIterable_twoTrees() {
        assertEqualCharNodes(Traverser.forTree(TWO_TREES).breadthFirst(charactersOf("a")), "ab");
        assertEqualCharNodes(Traverser.forTree(TWO_TREES).breadthFirst(charactersOf("ca")), "cadb");
      }
    
      @Test
      public void forTree_breadthFirst_singleRoot() {
        Iterable<Character> result = Traverser.forTree(SINGLE_ROOT).breadthFirst('a');
    
        assertEqualCharNodes(result, "a");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/graph/TraverserTest.java

      public void forTree_breadthFirstIterable_twoTrees() {
        assertEqualCharNodes(Traverser.forTree(TWO_TREES).breadthFirst(charactersOf("a")), "ab");
        assertEqualCharNodes(Traverser.forTree(TWO_TREES).breadthFirst(charactersOf("ca")), "cadb");
      }
    
      @Test
      public void forTree_breadthFirst_singleRoot() {
        Iterable<Character> result = Traverser.forTree(SINGLE_ROOT).breadthFirst('a');
    
        assertEqualCharNodes(result, "a");
      }
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/io/Files.java

       * "/home/alice", ...]}
       *
       * @since 23.5
       */
      public static Traverser<File> fileTraverser() {
        return Traverser.forTree(FILE_TREE);
      }
    
      private static final SuccessorsFunction<File> FILE_TREE =
          new SuccessorsFunction<File>() {
            @Override
            public Iterable<File> successors(File file) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jul 22 19:03:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  4. guava/src/com/google/common/io/Files.java

       * "/home/alice", ...]}
       *
       * @since 23.5
       */
      public static Traverser<File> fileTraverser() {
        return Traverser.forTree(FILE_TREE);
      }
    
      private static final SuccessorsFunction<File> FILE_TREE =
          new SuccessorsFunction<File>() {
            @Override
            public Iterable<File> successors(File file) {
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Mon Jul 22 19:03:12 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/io/MoreFiles.java

       * following paths: {@code ["/", "/etc", "/etc/config.txt", "/etc/fonts", "/home", "/home/alice",
       * ...]}
       *
       * @since 23.5
       */
      public static Traverser<Path> fileTraverser() {
        return Traverser.forTree(MoreFiles::fileTreeChildren);
      }
    
      private static Iterable<Path> fileTreeChildren(Path dir) {
        if (Files.isDirectory(dir, NOFOLLOW_LINKS)) {
          try {
            return listFiles(dir);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 35K bytes
    - Viewed (0)
  6. guava/src/com/google/common/io/MoreFiles.java

       * following paths: {@code ["/", "/etc", "/etc/config.txt", "/etc/fonts", "/home", "/home/alice",
       * ...]}
       *
       * @since 23.5
       */
      public static Traverser<Path> fileTraverser() {
        return Traverser.forTree(MoreFiles::fileTreeChildren);
      }
    
      private static Iterable<Path> fileTreeChildren(Path dir) {
        if (Files.isDirectory(dir, NOFOLLOW_LINKS)) {
          try {
            return listFiles(dir);
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Thu Oct 31 16:07:00 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  7. src/main/resources/fess_message_fr.properties

    constraints.EAN.message                     = {item} est un code-barres {type} invalide.
    constraints.Email.message                   = {item} n'est pas une adresse e-mail bien formée.
    constraints.Length.message                  = Length of {item} must be between {min} and {max}.
    constraints.Length.message                  = La longueur de {item} doit être comprise entre {min} et {max}.
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Feb 06 22:59:17 UTC 2023
    - 14.2K bytes
    - Viewed (0)
Back to top