Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 149 for Ver (0.02 sec)

  1. operator/pkg/manifest/shared.go

    	if err != nil {
    		return nil, nil, err
    	}
    
    	t := translate.NewTranslator()
    	var ver *version.Info
    	if client != nil {
    		ver, err = client.GetKubernetesVersion()
    		if err != nil {
    			return nil, nil, err
    		}
    	}
    	cp, err := controlplane.NewIstioControlPlane(mergedIOPS.Spec, t, filter, ver)
    	if err != nil {
    		return nil, nil, err
    	}
    	if err := cp.Run(); err != nil {
    		return nil, nil, err
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 03 06:27:07 UTC 2024
    - 19.7K bytes
    - Viewed (0)
  2. src/main/java/jcifs/internal/smb2/nego/Smb2NegotiateRequest.java

            this.dialects = new int[dvs.size()];
            int i = 0;
            for ( DialectVersion ver : dvs ) {
                this.dialects[ i ] = ver.getDialect();
                i++;
            }
    
            if ( config.getMaximumVersion().atLeast(DialectVersion.SMB210) ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 7.5K bytes
    - Viewed (0)
  3. cmd/storage-datatypes.go

    func (f *FileInfoVersions) findVersionIndex(v string) int {
    	if f == nil || v == "" {
    		return -1
    	}
    	if v == nullVersionID {
    		for i, ver := range f.Versions {
    			if ver.VersionID == "" {
    				return i
    			}
    		}
    		return -1
    	}
    
    	for i, ver := range f.Versions {
    		if ver.VersionID == v {
    			return i
    		}
    	}
    	return -1
    }
    
    // RawFileInfo - represents raw file stat information as byte array.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/background-tasks.md

    Ainda é possível usar `BackgroundTask` sozinho no FastAPI, mas você deve criar o objeto em seu código e retornar uma Starlette `Response` incluindo-o.
    
    Você pode ver mais detalhes na <a href="https://www.starlette.io/background/" class="external-link" target="_blank"> documentação oficiais da Starlette para tarefas em segundo plano </a>.
    
    ## Ressalva
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 09 23:44:32 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  5. pilot/pkg/security/authn/utils/utils_test.go

    		},
    	}
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			minVersion := GetMinTLSVersion(tt.minTLSVer)
    			if minVersion != tt.expectedMinTLSVer {
    				t.Errorf("unexpected result: expected min ver %v got %v",
    					tt.expectedMinTLSVer, minVersion)
    			}
    		})
    	}
    }
    
    func TestGetMTLSCipherSuites(t *testing.T) {
    	tests := []struct {
    		name                     string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 10 20:24:43 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  6. src/runtime/vdso_freebsd.go

    			break
    		}
    	}
    	return bt
    }
    
    //go:nosplit
    func vdsoClockGettime(clockID int32) bintime {
    	if timekeepSharedPage == nil || timekeepSharedPage.ver != _VDSO_TK_VER_CURR {
    		return zeroBintime
    	}
    	abs := false
    	switch clockID {
    	case _CLOCK_MONOTONIC:
    		/* ok */
    	case _CLOCK_REALTIME:
    		abs = true
    	default:
    		return zeroBintime
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top