Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 50 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. 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)
  3. 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)
  4. 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)
  5. 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)
  6. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	return token, err
    }
    
    // GetCurrentProcessToken returns the access token associated with
    // the current process. It is a pseudo token that does not need
    // to be closed.
    func GetCurrentProcessToken() Token {
    	return Token(^uintptr(4 - 1))
    }
    
    // GetCurrentThreadToken return the access token associated with
    // the current thread. It is a pseudo token that does not need
    // to be closed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

    message MatchCondition {
      // Name is an identifier for this match condition, used for strategic merging of MatchConditions,
      // as well as providing an identifier for logging purposes. A good name should be descriptive of
      // the associated expression.
      // Name must be a qualified name consisting of alphanumeric characters, '-', '_' or '.', and
      // must start and end with an alphanumeric character (e.g. 'MyName',  or 'my.name',  or
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  8. src/runtime/mprof.go

    // cycles is the quantity associated with this event and rate is the sampling rate,
    // used to adjust the cycles value in the manner determined by the profile type.
    // skip is the number of frames to omit from the traceback associated with the event.
    // The traceback will be recorded from the stack of the goroutine associated with the current m.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  9. src/time/time.go

    // As this time is unlikely to come up in practice, the [Time.IsZero] method gives
    // a simple way of detecting a time that has not been initialized explicitly.
    //
    // Each time has an associated [Location]. The methods [Time.Local], [Time.UTC], and Time.In return a
    // Time with a specific Location. Changing the Location of a Time value with
    // these methods does not change the actual instant it represents, only the time
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1/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 May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
Back to top