Search Options

Results per page
Sort
Preferred Languages
Advance

Results 691 - 700 of 1,615 for 10 (0.03 sec)

  1. src/test/java/org/codelibs/fess/helper/SearchHelperTest.java

            ComponentUtil.setFessConfig(new MockFessConfig() {
                @Override
                public Integer getCookieSearchParameterMaxLengthAsInteger() {
                    return 10; // Very small limit
                }
            });
    
            String longValue = "a".repeat(1000);
            getMockRequest().setParameter("q", longValue);
    
            searchHelper.storeSearchParameters();
    
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sat Jul 19 23:49:30 UTC 2025
    - 18.9K bytes
    - Viewed (0)
  2. android/guava-tests/test/com/google/common/base/JoinerTest.java

        j.appendTo(sb1, ImmutableMultimap.of(1, 2, 3, 4, 5, 6, 1, 3, 5, 10).entries());
        assertEquals("1:2;1:3;3:4;5:6;5:10", sb1.toString());
    
        StringBuilder sb2 = new StringBuilder();
        j.appendTo(sb2, ImmutableMultimap.of(1, 2, 3, 4, 5, 6, 1, 3, 5, 10).entries().iterator());
        assertEquals("1:2;1:3;3:4;5:6;5:10", sb2.toString());
      }
    
      public void test_skipNulls_onMap() {
        Joiner j = Joiner.on(",").skipNulls();
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Thu Aug 07 16:05:33 UTC 2025
    - 12.7K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/CacheEvictionTest.java

        // test lru within a single segment
        IdentityLoader<Integer> loader = identityLoader();
        LoadingCache<Integer, Integer> cache =
            CacheBuilder.newBuilder().concurrencyLevel(1).maximumSize(10).build(loader);
        CacheTesting.warmUp(cache, 0, 10);
        Set<Integer> keySet = cache.asMap().keySet();
        assertThat(keySet).containsExactly(0, 1, 2, 3, 4, 5, 6, 7, 8, 9);
    
        // re-order
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Tue May 13 18:46:00 UTC 2025
    - 15K bytes
    - Viewed (0)
  4. okhttp/src/jvmTest/kotlin/okhttp3/TestLogHandler.kt

            }
          }
        }
    
      fun takeAll(): List<String> {
        val list = mutableListOf<String>()
        logs.drainTo(list)
        return list
      }
    
      fun take(): String =
        logs.poll(10, TimeUnit.SECONDS)
          ?: throw AssertionError("Timed out waiting for log message.")
    Registered: Fri Sep 05 11:42:10 UTC 2025
    - Last Modified: Wed Mar 19 19:25:20 UTC 2025
    - 2.5K bytes
    - Viewed (0)
  5. docs/em/docs/advanced/advanced-dependencies.md

    βœ‹οΈ πŸ‘₯ πŸ’š πŸ’ͺ πŸ”— πŸ‘ˆ πŸ”§ 🎚.
    
    ##  "πŸ‡§πŸ‡²" πŸ‘
    
    🐍 πŸ“€ 🌌 βš’ πŸ‘ πŸŽ“ "πŸ‡§πŸ‡²".
    
    🚫 πŸŽ“ ⚫️ (❔ βͺ πŸ‡§πŸ‡²), βœ‹οΈ πŸ‘ πŸ‘ˆ πŸŽ“.
    
    πŸ‘ˆ, πŸ‘₯ πŸ“£ πŸ‘©β€πŸ”¬ `__call__`:
    
    {* ../../docs_src/dependencies/tutorial011.py hl[10] *}
    
    πŸ‘‰ πŸ’Ό, πŸ‘‰ `__call__` βš«οΈβ” **FastAPI** πŸ”œ βš™οΈ βœ… πŸŒ– πŸ”’ &amp; 🎧-πŸ”—, &amp; πŸ‘‰ βš«οΈβ” πŸ”œ πŸ€™ πŸšΆβ€β™€οΈ πŸ’² πŸ”’ πŸ‘† *➑ πŸ› οΈ πŸ”’* βͺ.
    
    ## πŸ”— πŸ‘
    
    &amp; πŸ”œ, πŸ‘₯ πŸ’ͺ βš™οΈ `__init__` πŸ“£ πŸ”’ πŸ‘ πŸ‘ˆ πŸ‘₯ πŸ’ͺ βš™οΈ "πŸ”—" πŸ”—:
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  6. cmd/shared-lock.go

    package cmd
    
    import (
    	"context"
    	"time"
    )
    
    var sharedLockTimeout = newDynamicTimeoutWithOpts(dynamicTimeoutOpts{
    	timeout:       30 * time.Second,
    	minimum:       10 * time.Second,
    	retryInterval: time.Minute,
    })
    
    type sharedLock struct {
    	lockContext chan LockContext
    }
    
    func (ld sharedLock) backgroundRoutine(ctx context.Context, objAPI ObjectLayer, lockName string) {
    	for {
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Mon Feb 13 09:26:38 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/graph/IncidentEdgeSet.java

      }
    
      @Override
      public int size() {
        if (graph.isDirected()) {
          return graph.inDegree(node)
              + graph.outDegree(node)
              - (graph.successors(node).contains(node) ? 1 : 0);
        } else {
          return graph.adjacentNodes(node).size();
        }
      }
    
      @Override
      public boolean contains(@Nullable Object obj) {
        if (!(obj instanceof EndpointPair)) {
          return false;
        }
    Registered: Fri Sep 05 12:43:10 UTC 2025
    - Last Modified: Sun Dec 22 03:38:46 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  8. compat/maven-compat/src/main/resources/META-INF/maven/plugin-expressions/settings.paramdoc.xml

    <?xml version="1.0" encoding="UTF-8"?>
    <!--
    Licensed to the Apache Software Foundation (ASF) under one
    or more contributor license agreements.  See the NOTICE file
    distributed with this work for additional information
    regarding copyright ownership.  The ASF licenses this file
    to you under the Apache License, Version 2.0 (the
    "License"); you may not use this file except in compliance
    with the License.  You may obtain a copy of the License at
    
    Registered: Sun Sep 07 03:35:12 UTC 2025
    - Last Modified: Fri Oct 25 12:31:46 UTC 2024
    - 2K bytes
    - Viewed (0)
  9. docs/pt/docs/tutorial/header-param-models.md

    VocΓͺ pode usar a configuraΓ§Γ£o dos modelos do Pydantic para proibir (`forbid`) quaisquer campos `extra`:
    
    {* ../../docs_src/header_param_models/tutorial002_an_py310.py hl[10] *}
    
    Se um cliente tentar enviar alguns **cabeΓ§alhos extra**, eles irΓ£o receber uma resposta de **erro**.
    
    Registered: Sun Sep 07 07:19:17 UTC 2025
    - Last Modified: Mon Nov 18 02:25:44 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. docs/sts/custom-token-identity.md

    ```sh
    curl -XPOST 'http://localhost:9001/?Action=AssumeRoleWithCustomToken&Version=2011-06-15&Token=aaa&RoleArn=arn:minio:iam:::role/idmp-vGxBdLkOc8mQPU1-UQbBh-yWWVQ'
    ```
    
    Prettified Response:
    
    ```xml
    <?xml version="1.0" encoding="UTF-8"?>
    <AssumeRoleWithCustomTokenResponse xmlns="https://sts.amazonaws.com/doc/2011-06-15/">
      <AssumeRoleWithCustomTokenResult>
        <Credentials>
          <AccessKeyId>24Y5H9VHE14H47GEOKCX</AccessKeyId>
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
Back to top