Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 440 for p$ (0.03 sec)

  1. cmd/erasure-encode.go

    }
    
    // Write writes data to writers.
    func (p *multiWriter) Write(ctx context.Context, blocks [][]byte) error {
    	for i := range p.writers {
    		if p.errs[i] != nil {
    			continue
    		}
    		if p.writers[i] == nil {
    			p.errs[i] = errDiskNotFound
    			continue
    		}
    		var n int
    		n, p.errs[i] = p.writers[i].Write(blocks[i])
    		if p.errs[i] == nil {
    			if n != len(blocks[i]) {
    				p.errs[i] = io.ErrShortWrite
    				p.writers[i] = nil
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 15 00:11:04 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  2. src/hash/adler32/adler32.go

    	return nil
    }
    
    // Add p to the running checksum d.
    func update(d digest, p []byte) digest {
    	s1, s2 := uint32(d&0xffff), uint32(d>>16)
    	for len(p) > 0 {
    		var q []byte
    		if len(p) > nmax {
    			p, q = p[:nmax], p[nmax:]
    		}
    		for len(p) >= 4 {
    			s1 += uint32(p[0])
    			s2 += s1
    			s1 += uint32(p[1])
    			s2 += s1
    			s1 += uint32(p[2])
    			s2 += s1
    			s1 += uint32(p[3])
    			s2 += s1
    			p = p[4:]
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun May 12 05:36:29 UTC 2024
    - 3K bytes
    - Viewed (0)
  3. src/sync/pool.go

    	// pinned section (in effect, this has all Ps pinned).
    
    	// Drop victim caches from all pools.
    	for _, p := range oldPools {
    		p.victim = nil
    		p.victimSize = 0
    	}
    
    	// Move primary cache to victim cache.
    	for _, p := range allPools {
    		p.victim = p.local
    		p.victimSize = p.localSize
    		p.local = nil
    		p.localSize = 0
    	}
    
    	// The pools with non-empty primary caches now have non-empty
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  4. pkg/revisions/tag_watcher.go

    		return
    	}
    	// Notify handlers of initial state
    	p.notifyHandlers()
    	p.queue.Run(stopCh)
    }
    
    // AddHandler registers a new handler for updates to tag changes.
    func (p *tagWatcher) AddHandler(handler TagHandler) {
    	p.handlers = append(p.handlers, handler)
    }
    
    func (p *tagWatcher) HasSynced() bool {
    	return p.queue.HasSynced()
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  5. src/internal/dag/parse.go

    				p.syntaxError("unexpected token !")
    			}
    			p.text = p.text[2:]
    			return "!<"
    
    		case '#':
    			i := strings.Index(p.text, "\n")
    			if i < 0 {
    				i = len(p.text)
    			}
    			p.text = p.text[i:]
    			continue
    
    		case '\n':
    			p.lineno++
    			fallthrough
    		case ' ', '\t':
    			p.text = p.text[1:]
    			continue
    
    		default:
    			i := strings.IndexAny(p.text, "!;,<#\n \t")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  6. tools/istio-clean-iptables/pkg/cmd/testdata/inbound-interception-mode.golden

    ip6tables -t mangle -D OUTPUT -p tcp -m connmark --mark 1337 -j CONNMARK --restore-mark
    ip6tables -t nat -F ISTIO_REDIRECT
    ip6tables -t nat -X ISTIO_REDIRECT
    ip6tables -t nat -F ISTIO_IN_REDIRECT
    ip6tables -t nat -X ISTIO_IN_REDIRECT
    iptables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables-save
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. src/sync/pool_test.go

    	var p Pool
    	if p.Get() != nil {
    		t.Fatal("expected empty")
    	}
    
    	// Make sure that the goroutine doesn't migrate to another P
    	// between Put and Get calls.
    	Runtime_procPin()
    	p.Put("a")
    	p.Put("b")
    	if g := p.Get(); g != "a" {
    		t.Fatalf("got %#v; want a", g)
    	}
    	if g := p.Get(); g != "b" {
    		t.Fatalf("got %#v; want b", g)
    	}
    	if g := p.Get(); g != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 8K bytes
    - Viewed (0)
  8. tools/istio-clean-iptables/pkg/cmd/testdata/outbound-owner-groups-exclude.golden

    ip6tables -t nat -X ISTIO_IN_REDIRECT
    iptables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t nat -D OUTPUT -p udp -j ISTIO_OUTPUT
    ip6tables -t raw -D OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    ip6tables -t nat -D ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. src/internal/trace/testdata/tests/go122-annotations.test

    ProcStatus dt=1 p=9 pstatus=2
    ProcStatus dt=1 p=10 pstatus=2
    ProcStatus dt=1 p=11 pstatus=2
    ProcStatus dt=1 p=12 pstatus=2
    ProcStatus dt=1 p=13 pstatus=2
    ProcStatus dt=1 p=14 pstatus=2
    ProcStatus dt=1 p=15 pstatus=2
    ProcStatus dt=1 p=16 pstatus=2
    ProcStatus dt=1 p=17 pstatus=2
    ProcStatus dt=1 p=18 pstatus=2
    ProcStatus dt=1 p=19 pstatus=2
    ProcStatus dt=1 p=20 pstatus=2
    ProcStatus dt=1 p=21 pstatus=2
    ProcStatus dt=1 p=22 pstatus=2
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  10. tools/istio-iptables/pkg/capture/testdata/tproxy.golden

    iptables -t nat -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t raw -A OUTPUT -p udp -j ISTIO_OUTPUT
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --uid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -m owner --gid-owner 1337 -j RETURN
    iptables -t nat -A ISTIO_OUTPUT -p udp --dport 53 -d 127.0.0.53/32 -j REDIRECT --to-port 15053
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 03:53:23 UTC 2024
    - 6.8K bytes
    - Viewed (0)
Back to top