Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 46 for identity1 (0.24 sec)

  1. 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)
  2. 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)
  3. 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)
  4. cmd/iam.go

    	"github.com/minio/minio/internal/color"
    	"github.com/minio/minio/internal/config"
    	xldap "github.com/minio/minio/internal/config/identity/ldap"
    	"github.com/minio/minio/internal/config/identity/openid"
    	idplugin "github.com/minio/minio/internal/config/identity/plugin"
    	xtls "github.com/minio/minio/internal/config/identity/tls"
    	"github.com/minio/minio/internal/config/policy/opa"
    	polplugin "github.com/minio/minio/internal/config/policy/plugin"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    //
    // After all available packages have been loaded, we examine the results to
    // identify any requested or imported packages that are still missing, and if
    // so, which modules we could add to the module graph in order to make the
    // missing packages available. We add those to the module graph and iterate,
    // until either all packages resolve successfully or we cannot identify any
    // module that would resolve any remaining missing package.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.pb.go

    	TunnelProtocol TunnelProtocol `protobuf:"varint,5,opt,name=tunnel_protocol,json=tunnelProtocol,proto3,enum=istio.workload.TunnelProtocol" json:"tunnel_protocol,omitempty"`
    	// The SPIFFE identity of the workload. The identity is joined to form spiffe://<trust_domain>/ns/<namespace>/sa/<service_account>.
    	// TrustDomain of the workload. May be elided if this is the mesh wide default (typically cluster.local)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 65.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_pipelining.cc

      Location loc = orig_while_op->getLoc();
    
      OpBuilder builder(module);
    
      // A special fix for models that pass resources into helper functions and
      // return the same resource (after passing it through multiple identity ops).
      // Some subsequent ops use the original resource and others use the returned
      // version. Pipelining splits these uses across loop iterations resulting in
      // terrible things.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/quantization/lite/quantize_model_test.cc

      EXPECT_THAT(subgraph->tensors[0]->quantization->zero_point, SizeIs(1));
    
      // Output Tensor. The name given in the generated
      // .bin test file is 'Identity' and should be preserved
      EXPECT_THAT(subgraph->tensors[2]->type, Eq(tensor_type_));
      EXPECT_THAT(subgraph->tensors[2]->name, Eq("Identity"));
      EXPECT_THAT(subgraph->tensors[2]->quantization->scale, SizeIs(1));
      EXPECT_THAT(subgraph->tensors[2]->quantization->zero_point, SizeIs(1));
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 23:15:24 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  9. src/net/http/request.go

    	// also treated as unknown.
    	ContentLength int64
    
    	// TransferEncoding lists the transfer encodings from outermost to
    	// innermost. An empty list denotes the "identity" encoding.
    	// TransferEncoding can usually be ignored; chunked encoding is
    	// automatically added and removed as necessary when sending and
    	// receiving requests.
    	TransferEncoding []string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  10. src/net/url/url_test.go

    		actual := QueryEscape(tt.in)
    		if tt.out != actual {
    			t.Errorf("QueryEscape(%q) = %q, want %q", tt.in, actual, tt.out)
    		}
    
    		// for bonus points, verify that escape:unescape is an identity.
    		roundtrip, err := QueryUnescape(actual)
    		if roundtrip != tt.in || err != nil {
    			t.Errorf("QueryUnescape(%q) = %q, %s; want %q, %s", actual, roundtrip, err, tt.in, "[no error]")
    		}
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
Back to top