Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 681 for identity1 (0.23 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/value/encrypt/identity/identity.go

    limitations under the License.
    */
    
    package identity
    
    import (
    	"bytes"
    	"context"
    	"fmt"
    
    	"k8s.io/apiserver/pkg/storage/value"
    )
    
    var (
    	transformer      = identityTransformer{}
    	encryptedPrefix  = []byte("k8s:enc:")
    	errEncryptedData = fmt.Errorf("identity transformer tried to read encrypted data")
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 13 14:52:29 UTC 2022
    - 2K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tfrt/tests/ifrt/tf_identity_propagation.mlir

    func.func @identity_terminator(%arg0: tensor<i32>) -> (tensor<*xi32>, tensor<i32>) {
      // CHECK: %[[IDENTITY:.*]] = "tf.Identity"
      %0 = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<*xi32>
      // CHECK-NOT: "tf.Identity"
      %1 = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
      // CHECK: return %[[IDENTITY]], %[[ARG0]]
      func.return %0, %1 : tensor<*xi32>, tensor<i32>
    }
    
    // CHECK-LABEL: func @xla_sharding
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Mar 23 23:34:42 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/types/identity.go

    func Identical(t1, t2 *Type) bool {
    	return identical(t1, t2, 0, nil)
    }
    
    // IdenticalIgnoreTags is like Identical, but it ignores struct tags
    // for struct identity.
    func IdenticalIgnoreTags(t1, t2 *Type) bool {
    	return identical(t1, t2, identIgnoreTags, nil)
    }
    
    // IdenticalStrict is like Identical, but matches types exactly, without the
    // exception for shapes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 22 20:57:01 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/testdata/valid-configs/identity-first.yaml

    kind: EncryptionConfiguration
    apiVersion: apiserver.config.k8s.io/v1
    resources:
      - resources:
          - secrets
          - namespaces
        providers:
          - identity: {}
          - aesgcm:
              keys:
                - name: key1
                  secret: c2VjcmV0IGlzIHNlY3VyZQ==
                - name: key2
                  secret: dGhpcyBpcyBwYXNzd29yZA==
          - kms:
              name: testprovider
              endpoint: unix:///tmp/testprovider.sock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 30 23:18:14 UTC 2023
    - 903 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf-reduce-identity.mlir

        // CHECK: tf.UnsupportedOp
        %1 = "tf.UnsupportedOp"() {value = dense<1> : tensor<i32>} : () -> tensor<i32>
        // CHECK: tf.Identity
        %2 = "tf.Identity"(%1) : (tensor<i32>) -> tensor<i32>
        // CHECK-NOT: tf.Identity
        %3 = "tf.Identity"(%2) : (tensor<i32>) -> tensor<i32>
        %4 = "tf.Identity"(%3) : (tensor<i32>) -> tensor<i32>
        // CHECK: tf_device.return
        tf_device.return %4 : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 05:47:26 UTC 2022
    - 756 bytes
    - Viewed (0)
  6. docs/sts/custom-token-identity.md

    # AssumeRoleWithCustomToken [![Slack](https://slack.min.io/slack?type=svg)](https://slack.min.io)
    
    ## Introduction
    
    To integrate with custom authentication methods using the [Identity Management Plugin](../iam/identity-management-plugin.md)), MinIO provides an STS API extension called `AssumeRoleWithCustomToken`.
    
    After configuring the plugin, use the generated Role ARN with `AssumeRoleWithCustomToken` to get temporary credentials to access object storage.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 3K bytes
    - Viewed (0)
  7. docs/iam/identity-management-plugin.md

    # Identity Management Plugin Guide [![Slack](https://slack.minio.io/slack?type=svg)](https://slack.minio.io)
    
    ## Introduction
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/java/incrementalAnnotationProcessing/groovy/user/src/main/java/Entity1.java

    @Entity
    public class Entity1 {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 33 bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/tests/tf_saved_model/multi_arguments_results_v1.py

    # CHECK-DAG: %[[MUL2:.*]] = "tf.MatMul"(%[[ARG1]], %[[ARG0]])
    # CHECK:  %[[IDENTITY:.*]]:2 = "tf.IdentityN"(%[[MUL1]], %[[MUL2]])
    # CHECK: return %[[IDENTITY]]#1, %[[IDENTITY]]#0
    
    
    def Test():
    
      x = tf.constant(1.0, shape=(5, 3))
      y = tf.constant(1.0, shape=(3, 5))
    
      s = tf.matmul(x, y)
      t = tf.matmul(y, x)
      [t, s] = array_ops.identity_n([t, s])
    
      tensor_info_x = tf.compat.v1.saved_model.utils.build_tensor_info(x)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 3.5K bytes
    - Viewed (0)
  10. build-logic-commons/module-identity/src/main/kotlin/gradlebuild.module-identity.gradle.kts

    import gradlebuild.basics.releasedVersionsFile
    import gradlebuild.basics.repoRoot
    import gradlebuild.identity.extension.ModuleIdentityExtension
    import gradlebuild.identity.extension.ReleasedVersionsDetails
    import gradlebuild.identity.provider.BuildTimestampFromBuildReceiptValueSource
    import gradlebuild.identity.provider.BuildTimestampValueSource
    import gradlebuild.identity.tasks.BuildReceipt
    
    plugins {
        `java-base`
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Sep 30 16:17:28 UTC 2023
    - 4.9K bytes
    - Viewed (0)
Back to top