Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for regNames (0.14 sec)

  1. src/cmd/compile/internal/ssa/_gen/ARM64Ops.go

    	archs = append(archs, arch{
    		name:               "ARM64",
    		pkg:                "cmd/internal/obj/arm64",
    		genfile:            "../../arm64/ssa.go",
    		ops:                ops,
    		blocks:             blocks,
    		regnames:           regNamesARM64,
    		ParamIntRegNames:   "R0 R1 R2 R3 R4 R5 R6 R7 R8 R9 R10 R11 R12 R13 R14 R15",
    		ParamFloatRegNames: "F0 F1 F2 F3 F4 F5 F6 F7 F8 F9 F10 F11 F12 F13 F14 F15",
    		gpregmask:          gp,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 15:49:20 UTC 2024
    - 58.8K bytes
    - Viewed (0)
  2. cmd/erasure-object.go

    		return objInfo, wquorum, toObjectErr(errMethodNotAllowed, bucket, object)
    	}
    
    	return objInfo, wquorum, nil
    }
    
    // Similar to rename but renames data from srcEntry to dstEntry at dataDir
    func renameData(ctx context.Context, disks []StorageAPI, srcBucket, srcEntry string, metadata []FileInfo, dstBucket, dstEntry string, writeQuorum int) ([]StorageAPI, []byte, string, error) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. cmd/xl-storage.go

    					// any failed mkdir-calls delete them.
    					s.deleteFile(dstVolumeDir, legacyDataPath, true, false)
    					return res, osErrToFileErr(err)
    				}
    				for _, entry := range legacyEntries {
    					// Skip xl.meta renames further, also ignore any directories such as `legacyDataDir`
    					if entry == xlStorageFormatFile || strings.HasSuffix(entry, slashSeparator) {
    						continue
    					}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/authoring-builds/gradle-properties/working_with_files.adoc

                println "File moved successfully."
            }
        }
    }
    
    ----
    
    === Using the `Copy` task
    
    In this example, the `moveFile` task copies the file `source.txt` to the destination directory and renames it to `new_name.txt` in the process.
    This achieves a similar effect to moving a file.
    
    [source,groovy]
    ----
    task moveFile(type: Copy) {
        from 'source.txt'
        into 'destination'
        rename { fileName ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 04:19:09 UTC 2024
    - 70.5K bytes
    - Viewed (0)
Back to top