Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 106 for associateBy (0.17 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

            signatureOfCallee: KaFunctionLikeSignature<*>,
        ): LinkedHashMap<KtExpression, KaVariableLikeSignature<KaValueParameterSymbol>> {
            val paramSignatureByName = signatureOfCallee.valueParameters.associateBy {
                // We intentionally use `symbol.name` instead of `name` here, since
                // `FirValueParameter.name` is not affected by the `@ParameterName`
                it.symbol.name
            }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/sys/windows/setupapi_windows.go

    }
    
    // SetupDiDestroyDeviceInfoList function deletes a device information set and frees all associated memory.
    //sys	SetupDiDestroyDeviceInfoList(deviceInfoSet DevInfo) (err error) = setupapi.SetupDiDestroyDeviceInfoList
    
    // Close method deletes a device information set and frees all associated memory.
    func (deviceInfoSet DevInfo) Close() error {
    	return SetupDiDestroyDeviceInfoList(deviceInfoSet)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 00:11:50 UTC 2022
    - 67.2K bytes
    - Viewed (0)
  3. cmd/iam.go

    // for the STS credential is associated with a parent user. For the
    // AssumeRoleWithCertificate case, the "virtual" parent user is the value of the
    // `Subject.CommonName` field. For the OIDC (without RoleARN) case the "virtual"
    // parent is derived as a concatenation of the `sub` and `iss` fields. The
    // policies applicable to the STS credential are associated with this "virtual"
    // parent.
    //
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. cmd/sts-handlers_test.go

    		STSEndpoint:  s.endPoint,
    		LDAPUsername: "dillon",
    		LDAPPassword: "dillon",
    	}
    
    	_, err = ldapID.Retrieve()
    	if err == nil {
    		c.Fatalf("Expected to fail to create STS cred with no associated policy!")
    	}
    
    	// Attempting to set a non-existent policy should fail.
    	userDN := "uid=dillon,ou=people,ou=swengg,dc=min,dc=io"
    	err = s.adm.SetPolicy(ctx, policy+"x", userDN, false)
    	if err == nil {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 18:45:50 UTC 2024
    - 90K bytes
    - Viewed (0)
  5. cmd/iam-store.go

    type ParentUserInfo struct {
    	subClaimValue string
    	roleArns      set.StringSet
    }
    
    // GetAllParentUsers - returns all distinct "parent-users" associated with STS
    // or service credentials, mapped to all distinct roleARNs associated with the
    // parent user. The dummy role ARN is associated with parent users from
    // policy-claim based OpenID providers.
    func (store *IAMStoreSys) GetAllParentUsers() map[string]ParentUserInfo {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types_swagger_doc_generated.go

    	"name":              "The name attribute of the resource associated with the status StatusReason (when there is a single name which can be described).",
    	"group":             "The group attribute of the resource associated with the status StatusReason.",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 18:37:59 UTC 2023
    - 49.2K bytes
    - Viewed (0)
  7. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message StatusDetails {
      // The name attribute of the resource associated with the status StatusReason
      // (when there is a single name which can be described).
      // +optional
      optional string name = 1;
    
      // The group attribute of the resource associated with the status StatusReason.
      // +optional
      optional string group = 2;
    
      // The kind attribute of the resource associated with the status StatusReason.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

    message StatusDetails {
      // The name attribute of the resource associated with the status StatusReason
      // (when there is a single name which can be described).
      // +optional
      optional string name = 1;
    
      // The group attribute of the resource associated with the status StatusReason.
      // +optional
      optional string group = 2;
    
      // The kind attribute of the resource associated with the status StatusReason.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  9. pkg/apis/admissionregistration/types.go

    	// object.metadata.labels. If the object is another cluster scoped resource,
    	// it never skips the policy.
    	//
    	// For example, to run the webhook on any objects whose namespace is not
    	// associated with "runlevel" of "0" or "1";  you will set the selector as
    	// follows:
    	// "namespaceSelector": {
    	//   "matchExpressions": [
    	//     {
    	//       "key": "runlevel",
    	//       "operator": "NotIn",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context.go

    	metricMap[key] = ev
    }
    
    var (
    
    	// EndpointNoPod tracks endpoints without an associated pod. This is an error condition, since
    	// we can't figure out the labels. It may be a transient problem, if endpoint is processed before
    	// pod.
    	EndpointNoPod = monitoring.NewGauge(
    		"endpoint_no_pod",
    		"Endpoints without an associated pod.",
    	)
    
    	// ProxyStatusNoService represents proxies not selected by any service
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 09:02:11 UTC 2024
    - 91.8K bytes
    - Viewed (0)
Back to top