Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 184 for IntPtr (0.12 sec)

  1. cmd/kubeadm/app/phases/addons/dns/dns_test.go

    								Name:     "dns",
    								Port:     53,
    								Protocol: v1.ProtocolUDP,
    								TargetPort: intstr.IntOrString{
    									Type:   0,
    									IntVal: 53,
    								},
    							},
    							{
    								Name:     "dns-tcp",
    								Port:     53,
    								Protocol: v1.ProtocolTCP,
    								TargetPort: intstr.IntOrString{
    									Type:   0,
    									IntVal: 53,
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 11 10:21:20 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  2. pkg/api/service/testing/make.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package testing
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    	utilpointer "k8s.io/utils/pointer"
    
    	api "k8s.io/kubernetes/pkg/apis/core"
    )
    
    // Tweak is a function that modifies a Service.
    type Tweak func(*api.Service)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 07:16:15 UTC 2023
    - 7.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/cel/openapi/extensions.go

    limitations under the License.
    */
    
    package openapi
    
    import (
    	"k8s.io/apimachinery/pkg/util/intstr"
    	"k8s.io/apiserver/pkg/cel/common"
    	"k8s.io/kube-openapi/pkg/validation/spec"
    )
    
    var intOrStringFormat = intstr.IntOrString{}.OpenAPISchemaFormat()
    
    func isExtension(schema *spec.Schema, key string) bool {
    	v, ok := schema.Extensions.GetBool(key)
    	return v && ok
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 10 21:26:55 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/util/intstr/generated.pb.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Code generated by protoc-gen-gogo. DO NOT EDIT.
    // source: k8s.io/apimachinery/pkg/util/intstr/generated.proto
    
    package intstr
    
    import (
    	fmt "fmt"
    
    	io "io"
    	math "math"
    	math_bits "math/bits"
    
    	proto "github.com/gogo/protobuf/proto"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  5. pilot/pkg/serviceregistry/kube/controller/controller_test.go

    					Protocol:   "TCP",
    					TargetPort: intstr.IntOrString{Type: intstr.Int, IntVal: 7442},
    				},
    				{
    					Name:       "tcp-8443",
    					Port:       8443,
    					Protocol:   "TCP",
    					TargetPort: intstr.IntOrString{Type: intstr.Int, IntVal: 7442},
    				},
    				{
    					Name:       "http-7557",
    					Port:       7557,
    					Protocol:   "TCP",
    					TargetPort: intstr.IntOrString{Type: intstr.Int, IntVal: 7442},
    				},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 85K bytes
    - Viewed (0)
  6. pkg/apis/policy/types.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package policy
    
    import (
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // PodDisruptionBudgetSpec is a description of a PodDisruptionBudget.
    type PodDisruptionBudgetSpec struct {
    	// An eviction is allowed if at least "minAvailable" pods selected by
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  7. pkg/kubelet/prober/scale_test.go

    	if f.http {
    		handler = v1.ProbeHandler{
    			HTTPGet: &v1.HTTPGetAction{
    				Host: "127.0.0.1",
    				Port: intstr.FromInt32(int32(port)),
    			},
    		}
    	} else {
    		handler = v1.ProbeHandler{
    			TCPSocket: &v1.TCPSocketAction{
    				Host: "127.0.0.1",
    				Port: intstr.FromInt32(int32(port)),
    			},
    		}
    	}
    	return handler
    }
    
    func (f *fakePod) stop() {
    	f.ln.Close()
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 16 16:33:01 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/policy/v1/generated.proto

    import "k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/generated.proto";
    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    import "k8s.io/apimachinery/pkg/util/intstr/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/policy/v1";
    
    // Eviction evicts a pod from its node subject to certain policies and safety constraints.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/apps/v1/zz_generated.deepcopy.go

    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package v1
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	intstr "k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ControllerRevision) DeepCopyInto(out *ControllerRevision) {
    	*out = *in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 23.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apps/v1beta1/zz_generated.deepcopy.go

    // Code generated by deepcopy-gen. DO NOT EDIT.
    
    package v1beta1
    
    import (
    	corev1 "k8s.io/api/core/v1"
    	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	intstr "k8s.io/apimachinery/pkg/util/intstr"
    )
    
    // DeepCopyInto is an autogenerated deepcopy function, copying the receiver, writing into out. in must be non-nil.
    func (in *ControllerRevision) DeepCopyInto(out *ControllerRevision) {
    	*out = *in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Nov 08 15:48:00 UTC 2022
    - 18.5K bytes
    - Viewed (0)
Back to top