Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 739 for identity1 (0.13 sec)

  1. platforms/software/ivy/src/main/java/org/gradle/api/publish/ivy/tasks/PublishToIvyRepository.java

                }
            }
    
            static class CredentialsSpec {
                private final String identity;
                private final Class<? extends Credentials> type;
    
                private CredentialsSpec(String identity, Class<? extends Credentials> type) {
                    this.identity = identity;
                    this.type = type;
                }
    
                @SuppressWarnings("unchecked")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/tests/insert_custom_aggregation_ops.mlir

        // MIN-MAX-CHECK-SAME: id = "composite_dot_general_fn_1_calibration_method_1"
        // MIN-MAX-CHECK: %[[RES_ID:.*]] = "tf.Identity"(%[[RES_AGG]])
        // MIN-MAX-CHECK: return %[[RES_ID]] : tensor<?x10xf32>
        %0 = "tf.Identity"(%arg0) {device = ""} : (tensor<?x100352xf32>) -> tensor<?x100352xf32>
        %1 = "tf.Identity"(%arg1) {device = ""} : (tensor<100352x10xf32>) -> tensor<100352x10xf32>
        %2 = "tf.XlaCallModule"(%0, %1) <{
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 32.1K bytes
    - Viewed (0)
  3. cmd/sts-datatypes.go

    	// The issuing authority of the web identity token presented. For OpenID Connect
    	// ID tokens, this contains the value of the iss field. For OAuth 2.0 id_tokens,
    	// this contains the value of the ProviderId parameter that was passed in the
    	// AssumeRoleWithWebIdentity request.
    	Provider string `xml:",omitempty"`
    
    	// The unique user identifier that is returned by the identity provider.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 27 00:58:09 UTC 2022
    - 9.9K bytes
    - Viewed (0)
  4. subprojects/core-api/src/main/java/org/gradle/api/provider/ProviderFactory.java

         * </ul>
         *
         * @param credentialsType type of credentials to be provided.
         * @param identity identity to be associated with the credentials.
         * @return The provider. Never returns null.
         *
         * @since 6.6
         */
        <T extends Credentials> Provider<T> credentials(Class<T> credentialsType, String identity);
    
        /**
         * Creates a {@link Provider} for the given {@link Credentials} type.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 09:14:21 UTC 2024
    - 13.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_device_ops.h

          ConstantOp);                                                             \
      REGISTER_KERNEL_BUILDER(                                                     \
          Name("Identity").Device(DEVICE).TypeConstraint("T", TYPES), IdentityOp); \
                                                                                   \
      REGISTER_KERNEL_BUILDER(                                                     \
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Nov 23 19:28:25 UTC 2021
    - 17.1K bytes
    - Viewed (0)
  6. architecture/ambient/ztunnel.md

    This means Ztunnel will have multiple distinct certificates at a time, one for each unique identity (service account) running on its node.
    
    When fetching certificates, ztunnel will authenticate to the CA with its own identity, but request the identity of another workload.
    Critically, the CA must enforce that the ztunnel has permission to request that identity.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 22:35:16 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  7. android/guava-tests/test/com/google/common/base/FunctionsTest.java

      public void testIdentity_same() {
        Function<@Nullable String, @Nullable String> identity = Functions.identity();
        assertNull(identity.apply(null));
        assertSame("foo", identity.apply("foo"));
      }
    
      public void testIdentity_notSame() {
        Function<Long, Long> identity = Functions.identity();
        assertNotSame(new Long(135135L), identity.apply(new Long(135135L)));
      }
    
      @J2ktIncompatible
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 16K bytes
    - Viewed (0)
  8. guava/src/com/google/common/base/Equivalence.java

        private Object readResolve() {
          return INSTANCE;
        }
    
        private static final long serialVersionUID = 1;
      }
    
      static final class Identity extends Equivalence<Object> implements Serializable {
    
        static final Identity INSTANCE = new Identity();
    
        @Override
        protected boolean doEquivalent(Object a, Object b) {
          return false;
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. tensorflow/cc/framework/gradients_test.cc

                        ? StopGradient(scope_, (Identity(scope_, z))).output
                        : Identity(scope_, z).output;
        auto out1 = stop_outputs[1]
                        ? StopGradient(scope_, (Identity(scope_, z))).output
                        : Identity(scope_, z).output;
        auto out2 = stop_outputs[2]
                        ? StopGradient(scope_, (Identity(scope_, z))).output
                        : Identity(scope_, z).output;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Apr 15 15:13:38 UTC 2023
    - 25K bytes
    - Viewed (0)
  10. pkg/controller/garbagecollector/dump_test.go

    )
    
    var (
    	alphaNode = func() *node {
    		return &node{
    			identity: objectReference{
    				OwnerReference: metav1.OwnerReference{
    					UID: types.UID("alpha"),
    				},
    			},
    			owners: []metav1.OwnerReference{
    				{UID: types.UID("bravo")},
    				{UID: types.UID("charlie")},
    			},
    		}
    	}
    	bravoNode = func() *node {
    		return &node{
    			identity: objectReference{
    				OwnerReference: metav1.OwnerReference{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 14 00:05:53 UTC 2023
    - 11.2K bytes
    - Viewed (0)
Back to top