Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 544 for denied (0.18 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. src/main/java/jcifs/smb/NtStatus.java

            "The specified domain did not exist.", "The directory name is invalid.", "Access is denied.",
            "The format of the specified computer name is invalid.", "The pipe has been ended.", "The specified local group does not exist.",
            "Logon failure: the user has not been granted the requested logon type at this computer.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sat Jun 01 10:09:29 GMT 2019
    - 11.9K bytes
    - Viewed (0)
  3. 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)
  4. src/main/java/jcifs/smb1/smb1/NtStatus.java

            "The pipe is being closed.",
            "Waiting for a process to open the other end of the pipe.",
            "Access is denied.",
            "A duplicate name exists on the network.",
            "The specified network name is no longer available.",
            "Network access is denied.",
            "The network name cannot be found.",
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 11.1K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. cmd/s3-zip-handlers.go

    			//   HTTP status code 404 ("no such key")
    			//   error.
    			// * if you don’t have the s3:ListBucket
    			//   permission, Amazon S3 will return an HTTP
    			//   status code 403 ("access denied") error.`
    			if globalPolicySys.IsAllowed(policy.BucketPolicyArgs{
    				Action:          policy.ListBucketAction,
    				BucketName:      bucket,
    				ConditionValues: getConditionValues(r, "", auth.AnonymousCredentials),
    Go
    - Registered: Sun Apr 28 19:28:10 GMT 2024
    - Last Modified: Tue Apr 09 10:41:25 GMT 2024
    - 15.8K bytes
    - Viewed (0)
Back to top