Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for apiGroup (0.32 sec)

  1. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    func autoConvert_v1alpha2_ResourceClaimConsumerReference_To_resource_ResourceClaimConsumerReference(in *v1alpha2.ResourceClaimConsumerReference, out *resource.ResourceClaimConsumerReference, s conversion.Scope) error {
    	out.APIGroup = in.APIGroup
    	out.Resource = in.Resource
    	out.Name = in.Name
    	out.UID = types.UID(in.UID)
    	return nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	}
    }
    
    func fakeRequestInfo(resource, apiGroup string) *genericapirequest.RequestInfo {
    	return &genericapirequest.RequestInfo{
    		IsResourceRequest: true,
    		Path:              "/api/v1/test",
    		Verb:              "test",
    		APIPrefix:         "api",
    		APIGroup:          apiGroup,
    		APIVersion:        "v1",
    		Namespace:         "",
    		Resource:          resource,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/networking/v1beta1/generated.pb.go

    	dAtA[i] = 0x1a
    	i -= len(m.Kind)
    	copy(dAtA[i:], m.Kind)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Kind)))
    	i--
    	dAtA[i] = 0x12
    	if m.APIGroup != nil {
    		i -= len(*m.APIGroup)
    		copy(dAtA[i:], *m.APIGroup)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.APIGroup)))
    		i--
    		dAtA[i] = 0xa
    	}
    	return len(dAtA) - i, nil
    }
    
    func (m *IngressClassSpec) Marshal() (dAtA []byte, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101.4K bytes
    - Viewed (0)
  4. operator/cmd/mesh/testdata/manifest-generate/output/pilot_default.golden.yaml

      - watch
    - apiGroups:
      - discovery.k8s.io
      resources:
      - endpointslices
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - multicluster.x-k8s.io
      resources:
      - serviceexports
      verbs:
      - get
      - list
      - watch
      - create
      - delete
    - apiGroups:
      - multicluster.x-k8s.io
      resources:
      - serviceimports
      verbs:
      - get
      - list
      - watch
    - apiGroups:
      - apps
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 102.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/networking/v1/generated.pb.go

    	i -= len(m.Kind)
    	copy(dAtA[i:], m.Kind)
    	i = encodeVarintGenerated(dAtA, i, uint64(len(m.Kind)))
    	i--
    	dAtA[i] = 0x12
    	if m.APIGroup != nil {
    		i -= len(*m.APIGroup)
    		copy(dAtA[i:], *m.APIGroup)
    		i = encodeVarintGenerated(dAtA, i, uint64(len(*m.APIGroup)))
    		i--
    		dAtA[i] = 0xa
    	}
    	return len(dAtA) - i, nil
    }
    
    func (m *IngressClassSpec) Marshal() (dAtA []byte, err error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 158.2K bytes
    - Viewed (0)
  6. pkg/printers/internalversion/printers.go

    		Object: runtime.RawExtension{Object: obj},
    	}
    	parameters := "<none>"
    	if obj.Spec.Parameters != nil {
    		parameters = obj.Spec.Parameters.Kind
    		if obj.Spec.Parameters.APIGroup != nil {
    			parameters = parameters + "." + *obj.Spec.Parameters.APIGroup
    		}
    		parameters = parameters + "/" + obj.Spec.Parameters.Name
    	}
    	createTime := translateTimestampSince(obj.CreationTimestamp)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 128.3K bytes
    - Viewed (0)
  7. pkg/apis/core/zz_generated.deepcopy.go

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

    func (in *TypedLocalObjectReference) DeepCopyInto(out *TypedLocalObjectReference) {
    	*out = *in
    	if in.APIGroup != nil {
    		in, out := &in.APIGroup, &out.APIGroup
    		*out = new(string)
    		**out = **in
    	}
    	return
    }
    
    // DeepCopy is an autogenerated deepcopy function, copying the receiver, creating a new TypedLocalObjectReference.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 181.9K bytes
    - Viewed (0)
  9. pkg/registry/batch/job/strategy_test.go

    	}
    
    	var (
    		v1Ctx           = genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v1", Resource: "jobs"})
    		otherVersionCtx = genericapirequest.WithRequestInfo(genericapirequest.NewContext(), &genericapirequest.RequestInfo{APIGroup: "batch", APIVersion: "v100", Resource: "jobs"})
    	)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 101.5K bytes
    - Viewed (0)
  10. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    .Values.revision "") }}-{{ .Values.revision }}{{- end }} rules: # istio groups - apiGroups: - authentication.istio.io resources: - '*' verbs: - '*' - apiGroups: - config.istio.io resources: - '*' verbs: - '*' - apiGroups: - install.istio.io resources: - '*' verbs: - '*' - apiGroups: - networking.istio.io resources: - '*' verbs: - '*' - apiGroups: - security.istio.io resources: - '*' verbs: - '*' # k8s groups - apiGroups: - admissionregistratio.k8s.io resources: - mutatingwebhookconfi - validatingwebhookcon...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top