Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 90 for identity1 (0.25 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    // Identities are defined as:
    //   - Network: A single stable DNS and hostname.
    //   - Storage: As many VolumeClaims as requested.
    //
    // The StatefulSet guarantees that a given network identity will always
    // map to the same storage identity.
    type StatefulSet struct {
    	metav1.TypeMeta `json:",inline"`
    	// +optional
    	metav1.ObjectMeta `json:"metadata,omitempty" protobuf:"bytes,1,opt,name=metadata"`
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    // Identities are defined as:
    //   - Network: A single stable DNS and hostname.
    //   - Storage: As many VolumeClaims as requested.
    //
    // The StatefulSet guarantees that a given network identity will always
    // map to the same storage identity.
    type StatefulSet struct {
    	metav1.TypeMeta `json:",inline"`
    	// Standard object's metadata.
    	// More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/tests/quantize_composit_functions_debugging.mlir

    // TF-DAG: %[[conv1_dequantized_1:.*]] = "tf.PartitionedCall"(%[[conv1_quantized]], %[[out_scale]], %[[in_out_zp]]) <{config = "", config_proto = "", executor_type = "", f = @dequantize_i8}>
    // TF-DAG: %[[identity:.*]] = "tf.Identity"(%[[conv1_dequantized_1]])
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Nov 06 01:23:21 UTC 2023
    - 80.5K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    	bucket := getRandomBucketName()
    	err := s.client.MakeBucket(ctx, bucket, minio.MakeBucketOptions{})
    	if err != nil {
    		c.Fatalf("bucket create error: %v", err)
    	}
    
    	// Generate web identity STS token by interacting with OpenID IDP.
    	token, err := MockOpenIDTestUserInteraction(ctx, testAppParams, "******@****.***", "dillon")
    	if err != nil {
    		c.Fatalf("mock user err: %v", err)
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. tensorflow/cc/gradients/math_grad.cc

                   const std::vector<Output>& grad_inputs,
                   std::vector<Output>* grad_outputs) {
      // y = x_1 + x_2
      // dy/dx_1 = dy/dx_2 = 1
      auto gx_1 = Identity(scope, grad_inputs[0]);
      auto gx_2 = Identity(scope, grad_inputs[0]);
      return BinaryGradCommon(scope, op, grad_outputs, gx_1, gx_2);
    }
    REGISTER_GRADIENT_OP("Add", AddGrad);
    REGISTER_GRADIENT_OP("AddV2", AddGrad);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
  6. src/crypto/tls/common.go

    	// returns (nil, nil), the session is ignored. crypto/tls may still choose
    	// not to resume the returned session.
    	UnwrapSession func(identity []byte, cs ConnectionState) (*SessionState, error)
    
    	// WrapSession is called on the server to produce a session ticket/identity.
    	//
    	// WrapSession must serialize the session state with [SessionState.Bytes].
    	// It may then encrypt the serialized state (for example with
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 59.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	expected := &apiserver.EncryptionConfiguration{
    		Resources: []apiserver.ResourceConfiguration{
    			{
    				Resources: []string{"secrets", "namespaces"},
    				Providers: []apiserver.ProviderConfiguration{
    					{Identity: &apiserver.IdentityConfiguration{}},
    					{AESGCM: &apiserver.AESConfiguration{
    						Keys: []apiserver.Key{
    							{Name: "key1", Secret: "c2VjcmV0IGlzIHNlY3VyZQ=="},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  8. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

          .override(Encoding.IDENTITY, '?'.code, '`'.code)
          .override(Encoding.PERCENT, '\''.code)
          .override(Encoding.SKIP, '#'.code, '+'.code)
          .test(UrlComponentEncodingTester.Component.QUERY_VALUE)
      }
    
      @Test
      fun fragmentCharacters() {
        UrlComponentEncodingTester.newInstance()
          .override(
            Encoding.IDENTITY,
            ' '.code,
            '"'.code,
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    	iamConfigPolicyDBServiceAccountsPrefix = iamConfigPolicyDBPrefix + "service-accounts/"
    	iamConfigPolicyDBGroupsPrefix          = iamConfigPolicyDBPrefix + "groups/"
    
    	// IAM identity file which captures identity credentials.
    	iamIdentityFile = "identity.json"
    
    	// IAM policy file which provides policies for each users.
    	iamPolicyFile = "policy.json"
    
    	// IAM group members file
    	iamGroupMembersFile = "members.json"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        Args:
          output_path: Path to the directory to save the created model.
          tags: Set of strings that identifies the saved meta graph.
          signature_def_key: Name of the SignatureDef. Used to identify the
            SignatureDef within the meta graph.
    
        Returns:
          inputs: A mapping of input_key -> input_tensor (placeholder). The input
            key is "input_vocabs".
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
Back to top