Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 610 for identity1 (0.23 sec)

  1. docs/sts/web-identity.go

    jiuker <******@****.***> 1684487613 +0800
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 19 09:13:33 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/tests/legalize-tf-while.mlir

    func.func @while_main(%arg0: tensor<?x256x256xf32>) -> (tensor<i32>, tensor<256x256xf32>, tensor<?x256x256xf32>) attributes {tf.entry_function = {inputs = "input", outputs = "Identity,Identity_1,Identity_2"}} {
      %cst = arith.constant dense<1.000000e+00> : tensor<256x256xf32>
      %cst_0 = arith.constant dense<0> : tensor<i32>
      %cst_1 = arith.constant dense<-1> : tensor<i32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.h

    // By removing identity ops, constant operands with dynamic shapes have static
    // shape information which is necessary for correct pattern matching in this
    // pass.
    struct RemoveIdentity : public OpRewritePattern<TF::IdentityOp> {
      using OpRewritePattern<TF::IdentityOp>::OpRewritePattern;
    
      LogicalResult matchAndRewrite(TF::IdentityOp identity,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/transforms/tensor_device_copy_conversion.cc

        // H2D transfer kernels. So fold the tf.Identity op if:
        // * the identity op is placed on TPU, and
        // * the arg to the identity op is produced by a TPUExecuteOp.
        if (op_device && op_device.getValue().contains("TPU")) {
          return true;
        }
    
        Operation *def_op = arg.getDefiningOp();
        // If the arg to this identity op is the arg of a function, there's no
        // defining op.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  5. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentifyStep.java

                    IdentityContext identityContext = createIdentityContextInternal(work, context);
                    Identity identity = identityContext.getIdentity();
                    operationContext.setResult(new Operation.Result() {
                        @Override
                        public Identity getIdentity() {
                            return identity;
                        }
                    });
                    return identityContext;
                },
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 10:36:34 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  6. security/pkg/pki/util/san_test.go

    	"net/netip"
    	"reflect"
    	"testing"
    )
    
    func getSANExtension(identites []Identity, t *testing.T) *pkix.Extension {
    	ext, err := BuildSANExtension(identites)
    	if err != nil {
    		t.Errorf("A unexpected error has been encountered (error: %v)", err)
    	}
    	return ext
    }
    
    func TestBuildSubjectAltNameExtension(t *testing.T) {
    	uriIdentity := Identity{Type: TypeURI, Value: []byte("spiffe://test.domain.com/ns/default/sa/default")}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Feb 12 17:36:33 UTC 2024
    - 6.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/readonly_references_to_resources.cc

        if (!all_of(variable_v2_op.getResult().getUsers(), [&variable_v2_op](
                                                               Operation *user) {
              if (!isa<IdentityOp>(user)) {
                variable_v2_op.emitOpError()
                    << "expects all users to be 'tf.Identity', but got user "
                    << user->getName();
                return false;
              }
              return true;
            })) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  8. security/pkg/pki/util/san.go

    	// type.
    	identityTypeMap = generateReversedMap(oidTagMap)
    
    	// The OID for the SAN extension (See
    	// http://www.alvestrand.no/objectid/2.5.29.17.html).
    	oidSubjectAlternativeName = asn1.ObjectIdentifier{2, 5, 29, 17}
    )
    
    // Identity is an object holding both the encoded identifier bytes as well as
    // the type of the identity.
    type Identity struct {
    	Type  IdentityType
    	Value []byte
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Oct 14 06:50:22 UTC 2022
    - 6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/passes/remove_identity_op_pattern.cc

        if (user->getDialect()->getNamespace() != "tf") {
          return failure();
        }
        // Identity ops of returning values might be helpful for some other
        // compilers, so avoid removing these Identity ops.
        if (user->hasTrait<OpTrait::IsTerminator>()) {
          return failure();
        }
      }
    
      rewriter.replaceOp(identity, identity.getInput());
      return success();
    }
    
    }  // namespace quant
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 15 06:13:49 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tfrt/tests/tf_to_corert/basic.mlir

      // CHECK-NOT: tf.Identity
      %5 = "tf.Identity"(%4) {T = f32, _output_shapes = ["tfshape$dim { size: 3 } dim { size: 3 }"], device = "/device:CPU:0"} : (tensor<3x3xf32>) -> tensor<3x3xf32>
      // CHECK-NOT: tf.IdentityN
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 08 00:18:59 UTC 2024
    - 3.9K bytes
    - Viewed (0)
Back to top