Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for cnames9 (0.62 sec)

  1. pkg/kubelet/stats/cadvisor_stats_provider_test.go

    		pName3 = "pod3"
    	)
    	const (
    		cName00 = "c0"
    		cName01 = "c1"
    		cName10 = "c0" // ensure cName10 conflicts with cName02, but is in a different pod
    		cName20 = "c1" // ensure cName20 conflicts with cName01, but is in a different pod + namespace
    		cName30 = "c0-init"
    		cName31 = "c1"
    	)
    	const (
    		rootfsCapacity    = uint64(10000000)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  2. 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)
  3. tensorflow/compiler/aot/codegen_test_h.golden

      };
    
      // Array of names of each positional argument, terminated by nullptr.
      static const char** StaticArgNames() {
        static const char* kNames[] = {"myfeed", nullptr};
        return kNames;
      }
    
      // Array of names of each positional variable, terminated by nullptr.
      static const char** StaticVariableNames() {
        static const char* kNames[] = {"myvar_readonly", "myvar", "myvar2", nullptr};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/telemetry/selector.go

    		}
    
    		return true
    	})
    
    	for p, sList := range podsToTelemetries {
    		if len(sList) == 1 {
    			continue
    		}
    
    		sNames := getNames(sList)
    		for _, rs := range sList {
    			m := msg.NewConflictingTelemetryWorkloadSelectors(rs, sNames, p.Namespace.String(), p.Name.String())
    
    			if line, ok := util.ErrorLine(rs, fmt.Sprintf(util.MetadataName)); ok {
    				m.Line = line
    			}
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/device_util.h

     public:
      bool IsGpu(DeviceId device) const { return is_gpu_[device.id()]; }
      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;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 17:18:31 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  6. pkg/kubelet/stats/cri_stats_provider_test.go

    )
    
    const (
    	pName0 = "pod0"
    	pName1 = "pod1"
    	pName2 = "pod2"
    )
    
    const (
    	cName0 = "container0-name"
    	cName1 = "container1-name"
    	cName2 = "container2-name"
    	cName3 = "container3-name"
    	cName5 = "container5-name"
    	cName6 = "container6-name"
    	cName7 = "container7-name"
    	cName8 = "container8-name"
    	cName9 = "container9-name"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. src/cmd/internal/obj/loong64/a.out.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package loong64
    
    import (
    	"cmd/internal/obj"
    )
    
    //go:generate go run ../stringer.go -i $GOFILE -o anames.go -p loong64
    
    const (
    	NSNAME = 8
    	NSYM   = 50
    	NREG   = 32 // number of general registers
    	NFREG  = 32 // number of floating point registers
    )
    
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 02:04:54 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/link/internal/ld/elf.go

    	sh.Off = resoff - n
    	sh.Size = n - resoff%4
    
    	return int(n)
    }
    
    func elfwritenotehdr(out *OutBuf, str string, namesz uint32, descsz uint32, tag uint32) *ElfShdr {
    	sh := elfshname(str)
    
    	// Write Elf_Note header.
    	out.SeekSet(int64(sh.Off))
    
    	out.Write32(namesz)
    	out.Write32(descsz)
    	out.Write32(tag)
    
    	return sh
    }
    
    // NetBSD Signature (as per sys/exec_elf.h)
    const (
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/codegen.cc

      // Shapes of the results.
    {{RESULT_SHAPE_INFOS}};
    
      // Array of names of each positional argument, terminated by nullptr.
      static const char** StaticArgNames() {{ARG_NAMES_CODE}}
    
      // Array of names of each positional variable, terminated by nullptr.
      static const char** StaticVariableNames() {{VARIABLE_NAMES_CODE}}
    
      // Array of names of each positional result, terminated by nullptr.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 01:20:01 UTC 2024
    - 36.8K bytes
    - Viewed (0)
  10. src/net/dnsclient_unix.go

    	// Build list of search choices.
    	names := make([]string, 0, 1+len(conf.search))
    	// If name has enough dots, try unsuffixed first.
    	if hasNdots && !avoidDNS(name) {
    		names = append(names, name)
    	}
    	// Try suffixes that are not too long (see isDomainName).
    	for _, suffix := range conf.search {
    		fqdn := name + suffix
    		if !avoidDNS(fqdn) && len(fqdn) <= 254 {
    			names = append(names, fqdn)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 24.5K bytes
    - Viewed (0)
Back to top