Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 8 of 8 for preOrder (0.06 seconds)

  1. android/guava/src/com/google/common/graph/Traverser.java

       * @since 24.1
       */
      public final Iterable<N> depthFirstPreOrder(Iterable<? extends N> startNodes) {
        ImmutableSet<N> validated = validate(startNodes);
        return () -> newTraversal().preOrder(validated.iterator());
      }
    
      /**
       * Returns an unmodifiable {@code Iterable} over the nodes reachable from {@code startNode}, in
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Wed Mar 11 01:10:31 GMT 2026
    - 19.3K bytes
    - Click Count (0)
  2. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

        // reorder
        getAll(cache, asList(0, 1, 2));
        CacheTesting.drainRecencyQueues(cache);
        ticker.advance(2, MILLISECONDS);
        assertThat(keySet).containsExactly(3, 4, 5, 6, 7, 8, 9, 0, 1, 2);
    
        // 3 expires
        ticker.advance(1, MILLISECONDS);
        assertThat(keySet).containsExactly(4, 5, 6, 7, 8, 9, 0, 1, 2);
    
        // reorder
        getAll(cache, asList(5, 7, 9));
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 16:38:16 GMT 2026
    - 19.1K bytes
    - Click Count (0)
  3. docs/pt/docs/help-fastapi.md

    As conversas nos sistemas de chat também não são tão fáceis de pesquisar quanto no GitHub, então perguntas e respostas podem se perder na conversa. E somente as que estão no GitHub contam para você se tornar um(a) [Especialista em FastAPI](fastapi-people.md#fastapi-experts), então é bem provável que você receba mais atenção no GitHub.
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 13.7K bytes
    - Click Count (0)
  4. docs/pt/docs/async.md

    Todos os caixas fazendo todo o trabalho, um cliente após o outro 👨‍💼⏯.
    
    E você tinha que esperar 🕙 na fila por um longo tempo ou poderia perder a vez.
    
    Você provavelmente não gostaria de levar seu _crush_ 😍 com você para um rolezinho no banco 🏦.
    
    ### Conclusão dos hambúrgueres { #burger-conclusion }
    
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Thu Mar 19 18:20:43 GMT 2026
    - 25.2K bytes
    - Click Count (0)
  5. migrator/migrator.go

    		).Error
    	})
    }
    
    // CurrentDatabase returns current database name
    func (m Migrator) CurrentDatabase() (name string) {
    	m.DB.Raw("SELECT DATABASE()").Row().Scan(&name)
    	return
    }
    
    // ReorderModels reorder models according to constraint dependencies
    func (m Migrator) ReorderModels(values []interface{}, autoAdd bool) (results []interface{}) {
    	type Dependency struct {
    		*gorm.Statement
    		Depends []*schema.Schema
    	}
    
    Created: Sun Apr 05 09:35:12 GMT 2026
    - Last Modified: Sat Mar 21 11:49:01 GMT 2026
    - 29.8K bytes
    - Click Count (0)
  6. android/guava/src/com/google/common/math/Quantiles.java

       *       greater than or equal to all the values with indexes in the range [{@code from}, {@code
       *       to}].
       * </ul>
       *
       * This method will reorder the values with indexes in the range [{@code from}, {@code to}] such
       * that all the values with indexes in the range [{@code from}, {@code required}) are less than or
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Mon Mar 23 21:06:42 GMT 2026
    - 30.1K bytes
    - Click Count (0)
  7. src/main/java/org/codelibs/fess/chat/ChatClient.java

                        .getDocumentListByDocIds(docIds.toArray(new String[0]), fields, OptionalThing.empty(),
                                SearchRequestParams.SearchRequestType.JSON);
    
                // Reorder results to match original docIds order (preserve search score order)
                final Map<String, Map<String, Object>> resultMap = new LinkedHashMap<>();
                for (final Map<String, Object> doc : results) {
    Created: Tue Mar 31 13:07:34 GMT 2026
    - Last Modified: Sat Mar 21 06:04:58 GMT 2026
    - 56.6K bytes
    - Click Count (0)
  8. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

    oglecode\u000bgotpantheon\u000egrayjayleagues\nhatenablog\u000bhatenadiary\u0011health-carereform\u000chercules-app\u000chercules-dev\u0009herokuapp\nhobby-site\u0009homelinux\u000fhomesecuritymac\u000ehomesecuritypc\u0008homeunix\u0012hosted-by-previder\u0008hostedpi\u0007hosteur\u000fhotelwithflight\u0009iamallama\u0009ik-server\u0007ip-ddns\u000eis-a-anarchist\u000cis-a-blogger\u000fis-a-bookkeeper\u000eis-a-bulls-fan\u000cis-a-caterer\u0009is-a-chef\u0011is-a-conservative\u0008is-a-cpa\u0012...
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Mar 06 20:41:51 GMT 2026
    - 290.5K bytes
    - Click Count (1)
Back to Top