Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,211 for Accounts (0.12 sec)

  1. tests/associations_has_one_test.go

    	account2 := Account{Number: "account-has-one-replace"}
    
    	if err := DB.Model(&user2).Association("Account").Replace(&account2); err != nil {
    		t.Fatalf("Error happened when append Account, got %v", err)
    	}
    
    	if account2.ID == 0 {
    		t.Fatalf("account2's ID should be created")
    	}
    
    	user.Account = account2
    	CheckUser(t, user2, user)
    
    	AssertAssociationCount(t, user2, "Account", 1, "AfterReplace")
    
    	// Delete
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:49:45 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  2. tests/joins_test.go

    	if !regexp.MustCompile("SELECT .* FROM .users. left join pets.*join accounts.*").MatchString(stmt.SQL.String()) {
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 10:52:33 UTC 2024
    - 15K bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/authorizationpolicies.yaml

                paths: ["/info*"]
            - operation:
                methods: ["POST"]
                paths: ["/data"]
          when:
            - key: request.auth.claims[iss]
              values: ["https://accounts.google.com"]
    ---
    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: meshwide-httpbin
      namespace: istio-system # valid: it applies to whole mesh
    spec:
      {}
    ---
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 08 14:14:46 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. releasenotes/notes/helm_chart_gateway_serviceaccount_annotations.yaml

    issue: []
    
    docs: []
    
    releaseNotes:
    - |
      **Added** values to the Istio Gateway Helm charts for configuring annotations on the ServiceAccount.  Can be used to enable [IAM Roles for Service Accounts](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html) on AWS EKS.
    
    upgradeNotes: []
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Aug 23 21:35:49 UTC 2021
    - 450 bytes
    - Viewed (0)
  5. pilot/pkg/features/security.go

    		if cidr == "" {
    			return []string{}
    		}
    
    		return strings.Split(cidr, ",")
    	}()
    
    	CATrustedNodeAccounts = func() sets.Set[types.NamespacedName] {
    		accounts := env.Register(
    			"CA_TRUSTED_NODE_ACCOUNTS",
    			"",
    			"If set, the list of service accounts that are allowed to use node authentication for CSRs. "+
    				"Node authentication allows an identity to create CSRs on behalf of other identities, but only if there is a pod "+
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Jan 13 03:50:59 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. docs/site-replication/README.md

    Previously, site replication required the root credentials of peer sites to be identical. This is no longer necessary because STS tokens are now signed with the site replicator service account credentials, thus allowing flexibility in the independent management of root accounts across sites and the ability to disable root accounts eventually.
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 26 21:30:28 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  7. releasenotes/notes/26185.yaml

    area: security
    
    releaseNotes:
    - |
      **Added** support for client side Envoy secure naming config when trust domain alias is used.
      Fix the multi cluster service discovery client SAN generation: takes all endpoints' service accounts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 25 16:11:21 UTC 2020
    - 339 bytes
    - Viewed (0)
  8. security/tools/jwt/README.md

    The python script (sa-jwt.py) provided here allows the user to generate a JWT signed
    by a Google service account.
    
    ## Before you start
    
    - Run the following command to install python dependences.
    
        ```
        pip install google-auth
        ```
    
    - Create a service account or use an existing service account, and download the service account private key.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 14 20:15:07 UTC 2019
    - 1.9K bytes
    - Viewed (0)
  9. cmd/iam-store.go

    		// For STS policy map, we need to merge the new cache with the existing
    		// cache because the periodic IAM reload is partial. The periodic load
    		// here is to account for STS policy mapping changes that should apply
    		// for service accounts derived from such STS accounts (i.e. LDAP STS
    		// accounts).
    		newCache.iamSTSPolicyMap.Range(func(k string, v MappedPolicy) bool {
    			cache.iamSTSPolicyMap.Store(k, v)
    			return true
    		})
    
    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. pkg/controller/serviceaccount/doc.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    // Package serviceaccount provides implementations
    // to manage service accounts and service account tokens
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jul 16 17:48:21 UTC 2016
    - 762 bytes
    - Viewed (0)
Back to top