Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 15 for invalidIPs (0.13 sec)

  1. pkg/proxy/serviceport.go

    			info.loadBalancerVIPs = append(info.loadBalancerVIPs, ip)
    		} else {
    			invalidIPs = append(invalidIPs, ip)
    		}
    	}
    	if len(invalidIPs) > 0 {
    		klog.V(4).InfoS("Service change tracker ignored the following load balancer ingress IPs for given Service as they don't match the IP Family",
    			"ipFamily", ipFamily, "loadBalancerIngressIPs", invalidIPs, "service", klog.KObj(service))
    	}
    
    	if apiservice.NeedsHealthCheck(service) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jan 09 08:17:56 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  2. src/net/netip/netip_test.go

    			}
    			jswant := `"` + wants + `"`
    			jsback := string(jsb)
    			if jsback != jswant {
    				t.Errorf("Marshal(Unmarshal(%q)) = %s, want %s", test.in, jsback, jswant)
    			}
    		})
    	}
    
    	var invalidIPs = []string{
    		// Empty string
    		"",
    		// Garbage non-IP
    		"bad",
    		// Single number. Some parsers accept this as an IPv4 address in
    		// big-endian uint32 form, but we don't.
    		"1234",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:10:01 UTC 2024
    - 54.3K bytes
    - Viewed (0)
  3. pkg/registry/apps/statefulset/strategy_test.go

    		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 {
    			t.Errorf("updating spec.Replicas and minReadySeconds is allowed on a statefulset: %v", errs)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  4. docs/pt/docs/tutorial/handling-errors.md

    Você pode sobrescrever esses manipuladores de exceção com os seus próprios manipuladores.
    
    ## Sobrescreva exceções de validação da requisição
    
    Quando a requisição contém dados inválidos, **FastAPI** internamente lança para o `RequestValidationError`.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/conditions.go

    	InvalidParentRef ConfigErrorReason = "InvalidParentReference"
    	// InvalidFilter indicates an issue with the filters
    	InvalidFilter ConfigErrorReason = "InvalidFilter"
    	// InvalidTLS indicates an issue with TLS settings
    	InvalidTLS ConfigErrorReason = ConfigErrorReason(k8s.ListenerReasonInvalidCertificateRef)
    	// InvalidListenerRefNotPermitted indicates a listener reference was not permitted
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  6. src/go/parser/short_test.go

    func TestSingle(t *testing.T) {
    	const src = `package p; var _ = T{}`
    	checkErrors(t, src, src, DeclarationErrors|AllErrors, true)
    }
    
    var invalids = []string{
    	`foo /* ERROR "expected 'package'" */ !`,
    	`package p; func f() { if { /* ERROR "missing condition" */ } };`,
    	`package p; func f() { if ; /* ERROR "missing condition" */ {} };`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 12:56:53 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. docs/es/docs/python-types.md

    * **Convertir datos**: desde el request al tipo requerido.
    * **Validar datos**: viniendo de cada request:
        * Generando **errores automáticos** devueltos al cliente cuando los datos son inválidos.
    * **Documentar** la API usando OpenAPI:
        * que en su caso es usada por las interfaces de usuario de la documentación automática e interactiva.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  8. docs/pt/docs/python-types.md

    * **Converter dados**: da solicitação para o tipo necessário.
    * **Validar dados**: provenientes de cada solicitação:
        * A geração de **erros automáticos** retornou ao cliente quando os dados são inválidos.
    * **Documente** a API usando OpenAPI:
        * que é usado pelas interfaces de usuário da documentação interativa automática.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 9.6K bytes
    - Viewed (0)
  9. pilot/pkg/config/kube/gateway/conversion.go

    			return "", &ConfigError{
    				Reason:  InvalidTLS,
    				Message: fmt.Sprintf("invalid certificate reference %v, %v", objectReferenceString(ref), err),
    			}
    		} else if _, err = tls.X509KeyPair(certInfo.Cert, certInfo.Key); err != nil {
    			return "", &ConfigError{
    				Reason:  InvalidTLS,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  10. src/runtime/defer_test.go

    // Test that there is no compile-time or run-time error if an open-coded defer
    // call is removed by constant propagation and dead-code elimination.
    func TestDisappearingDefer(t *testing.T) {
    	switch runtime.GOOS {
    	case "invalidOS":
    		defer func() {
    			t.Fatal("Defer shouldn't run")
    		}()
    	}
    }
    
    // This tests an extra recursive panic behavior that is only specified in the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 20 18:57:24 UTC 2023
    - 11.4K bytes
    - Viewed (0)
Back to top