Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for regNames (0.28 sec)

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

    	archs = append(archs, arch{
    		name:            "S390X",
    		pkg:             "cmd/internal/obj/s390x",
    		genfile:         "../../s390x/ssa.go",
    		ops:             S390Xops,
    		blocks:          S390Xblocks,
    		regnames:        regNamesS390X,
    		gpregmask:       gp,
    		fpregmask:       fp,
    		framepointerreg: -1, // not used
    		linkreg:         int8(num["R14"]),
    		imports: []string{
    			"cmd/internal/obj/s390x",
    		},
    	})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 24 00:21:13 UTC 2023
    - 52.5K bytes
    - Viewed (0)
  2. 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)
  3. pkg/controller/history/controller_history_test.go

    				parent   metav1.Object
    				revision *apps.ControllerRevision
    			}{
    				{
    					parent:   ss1,
    					revision: ss1Rev1,
    				},
    			},
    
    			rename: false,
    		},
    		{
    			name:     "create renames on conflict",
    			parent:   &ss1.ObjectMeta,
    			revision: ss1Rev1,
    			existing: []struct {
    				parent   metav1.Object
    				revision *apps.ControllerRevision
    			}{
    				{
    					parent:   ss1,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 13:31:28 UTC 2023
    - 49.1K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. src/cmd/internal/obj/riscv/obj.go

    			suffix = fmt.Sprintf(" but got non-%s register %s", descr, RegName(int(r)))
    		}
    		ctxt.Diag("%v: expected %s register in %s position%s", ins, descr, pos, suffix)
    	}
    }
    
    func wantNoneReg(ctxt *obj.Link, ins *instruction, pos string, r uint32) {
    	if r != obj.REG_NONE {
    		ctxt.Diag("%v: expected no register in %s but got register %s", ins, pos, RegName(int(r)))
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 07 03:32:27 UTC 2024
    - 77K bytes
    - Viewed (0)
  7. tensorflow/c/experimental/filesystem/filesystem_interface.h

      void (*delete_recursively)(const TF_Filesystem* filesystem, const char* path,
                                 uint64_t* undeleted_files,
                                 uint64_t* undeleted_dirs, TF_Status* status);
    
      /// Renames the file given by `src` to that in `dst`.
      ///
      /// Replaces `dst` if it exists. In case of error, both `src` and `dst` keep
      /// the same state as before the call.
      ///
      /// Plugins:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 27 17:36:54 UTC 2022
    - 53.1K bytes
    - Viewed (0)
  8. 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