Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 2,770 for ALLOW (0.05 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/webhook/webhook_v1beta1_test.go

    type mockV1beta1Service struct {
    	allow      bool
    	statusCode int
    	called     int
    }
    
    func (m *mockV1beta1Service) Review(r *authenticationv1beta1.TokenReview) {
    	m.called++
    	r.Status.Authenticated = m.allow
    	if m.allow {
    		r.Status.User.Username = "******@****.***"
    	}
    }
    func (m *mockV1beta1Service) Allow()              { m.allow = true }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 18 00:47:42 UTC 2022
    - 19.2K bytes
    - Viewed (0)
  2. .github/workflows/mint/nginx-1-node.conf

            ip_hash;
            server minio1:9001;
        }
    
        server {
            listen       9000;
            listen  [::]:9000;
            server_name  localhost;
    
            # To allow special characters in headers
            ignore_invalid_headers off;
            # Allow any size file to be uploaded.
            # Set to a value such as 1000m; to restrict file size to a specific value
            client_max_body_size 0;
            # To disable buffering
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 31 21:38:10 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  3. docs/multi-user/README.md

    ```
    {
      "Version": "2012-10-17",
      "Statement": [
    	{
    	  "Action": ["s3:ListBucket"],
    	  "Effect": "Allow",
    	  "Resource": ["arn:aws:s3:::mybucket"],
    	  "Condition": {"StringLike": {"s3:prefix": ["${aws:username}/*"]}}
    	},
    	{
    	  "Action": [
    		"s3:GetObject",
    		"s3:PutObject"
    	  ],
    	  "Effect": "Allow",
    	  "Resource": ["arn:aws:s3:::mybucket/${aws:username}/*"]
    	}
      ]
    }
    ```
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Mar 21 06:38:06 UTC 2023
    - 8K bytes
    - Viewed (0)
  4. samples/extauthz/README.md

    as an example of integrating custom authorization system into Istio.
    
    The Ext Authz server supports authorization check request using either HTTP (port 8000) or gRPC v2/v3 (port 9000) API and
    will allow the request if it includes the header `x-ext-authz: allow` or if the service account of the source workload is `a`.
    Note that `a` is just a default value for testing. It can be changed with the flag `-allow_service_account` when running the ext authz server.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Sep 21 13:52:47 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  5. pilot/pkg/leaderelection/k8sleaderelection/healthzadaptor_test.go

    }
    
    // Update is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) Update(ctx context.Context, ler rl.LeaderElectionRecord) error {
    	return nil
    }
    
    // RecordEvent is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) RecordEvent(string) {}
    
    // Identity is a dummy to allow us to have a fakeLock for testing.
    func (fl *fakeLock) Identity() string {
    	return fl.identity
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Sep 12 18:41:53 UTC 2022
    - 5.3K bytes
    - Viewed (0)
  6. docs/site-replication/rw.json

    {"Version":"2012-10-17","Statement":[{"Effect":"Allow","Action":["admin:*"]},{"Effect":"Allow","Action":["s3:*"],"Resource":["arn:aws:s3:::*"]}]}...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Dec 08 19:50:15 UTC 2021
    - 146 bytes
    - Viewed (0)
  7. docs/bucket/replication/setup_replication.sh

    {
        "Version": "2012-10-17",
        "Statement": [
        {
            "Action": [
                "admin:SetBucketTarget",
                "admin:GetBucketTarget"
            ],
            "Effect": "Allow",
            "Sid": ""
         }, 
         {
          "Effect": "Allow",
          "Action": [
           "s3:GetReplicationConfiguration",
           "s3:PutReplicationConfiguration",
           "s3:ListBucket",
           "s3:ListBucketMultipartUploads",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 26 05:07:25 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook_v1_test.go

    func (m *mockV1Service) Review(r *authorizationv1.SubjectAccessReview) {
    	m.called++
    	r.Status.Allowed = m.allow
    
    	if m.reviewHook != nil {
    		m.reviewHook(r)
    	}
    }
    func (m *mockV1Service) Allow()              { m.allow = true }
    func (m *mockV1Service) Deny()               { m.allow = false }
    func (m *mockV1Service) HTTPStatusCode() int { return m.statusCode }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/java/application/tests/application.sample.conf

    executable: gradle
    args: build
    expected-output-file: application.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 129 bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/kotlinDsl/configurations-and-dependencies-imperative/tests/dependencies.sample.conf

    executable: gradle
    args: dependencies
    expected-output-file: dependencies.out
    allow-additional-output: true
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 137 bytes
    - Viewed (0)
Back to top