Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 24 for subset16 (0.15 sec)

  1. 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)
  2. pkg/apis/core/zz_generated.deepcopy.go

    func (in *Endpoints) DeepCopyInto(out *Endpoints) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Subsets != nil {
    		in, out := &in.Subsets, &out.Subsets
    		*out = make([]EndpointSubset, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/zz_generated.deepcopy.go

    func (in *Endpoints) DeepCopyInto(out *Endpoints) {
    	*out = *in
    	out.TypeMeta = in.TypeMeta
    	in.ObjectMeta.DeepCopyInto(&out.ObjectMeta)
    	if in.Subsets != nil {
    		in, out := &in.Subsets, &out.Subsets
    		*out = make([]EndpointSubset, len(*in))
    		for i := range *in {
    			(*in)[i].DeepCopyInto(&(*out)[i])
    		}
    	}
    	return
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

      TFL_OperandHasRank<1, 1>,
      // Other operands are scalar params.
      TFL_OperandHasRank<2, 0>, TFL_OperandHasRank<3, 0>,
      TFL_OperandHasRank<4, 0>]> {
      let summary = [{
    Greedily selects a subset of bounding boxes in descending order of score,
      }];
    
      let description = [{
    pruning away boxes that have high intersection-over-union (IOU) overlap
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  5. pkg/controller/job/job_controller_test.go

    			indexesToAdd:     []int{1, 3},
    			wantIndexesToAdd: []int{1, 3},
    		},
    		"subset of indexes can be recreated now": {
    			indexesToAdd: []int{1, 3},
    			podsWithDelayedDeletionPerIndex: map[int]*v1.Pod{
    				1: buildPod().indexFailureCount("0").index("1").customDeletionTimestamp(now).Pod,
    			},
    			wantIndexesToAdd: []int{3},
    		},
    		"subset of indexes can be recreated now as the pods failed long time ago": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/endpoints.yaml

    metadata:
      creationTimestamp: '2016-10-04T17:45:58Z'
      labels:
        app: my-app
      name: app-server
      namespace: default
      resourceVersion: '184597135'
      selfLink: /self/link
      uid: 6826f086-8a5a-11e6-8d09-42010a800005
    subsets:
    - addresses:
      - ip: 10.0.0.1
        targetRef:
          kind: Pod
          name: pod-name-1234-0000
          namespace: default
          resourceVersion: '1234567890'
          uid: 11111111-2222-3333-4444-555555555555
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 21:44:00 UTC 2023
    - 183.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

        },
        "io.k8s.api.core.v1.NodeSelectorTerm": {
          "description": "A null or empty node selector term matches no objects. The requirements of them are ANDed. The TopologySelectorTerm type implements a subset of the NodeSelectorTerm.",
          "properties": {
            "matchExpressions": {
              "description": "A list of node selector requirements by node's labels.",
              "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  8. src/cmd/go/internal/work/exec.go

    	fmt.Fprintf(h, "vet %q\n", b.toolID("vet"))
    
    	vetFlags := VetFlags
    
    	// In GOROOT, we enable all the vet tests during 'go test',
    	// not just the high-confidence subset. This gets us extra
    	// checking for the standard library (at some compliance cost)
    	// and helps us gain experience about how well the checks
    	// work, to help decide which should be turned on by default.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  9. src/net/http/server.go

    //
    // # Precedence
    //
    // If two or more patterns match a request, then the most specific pattern takes precedence.
    // A pattern P1 is more specific than P2 if P1 matches a strict subset of P2’s requests;
    // that is, if P2 matches all the requests of P1 and more.
    // If neither is more specific, then the patterns conflict.
    // There is one exception to this rule, for backwards compatibility:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__discovery.k8s.io__v1_openapi.json

              }
            },
            "type": "object",
            "x-kubernetes-map-type": "atomic"
          },
          "io.k8s.api.discovery.v1.EndpointSlice": {
            "description": "EndpointSlice represents a subset of the endpoints that implement a service. For a given service there may be multiple EndpointSlice objects, selected by labels, which must be joined to produce the full set of endpoints.",
            "properties": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 146.6K bytes
    - Viewed (0)
Back to top