Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for kindOf (0.24 sec)

  1. pilot/pkg/config/kube/gateway/conditions.go

    		supported = []k8s.RouteGroupKind{
    			{Group: (*k8s.Group)(ptr.Of(gvk.HTTPRoute.Group)), Kind: k8s.Kind(gvk.HTTPRoute.Kind)},
    			{Group: (*k8s.Group)(ptr.Of(gvk.GRPCRoute.Group)), Kind: k8s.Kind(gvk.GRPCRoute.Kind)},
    		}
    	case k8s.TCPProtocolType:
    		supported = []k8s.RouteGroupKind{{Group: (*k8s.Group)(ptr.Of(gvk.TCPRoute.Group)), Kind: k8s.Kind(gvk.TCPRoute.Kind)}}
    	case k8s.TLSProtocolType:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 13:05:41 UTC 2024
    - 14.4K bytes
    - Viewed (0)
  2. cluster/addons/calico-policy-controller/clusterinformations-crd.yaml

                type: string
              kind:
                description: 'Kind is a string value representing the REST resource this
                  object represents. Servers may infer this from the endpoint the client
                  submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds'
                type: string
              metadata:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 07 20:48:43 UTC 2021
    - 2.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    func copyAndSetTargetKind(copy bool, obj Object, kind schema.GroupVersionKind) (Object, error) {
    	if copy {
    		obj = obj.DeepCopyObject()
    	}
    	setTargetKind(obj, kind)
    	return obj, nil
    }
    
    // setTargetKind sets the kind on an object, taking into account whether the target kind is the internal version.
    func setTargetKind(obj Object, kind schema.GroupVersionKind) {
    	if kind.Version == APIVersionInternal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apimachinery/pkg/runtime/scheme_test.go

    		t.Fatalf("type not unversioned and in scheme: %t %t", unv, ok)
    	}
    
    	kinds, _, err := scheme.ObjectKinds(&runtimetesting.InternalSimple{})
    	if err != nil {
    		t.Fatal(err)
    	}
    	kind := kinds[0]
    	if kind != externalGV.WithKind("InternalSimple") {
    		t.Fatalf("unexpected: %#v", kind)
    	}
    
    	test := &runtimetesting.InternalSimple{
    		TestString: "I'm the same",
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 38.2K bytes
    - Viewed (0)
  5. pilot/pkg/config/kube/gateway/testdata/route-binding.yaml

          namespaces:
            from: All
          kinds:
          - kind: HTTPRoute
      - name: same-namespace
        hostname: "*.same-namespace.example"
        port: 80
        protocol: HTTP
      - name: scope-route
        hostname: "*.scope-route.example"
        port: 80
        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: TCPRoute
      - name: slctr-labels
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Dec 11 20:21:53 UTC 2023
    - 8.1K bytes
    - Viewed (0)
  6. src/reflect/type.go

    		return T == V
    	}
    
    	if nameFor(T) != nameFor(V) || T.Kind() != V.Kind() || pkgPathFor(T) != pkgPathFor(V) {
    		return false
    	}
    
    	return haveIdenticalUnderlyingType(T, V, false)
    }
    
    func haveIdenticalUnderlyingType(T, V *abi.Type, cmpTags bool) bool {
    	if T == V {
    		return true
    	}
    
    	kind := Kind(T.Kind())
    	if kind != Kind(V.Kind()) {
    		return false
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  7. pkg/apis/rbac/v1alpha1/conversion.go

    	}
    
    	// specifically set the APIGroup for the three subjects recognized in v1alpha1
    	switch {
    	case in.Kind == rbacv1alpha1.ServiceAccountKind:
    		out.APIGroup = ""
    	case in.Kind == rbacv1alpha1.UserKind:
    		out.APIGroup = GroupName
    	case in.Kind == rbacv1alpha1.GroupKind:
    		out.APIGroup = GroupName
    	default:
    		// For unrecognized kinds, use the group portion of the APIVersion if we can get it
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 22 18:30:51 UTC 2017
    - 2.8K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/protocol/events/InternalJvmTestDescriptor.java

        String KIND_SUITE = "SUITE";
        String KIND_ATOMIC = "ATOMIC";
    
        /**
         * Returns the kind of test this is. See the constants on this interface for the supported kinds.
         *
         * @return The test kind (test suite, atomic test, etc.).
         */
        String getTestKind();
    
        /**
         * Returns the name of the test suite, if any.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 07:45:14 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis_openapi.json

                "type": "string"
              },
              "kind": {
                "description": "Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
                "type": "string"
              },
              "name": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:05:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  10. src/main/java/org/codelibs/fess/suggest/index/SuggestIndexer.java

                            .mustNot(QueryBuilders.matchPhraseQuery(FieldNames.KINDS, SuggestItem.Kind.QUERY.toString()))
                            .mustNot(QueryBuilders.matchPhraseQuery(FieldNames.KINDS, SuggestItem.Kind.USER.toString())));
            if (deleteResponse.hasError()) {
                throw new SuggestIndexException(deleteResponse.getErrors().get(0));
            }
    
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 26.1K bytes
    - Viewed (0)
Back to top