Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,396 for identity1 (0.12 sec)

  1. pkg/controller/garbagecollector/graph_builder.go

    					logger.V(2).Info("item references an owner with coordinates that do not match the observed identity", "item", n.identity, "owner", ownerNode.identity)
    				}
    				hasPotentiallyInvalidOwnerReference = true
    			} else if !ownerIsNamespaced && ownerNode.identity.Namespace != n.identity.Namespace && !ownerNode.isObserved() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/quantization/tensorflow/tests/tf_to_quant.mlir

      %in = arith.constant dense<0.0> : tensor<8xf32>
      %min = arith.constant dense<0.0> : tensor<f32>
      %max = arith.constant dense<255.0> : tensor<f32>
      %mini = "tf.Identity"(%min) : (tensor<f32>) -> tensor<f32>
      %maxi = "tf.Identity"(%max) : (tensor<f32>) -> tensor<f32>
      %rst = "tf.FakeQuantWithMinMaxVars"(%in, %mini, %maxi) {num_bits = 5, narrow_range = false} : (tensor<8xf32>, tensor<f32>, tensor<f32>) -> tensor<8xf32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  3. docs/sts/wso2.md

    By default, a UUID is issued as an id_token in WSO2 Identity Server, which is of the first type above. But, it also can be configured to issue a self-contained id_token (JWT), which is of the second type above.
    
    - Open the `<IS_HOME>/repository/conf/identity/identity.xml` file and uncomment the following entry under `<OAuth>` element.
    
    ```
    <IdentityOAuthTokenGenerator>org.wso2.carbon.identity.oauth2.token.JWTTokenIssuer</IdentityOAuthTokenGenerator>
    ```
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 8.7K bytes
    - Viewed (0)
  4. platforms/core-execution/execution/src/test/groovy/org/gradle/internal/execution/steps/LoadPreviousExecutionStateStepTest.groovy

        def step = new LoadPreviousExecutionStateStep(delegate)
        def uniqueId = "test"
        def identity = Stub(UnitOfWork.Identity) {
            getUniqueId() >> uniqueId
        }
        def previousExecutionState = Stub(PreviousExecutionState)
        def delegateResult = Mock(AfterExecutionResult)
    
        def setup() {
            _ * context.identity >> identity
            _ * context.history >> Optional.of(executionHistoryStore)
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:29 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-as-function.pbtxt

          }
          output_arg {
            name: "identity"
            type: DT_FLOAT
          }
          is_stateful: true
        }
        node_def {
          name: "Identity"
          op: "Identity"
          input: "inputs"
          attr {
            key: "T"
            value {
              type: DT_FLOAT
            }
          }
        }
        ret {
          key: "identity"
          value: "Identity:output:0"
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 24 00:18:34 UTC 2023
    - 5K bytes
    - Viewed (0)
  6. pilot/pkg/xds/sds_test.go

    		VerifiedIdentity: &spiffe.Identity{Namespace: "istio-system"},
    		Type:             model.Router,
    		ConfigNamespace:  "istio-system",
    	}
    	otherNamespace := &model.Proxy{
    		Metadata:         &model.NodeMetadata{ClusterID: constants.DefaultClusterName},
    		VerifiedIdentity: &spiffe.Identity{Namespace: "other-namespace"},
    		Type:             model.Router,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/shape_inference_test.cc

        auto identity = ops::Identity(scope.WithOpName("while/Identity"),
                                      switch_node.output_true);
        auto identity_shape =
            ops::Const<int32>(scope.WithOpName("while/Identity/shape"), {});
        auto identity_reshaped = ops::Reshape(
            scope.WithOpName("while/Identity/reshaped"), identity, identity_shape);
    
        auto one = ops::Const<int32>(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  8. pkg/spiffe/spiffe.go

    )
    
    type Identity struct {
    	TrustDomain    string
    	Namespace      string
    	ServiceAccount string
    }
    
    func ParseIdentity(s string) (Identity, error) {
    	if !strings.HasPrefix(s, URIPrefix) {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    	split := strings.Split(s[URIPrefixLen:], "/")
    	if len(split) != 5 {
    		return Identity{}, fmt.Errorf("identity is not a spiffe format")
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  9. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/PublishToMavenRepository.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
    - 8.9K bytes
    - Viewed (0)
  10. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/Stage1BlocksAccessorClassPath.kt

            const val SOURCES_OUTPUT_PROPERTY = "sources"
            const val CLASSES_OUTPUT_PROPERTY = "classes"
        }
    
        override fun identify(identityInputs: MutableMap<String, ValueSnapshot>, identityFileInputs: MutableMap<String, CurrentFileCollectionFingerprint>) =
            UnitOfWork.Identity { "$classLoaderHash-$identitySuffix" }
    
        protected
        abstract val identitySuffix: String
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 23 18:58:57 UTC 2023
    - 8K bytes
    - Viewed (0)
Back to top