Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 1,189 for identity0 (0.16 sec)

  1. tensorflow/compiler/mlir/tensorflow/ir/tf_arith_ops_folder.h

        // Scalar identity is broadcastable to any operand shape, we only need to
        // check that operand has the same shape as a result.
        bool scalar_identity = identity_ty.hasRank() && identity_ty.getRank() == 0;
        if (scalar_identity) return operand_ty == result_ty;
    
        // If identity is not a scalar, we must verify that identity shape is
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/main/java/org/gradle/api/internal/provider/CredentialsProviderFactory.java

            }
        }
    
        private static void validateIdentity(@Nullable String identity) {
            if (identity == null || identity.isEmpty() || !identity.chars().allMatch(Character::isLetterOrDigit)) {
                throw new IllegalArgumentException("Identity may contain only letters and digits, received: " + identity);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/tensorflow/tests/extract_head_tail_outside_compilation.mlir

        // CHECK:      "tf_device.cluster"
        // CHECK-NEXT:   "tf.Identity"
        // CHECK-NEXT:   "tf.B"
        // CHECK-NEXT:   "tf.Identity"
        // CHECK-NEXT:   tf_device.return
        "tf_device.cluster"() ({
          %a = "tf.Identity"(%arg0) : (tensor<i32>) -> tensor<i32>
          %b = "tf.B"(%a) {_xla_outside_compilation = "cluster1"} : (tensor<i32>) -> tensor<i32>
          %c = "tf.Identity"(%b) : (tensor<i32>) -> tensor<i32>
          tf_device.return
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 29.1K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/DefaultPlannedTransformStep.java

        private final PlannedTransformStepIdentity identity;
        private final List<? extends NodeIdentity> dependencies;
    
        public DefaultPlannedTransformStep(
            PlannedTransformStepIdentity identity,
            List<? extends NodeIdentity> dependencies
        ) {
            this.identity = identity;
            this.dependencies = dependencies;
        }
    
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/fused_kernel_matcher.mlir

      %1 = "tf.BiasAdd"(%0, %arg0) {data_format = "NHWC"} : (tensor<*xf32>, tensor<128xf32>) -> tensor<*xf32>
      %2 = "tf.Elu"(%1) : (tensor<*xf32>) -> tensor<*xf32>
      %3 = "tf.Identity"(%2) : (tensor<*xf32>) -> tensor<*xf32>
      %4 = "tf.Identity"(%0) : (tensor<*xf32>) -> tensor<*xf32>
      func.return %3, %4 : tensor<*xf32>, tensor<*xf32>
    }
    
    // CHECK-LABEL: conv2DBiasAdd_biasAddMultipleUse
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 13.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/tests/propagate_quantize_type.mlir

        return %1 : tensor<*xbf16>
      }
    
    // CHECK-LABEL: func @propagate_xladotv2_bf16
    // CHECK: %[[IDENTITY:.*]] = "tf.Identity"(%cst) : (tensor<2x1024xi8>) -> tensor<2x1024xi8>
    // CHECK: %[[MATMUL:.*]] = "tf.XlaDotV2"(%arg0, %[[IDENTITY]]) <{dimension_numbers = "\12\01\00\0A\01\03", precision_config = ""}> {device = ""} : (tensor<1x2x2x2xbf16>, tensor<2x1024xi8>) -> tensor<1x2x2x1024xbf16>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  7. platforms/core-execution/execution/src/main/java/org/gradle/internal/execution/steps/IdentityContext.java

        private final ImmutableSortedMap<String, CurrentFileCollectionFingerprint> inputFileProperties;
        private final Identity identity;
    
        public IdentityContext(ExecutionRequestContext parent, ImmutableSortedMap<String, ValueSnapshot> inputProperties, ImmutableSortedMap<String, CurrentFileCollectionFingerprint> inputFileProperties, Identity identity) {
            super(parent);
            this.inputProperties = inputProperties;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:46:15 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  8. security/pkg/server/ca/node_auth_test.go

    	"istio.io/istio/pkg/security"
    	"istio.io/istio/pkg/spiffe"
    	"istio.io/istio/pkg/test"
    )
    
    type pod struct {
    	name, namespace, account, node, uid string
    }
    
    func (p pod) Identity() string {
    	return spiffe.Identity{
    		TrustDomain:    "cluster.local",
    		Namespace:      p.namespace,
    		ServiceAccount: p.account,
    	}.String()
    }
    
    func TestSingleClusterNodeAuthorization(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Feb 28 16:41:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/ivy-publish/customize-identity/kotlin/build.gradle.kts

    plugins {
        java
        `ivy-publish`
    }
    
    // tag::customize-identity[]
    publishing {
        // end::customize-identity[]
        repositories {
            ivy {
                url = uri(layout.buildDirectory.dir("repo"))
            }
        }
    // tag::customize-identity[]
        publications {
            create<IvyPublication>("ivy") {
                organisation = "org.gradle.sample"
                module = "project1-sample"
                revision = "1.1"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 678 bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/garbagecollector.go

    			"item", item.identity,
    		)
    		gc.dependencyGraphBuilder.enqueueVirtualDeleteEvent(item.identity)
    		return enqueuedVirtualDeleteEventErr
    	case err != nil:
    		return err
    	}
    
    	if latest.GetUID() != item.identity.UID {
    		logger.V(5).Info("UID doesn't match, item not found, generating a virtual delete event",
    			"item", item.identity,
    		)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 32.9K bytes
    - Viewed (0)
Back to top