Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 110 for ktypes (0.18 sec)

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

                ],
                "description": "Object is:\n * If Type is Added or Modified: the new state of the object.\n * If Type is Deleted: the state of the object immediately before deletion.\n * If Type is Error: *Status is recommended; other types may make sense\n   depending on context."
              },
              "type": {
                "default": "",
                "type": "string"
              }
            },
            "required": [
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 136.6K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/types_windows.go

    type CryptIntegerBlob DataBlob
    type CryptUintBlob DataBlob
    type CryptObjidBlob DataBlob
    type CertNameBlob DataBlob
    type CertRdnValueBlob DataBlob
    type CertBlob DataBlob
    type CrlBlob DataBlob
    type CryptDataBlob DataBlob
    type CryptHashBlob DataBlob
    type CryptDigestBlob DataBlob
    type CryptDerBlob DataBlob
    type CryptAttrBlob DataBlob
    
    type CryptBitBlob struct {
    	Size       uint32
    	Data       *byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 104.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_n_z.cc

              dtype == tensorflow::DT_UINT16 || dtype == tensorflow::DT_INT16 ||
              dtype == tensorflow::DT_UINT8 || dtype == tensorflow::DT_INT8 ||
              dtype == tensorflow::DT_HALF || dtype == tensorflow::DT_BFLOAT16 ||
              dtype == tensorflow::DT_FLOAT || dtype == tensorflow::DT_DOUBLE ||
              dtype == tensorflow::DT_COMPLEX64 ||
              dtype == tensorflow::DT_COMPLEX128 || dtype == tensorflow::DT_BOOL) {
            return {};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 09 22:07:10 UTC 2024
    - 170.8K bytes
    - Viewed (0)
  4. src/reflect/all_test.go

    	return ValueOf(&x).Elem()
    }
    
    type Empty struct{}
    type MyStruct struct {
    	x int `some:"tag"`
    }
    type MyStruct1 struct {
    	x struct {
    		int `some:"bar"`
    	}
    }
    type MyStruct2 struct {
    	x struct {
    		int `some:"foo"`
    	}
    }
    type MyString string
    type MyBytes []byte
    type MyBytesArrayPtr0 *[0]byte
    type MyBytesArrayPtr *[4]byte
    type MyBytesArray0 [0]byte
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 218.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AsmBackedClassGenerator.java

            public static final int PV_FINAL_STATIC = ACC_PRIVATE | ACC_STATIC | ACC_FINAL | ACC_SYNTHETIC;
            private static final Set<? extends Class<?>> PRIMITIVE_TYPES = ImmutableSet.of(Byte.TYPE, Boolean.TYPE, Character.TYPE, Short.TYPE, Integer.TYPE, Long.TYPE, Float.TYPE, Double.TYPE);
            private static final String DYNAMIC_OBJECT_HELPER_FIELD = "_gr_dyn_";
            private static final String MAPPING_FIELD = "_gr_map_";
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:40:00 UTC 2024
    - 100.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass_test.cc

      node_builder.Input(inputs);
      node_builder.Input(std::move(key_input));
      std::vector<DataType> dtypes;
      for (const auto& node : inputs) {
        dtypes.push_back(node.dt);
      }
      return opts.WithAttr("Tinputs", dtypes)
          .WithAttr("key", key)
          .WithAttr("device_ordinal", 0)
          .WithAttr("_encapsulate", cluster)
          .WithAttr("_outside", oc_cluster)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 113.3K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

    // Set `isSigned` to false if the `type` is an 8-bit unsigned integer type.
    // Since tflite doesn't support unsigned for other types, returns error if
    // `isSigned` is set to false for other types.
    static StatusOr<tflite::TensorType> GetTFLiteType(Type type,
                                                      bool is_signed = true) {
      if (!is_signed) {
        if (type.isSignlessInteger(8)) {
          return tflite::TensorType_UINT8;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

          %ri = "tf.TPUReplicatedInput"(%pi_0, %pi_1) : (!rtype, !rtype) -> !rtype
          return %ri : !rtype
        }
        ```
    
        will be transformed into:
    
        ```mlir
        !rtype = type tensor<!tf_type.resource<tensor<10x3xf32>>>
        func @data_and_model_parallelism(%arg0: !rtype, %arg1: !rtype, %arg2: !rtype, %arg3: !rtype) -> !rtype {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  9. pkg/apis/resource/v1alpha2/zz_generated.conversion.go

    	v1 "k8s.io/api/core/v1"
    	v1alpha2 "k8s.io/api/resource/v1alpha2"
    	apiresource "k8s.io/apimachinery/pkg/api/resource"
    	conversion "k8s.io/apimachinery/pkg/conversion"
    	runtime "k8s.io/apimachinery/pkg/runtime"
    	types "k8s.io/apimachinery/pkg/types"
    	core "k8s.io/kubernetes/pkg/apis/core"
    	resource "k8s.io/kubernetes/pkg/apis/resource"
    )
    
    func init() {
    	localSchemeBuilder.Register(RegisterConversions)
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 14 17:07:36 UTC 2024
    - 103.6K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "string"
            },
            "type": {
              "description": "Type of condition for a component. Valid value: \"Healthy\"",
              "type": "string"
            }
          },
          "required": [
            "type",
            "status"
          ],
          "type": "object"
        },
        "io.k8s.api.core.v1.ConfigMapEnvSource": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top