Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for parentRef (0.16 sec)

  1. pkg/printers/internalversion/printers.go

    	parentRefName := "<none>"
    	if obj.Spec.ParentRef != nil {
    		gr := schema.GroupResource{
    			Group:    obj.Spec.ParentRef.Group,
    			Resource: obj.Spec.ParentRef.Resource,
    		}
    		parentRefName = strings.ToLower(gr.String())
    		if obj.Spec.ParentRef.Namespace != "" {
    			parentRefName += "/" + obj.Spec.ParentRef.Namespace
    		}
    		parentRefName += "/" + obj.Spec.ParentRef.Name
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    		},
    		Spec: networking.IPAddressSpec{
    			ParentRef: &networking.ParentReference{
    				Group:     "mygroup",
    				Resource:  "myresource",
    				Namespace: "mynamespace",
    				Name:      "myname",
    			},
    		},
    	}
    	// Columns: Name, ParentRef, Age
    	expected := []metav1.TableRow{{Cells: []interface{}{"192.168.2.2", "myresource.mygroup/mynamespace/myname", "10y"}}}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__networking.k8s.io__v1alpha1_openapi.json

            "description": "IPAddressSpec describe the attributes in an IP Address.",
            "properties": {
              "parentRef": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.networking.v1alpha1.ParentReference"
                  }
                ],
                "description": "ParentRef references the resource that an IPAddress is attached to. An IPAddress must reference a parent object."
              }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 196.5K bytes
    - Viewed (0)
  4. src/crypto/x509/verify_test.go

    	roots, intermediates := NewCertPool(), NewCertPool()
    
    	parent, parentKey, err := generateCert("Root CA", true, nil, nil)
    	if err != nil {
    		t.Fatal(err)
    	}
    	roots.AddCert(parent)
    
    	for i := 1; i < 100; i++ {
    		parent, parentKey, err = generateCert("Intermediate CA", true, parent, parentKey)
    		if err != nil {
    			t.Fatal(err)
    		}
    		intermediates.AddCert(parent)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/text/internal/language/tables.go

    	// Entry 40 - 7F
    	0x3e, 0x3e, 0x3e, 0x3e, 0x43, 0x43, 0x42, 0x43,
    	0x43,
    }
    
    type parentRel struct {
    	lang       uint16
    	script     uint16
    	maxScript  uint16
    	toRegion   uint16
    	fromRegion []uint16
    }
    
    // Size: 414 bytes, 5 elements
    var parents = [5]parentRel{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 153K bytes
    - Viewed (0)
Back to top