Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for ZeroValue (0.13 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/sets/set.go

    	}
    	return res
    }
    
    // PopAny returns a single element from the set.
    func (s Set[T]) PopAny() (T, bool) {
    	for key := range s {
    		s.Delete(key)
    		return key, true
    	}
    	var zeroValue T
    	return zeroValue, false
    }
    
    // Len returns the size of the set.
    func (s Set[T]) Len() int {
    	return len(s)
    }
    
    func less[T cmp.Ordered](lhs, rhs T) bool {
    	return lhs < rhs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 19:51:18 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/golang.org/x/tools/internal/analysisinternal/analysis.go

    	if offset >= len(src) {
    		return end
    	}
    	if width := bytes.IndexAny(src[offset:], " \n,():;[]+-*"); width > 0 {
    		end = start + token.Pos(width)
    	}
    	return end
    }
    
    func ZeroValue(f *ast.File, pkg *types.Package, typ types.Type) ast.Expr {
    	// TODO(adonovan): think about generics, and also generic aliases.
    	under := aliases.Unalias(typ)
    	// Don't call Underlying unconditionally: although it removes
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  3. src/internal/fuzz/fuzz.go

    	c.warmupInputLeft = c.warmupInputCount
    
    	if len(c.corpus.entries) == 0 {
    		fmt.Fprintf(c.opts.Log, "warning: starting with empty corpus\n")
    		var vals []any
    		for _, t := range opts.Types {
    			vals = append(vals, zeroValue(t))
    		}
    		data := marshalCorpusFile(vals...)
    		h := sha256.Sum256(data)
    		name := fmt.Sprintf("%x", h[:4])
    		c.addCorpusEntries(false, CorpusEntry{Path: name, Data: data})
    	}
    
    	return c, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 34.1K bytes
    - Viewed (0)
Back to top