Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for deletePending (0.21 sec)

  1. src/main/java/jcifs/internal/fscc/FileStandardInfo.java

                        + this.numberOfLinks + ",deletePending=" + this.deletePending + ",directory=" + this.directory + "]");
        }
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Sun Jul 01 13:12:10 GMT 2018
    - 3.3K bytes
    - Viewed (0)
  2. src/main/java/jcifs/smb1/smb1/Trans2QueryPathInformationResponse.java

                    "allocationSize=" + allocationSize +
                    ",endOfFile=" + endOfFile +
                    ",numberOfLinks=" + numberOfLinks +
                    ",deletePending=" + deletePending +
                    ",directory=" + directory + "]" );
            }
        }
    
        private int informationLevel;
    
        Info info;
    
        Trans2QueryPathInformationResponse( int informationLevel ) {
    Java
    - Registered: Sun Apr 28 00:10:09 GMT 2024
    - Last Modified: Fri Mar 22 21:10:40 GMT 2019
    - 5.4K bytes
    - Viewed (0)
  3. cmd/tier-journal.go

    func (t *TierJournal) Init(ctx context.Context) error {
    	for _, diskPath := range globalEndpoints.LocalDisksPaths() {
    		t.diskPath = diskPath
    
    		go t.deletePending(ctx)  // for existing journal entries from previous MinIO versions
    		go t.processEntries(ctx) // for newer journal entries circa free-versions
    		return nil
    	}
    
    	return errors.New("no local drive found")
    }
    
    Go
    - Registered: Sun Feb 25 19:28:16 GMT 2024
    - Last Modified: Thu Jan 18 07:03:17 GMT 2024
    - 7.4K bytes
    - Viewed (0)
Back to top