Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 47 for validdns (0.13 sec)

  1. src/main/webapp/js/admin/plugins/form-validator/lang/pt.js

    mais que ",lengthTooShortStart:"Sua resposta tem menos que",notConfirmed:"As informações digitadas não puderam ser confirmadas",badDomain:"O domínio digitado não é válido",badUrl:"A URL digitada não é válida",badCustomVal:"Os dados digitados não são válidos",andSpaces:" e espaços",badInt:"O número digitado não é válido",badSecurityNumber:"O número de seguro social digitado não é válido",badUKVatAnswer:"O número do VAT digitado não é válido para o Reino Unido",badStrength:"Senha muito fraca",badNumbe...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.7K bytes
    - Viewed (0)
  2. src/main/webapp/js/admin/plugins/form-validator/lang/es.js

    "Su respuesta debe de ser mayor a ",notConfirmed:"Los valores proporcionados no pudieron ser confirmados",badDomain:"Ha introducido un dominio incorrecto",badUrl:"La URL proporcionada no es válida",badCustomVal:"Los valores proporcionados no son válidos",andSpaces:" y espacios ",badInt:"El valor proporcionado no es un número válido",badSecurityNumber:"El número de seguridad social proporcionado es incorrecto",badUKVatAnswer:"El número VAT proporcionado no es válido para el Reino Unido",badStrength:"La...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 3K bytes
    - Viewed (0)
  3. src/main/webapp/js/admin/plugins/form-validator/lang/ca.js

    ",groupCheckedTooManyStart:"Si us plau, triï un màxim de ",groupCheckedEnd:" element(s)",badCreditCard:"El número de targeta de crèdit proporcionat no és vàlid",badCVV:"CVV proporcionat no és vàlid",wrongFileDim:"Les dimensions de la imatge no són vàlides,",imageTooTall:"l'alçada de la imatge no pot ser major a",imageTooWide:"l'amplada de la imatge no pot ser major a",imageTooSmall:"la imatge és massa petita",min:"min.",max:"màx.",imageRatioNotAccepted:"La proporció de la imatge (alçada x amplada)...
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Jan 01 05:12:47 UTC 2018
    - 2.6K bytes
    - Viewed (0)
  4. pkg/registry/apps/controllerrevision/strategy_test.go

    	ctx := genericapirequest.NewDefaultContext()
    	var (
    		valid       = newControllerRevision("validname", "validns", newObject(), 0)
    		badRevision = newControllerRevision("validname", "validns", newObject(), -1)
    		emptyName   = newControllerRevision("", "validns", newObject(), 0)
    		invalidName = newControllerRevision("NoUppercaseOrSpecialCharsLike=Equals", "validns", newObject(), 0)
    		emptyNs     = newControllerRevision("validname", "", newObject(), 100)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Nov 09 11:14:08 UTC 2017
    - 4.5K bytes
    - Viewed (0)
  5. pkg/registry/apps/controllerrevision/storage/storage_test.go

    		badRevision = stripObjectMeta(newControllerRevision("validname", "validns", newObject(), -1))
    		emptyName   = stripObjectMeta(newControllerRevision("", "validns", newObject(), 0))
    		invalidName = stripObjectMeta(newControllerRevision("NoUppercaseOrSpecialCharsLike=Equals", "validns", newObject(), 0))
    		emptyNs     = stripObjectMeta(newControllerRevision("validname", "", newObject(), 100))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 12 20:55:35 UTC 2019
    - 5.6K bytes
    - Viewed (0)
  6. pkg/registry/apps/statefulset/strategy_test.go

    		}
    		Strategy.PrepareForUpdate(ctx, validPs, ps)
    		errs = Strategy.ValidateUpdate(ctx, validPs, ps)
    		if len(errs) != 0 {
    			t.Errorf("updating spec.Replicas and minReadySeconds is allowed on a statefulset: %v", errs)
    		}
    		invalidPs := ps
    		invalidPs.Spec.MinReadySeconds = int32(-1)
    		Strategy.PrepareForUpdate(ctx, validPs, invalidPs)
    		errs = Strategy.ValidateUpdate(ctx, validPs, ps)
    		if len(errs) != 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  7. pkg/config/validation/validation_test.go

    			valid: false,
    		},
    		{
    			name:  "valid FQDN",
    			in:    &networking.WorkloadEntry{Address: "validdns.com", Ports: map[string]uint32{"7777": 7777}},
    			valid: true,
    		},
    		{
    			name:  "invalid FQDN",
    			in:    &networking.WorkloadEntry{Address: "invaliddns.com:9443", Ports: map[string]uint32{"7777": 7777}},
    			valid: false,
    		},
    		{
    			name:  "valid IP",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  8. src/crypto/tls/ech.go

    		if _, ok := hpke.SupportedKEMs[ec.KemID]; !ok {
    			continue
    		}
    		var validSCS bool
    		for _, cs := range ec.SymmetricCipherSuite {
    			if _, ok := hpke.SupportedAEADs[cs.AEADID]; !ok {
    				continue
    			}
    			if _, ok := hpke.SupportedKDFs[cs.KDFID]; !ok {
    				continue
    			}
    			validSCS = true
    			break
    		}
    		if !validSCS {
    			continue
    		}
    		if !validDNSName(string(ec.PublicName)) {
    			continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  9. internal/config/lambda/parse.go

    	validKVS, ok := DefaultLambdaKVS[subSys]
    	if !ok {
    		return nil
    	}
    	for tname, kv := range tgt {
    		subSysTarget := subSys
    		if tname != config.Default {
    			subSysTarget = subSys + config.SubSystemSeparator + tname
    		}
    		if v, ok := kv.Lookup(config.Enable); ok && v == config.EnableOn {
    			if err := config.CheckValidKeys(subSysTarget, kv, validKVS); err != nil {
    				return err
    			}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. docs/es/docs/advanced/additional-status-codes.md

        No será serializado con el modelo, etc.
    
        Asegúrate de que la respuesta tenga los datos que quieras, y que los valores sean JSON válidos (si estás usando `JSONResponse`).
    
    !!! note "Detalles Técnicos"
        También podrías utilizar `from starlette.responses import JSONResponse`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Jan 13 11:57:27 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top