Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for kindOf (0.16 sec)

  1. samples/tcp-echo/gateway-api/tcp-echo-all-v1.yaml

    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: tcp-echo-gateway
    spec:
      gatewayClassName: istio
      listeners:
      - name: tcp-31400
        protocol: TCP
        port: 31400
        allowedRoutes:
          kinds:
          - kind: TCPRoute
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: tcp-echo-v1
    spec:
      ports:
      - port: 9000
        name: tcp
      selector:
        app: tcp-echo
        version: v1
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 18 15:09:04 UTC 2022
    - 789 bytes
    - Viewed (0)
  2. tensorflow/c/eager/abstract_tensor_handle.h

    // execution mode.
    class AbstractTensorHandle : public core::RefCounted {
     protected:
      enum AbstractTensorHandleKind { kGraph, kMlir, kEager, kTfrt, kCustomDevice };
      explicit AbstractTensorHandle(AbstractTensorHandleKind kind) : kind_(kind) {}
      ~AbstractTensorHandle() override {}
    
     public:
      // Returns tensor dtype.
      virtual tensorflow::DataType DataType() const = 0;
    
      // Returns the status of the tensor handle. If it is a tfrt::TensorHandle,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 03 00:30:36 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. pilot/pkg/config/kube/crdclient/client.go

    }
    
    // List implements store interface
    func (cl *Client) List(kind config.GroupVersionKind, namespace string) []config.Config {
    	h, f := cl.kind(kind)
    	if !f {
    		return nil
    	}
    
    	list := h.List(namespace, klabels.Everything())
    
    	out := make([]config.Config, 0, len(list))
    	for _, item := range list {
    		cfg := TranslateObject(item, kind, cl.domainSuffix)
    		out = append(out, cfg)
    	}
    
    	return out
    }
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. platforms/jvm/language-java/src/main/java/org/gradle/api/internal/tasks/compile/reflect/GradleStandardJavaFileManager.java

                // found on the classpath.
                if (location.equals(StandardLocation.CLASS_PATH)) {
                    kinds.remove(JavaFileObject.Kind.SOURCE);
                }
            }
            return super.list(location, packageName, kinds, recurse);
        }
    
        @Override
        public ClassLoader getClassLoader(Location location) {
            ClassLoader classLoader = super.getClassLoader(location);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/meta/interfaces.go

    }
    
    // RESTMapper allows clients to map resources to kind, and map kind and version
    // to interfaces for manipulating those objects. It is primarily intended for
    // consumers of Kubernetes compatible REST APIs as defined in docs/devel/api-conventions.md.
    //
    // The Kubernetes API provides versioned resources and object kinds which are scoped
    // to API groups. In other words, kinds and resources should not be assumed to be
    // unique across groups.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.5K bytes
    - Viewed (0)
  6. pilot/pkg/config/kube/gateway/testdata/grpc.yaml

        protocol: HTTP
        allowedRoutes:
          namespaces:
            from: All
          kinds:
          - kind: GRPCRoute
    ---
    apiVersion: gateway.networking.k8s.io/v1alpha2
    kind: GRPCRoute
    metadata:
      name: grpc
      namespace: default
    spec:
      parentRefs:
      - name: gateway
        namespace: istio-system
      hostnames: ["first.domain.example", "another.domain.example"]
      rules:
      - matches:
        - method:
            service: "foo"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 03 23:50:05 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/restmapper.go

    }
    
    // UnsafeGuessKindToResource converts Kind to a resource name.
    // Broken. This method only "sort of" works when used outside of this package.  It assumes that Kinds and Resources match
    // and they aren't guaranteed to do so.
    func UnsafeGuessKindToResource(kind schema.GroupVersionKind) ( /*plural*/ schema.GroupVersionResource /*singular*/, schema.GroupVersionResource) {
    	kindName := kind.Kind
    	if len(kindName) == 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 17 01:55:47 UTC 2021
    - 16.1K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/gateway-namespaces.yaml

    #$ Used in:
    #$ - site-src/concepts/api-overview.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: prod-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: foo-lb
      listeners:
      - name: prod-web
        port: 80
        protocol: HTTP
        allowedRoutes:
          kinds:
          - kind: HTTPRoute
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 446 bytes
    - Viewed (0)
  9. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/events/test/JvmTestKind.java

        ATOMIC("Atomic test"),
        UNKNOWN("Unknown test kind");
    
        private final String label;
    
        JvmTestKind(String label) {
            this.label = label;
        }
    
        /**
         * Returns a label for the test kind. The label can be used to generate a prettified version of the test descriptor.
         *
         * @return a label corresponding to the test kind
         */
        public String getLabel() {
            return label;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/test/integration/ratcheting_test_cases/valid/http-route-attachment/gateway-strict.yaml

    #$ Used in:
    #$ - site-src/concepts/api-overview.md
    apiVersion: gateway.networking.k8s.io/v1beta1
    kind: Gateway
    metadata:
      name: foo-gateway
      namespace: gateway-api-example-ns1
    spec:
      gatewayClassName: foo-lb
      listeners:
      - name: prod-web
        port: 80
        protocol: HTTP
        allowedRoutes:
          kinds:
          - kind: HTTPRoute
          namespaces:
            from: Selector
            selector:
              matchLabels:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 17:15:18 UTC 2023
    - 573 bytes
    - Viewed (0)
Back to top