Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 27 for endpointsList (0.3 sec)

  1. pkg/controlplane/reconcilers/lease.go

    	leaseTime time.Duration
    }
    
    var _ Leases = &storageLeases{}
    
    // ListLeases retrieves a list of the current master IPs from storage
    func (s *storageLeases) ListLeases() ([]string, error) {
    	ipInfoList := &corev1.EndpointsList{}
    	storageOpts := storage.ListOptions{
    		ResourceVersion:      "0",
    		ResourceVersionMatch: metav1.ResourceVersionMatchNotOlderThan,
    		Predicate:            storage.Everything,
    		Recursive:            true,
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Aug 24 09:23:05 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/core/v1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:introduced" tags in types.go.
    func (in *EndpointsList) APILifecycleIntroduced() (major, minor int) {
    	return 1, 0
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. pkg/apis/core/v1/zz_generated.conversion.go

    	}
    	if err := s.AddGeneratedConversionFunc((*v1.EndpointsList)(nil), (*core.EndpointsList)(nil), func(a, b interface{}, scope conversion.Scope) error {
    		return Convert_v1_EndpointsList_To_core_EndpointsList(a.(*v1.EndpointsList), b.(*core.EndpointsList), scope)
    	}); err != nil {
    		return err
    	}
    	if err := s.AddGeneratedConversionFunc((*core.EndpointsList)(nil), (*v1.EndpointsList)(nil), func(a, b interface{}, scope conversion.Scope) error {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 472.1K bytes
    - Viewed (0)
  4. pkg/apis/core/zz_generated.deepcopy.go

    func (in *EndpointsList) DeepCopy() *EndpointsList {
    	if in == nil {
    		return nil
    	}
    	out := new(EndpointsList)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *EndpointsList) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *EndpointsList) DeepCopy() *EndpointsList {
    	if in == nil {
    		return nil
    	}
    	out := new(EndpointsList)
    	in.DeepCopyInto(out)
    	return out
    }
    
    // DeepCopyObject is an autogenerated deepcopy function, copying the receiver, creating a new runtime.Object.
    func (in *EndpointsList) DeepCopyObject() runtime.Object {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/core/v1/generated.pb.go

    var xxx_messageInfo_Endpoints proto.InternalMessageInfo
    
    func (m *EndpointsList) Reset()      { *m = EndpointsList{} }
    func (*EndpointsList) ProtoMessage() {}
    func (*EndpointsList) Descriptor() ([]byte, []int) {
    	return fileDescriptor_6c07b07c062484ab, []int{48}
    }
    func (m *EndpointsList) XXX_Unmarshal(b []byte) error {
    	return m.Unmarshal(b)
    }
    func (m *EndpointsList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  7. pkg/printers/internalversion/printers.go

    	}
    	row.Cells = append(row.Cells, obj.Name, formatEndpoints(obj, nil), translateTimestampSince(obj.CreationTimestamp))
    	return []metav1.TableRow{row}, nil
    }
    
    func printEndpointsList(list *api.EndpointsList, options printers.GenerateOptions) ([]metav1.TableRow, error) {
    	rows := make([]metav1.TableRow, 0, len(list.Items))
    	for i := range list.Items {
    		r, err := printEndpoints(&list.Items[i], options)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/api__v1_openapi.json

              {
                "group": "",
                "kind": "Endpoints",
                "version": "v1"
              }
            ]
          },
          "io.k8s.api.core.v1.EndpointsList": {
            "description": "EndpointsList is a list of endpoints.",
            "properties": {
              "apiVersion": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 1.8M bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/core/v1/generated.proto

      // NotReadyAddresses in the same subset.
      // Sets of addresses and ports that comprise a service.
      // +optional
      repeated EndpointSubset subsets = 2;
    }
    
    // EndpointsList is a list of endpoints.
    message EndpointsList {
      // Standard list metadata.
      // More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds
      // +optional
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  10. pkg/apis/core/types.go

    	// mycompany.com/my-custom-protocol.
    	// +optional
    	AppProtocol *string
    }
    
    // +k8s:deepcopy-gen:interfaces=k8s.io/apimachinery/pkg/runtime.Object
    
    // EndpointsList is a list of endpoints.
    type EndpointsList struct {
    	metav1.TypeMeta
    	// +optional
    	metav1.ListMeta
    
    	Items []Endpoints
    }
    
    // NodeSpec describes the attributes that a node is created with.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
Back to top