Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for Previte (0.18 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RelocatedArtifact.java

        @Override
        public String getVersion() {
            if (version != null) {
                return version;
            } else {
                return artifact.getVersion();
            }
        }
    
        // Revise these three methods when MRESOLVER-233 is delivered
        @Override
        public Artifact setVersion(String version) {
            String current = getVersion();
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 5K bytes
    - Viewed (0)
  2. common/config/.golangci.yml

      build-tags:
        - integ
        - integfuzz
    linters:
      disable-all: true
      enable:
        - errcheck
        - exportloopref
        - depguard
        - gocritic
        - gofumpt
        - goimports
        - revive
        - gosimple
        - govet
        - ineffassign
        - lll
        - misspell
        - staticcheck
        - stylecheck
        - typecheck
        - unconvert
        - unparam
        - unused
        - gci
        - gosec
    Others
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Mon Apr 22 19:22:39 GMT 2024
    - 11K bytes
    - Viewed (0)
  3. cni/pkg/nodeagent/net_test.go

    	// make sure the uid was taken from cache and netns closed
    	netns := fixture.podNsMap.Take(string(pod.UID))
    	assert.Equal(t, nil, netns)
    
    	// run gc to clean up ns:
    
    	//revive:disable-next-line:call-to-gc Just a test that we are cleaning up the netns
    	runtime.GC()
    	assertNSClosed(t, closed)
    }
    
    func TestServerDeletePod(t *testing.T) {
    Go
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Tue Apr 30 22:24:38 GMT 2024
    - 16.4K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/path-params.md

    Logo, crie um *parâmetro de rota* com anotações de tipo usando a classe enum que você criou (`ModelName`):
    
    ```Python hl_lines="16"
    {!../../../docs_src/path_params/tutorial005.py!}
    ```
    
    ### Revise a documentação
    
    Visto que os valores disponíveis para o parâmetro da rota estão predefinidos, a documentação interativa pode mostrar esses valores de uma forma bem legal:
    
    <img src="/img/tutorial/path-params/image03.png">
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 9.7K bytes
    - Viewed (0)
  5. docs/pt/docs/deployment/docker.md

        Porque o programa será iniciado em `/code` e dentro dele está o diretório `./app` com seu código, o **Uvicorn** será capaz de ver e **importar** `app` de `app.main`.
    
    !!! tip
        Revise o que cada linha faz clicando em cada bolha com o número no código. 👆
    
    Agora você deve ter uma estrutura de diretório como:
    
    ```
    .
    ├── app
    │   ├── __init__.py
    │   └── main.py
    ├── Dockerfile
    Plain Text
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 37.4K bytes
    - Viewed (0)
  6. RELEASE.md

    *   Adds a `save_traces` argument to `model.save`/ `tf.keras.models.save_model`
        which determines whether the SavedModel format stores the Keras model/layer
        call functions. The traced functions allow Keras to revive custom models and
        layers without the original class definition, but if this isn't required the
        tracing can be disabled with the added option.
    *   The `tf.keras.mixed_precision` API is now non-experimental. The
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top