Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 573 for denied (0.2 sec)

  1. common-protos/k8s.io/api/certificates/v1/generated.proto

      // type of the condition. Known conditions are "Approved", "Denied", and "Failed".
      //
      // An "Approved" condition is added via the /approval subresource,
      // indicating the request was approved and should be issued by the signer.
      //
      // A "Denied" condition is added via the /approval subresource,
      // indicating the request was denied and should not be issued by the signer.
      //
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  2. common-protos/k8s.io/api/authorization/v1/generated.proto

      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
      optional bool denied = 4;
    
      // Reason is optional.  It indicates why a request was allowed or denied.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/authorization/v1beta1/generated.proto

      optional bool allowed = 1;
    
      // Denied is optional. True if the action would be denied, otherwise
      // false. If both allowed is false and denied is false, then the
      // authorizer has no opinion on whether to authorize the action. Denied
      // may not be true if Allowed is true.
      // +optional
      optional bool denied = 4;
    
      // Reason is optional.  It indicates why a request was allowed or denied.
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 11.9K bytes
    - Viewed (0)
  4. cmd/bucket-lifecycle-handlers_test.go

    			lifecycleResponse:  []byte(""),
    			errorResponse: APIErrorResponse{
    				Resource: SlashSeparator + bucketName + SlashSeparator,
    				Code:     "AccessDenied",
    				Message:  "Access Denied.",
    			},
    			shouldPass: false,
    		},
    		// GET wrong credentials
    		{
    			method: http.MethodGet, bucketName: bucketName,
    			accessKey:          "abcd",
    			secretKey:          "abcd",
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Jun 13 20:52:33 GMT 2023
    - 11.2K bytes
    - Viewed (0)
  5. cmd/storage-errors.go

    // errVolumeAccessDenied - cannot access volume, insufficient permissions.
    var errVolumeAccessDenied = StorageErr("volume access denied")
    
    // errFileAccessDenied - cannot access file, insufficient permissions.
    var errFileAccessDenied = StorageErr("file access denied")
    
    // errFileCorrupt - file has an unexpected size, or is not readable
    var errFileCorrupt = StorageErr("file is corrupted")
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 04 12:04:40 GMT 2024
    - 6.4K bytes
    - Viewed (0)
  6. src/test/java/jcifs/tests/SessionTest.java

                checkConnection(f);
            }
            catch ( SmbAuthException e ) {
                if ( e.getNtStatus() != NtStatus.NT_STATUS_ACCESS_DENIED ) {
                    throw e;
                }
                Assume.assumeNoException(e);
            }
        }
    
    
        @Test
        public void logonGuest () throws IOException {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 15.8K bytes
    - Viewed (0)
  7. src/test/java/jcifs/tests/FileAttributesTest.java

                    Assume.assumeTrue("No Ntsmbs", false);
                }
                catch ( SmbException e ) {
                    if ( e.getNtStatus() == NtStatus.NT_STATUS_ACCESS_DENIED || e.getNtStatus() == WinError.ERROR_ACCESS_DENIED ) {
                        // we might not have permissions for that
                        Assume.assumeTrue("No permission for share security accesss", false);
                    }
                    throw e;
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Thu Jan 05 13:09:03 GMT 2023
    - 12.3K bytes
    - Viewed (0)
  8. src/main/java/org/codelibs/fess/helper/PermissionHelper.java

                                roleTypeList.add(accountId);
                            }
                        }
                    }
                    final SID[] deniedSids = (SID[]) metaDataMap.get(SmbClient.SMB_DENIED_SID_ENTRIES);
                    if (deniedSids != null) {
                        for (final SID sid : deniedSids) {
                            final String accountId = sambaHelper.getAccountId(sid);
    Java
    - Registered: Mon Apr 22 08:04:10 GMT 2024
    - Last Modified: Thu Feb 22 01:37:57 GMT 2024
    - 12.3K bytes
    - Viewed (0)
  9. common-protos/k8s.io/api/certificates/v1beta1/generated.proto

      // Other fields are derived by Kubernetes and cannot be modified by users.
      optional CertificateSigningRequestSpec spec = 2;
    
      // Derived information about the request.
      // +optional
      optional CertificateSigningRequestStatus status = 3;
    }
    
    message CertificateSigningRequestCondition {
      // type of the condition. Known conditions include "Approved", "Denied", and "Failed".
      optional string type = 1;
    
    Plain Text
    - Registered: Wed Apr 24 22:53:08 GMT 2024
    - Last Modified: Mon Mar 11 18:43:24 GMT 2024
    - 6.7K bytes
    - Viewed (0)
  10. cmd/sts-handlers_test.go

    	// Validate that the client cannot remove any objects
    	err = minioClient.RemoveObject(ctx, bucket, "someobject", minio.RemoveObjectOptions{})
    	if err.Error() != "Access Denied." {
    		c.Fatalf("unexpected non-access-denied err: %v", err)
    	}
    }
    
    func (s *TestSuiteIAM) TestSTSWithGroupPolicy(c *check) {
    	ctx, cancel := context.WithTimeout(context.Background(), testDefaultTimeout)
    	defer cancel()
    
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
Back to top