Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 76 for Converge (0.23 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/crds/standard-install.yaml

                      \n Implementations should prefer to express Gateway conditions using
                      the `GatewayConditionType` and `GatewayConditionReason` constants
                      so that operators and tools can converge on a common vocabulary
                      to describe Gateway state. \n Known condition types are: \n * \"Accepted\"
                      * \"Programmed\" * \"Ready\""
                    items:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 458.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

              changed = true;
              break;
            }
          }
        }
        ++i;
      }
      if (i >= kMaxIterationCount) {
        LOG(WARNING) << "Graph shapes did not converge to a fixpoint within "
                     << kMaxIterationCount
                     << " iterations. Graph shapes may be conservative.";
      }
      VLOG(1) << "Graph shapes were inferred with " << (i - 1)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  3. src/html/escape.go

    )
    
    // EscapeString escapes special characters like "<" to become "&lt;". It
    // escapes only five such characters: <, >, &, ' and ".
    // UnescapeString(EscapeString(s)) == s always holds, but the converse isn't
    // always true.
    func EscapeString(s string) string {
    	return htmlEscaper.Replace(s)
    }
    
    // UnescapeString unescapes entities like "&lt;" to become "<". It unescapes a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 13 07:00:18 UTC 2020
    - 5K bytes
    - Viewed (0)
  4. src/runtime/checkptr.go

    }
    
    // checkptrBase returns the base address for the allocation containing
    // the address p.
    //
    // Importantly, if p1 and p2 point into the same variable, then
    // checkptrBase(p1) == checkptrBase(p2). However, the converse/inverse
    // is not necessarily true as allocations can have trailing padding,
    // and multiple variables may be packed into a single allocation.
    //
    // checkptrBase should be an internal detail,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  5. docs/pt/docs/python-types.md

    ```Python
    {!../../../docs_src/python_types/tutorial001.py!}
    ```
    
    A chamada deste programa gera:
    
    ```
    John Doe
    ```
    
    A função faz o seguinte:
    
    * Pega um `first_name` e `last_name`.
    * Converte a primeira letra de cada uma em maiúsculas com `title ()`.
    * <abbr title = "Agrupa-os, como um. Com o conteúdo de um após o outro."> Concatena </abbr> com um espaço no meio.
    
    ```Python hl_lines="2"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  6. docs/pt/docs/tutorial/body-nested-models.md

        Mas o Pydantic tem conversão automática de dados.
    
        Isso significa que, embora os clientes da API só possam enviar strings como chaves, desde que essas strings contenham inteiros puros, o Pydantic irá convertê-los e validá-los.
    
        E o `dict` que você recebe como `weights` terá, na verdade, chaves `int` e valores` float`.
    
    ## Recapitulação
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  7. okhttp-tls/README.md

        .build();
    ```
    
    Client Authentication
    ---------------------
    
    The above scenario is representative of most TLS set ups: the client uses certificates to validate
    the identity of a server. The converse is also possible. Here we create a server that authenticates
    a client and a client that authenticates a server.
    
    ```java
    // Create the root for client and server to trust. We could also use different roots for each!
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Dec 17 15:34:10 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  8. docs/it/docs/index.md

        * Query parameters.
        * Cookies.
        * Headers.
        * Form.
        * File.
    * <abbr title="detta anche: serialization, parsing, marshalling">Conversione</abbr> dei dati di output: converte dati e tipi di Python a dati per la rete (come JSON):
        * Converte i tipi di Python (`str`, `int`, `float`, `bool`, `list`, ecc).
        * Oggetti `datetime`.
        * Oggetti `UUID`.
        * Modelli del database.
        * ...e molto di più.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 23:58:47 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  9. src/encoding/gob/decoder.go

    		return
    	}
    	// Remember we've seen this type.
    	dec.wireType[id] = wire
    }
    
    var errBadCount = errors.New("invalid message length")
    
    // recvMessage reads the next count-delimited item from the input. It is the converse
    // of Encoder.writeMessage. It returns false on EOF or other error reading the message.
    func (dec *Decoder) recvMessage() bool {
    	// Read a count.
    	nbytes, _, err := decodeUintReader(dec.r, dec.countBuf)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:04:28 UTC 2023
    - 7.2K bytes
    - Viewed (0)
  10. docs/pt/docs/index.md

        * Cabeçalhos.
        * Formulários.
        * Arquivos.
    * <abbr title="também conhecido como: serialization, parsing, marshalling">Conversão</abbr> de dados de saída de tipos e dados Python para dados de rede (como JSON):
        * Converte tipos Python (`str`, `int`, `float`, `bool`, `list` etc).
        * Objetos `datetime`.
        * Objetos `UUID`.
        * Modelos de Banco de Dados.
        * ...e muito mais.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Apr 29 05:18:04 UTC 2024
    - 18.6K bytes
    - Viewed (0)
Back to top