Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for EndpointSubset (0.14 sec)

  1. pkg/apis/core/zz_generated.deepcopy.go

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

    		}
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new EndpointSubset.
    func (in *EndpointSubset) DeepCopy() *EndpointSubset {
    	if in == nil {
    		return nil
    	}
    	out := new(EndpointSubset)
    	in.DeepCopyInto(out)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    		{
    			endpoint: api.Endpoints{
    				ObjectMeta: metav1.ObjectMeta{
    					Name:              "endpoint3",
    					CreationTimestamp: metav1.Time{Time: time.Now().Add(-3e11)},
    				},
    				Subsets: []api.EndpointSubset{
    					{
    						Addresses: []api.EndpointAddress{
    							{
    								IP: "1.2.3.4",
    							},
    							{
    								IP: "5.6.7.8",
    							},
    						},
    					},
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
Back to top