Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for cnames9 (0.1 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. 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)
  3. 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)
  4. 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