Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 2,806 for names_ (0.09 sec)

  1. tensorflow/compiler/jit/device_util.cc

    }
    
    absl::StatusOr<DeviceId> DeviceInfoCache::GetIdFor(absl::string_view name) {
      TF_RET_CHECK(!name.empty());
    
      auto it = name_to_id_.find(name);
      if (it != name_to_id_.end()) {
        return it->second;
      }
    
      int new_id = names_.size();
      names_.push_back(string(name));
      id_to_device_type_.push_back(std::make_unique<DeviceType>(""));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/device_util.h

      bool IsCpu(DeviceId device) const { return is_cpu_[device.id()]; }
    
      absl::string_view GetNameFor(DeviceId device) const {
        return names_[device.id()];
      }
    
      absl::StatusOr<DeviceId> GetIdFor(absl::string_view name);
    
      using DeviceRegistration = const XlaOpRegistry::DeviceRegistration;
    
      DeviceRegistration* GetCompilationDevice(DeviceId device) const {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  3. pkg/config/host/names.go

    //	Names(["foo.com","*.net"]).Intersection(Names(["*.com","bar.net"])) = Names(["foo.com","bar.net"])
    //	Names(["foo.com","*.net"]).Intersection(Names(["*.bar.net"]))       = Names(["*.bar.net"])
    //	Names(["foo.com"]).Intersection(Names(["bar.com"]))                 = Names([])
    //	Names([]).Intersection(Names(["bar.com"])                           = Names([])
    func (h Names) Intersection(other Names) Names {
    	result := make(Names, 0, len(h))
    	for _, hHost := range h {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/internal/Names.java

    import org.apache.commons.lang.StringUtils;
    
    public abstract class Names {
    
        public static Names of(String name) {
            if (name.equals("main")) {
                return new Main();
            }
            return new Other(name, name);
        }
    
        public static Names of(String name, String baseName) {
            return new Other(name, baseName);
        }
    
        public abstract Names append(String suffix);
    
        /**
         * The raw name.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/plugins/names/names.go

    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package names
    
    const (
    	PrioritySort                    = "PrioritySort"
    	DefaultBinder                   = "DefaultBinder"
    	DefaultPreemption               = "DefaultPreemption"
    	DynamicResources                = "DynamicResources"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 28 14:11:33 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  6. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/modifiers/Names.java

    import com.google.common.base.Joiner;
    
    import java.util.Locale;
    
    class Names {
        static String displayNameFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on(' ').join(parts);
        }
    
        static String idFor(Enum<?> value) {
            String[] parts = value.name().toLowerCase(Locale.US).split("_");
            return Joiner.on('-').join(parts);
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 13:47:19 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/mips/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p mips; DO NOT EDIT.
    
    package mips
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ABSD",
    	"ABSF",
    	"ABSW",
    	"ADD",
    	"ADDD",
    	"ADDF",
    	"ADDU",
    	"ADDW",
    	"AND",
    	"BEQ",
    	"BFPF",
    	"BFPT",
    	"BGEZ",
    	"BGEZAL",
    	"BGTZ",
    	"BLEZ",
    	"BLTZ",
    	"BLTZAL",
    	"BNE",
    	"BREAK",
    	"CLO",
    	"CLZ",
    	"CMOVF",
    	"CMOVN",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 08 12:17:12 UTC 2023
    - 1.4K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/loong64/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p loong64; DO NOT EDIT.
    
    package loong64
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ABSD",
    	"ABSF",
    	"ADD",
    	"ADDD",
    	"ADDF",
    	"ADDU",
    	"ADDW",
    	"AND",
    	"BEQ",
    	"BGEZ",
    	"BLEZ",
    	"BGTZ",
    	"BLTZ",
    	"BFPF",
    	"BFPT",
    	"BNE",
    	"BREAK",
    	"CLO",
    	"CLZ",
    	"CMPEQD",
    	"CMPEQF",
    	"CMPGED",
    	"CMPGEF",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/loong64/cnames.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loong64
    
    // This order should be strictly consistent to that in a.out.go.
    var cnames0 = []string{
    	"NONE",
    	"REG",
    	"FREG",
    	"FCSRREG",
    	"FCCREG",
    	"ZCON",
    	"SCON",
    	"UCON",
    	"ADD0CON",
    	"AND0CON",
    	"ADDCON",
    	"ANDCON",
    	"LCON",
    	"DCON",
    	"SACON",
    	"SECON",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 17:49:21 UTC 2023
    - 629 bytes
    - Viewed (0)
  10. src/cmd/internal/obj/arm64/anames.go

    // Code generated by stringer -i a.out.go -o anames.go -p arm64; DO NOT EDIT.
    
    package arm64
    
    import "cmd/internal/obj"
    
    var Anames = []string{
    	obj.A_ARCHSPECIFIC: "ADC",
    	"ADCS",
    	"ADCSW",
    	"ADCW",
    	"ADD",
    	"ADDS",
    	"ADDSW",
    	"ADDW",
    	"ADR",
    	"ADRP",
    	"AESD",
    	"AESE",
    	"AESIMC",
    	"AESMC",
    	"AND",
    	"ANDS",
    	"ANDSW",
    	"ANDW",
    	"ASR",
    	"ASRW",
    	"AT",
    	"BCC",
    	"BCS",
    	"BEQ",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 01:40:37 UTC 2023
    - 5.4K bytes
    - Viewed (0)
Back to top