Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 24 of 24 for wyhash (0.21 sec)

  1. common-protos/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      repeated string shortNames = 5;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all')
      repeated string categories = 7;
    
      // The hash value of the storage version, the version this resource is
      // converted to when written to the data store. Value must be treated
      // as opaque by clients. Only equality comparison on the value is valid.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/generated.proto

      // +listType=atomic
      repeated string shortNames = 5;
    
      // categories is a list of the grouped resources this resource belongs to (e.g. 'all')
      // +listType=atomic
      repeated string categories = 7;
    
      // The hash value of the storage version, the version this resource is
      // converted to when written to the data store. Value must be treated
      // as opaque by clients. Only equality comparison on the value is valid.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 53.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        XLA_SCOPED_LOGGING_TIMER_LEVEL("DeadnessAnalysis", 1);
        TF_RETURN_IF_ERROR(DeadnessAnalysis::Run(*graph_, &deadness_analysis_));
      }
    
      // If the user is requesting deterministic cluster names compute a hash of the
      // input graph to provide a stable but unique prefix for the name.
      if (debug_options_.deterministic_cluster_names) {
        TF_ASSIGN_OR_RETURN(graph_fingerprint_, FingerprintGraph(*graph_));
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/rewrite.go

    	lsym := sym.(*obj.LSym)
    	if lsym.Extra == nil {
    		return false
    	}
    	if _, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize && size == 4 {
    			return true // type hash field
    		}
    	}
    	return false
    }
    func fixed32(c *Config, sym Sym, off int64) int32 {
    	lsym := sym.(*obj.LSym)
    	if ti, ok := (*lsym.Extra).(*obj.TypeInfo); ok {
    		if off == 2*c.PtrSize {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 19:02:52 UTC 2024
    - 64.2K bytes
    - Viewed (0)
Back to top