Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for canRead (0.1 sec)

  1. src/main/java/jcifs/smb1/smb1/SmbFile.java

         *
         * @return <code>true</code> if the file is read-only
         * @throws SmbException if an error occurs while checking read permissions
         */
    
        public boolean canRead() throws SmbException {
            if (getType() == TYPE_NAMED_PIPE) { // try opening the pipe for reading?
                return true;
            }
            return exists(); // try opening and catch sharing violation?
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 112.2K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb/SmbFile.java

                }
                return new SmbWatchHandleImpl(openUnshared(O_RDONLY, READ_CONTROL | GENERIC_READ, DEFAULT_SHARING, 0, 1), filter, recursive);
            }
        }
    
        @Override
        public boolean canRead() throws SmbException {
            if (getType() == TYPE_NAMED_PIPE) { // try opening the pipe for reading?
                return true;
            }
            return exists(); // try opening and catch sharing violation?
        }
    Registered: Sun Sep 07 00:10:21 UTC 2025
    - Last Modified: Sat Aug 30 05:58:03 UTC 2025
    - 103.2K bytes
    - Viewed (0)
  3. cmd/sts-handlers_test.go

    		// Validate that the client cannot access the bucket after revocation.
    		c.mustNotListObjects(ctx, minioClient, bucket)
    	}
    }
    
    // SetUpLDAP - expects to setup an LDAP test server using the test LDAP
    // container and canned data from https://github.com/minio/minio-ldap-testing
    func (s *TestSuiteIAM) SetUpLDAP(c *check, serverAddr string) {
    	ctx, cancel := context.WithTimeout(context.Background(), testDefaultTimeout)
    	defer cancel()
    
    Registered: Sun Sep 07 19:28:11 UTC 2025
    - Last Modified: Fri Aug 29 02:39:48 UTC 2025
    - 100.2K bytes
    - Viewed (1)
  4. src/main/webapp/js/bootstrap.min.js.map

    oBAEpF2B,IACFA,EAAmBzT,UAAUoQ,IAAIU,IACjC2C,EAAmB9J,aAAa,eAAgB,QAEpD,CAEA0I,kBACE,MAAMnV,EAAUiJ,KAAKuL,gBAAkBvL,KAAK0M,aAE5C,IAAK3V,EACH,OAGF,MAAMwW,EAAkB7Q,OAAO8Q,SAASzW,EAAQkD,aAAa,oBAAqB,IAElF+F,KAAK0F,QAAQqF,SAAWwC,GAAmBvN,KAAK0F,QAAQkH,eAC1D,CAEAd,OAAOa,EAAO5V,EAAU,MACtB,GAAIiJ,KAAKwL,WACP,OAGF,MAAMlO,EAAgB0C,KAAK0M,aACrBe,EAASd,IAAUtC,EACnBqD,EAAc3W,GAAWqG,EAAqB4C,KAAKuM,YAAajP,EAAemQ,EAAQzN,KAAK0F,QAAQ0F,MAE1G,GAAIsC,IAAgBpQ,EAClB,OAGF,MAAMqQ,EAAmB3N,KAAKyM,cAAciB,GAEtCE,EAAeC,GACZtN,EAAa...
    Registered: Thu Sep 04 12:52:25 UTC 2025
    - Last Modified: Sun Jan 12 06:14:02 UTC 2025
    - 211.9K bytes
    - Viewed (0)
Back to top