Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 50 for Lyding (0.08 sec)

  1. src/hash/crc64/crc64.go

    			p = p[8:]
    		}
    	}
    	// For reminders or small sizes
    	for _, v := range p {
    		crc = tab[byte(crc)^v] ^ (crc >> 8)
    	}
    	return ^crc
    }
    
    // Update returns the result of adding the bytes in p to the crc.
    func Update(crc uint64, tab *Table, p []byte) uint64 {
    	return update(crc, tab, p)
    }
    
    func (d *digest) Write(p []byte) (n int, err error) {
    	d.crc = update(d.crc, d.tab, p)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat May 18 22:36:41 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/fmahash_test.go

    	output := filepath.Join(tmpdir, "fma.exe")
    	cmd := testenv.Command(t, gocmd, "build", "-o", output, source)
    	// The hash-dependence on file path name is dodged by specifying "all hashes ending in 1" plus "all hashes ending in 0"
    	// i.e., all hashes.  This will print all the FMAs; this test is only interested in one of them (that should appear near the end).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 21:57:53 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/vendor/golang.org/x/crypto/sha3/sha3.go

    	// and "1111" for SHAKE, or 00000010b and 00001111b, respectively. Then the
    	// padding rule from section 5.1 is applied to pad the message to a multiple
    	// of the rate, which involves adding a "1" bit, zero or more "0" bits, and
    	// a final "1" bit. We merge the first "1" bit from the padding into dsbyte,
    	// giving 00000110b (0x06) and 00011111b (0x1f).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/go/internal/toolchain/switch.go

    	have := make(map[string]bool)
    	var list []string
    	for _, dir := range pathDirs() {
    		if dir == "" || !filepath.IsAbs(dir) {
    			// Refuse to use local directories in $PATH (hard-coding exec.ErrDot).
    			continue
    		}
    		entries, err := os.ReadDir(dir)
    		if err != nil {
    			continue
    		}
    		for _, de := range entries {
    			if de.IsDir() || !strings.HasPrefix(de.Name(), "go1.") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 7K bytes
    - Viewed (0)
  5. pkg/volume/util/resize_util_test.go

    			pvc:             pvc.DeepCopy(),
    			newConditions:   []v1.PersistentVolumeClaimCondition{},
    			finalConditions: []v1.PersistentVolumeClaimCondition{},
    		},
    		{
    			description: "adding new condition",
    			pvc:         pvc.DeepCopy(),
    			newConditions: []v1.PersistentVolumeClaimCondition{
    				{
    					Type:   v1.PersistentVolumeClaimFileSystemResizePending,
    					Status: v1.ConditionTrue,
    				},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  6. src/net/http/routing_tree_test.go

    			"/path/{p...}", []string{"*"}},
    	})
    
    	// A pattern ending in {$} should only match URLS with a trailing slash.
    	pat1 := "/a/b/{$}"
    	test(buildTree(pat1), []testCase{
    		{"GET", "", "/a/b", "", nil},
    		{"GET", "", "/a/b/", pat1, nil},
    		{"GET", "", "/a/b/c", "", nil},
    		{"GET", "", "/a/b/c/d", "", nil},
    	})
    
    	// A pattern ending in a single wildcard should not match a trailing slash URL.
    	pat2 := "/a/b/{w}"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:43:24 UTC 2024
    - 7K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_serving_content.go

    	}
    	defer w.Close()
    
    	if err := w.Add(c.certFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.certFile, err)
    	}
    	if err := w.Add(c.keyFile); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.keyFile, err)
    	}
    	// Trigger a check in case the file is updated before the watch starts.
    	c.queue.Add(workItemKey)
    
    	for {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. cmd/kubeadm/app/util/starttime.go

    import (
    	"time"
    )
    
    // startTime is a variable that represents the start time of the kubeadm process.
    // It can be used to consistently use the same start time instead of calling time.Now()
    // in multiple locations and ending up with minor time deviations.
    var startTime time.Time
    
    func init() {
    	startTime = time.Now()
    }
    
    // StartTimeUTC returns startTime with its location set to UTC.
    func StartTimeUTC() time.Time {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 01 16:01:49 UTC 2024
    - 1K bytes
    - Viewed (0)
  9. src/go/types/sizes.go

    	"mipsle":   {4, 4},
    	"mips64":   {8, 8},
    	"mips64le": {8, 8},
    	"ppc64":    {8, 8},
    	"ppc64le":  {8, 8},
    	"riscv64":  {8, 8},
    	"s390x":    {8, 8},
    	"sparc64":  {8, 8},
    	"wasm":     {8, 8},
    	// When adding more architectures here,
    	// update the doc string of SizesFor below.
    }
    
    // SizesFor returns the Sizes used by a compiler for an architecture.
    // The result is nil if a compiler/architecture pair is not known.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 03 18:48:38 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/dynamiccertificates/dynamic_cafile_content.go

    	w, err := fsnotify.NewWatcher()
    	if err != nil {
    		return fmt.Errorf("error creating fsnotify watcher: %v", err)
    	}
    	defer w.Close()
    
    	if err = w.Add(c.filename); err != nil {
    		return fmt.Errorf("error adding watch for file %s: %v", c.filename, err)
    	}
    	// Trigger a check in case the file is updated before the watch starts.
    	c.queue.Add(workItemKey)
    
    	for {
    		select {
    		case e := <-w.Events:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top