Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of about 10,000 for kind2 (0.18 sec)

  1. staging/src/k8s.io/apimachinery/pkg/api/apitesting/roundtrip/roundtrip.go

    	kinds := scheme.AllKnownTypes()
    	for gvk := range kinds {
    		if gvk.Version == runtime.APIVersionInternal || globalNonRoundTrippableTypes.Has(gvk.Kind) {
    			continue
    		}
    		t.Run(gvk.Group+"."+gvk.Version+"."+gvk.Kind, func(t *testing.T) {
    			roundTripSpecificKind(t, gvk, scheme, codecFactory, fuzzer, nonRoundTrippableTypes, true)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:48:03 UTC 2023
    - 16.8K bytes
    - Viewed (0)
  2. pkg/kube/inject/initializer.go

    	}
    	injectScheme = runtime.NewScheme()
    )
    
    func init() {
    	for _, kind := range kinds {
    		injectScheme.AddKnownTypes(kind.groupVersion, kind.obj)
    		injectScheme.AddUnversionedTypes(kind.groupVersion, kind.obj)
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Oct 30 20:07:58 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. tensorflow/c/eager/abstract_context.h

    class AbstractContext {
     protected:
      enum AbstractContextKind { kGraph, kMlir, kEager, kTfrt, kTape, kOpHandler };
      explicit AbstractContext(AbstractContextKind kind) : kind_(kind) {}
      virtual ~AbstractContext() {}
    
     public:
      AbstractContextKind getKind() const { return kind_; }
    
      // Release any underlying resources, including the interface object.
      //
      // WARNING: The destructor of this class is marked as protected to disallow
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Oct 24 11:16:58 UTC 2021
    - 3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. .github/PULL_REQUEST_TEMPLATE.md

    -->
    
    #### What type of PR is this?
    
    <!--
    Add one of the following kinds:
    /kind bug
    /kind cleanup
    /kind documentation
    /kind feature
    
    Optionally add one or more of the following kinds if applicable:
    /kind api-change
    /kind deprecation
    /kind failing-test
    /kind flake
    /kind regression
    -->
    
    #### What this PR does / why we need it:
    
    #### Which issue(s) this PR fixes:
    <!--
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Aug 01 08:59:21 UTC 2021
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/api/meta/multirestmapper.go

    	kinds, err := m.KindsFor(resource)
    	if err != nil {
    		return schema.GroupVersionKind{}, err
    	}
    	if len(kinds) == 1 {
    		return kinds[0], nil
    	}
    
    	return schema.GroupVersionKind{}, &AmbiguousResourceError{PartialResource: resource, MatchingKinds: kinds}
    }
    
    // RESTMapping provides the REST mapping for the resource based on the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 05 23:44:02 UTC 2021
    - 5.8K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top