Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for createFile (0.27 sec)

  1. cmd/bucket-replication.go

    	}
    
    	globalLocalDrivesMu.RLock()
    	localDrives := cloneDrives(globalLocalDrives)
    	globalLocalDrivesMu.RUnlock()
    
    	for _, localDrive := range localDrives {
    		r := newReader()
    		err := localDrive.CreateFile(ctx, "", minioMetaBucket, pathJoin(replicationMRFDir, globalLocalNodeNameHex+".bin"), -1, r)
    		r.Close()
    		if err == nil {
    			break
    		}
    	}
    }
    
    // save mrf entries to nodenamehex.bin
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Wed May 01 01:09:56 GMT 2024
    - 112.2K bytes
    - Viewed (1)
  2. src/main/java/jcifs/smb1/smb1/SmbFile.java

            }
        /* why? am I going around in circles?
         *  this.type = type == TYPE_WORKGROUP ? 0 : type;
         */
            this.type = type;
            this.attributes = attributes;
            this.createTime = createTime;
            this.lastModified = lastModified;
            this.size = size;
            isExists = true;
    
            attrExpiration = sizeExpiration =
                    System.currentTimeMillis() + attrExpirationPeriod;
    Java
    - Registered: Sun May 05 00:10:10 GMT 2024
    - Last Modified: Mon Mar 13 12:00:57 GMT 2023
    - 107.9K bytes
    - Viewed (2)
Back to top