Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 140 for VER (0.02 sec)

  1. docs/pt/docs/tutorial/body-nested-models.md

    * Documentação automatica
    
    ## Tipos especiais e validação
    
    Além dos tipos singulares normais como `str`, `int`, `float`, etc. Você também pode usar tipos singulares mais complexos que herdam de `str`.
    
    Para ver todas as opções possíveis, cheque a documentação para os<a href="https://docs.pydantic.dev/latest/concepts/types/" class="external-link" target="_blank">tipos exoticos do Pydantic</a>. Você verá alguns exemplos no próximo capitulo.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  2. pkg/version/cobra_test.go

    	shortOutputMock
    	jsonOutputMock
    	yamlOutputMock
    )
    
    func printMeshVersion(meshInfo *MeshInfo, kind outputKind) string {
    	switch kind {
    	case yamlOutputMock:
    		ver := &Version{MeshVersion: meshInfo}
    		res, _ := yaml.Marshal(ver)
    		return string(res)
    	case jsonOutputMock:
    		res, _ := json.MarshalIndent(meshInfo, "", "  ")
    		return string(res)
    	}
    
    	res := ""
    	for _, info := range *meshInfo {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 29 14:15:26 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  3. configure.py

            else:
              ver = int(sm_compute_match.group(2))
              if ver < 30:
                print(
                    'ERROR: TensorFlow only supports small CUDA compute'
                    ' capabilities of sm_30 and higher. Please re-specify the list'
                    ' of compute capabilities excluding version %s.' % ver)
                all_valid = False
              if ver < 35:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. docs/pt/docs/async.md

    ## Detalhes Técnicos
    
    Versões modernas de Python tem suporte para **"código assíncrono"** usando algo chamado **"corrotinas"**, com sintaxe **`async` e `await`**.
    
    Vamos ver aquela frase por partes na seção abaixo:
    
    * **Código assíncrono**
    * **`async` e `await`**
    * **Corrotinas**
    
    ## Código assíncrono
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  5. internal/event/target/elasticsearch.go

    		return ESSUnknown, "", fmt.Errorf("unable to get ES Server version - json parse error: %v", err)
    	}
    
    	if v, ok := m["version"].(map[string]interface{}); ok {
    		if ver, ok := v["number"].(string); ok {
    			status, err := getESVersionSupportStatus(ver)
    			return status, ver, err
    		}
    	}
    	return ESSUnknown, "", fmt.Errorf("Unable to get ES Server Version - got INFO response: %v", m)
    }
    
    func (c *esClientV7) isAtleastV7() bool {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15K bytes
    - Viewed (0)
  6. pkg/test/framework/suite.go

    		for _, c := range ctx.Clusters() {
    			ver, err := c.GetKubernetesVersion()
    			if err != nil {
    				return fmt.Errorf("failed to get Kubernetes version: %v", err)
    			}
    			if !kubelib.IsAtLeastVersion(c, minorVersion) {
    				s.Skip(fmt.Sprintf("Required Kubernetes version (1.%v) is greater than current: %v",
    					minorVersion, ver.String()))
    			}
    		}
    		return nil
    	}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  7. docs/es/docs/advanced/response-directly.md

    Pero todavía es posible documentarlo como es descrito en [Respuestas adicionales en OpenAPI](additional-responses.md){.internal-link target=_blank}.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/VersionCatalogExtensionIntegrationTest.groovy

                            bundle("all", ["lib", "lib2"])
                        }
                        otherLibs {
                            version("ver", "1.1")
                            library("lib", "org", "test2").versionRef("ver")
                        }
                    }
                }
            """
    
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 26 13:37:31 UTC 2024
    - 77.8K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute.go

    	var latestVersion *versionutil.Version
    	for versionStr, nodes := range kubeAPIServerVersions {
    		ver, err := versionutil.ParseSemantic(versionStr)
    		if err != nil {
    			return nil, fmt.Errorf("couldn't parse kube-apiserver version %s from nodes %v", versionStr, nodes)
    		}
    		if latestVersion == nil || ver.AtLeast(latestVersion) {
    			latestVersion = ver
    		}
    	}
    
    	return latestVersion, nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/runtime/defs_freebsd_amd64.go

    	offset_count uint32
    	counter_mask uint32
    	offset       bintime
    	boottime     bintime
    	x86_shift    uint32
    	x86_hpet_idx uint32
    	res          [6]uint32
    }
    
    type vdsoTimekeep struct {
    	ver       uint32
    	enabled   uint32
    	current   uint32
    	pad_cgo_0 [4]byte
    }
    
    const (
    	_VDSO_TK_VER_CURR = 0x1
    
    	vdsoTimehandsSize = 0x58
    	vdsoTimekeepSize  = 0x10
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 21:17:22 UTC 2024
    - 4.9K bytes
    - Viewed (0)
Back to top