Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 66 for regNames (0.31 sec)

  1. src/cmd/compile/internal/types2/infer.go

    // containsNil reports whether list contains a nil entry.
    func containsNil(list []Type) bool {
    	for _, t := range list {
    		if t == nil {
    			return true
    		}
    	}
    	return false
    }
    
    // renameTParams renames the type parameters in the given type such that each type
    // parameter is given a new identity. renameTParams returns the new type parameters
    // and updated type. If the result type is unchanged from the argument type, none
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 13:54:20 UTC 2024
    - 26.4K bytes
    - Viewed (0)
  2. src/os/file.go

    func openDir(name string) (*File, error) {
    	testlog.Open(name)
    	return openDirNolog(name)
    }
    
    // lstat is overridden in tests.
    var lstat = Lstat
    
    // Rename renames (moves) oldpath to newpath.
    // If newpath already exists and is not a directory, Rename replaces it.
    // OS-specific restrictions may apply when oldpath and newpath are in different directories.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K 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. internal/config/config.go

    }
    
    // Carries all the renamed sub-systems from their
    // previously known names
    var renamedSubsys = map[string]string{
    	CrawlerSubSys: ScannerSubSys,
    	// Add future sub-system renames
    }
    
    const ( // deprecated keys
    	apiReplicationWorkers       = "replication_workers"
    	apiReplicationFailedWorkers = "replication_failed_workers"
    )
    
    // map of subsystem to deleted keys
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 37.8K bytes
    - Viewed (0)
  5. 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)
  6. platforms/documentation/docs/src/docs/userguide/releases/migrating/migrating_from_ant.adoc

    ====
    include::sample[dir="snippets/antMigration/importBuild/kotlin",files="build.gradle.kts[tags=import-build]"]
    include::sample[dir="snippets/antMigration/importBuild/groovy",files="build.gradle[tags=import-build]"]
    ====
    <1> Renames the `build` target to `ant_build` and leaves all other targets unchanged
    
    Configuring a different path for the sources is described in <<building_java_projects#sec:custom_java_source_set_paths,Building Java & JVM projects>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Mar 23 22:37:03 UTC 2024
    - 37.7K 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)
  9. RELEASE.md

        *   Renames `experimental_hints` in
            `tf.distribute.StrategyExtended.reduce_to`,
            `tf.distribute.StrategyExtended.batch_reduce_to`,
            `tf.distribute.ReplicaContext.all_reduce` to `options`.
        *   Renames `tf.distribute.experimental.CollectiveHints` to
            `tf.distribute.experimental.CommunicationOptions`.
        *   Renames `tf.distribute.experimental.CollectiveCommunication` to
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.22.md

      This allows using AppArmor on distributions which ship the binary in a different path. ([#97968](https://github.com/kubernetes/kubernetes/pull/97968), [@saschagrunert](https://github.com/saschagrunert)) [SIG Node and Testing]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 13 12:43:45 UTC 2022
    - 454.1K bytes
    - Viewed (0)
Back to top