Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for identity1 (0.34 sec)

  1. tensorflow/compiler/mlir/lite/tests/fuse-tftext.mlir

      %631 = "tf.Identity"(%79) {device = ""} : (tensor<?xi64>) -> tensor<?xi64>
      %632 = "tf.Identity"(%630) {device = ""} : (tensor<i1>) -> tensor<i1>
      %633 = "tf.Identity"(%307) {device = ""} : (tensor<i1>) -> tensor<i1>
      %634 = "tf.Shape"(%36#2) {device = ""} : (tensor<?xi64>) -> tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 460.3K bytes
    - Viewed (0)
  2. pkg/apis/core/types.go

    	VolumeMounts []VolumeMountStatus
    	// User represents user identity information initially attached to the first process of the container
    	// +featureGate=SupplementalGroupsPolicy
    	// +optional
    	User *ContainerUser
    }
    
    // ContainerUser represents user identity information
    type ContainerUser struct {
    	// Linux holds user identity information initially attached to the first process of the containers in Linux.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    	"user":               "User represents user identity information initially attached to the first process of the container",
    }
    
    func (ContainerStatus) SwaggerDoc() map[string]string {
    	return map_ContainerStatus
    }
    
    var map_ContainerUser = map[string]string{
    	"":      "ContainerUser represents user identity information",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // User represents user identity information initially attached to the first process of the container
      // +featureGate=SupplementalGroupsPolicy
      // +optional
      optional ContainerUser user = 13;
    }
    
    // ContainerUser represents user identity information
    message ContainerUser {
      // Linux holds user identity information initially attached to the first process of the containers in Linux.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types.go

    	// User represents user identity information initially attached to the first process of the container
    	// +featureGate=SupplementalGroupsPolicy
    	// +optional
    	User *ContainerUser `json:"user,omitempty" protobuf:"bytes,13,opt,name=user,casttype=ContainerUser"`
    }
    
    // ContainerUser represents user identity information
    type ContainerUser struct {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/tests/legalize-tf.mlir

    //===----------------------------------------------------------------------===//
    // Identity op legalizations.
    //===----------------------------------------------------------------------===//
    
    // -----
    
    // CHECK-LABEL: func @identity
    func.func @identity(%arg0: tensor<1xi32>) -> tensor<1xi32> {
      // CHECK-NEXT:  return %arg0 : tensor<1xi32>
      %0 = "tf.Identity"(%arg0) : (tensor<1xi32>) -> tensor<1xi32>
      func.return %0: tensor<1xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon May 06 18:46:23 UTC 2024
    - 335.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/tests/optimize.mlir

    }
    
    // CHECK-LABEL: @FuseReshapeAroundBMMRHS
    func.func @FuseReshapeAroundBMMRHS(%arg0: tensor<1x3x6x5x1024xf32>) -> tensor<1x3x6x5x8192xf32> attributes {tf.entry_function = {control_outputs = "", inputs = "inputs", outputs = "Identity_1"}} {
      %cst = arith.constant dense_resource<__elided__> : tensor<1x1024x8192xf32>
      %cst_0 = arith.constant dense_resource<__elided__> : tensor<5xi32>
      %cst_1 = arith.constant dense_resource<__elided__> : tensor<3xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 284.1K bytes
    - Viewed (0)
  8. doc/go_spec.html

    field declaration. An empty tag string is equivalent to an absent tag.
    The tags are made visible through a <a href="/pkg/reflect/#StructTag">reflection interface</a>
    and take part in <a href="#Type_identity">type identity</a> for structs
    but are otherwise ignored.
    </p>
    
    <pre>
    struct {
    	x, y float64 ""  // an empty tag string is like an absent tag
    	name string  "any string is permitted as a tag"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 21:07:21 UTC 2024
    - 281.5K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/ztypes_linux.go

    	CAN_RAW_LOOPBACK      = 0x3
    	CAN_RAW_RECV_OWN_MSGS = 0x4
    	CAN_RAW_FD_FRAMES     = 0x5
    	CAN_RAW_JOIN_FILTERS  = 0x6
    )
    
    type WatchdogInfo struct {
    	Options  uint32
    	Version  uint32
    	Identity [32]uint8
    }
    
    type PPSFData struct {
    	Info    PPSKInfo
    	Timeout PPSKTime
    }
    
    type PPSKParams struct {
    	Api_version   int32
    	Mode          int32
    	Assert_off_tu PPSKTime
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 251K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        } else {
          // TensorFlow EinsumOp verifies that the number of operands are at most
          // two.
          return failure();
        }
        return success();
      }
    };
    
    // Bypasses IdentityN op.
    class ConvertIdentityNOp : public OpRewritePattern<TF::IdentityNOp> {
     public:
      using OpRewritePattern<TF::IdentityNOp>::OpRewritePattern;
      LogicalResult matchAndRewrite(TF::IdentityNOp op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top