Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 44 for Dedup (0.05 sec)

  1. test/typeparam/dedup.out

    Keith Randall <******@****.***> 1628044381 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 04 17:56:00 UTC 2021
    - 20 bytes
    - Viewed (0)
  2. test/typeparam/dedup.go

    Matthew Dempsky <******@****.***> 1646087539 -0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 437 bytes
    - Viewed (0)
  3. src/cmd/link/testdata/testHashedSyms/p.go

    // This test case contains two static temps (the array literals)
    // with same contents but different sizes. The linker should not
    // report a hash collision. The linker can (and actually does)
    // dedup the two symbols, by keeping the larger symbol. The dedup
    // is not a requirement for correctness and not checked in this test.
    // We do check the emitted symbol contents are correct, though.
    
    package main
    
    func main() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 21 21:14:19 UTC 2020
    - 908 bytes
    - Viewed (0)
  4. doc/next/6-stdlib/99-minor/os/61893.md

    On Windows, the mode bits reported by [Lstat] and [Stat] for
    reparse points changed. Mount points no longer have [ModeSymlink] set,
    and reparse points that are not symlinks, Unix sockets, or dedup files
    now always have [ModeIrregular] set.
    This behavior is controlled by the `winsymlink` setting.
    For Go 1.23, it defaults to `winsymlink=1`.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 386 bytes
    - Viewed (0)
  5. src/internal/bisect/bisect.go

    	base := stk[0]
    	// normalize PCs
    	for i := range stk[:n] {
    		stk[i] -= base
    	}
    
    	h := Hash(stk[:n])
    	if m.ShouldPrint(h) {
    		var d *dedup
    		for {
    			d = m.dedup.Load()
    			if d != nil {
    				break
    			}
    			d = new(dedup)
    			if m.dedup.CompareAndSwap(nil, d) {
    				break
    			}
    		}
    
    		if m.MarkerOnly() {
    			if !d.seenLossy(h) {
    				PrintMarker(w, h)
    			}
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. operator/pkg/util/errs.go

    	return e.Error()
    }
    
    // ToError returns an error from Errors.
    func (e Errors) ToError() error {
    	if len(e) == 0 {
    		return nil
    	}
    	return fmt.Errorf("%s", e)
    }
    
    // Dedup removes any duplicated errors.
    func (e Errors) Dedup() Errors {
    	logCountMap := make(map[string]int)
    	for _, ee := range e {
    		if ee == nil {
    			continue
    		}
    		item := ee.Error()
    		_, exist := logCountMap[item]
    		if exist {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 29 20:42:01 UTC 2020
    - 3.1K bytes
    - Viewed (0)
  7. cni/pkg/plugin/sidecar_redirect.go

    }
    
    func splitPorts(portsString string) []string {
    	return strings.Split(portsString, ",")
    }
    
    func dedupPorts(ports []string) []string {
    	dedup := make(map[string]bool)
    	keys := []string{}
    
    	for _, port := range ports {
    		if !dedup[port] {
    			dedup[port] = true
    			keys = append(keys, port)
    		}
    	}
    	return keys
    }
    
    func parsePort(portStr string) (uint16, error) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. pkg/test/framework/components/cluster/clusters.go

    	return c.GetByName(cc.Name()) != nil
    }
    
    // Names returns the deduped list of names of the clusters.
    func (c Clusters) Names() []string {
    	dedup := sets.String{}
    	for _, cc := range c {
    		dedup.Insert(cc.Name())
    	}
    	return dedup.UnsortedList()
    }
    
    type ClustersByNetwork map[string]Clusters
    
    func (c ClustersByNetwork) Networks() []string {
    	out := make([]string, 0, len(c))
    	for n := range c {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/storageversion/manager.go

    	// Sorting the list to make sure we have a consistent dedup result, and
    	// therefore avoid creating unnecessarily duplicated StorageVersion objects.
    	// For example, extensions.ingresses and networking.k8s.io.ingresses share
    	// the same underlying storage. Without sorting, in an HA cluster, one
    	// apiserver may dedup and update StorageVersion for extensions.ingresses,
    	// while another apiserver may dedup and update StorageVersion for
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 17:47:19 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  10. src/cmd/gofmt/testdata/import.input

    	"errors" // for New
    	/* left */ "math" /* right */
    	"log" // for Fatal
    )
    
    import /* why */ /* comment here? */ (
    	/* comment */ "fmt"
    	"math"
    )
    
    // Reset it again
    //line :100
    
    // Dedup with different import styles
    import (
    	"path"
    	. "path"
    	_ "path"
    	"path"
    	pathpkg "path"
    )
    
    /* comment */
    import (
    	"math" // for Abs
    	"fmt"
    	// This is a new run
    	"errors"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 28 23:33:26 UTC 2019
    - 2.1K bytes
    - Viewed (0)
Back to top