Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 132 for Types (0.06 sec)

  1. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

                "type": "string"
              },
              "jsonPath": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  2. src/reflect/value.go

    	if f&flagRO != 0 {
    		return flagStickyRO
    	}
    	return 0
    }
    
    func (v Value) typ() *abi.Type {
    	// Types are either static (for compiler-created types) or
    	// heap-allocated but always reachable (for reflection-created
    	// types, held in the central map). So there is no need to
    	// escape types. noescape here help avoid unnecessary escape
    	// of v.
    	return (*abi.Type)(abi.NoEscape(unsafe.Pointer(v.typ_)))
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                          LiftedArgsAndOutsideCompilationNodesInFunctionBody(
                              *fbody, outside_compilation_attr_to_node));
    
      // Append lifted args' types to call node's input data types.
      std::vector<DataType> data_types(n->input_types().begin(),
                                       n->input_types().end());
      for (auto pair : lifted_arg_nodes_and_outside_compilation_nodes) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  4. api/openapi-spec/v3/apis__storagemigration.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "metadata": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.3K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__internal.apiserver.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "metadata": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 133.2K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "metadata": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
  7. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	pod = pod.DeepCopy()
    	pod.Name = newName
    	pod.UID = types.UID(pod.Name + pod.Namespace)
    	return pod
    }
    
    func expectInFlightPods(t *testing.T, q *PriorityQueue, uids ...types.UID) {
    	t.Helper()
    	var actualUIDs []types.UID
    	for uid := range q.inFlightPods {
    		actualUIDs = append(actualUIDs, uid)
    	}
    	sortUIDs := cmpopts.SortSlices(func(a, b types.UID) bool { return a < b })
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__scheduling.k8s.io__v1_openapi.json

                "type": "string"
              },
              "metadata": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 116.6K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__certificates.k8s.io__v1alpha1_openapi.json

                "type": "string"
              },
              "metadata": {
                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.apimachinery.pkg.apis.meta.v1.ObjectMeta"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 119K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__autoscaling__v1_openapi.json

              },
              "kind": {
                "default": "",
                "description": "kind is the kind of the referent; More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds",
                "type": "string"
              },
              "name": {
                "default": "",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 152.9K bytes
    - Viewed (0)
Back to top