Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 196 for IntPtr (0.11 sec)

  1. staging/src/k8s.io/client-go/applyconfigurations/core/v1/httpgetaction.go

    package v1
    
    import (
    	v1 "k8s.io/api/core/v1"
    	intstr "k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // HTTPGetActionApplyConfiguration represents an declarative configuration of the HTTPGetAction type for use
    // with apply.
    type HTTPGetActionApplyConfiguration struct {
    	Path        *string                        `json:"path,omitempty"`
    	Port        *intstr.IntOrString            `json:"port,omitempty"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 04 18:31:34 UTC 2021
    - 3.6K bytes
    - Viewed (0)
  2. pkg/registry/apps/deployment/strategy_test.go

    			},
    			Strategy: apps.DeploymentStrategy{
    				Type: apps.RollingUpdateDeploymentStrategyType,
    				RollingUpdate: &apps.RollingUpdateDeployment{
    					MaxSurge:       intstr.FromInt32(1),
    					MaxUnavailable: intstr.FromInt32(1),
    				},
    			},
    			Template: api.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: selectorLabels,
    				},
    				Spec: api.PodSpec{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:45 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromString("0%"),
    				MaxSurge:       intstr.FromString("0%"),
    			},
    			expectError: true,
    		},
    		"invalid: surge enabled, surge and unavailable zero": {
    			ds: &apps.RollingUpdateDaemonSet{
    				MaxUnavailable: intstr.FromInt32(0),
    				MaxSurge:       intstr.FromInt32(0),
    			},
    			expectError: true,
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. pkg/kube/inject/app_probe.go

    			return nil
    		}
    
    		var probePort *intstr.IntOrString
    		if p.HTTPGet != nil {
    			probePort = &p.HTTPGet.Port
    		} else {
    			probePort = &p.TCPSocket.Port
    		}
    
    		if probePort.Type == intstr.String {
    			port, exists := portMap[probePort.StrVal]
    			if !exists {
    				return nil
    			}
    			*probePort = intstr.FromInt32(port)
    		} else if probePort.IntVal == targetPort {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Aug 04 15:06:24 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/conversion.go

    // +k8s:conversion-fn=copy-only
    func Convert_intstr_IntOrString_To_intstr_IntOrString(in, out *intstr.IntOrString, s conversion.Scope) error {
    	*out = *in
    	return nil
    }
    
    func Convert_Pointer_intstr_IntOrString_To_intstr_IntOrString(in **intstr.IntOrString, out *intstr.IntOrString, s conversion.Scope) error {
    	if *in == nil {
    		*out = intstr.IntOrString{} // zero value
    		return nil
    	}
    	*out = **in // copy
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 26 03:49:57 UTC 2020
    - 8.8K bytes
    - Viewed (0)
  6. pkg/registry/networking/networkpolicy/strategy_test.go

    					MatchLabels: map[string]string{"c": "d"},
    				},
    			},
    		},
    	}
    
    	ports := []networking.NetworkPolicyPort{
    		{
    			Protocol: &protocolTCP,
    			Port:     &intstr.IntOrString{Type: intstr.Int, IntVal: 31000},
    		},
    	}
    
    	ingress.Ports = ports
    	egress.Ports = ports
    
    	if hasEndPort {
    		ingress.Ports[0].EndPort = &endPort
    		egress.Ports[0].EndPort = &endPort
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 18:19:25 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  7. pkg/controller/disruption/disruption_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apimachinery/pkg/util/uuid"
    	"k8s.io/apimachinery/pkg/util/wait"
    	discoveryfake "k8s.io/client-go/discovery/fake"
    	"k8s.io/client-go/informers"
    	"k8s.io/client-go/kubernetes/fake"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 50K bytes
    - Viewed (0)
  8. src/os/dir_darwin.go

    		size = 100
    		n = -1
    	}
    
    	var dirent syscall.Dirent
    	var entptr *syscall.Dirent
    	for len(names)+len(dirents)+len(infos) < size || n == -1 {
    		if errno := readdir_r(d.dir, &dirent, &entptr); errno != 0 {
    			if errno == syscall.EINTR {
    				continue
    			}
    			return names, dirents, infos, &PathError{Op: "readdir", Path: f.name, Err: errno}
    		}
    		if entptr == nil { // EOF
    			break
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  9. pkg/registry/policy/poddisruptionbudget/strategy_test.go

    	// Changing MinAvailable?  OK
    	newMinAvailable := intstr.FromString("28%")
    	newPdb.Spec.MinAvailable = &newMinAvailable
    	Strategy.PrepareForUpdate(ctx, newPdb, pdb)
    	errs = Strategy.ValidateUpdate(ctx, newPdb, pdb)
    	if len(errs) != 0 {
    		t.Errorf("Expected no error updating MinAvailable on poddisruptionbudgets.")
    	}
    
    	// Changing MinAvailable to MaxAvailable? OK
    	maxUnavailable := intstr.FromString("28%")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  10. pkg/apis/apps/v1beta1/defaults.go

    		if strategy.RollingUpdate.MaxUnavailable == nil {
    			// Set default MaxUnavailable as 25% by default.
    			maxUnavailable := intstr.FromString("25%")
    			strategy.RollingUpdate.MaxUnavailable = &maxUnavailable
    		}
    		if strategy.RollingUpdate.MaxSurge == nil {
    			// Set default MaxSurge as 25% by default.
    			maxSurge := intstr.FromString("25%")
    			strategy.RollingUpdate.MaxSurge = &maxSurge
    		}
    	}
    	if obj.Spec.RevisionHistoryLimit == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top