Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for opcode (0.3 sec)

  1. pkg/registry/core/service/storage/storage_test.go

    					}},
    				},
    			},
    			expectedStatus: api.ServiceStatus{
    				LoadBalancer: api.LoadBalancerStatus{
    					Ingress: []api.LoadBalancerIngress{{
    						IP:     "1.2.3.4",
    						IPMode: &ipModeProxy,
    					}},
    				},
    			},
    			expectErr: false,
    		}, {
    			name:          "LoadBalancerIPMode enabled, ipMode used in old, not used in new",
    			ipModeEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  2. pkg/proxy/iptables/proxier_test.go

    			ipModeEnabled: false,
    			svcIP:         "10.20.30.42",
    			svcLBIP:       "1.2.3.5",
    			ipMode:        ptr.To(v1.LoadBalancerIPModeVIP),
    			expectedRule:  true,
    		},
    		{
    			name:          "LoadBalancerIPMode disabled, ipMode nil",
    			ipModeEnabled: false,
    			svcIP:         "10.20.30.43",
    			svcLBIP:       "1.2.3.6",
    			ipMode:        nil,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 14:39:54 UTC 2024
    - 249.9K bytes
    - Viewed (0)
  3. pkg/apis/core/validation/validation.go

    			if utilfeature.DefaultFeatureGate.Enabled(features.LoadBalancerIPMode) && ingress.IPMode == nil {
    				if len(ingress.IP) > 0 {
    					allErrs = append(allErrs, field.Required(idxPath.Child("ipMode"), "must be specified when `ip` is set"))
    				}
    			} else if ingress.IPMode != nil && len(ingress.IP) == 0 {
    				allErrs = append(allErrs, field.Forbidden(idxPath.Child("ipMode"), "may not be specified when `ip` is not set"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  4. docs/en/docs/release-notes.md

        * <a href="https://docs.pydantic.dev/latest/usage/pydantic_settings/" target="_blank"><code>pydantic-settings</code></a> - for settings management.
        * <a href="https://docs.pydantic.dev/latest/usage/types/extra_types/extra_types/" target="_blank"><code>pydantic-extra-types</code></a> - for extra types to be used with Pydantic.
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Jun 14 15:07:37 UTC 2024
    - 395.4K bytes
    - Viewed (0)
  5. src/net/http/h2_bundle.go

    	if code < 100 || code > 999 {
    		panic(fmt.Sprintf("invalid WriteHeader code %v", code))
    	}
    }
    
    func (w *http2responseWriter) WriteHeader(code int) {
    	rws := w.rws
    	if rws == nil {
    		panic("WriteHeader called after Handler finished")
    	}
    	rws.writeHeader(code)
    }
    
    func (rws *http2responseWriterState) writeHeader(code int) {
    	if rws.wroteHeader {
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/types.go

    	// the destination set to the node's IP and node port or the pod's IP and port.
    	// Service implementations may use this information to adjust traffic routing.
    	// +optional
    	IPMode *LoadBalancerIPMode `json:"ipMode,omitempty" protobuf:"bytes,3,opt,name=ipMode"`
    
    	// Ports is a list of records of service ports
    	// If used, every port defined in the service should have an entry in it
    	// +listType=atomic
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.29.md

    <!-- BEGIN MUNGE: GENERATED_TOC -->
    
    - [v1.29.6](#v1296)
      - [Downloads for v1.29.6](#downloads-for-v1296)
        - [Source Code](#source-code)
        - [Client Binaries](#client-binaries)
        - [Server Binaries](#server-binaries)
        - [Node Binaries](#node-binaries)
        - [Container Images](#container-images)
      - [Changelog since v1.29.5](#changelog-since-v1295)
      - [Changes by Kind](#changes-by-kind)
        - [API Change](#api-change)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  8. pkg/apis/core/types.go

    	// with a container exit code of 0, and the system is not going to restart any of these containers.
    	PodSucceeded PodPhase = "Succeeded"
    	// PodFailed means that all containers in the pod have terminated, and at least one container has
    	// terminated in a failure (exited with a non-zero exit code or was stopped by the system).
    	PodFailed PodPhase = "Failed"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"hostname": "Hostname is set for load-balancer ingress points that are DNS based (typically AWS load-balancers)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  10. pkg/apis/core/v1/zz_generated.conversion.go

    func autoConvert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress(in *v1.LoadBalancerIngress, out *core.LoadBalancerIngress, s conversion.Scope) error {
    	out.IP = in.IP
    	out.Hostname = in.Hostname
    	out.IPMode = (*core.LoadBalancerIPMode)(unsafe.Pointer(in.IPMode))
    	out.Ports = *(*[]core.PortStatus)(unsafe.Pointer(&in.Ports))
    	return nil
    }
    
    // Convert_v1_LoadBalancerIngress_To_core_LoadBalancerIngress is an autogenerated conversion function.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
Back to top