Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 140 for VER (0.35 sec)

  1. docs/pt/docs/advanced/benchmarks.md

    Porém, ao verificar benchmarks e comparações você deve prestar atenção ao seguinte:
    
    ## Benchmarks e velocidade
    
    Quando você verifica os benchmarks, é comum ver diversas ferramentas de diferentes tipos comparados como se fossem equivalentes.
    
    Especificamente, para ver o Uvicorn, Starlette e FastAPI comparados entre si (entre diversas outras ferramentas).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:11 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  2. pilot/pkg/security/authn/utils/utils.go

    	authn_model.EnforceCompliance(ctx.CommonTlsContext)
    	return ctx
    }
    
    // GetMinTLSVersion returns the minimum TLS version for workloads based on the mesh config.
    func GetMinTLSVersion(ver meshconfig.MeshConfig_TLSConfig_TLSProtocol) tls.TlsParameters_TlsProtocol {
    	switch ver {
    	case meshconfig.MeshConfig_TLSConfig_TLSV1_3:
    		return tls.TlsParameters_TLSv1_3
    	default:
    		return tls.TlsParameters_TLSv1_2
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 00:16:21 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  3. src/runtime/vdso_linux.go

    	// That's all we need.
    	info.valid = true
    }
    
    func vdsoFindVersion(info *vdsoInfo, ver *vdsoVersionKey) int32 {
    	if !info.valid {
    		return 0
    	}
    
    	def := info.verdef
    	for {
    		if def.vd_flags&_VER_FLG_BASE == 0 {
    			aux := (*elfVerdaux)(add(unsafe.Pointer(def), uintptr(def.vd_aux)))
    			if def.vd_hash == ver.verHash && ver.version == gostringnocopy(&info.symstrings[aux.vda_name]) {
    				return int32(def.vd_ndx & 0x7fff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 19 19:32:35 UTC 2022
    - 7.8K bytes
    - Viewed (0)
  4. docs/es/docs/tutorial/index.md

    Funciona también como una referencia futura, para que puedas volver y ver exactamente lo que necesitas.
    
    ## Ejecuta el código
    
    Todos los bloques de código se pueden copiar y usar directamente (en realidad son archivos Python probados).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  5. src/cmd/link/internal/loader/loader.go

    func (l *Loader) LookupOrCreateSym(name string, ver int) Sym {
    	i := l.Lookup(name, ver)
    	if i != 0 {
    		return i
    	}
    	i = l.newExtSym(name, ver)
    	static := ver >= sym.SymVerStatic || ver < 0
    	if static {
    		l.extStaticSyms[nameVer{name, ver}] = i
    	} else {
    		l.symsByName[ver][name] = i
    	}
    	return i
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 20:26:10 UTC 2024
    - 81.5K bytes
    - Viewed (0)
  6. tests/integration/pilot/cni/cniversionskew_test.go

    // It looks for tar compressed CNI manifest and apply that in the cluster.
    func installCNIOrFail(t framework.TestContext, ver string) {
    	cniFilePath := filepath.Join(env.IstioSrc, CNIConfigDir,
    		fmt.Sprintf("%s-cni-install.yaml.tar", ver))
    	config, err := file.ReadTarFile(cniFilePath)
    	if err != nil {
    		t.Fatalf("Failed to read CNI manifest %v", err)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 22:56:37 UTC 2024
    - 3.6K bytes
    - Viewed (0)
  7. pkg/config/crd/validator.go

    			versions = []apiextensions.CustomResourceDefinitionVersion{{Name: crd.Spec.Version}} // nolint: staticcheck
    		}
    		for _, ver := range versions {
    			gvk := schema.GroupVersionKind{
    				Group:   crd.Spec.Group,
    				Version: ver.Name,
    				Kind:    crd.Spec.Names.Kind,
    			}
    			crdSchema := ver.Schema
    			if crdSchema == nil {
    				crdSchema = crd.Spec.Validation
    			}
    			if crdSchema == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 17 15:38:40 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  8. src/internal/trace/internal/oldtrace/parser_test.go

    		}
    	}
    }
    
    // checkTrace walks over a good trace and makes a bunch of additional checks
    // that may not cause the parser to outright fail.
    func checkTrace(t *testing.T, ver int, res Trace) {
    	for i := 0; i < res.Events.Len(); i++ {
    		ev := res.Events.Ptr(i)
    		if ver >= 21 {
    			if ev.Type == EvSTWStart && res.Strings[ev.Args[0]] == "unknown" {
    				t.Errorf("found unknown STW event; update stwReasonStrings?")
    			}
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  9. docs/es/docs/benchmarks.md

    Pero al comprobar benchmarks y comparaciones debes tener en cuenta lo siguiente.
    
    ## Benchmarks y velocidad
    
    Cuando revisas los benchmarks, es común ver varias herramientas de diferentes tipos comparadas como equivalentes.
    
    Específicamente, para ver Uvicorn, Starlette y FastAPI comparadas entre sí (entre muchas otras herramientas).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Feb 07 11:39:50 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/objfile.go

    	ctxt.writeSymDebugNamed(s, s.Name)
    }
    
    func (ctxt *Link) writeSymDebugNamed(s *LSym, name string) {
    	ver := ""
    	if ctxt.Debugasm > 1 {
    		ver = fmt.Sprintf("<%d>", s.ABI())
    		if ctxt.Debugasm > 2 {
    			ver += fmt.Sprintf("<idx %d %d>", s.PkgIdx, s.SymIdx)
    		}
    	}
    	fmt.Fprintf(ctxt.Bso, "%s%s ", name, ver)
    	if s.Type != 0 {
    		fmt.Fprintf(ctxt.Bso, "%v ", s.Type)
    	}
    	if s.Static() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top