Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 185 for IntPtr (0.23 sec)

  1. pkg/controller/daemon/update_test.go

    	ds.Spec.Template.Spec.Containers[0].Image = "foo2/bar2"
    	ds.Spec.UpdateStrategy.Type = apps.RollingUpdateDaemonSetStrategyType
    	intStr := intstr.FromInt32(int32(maxUnavailable))
    	ds.Spec.UpdateStrategy.RollingUpdate = &apps.RollingUpdateDaemonSet{MaxUnavailable: &intStr}
    	manager.dsStore.Update(ds)
    
    	clearExpectations(t, manager, ds, podControl)
    	expectSyncDaemonSets(t, manager, ds, podControl, 0, maxUnavailable, 0)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Feb 10 21:10:35 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/proxy/proxy_test.go

    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	v1listers "k8s.io/client-go/listers/core/v1"
    	"k8s.io/client-go/tools/cache"
    )
    
    func TestResolve(t *testing.T) {
    	matchingEndpoints := func(svc *v1.Service) []*v1.Endpoints {
    		ports := []v1.EndpointPort{}
    		for _, p := range svc.Spec.Ports {
    			if p.TargetPort.Type != intstr.Int {
    				continue
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:27 UTC 2023
    - 8.6K bytes
    - Viewed (0)
  3. pkg/probe/util.go

    package probe
    
    import (
    	"fmt"
    	"strconv"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    func ResolveContainerPort(param intstr.IntOrString, container *v1.Container) (int, error) {
    	port := -1
    	var err error
    	switch param.Type {
    	case intstr.Int:
    		port = param.IntValue()
    	case intstr.String:
    		if port, err = findPortByName(container, param.StrVal); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 16:51:52 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  4. pkg/kubelet/prober/prober_test.go

    	}{
    		{&v1.TCPSocketAction{Port: intstr.FromInt32(-1)}, false, "", -1},
    		{&v1.TCPSocketAction{Port: intstr.FromString("")}, false, "", -1},
    		{&v1.TCPSocketAction{Port: intstr.FromString("-1")}, false, "", -1},
    		{&v1.TCPSocketAction{Port: intstr.FromString("not-found")}, false, "", -1},
    		{&v1.TCPSocketAction{Port: intstr.FromString("found")}, true, "1.2.3.4", 93},
    		{&v1.TCPSocketAction{Port: intstr.FromInt32(76)}, true, "1.2.3.4", 76},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:17:35 UTC 2023
    - 9.7K bytes
    - Viewed (0)
  5. pkg/apis/apps/fuzzer/fuzzer.go

    				j.RollingUpdate = nil
    			} else {
    				rollingUpdate := apps.RollingUpdateDeployment{}
    				if c.RandBool() {
    					rollingUpdate.MaxUnavailable = intstr.FromInt32(c.Rand.Int31())
    					rollingUpdate.MaxSurge = intstr.FromInt32(c.Rand.Int31())
    				} else {
    					rollingUpdate.MaxSurge = intstr.FromString(fmt.Sprintf("%d%%", c.Rand.Int31()))
    				}
    				j.RollingUpdate = &rollingUpdate
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  6. pkg/apis/apps/v1beta2/defaults.go

    			// Set default MaxUnavailable as 1 by default.
    			updateStrategy.RollingUpdate.MaxUnavailable = ptr.To(intstr.FromInt32(1))
    		}
    		if updateStrategy.RollingUpdate.MaxSurge == nil {
    			// Set default MaxSurge as 0 by default.
    			updateStrategy.RollingUpdate.MaxSurge = ptr.To(intstr.FromInt32(0))
    		}
    	}
    	if obj.Spec.RevisionHistoryLimit == nil {
    		obj.Spec.RevisionHistoryLimit = new(int32)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 08 09:10:50 UTC 2023
    - 5.5K bytes
    - Viewed (0)
  7. pkg/apis/apps/v1/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
    - 5.4K bytes
    - Viewed (0)
  8. pkg/apis/extensions/v1beta1/conversion_test.go

    package v1beta1
    
    import (
    	"testing"
    
    	"github.com/stretchr/testify/assert"
    	"github.com/stretchr/testify/require"
    	"k8s.io/api/extensions/v1beta1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/kubernetes/pkg/apis/networking"
    )
    
    func TestIngressBackendConversion(t *testing.T) {
    	scheme := runtime.NewScheme()
    	assert.NoError(t, RegisterConversions(scheme))
    
    	tests := map[string]struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 3K bytes
    - Viewed (0)
  9. pkg/apis/networking/v1beta1/conversion.go

    		return err
    	}
    	if in.Service != nil {
    		out.ServiceName = in.Service.Name
    		if len(in.Service.Port.Name) > 0 {
    			out.ServicePort = intstr.FromString(in.Service.Port.Name)
    		} else {
    			out.ServicePort = intstr.FromInt32(in.Service.Port.Number)
    		}
    	}
    	return nil
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/value_types_json.go

    	return this.UnmarshalJSON(value)
    }
    
    func (this *IntOrString) ToKubernetes() intstr.IntOrString {
    	if this.IntVal != nil {
    		return intstr.FromInt32(this.GetIntVal().GetValue())
    	}
    	return intstr.FromString(this.GetStrVal().GetValue())
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 2.2K bytes
    - Viewed (0)
Back to top