Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 29 for entrada (0.09 sec)

  1. src/main/java/org/codelibs/fess/ldap/LdapManager.java

                        final String entryDn = attrValue.toString();
    
                        if (logger.isDebugEnabled()) {
                            logger.debug("entryDn: {}", entryDn);
                        }
                        consumer.accept(entryDn);
                    }
                }
            }
        }
    
        protected String getSearchRoleName(final String entryDn) {
            if (entryDn == null) {
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Thu Feb 22 01:53:18 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  2. docs/pt/docs/tutorial/dependencies/dependencies-with-yield.md

        Note over client,operation: Resposta já foi enviada, e não pode ser modificada
        opt Tarefas
            operation -->> tasks: Enviar tarefas de background
        end
        opt Lançar outra exceção
            tasks -->> tasks: Manipula exceções no código da tarefa de background
        end
    ```
    
    /// info | "Informação"
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  3. docs/es/docs/advanced/path-operation-advanced-configuration.md

    Incluso si están en diferentes módulos (archivos Python).
    
    ///
    
    ## Excluir de OpenAPI
    
    Para excluir una *operación de path* del esquema OpenAPI generado (y por tanto del la documentación generada automáticamente), usa el parámetro `include_in_schema` y asigna el valor como `False`;
    
    ```Python hl_lines="6"
    {!../../docs_src/path_operation_advanced_configuration/tutorial003.py!}
    ```
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  4. docs/pt/docs/advanced/openapi-callbacks.md

    ### A expressão do caminho do callback
    
    A *rota* do callback pode ter uma <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md#key-expression" class="external-link" target="_blank">expressão OpenAPI 3</a> que pode conter partes da solicitação original enviada para *sua API*.
    
    Nesse caso, é a `str`:
    
    ```Python
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 30 19:53:03 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/es/stopwords.txt

    estuvo
    estuvimos
    estuvisteis
    estuvieron
    estuviera
    estuvieras
    estuviéramos
    estuvierais
    estuvieran
    estuviese
    estuvieses
    estuviésemos
    estuvieseis
    estuviesen
    estando
    estado
    estada
    estados
    estadas
    estad
    he
    has
    ha
    hemos
    habéis
    han
    haya
    hayas
    hayamos
    hayáis
    hayan
    habré
    habrás
    habrá
    habremos
    habréis
    habrán
    habría
    Registered: Thu Oct 31 13:40:30 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. docs/en/docs/img/deployment/https/https08.drawio

                    <mxCell id="82" style="edgeStyle=orthogonalEdgeStyle;rounded=0;orthogonalLoop=1;jettySize=auto;html=1;startArrow=none;startFill=0;endArrow=classic;endFill=1;strokeWidth=3;entryX=0.073;entryY=0.01;entryDx=0;entryDy=0;entryPerimeter=0;exitX=0.075;exitY=0.998;exitDx=0;exitDy=0;exitPerimeter=0;" parent="1" source="62" target="78" edge="1">
                        <mxGeometry relative="1" as="geometry">
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Thu May 12 00:06:16 UTC 2022
    - 20.9K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/collect/LinkedListMultimapTest.java

        Entry<String, Integer> entrya = iterator.next();
        Entry<String, Integer> entryb = iterator.next();
    
        assertEquals(2, (int) multimap.get("foo").set(0, 4));
        assertFalse(multimap.containsEntry("foo", 2));
        assertTrue(multimap.containsEntry("foo", 4));
        assertTrue(multimap.containsEntry("bar", 3));
        assertEquals(4, (int) entrya.getValue());
        assertEquals(3, (int) entryb.getValue());
    
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Oct 30 16:15:19 UTC 2024
    - 18K bytes
    - Viewed (0)
  8. docs/pt/docs/advanced/middleware.md

    Se uma requisição recebida não for validada corretamente, uma resposta `400` será enviada.
    
    ## `GZipMiddleware`
    
    Gerencia respostas GZip para qualquer requisição que inclua `"gzip"` no cabeçalho `Accept-Encoding`.
    
    O middleware lidará com respostas padrão e de streaming.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Wed Oct 30 20:00:22 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/ListenerCallQueue.java

     * using a lock, however it is dangerous to dispatch listeners while holding a lock because they
     * might run on the {@code directExecutor()} or be otherwise re-entrant (call back into your
     * object). So it is important to not call {@link #dispatch} while holding any locks. This is why
     * {@link #enqueue} and {@link #dispatch} are 2 different methods. It is expected that the decision
    Registered: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Wed Dec 13 19:45:20 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  10. docs/pt/docs/advanced/events.md

    ```Python
    async with lifespan(app):
        await do_stuff()
    ```
    
    Quando você cria um gerenciador de contexto ou um gerenciador de contexto assíncrono como mencionado acima, o que ele faz é que, antes de entrar no bloco `with`, ele irá executar o código anterior ao `yield`, e depois de sair do bloco `with`, ele irá executar o código depois do `yield`.
    
    Registered: Sun Nov 03 07:19:11 UTC 2024
    - Last Modified: Sun Oct 06 20:36:54 UTC 2024
    - 8.6K bytes
    - Viewed (0)
Back to top