Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for wr (0.02 sec)

  1. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/testing/promise/counting_test.go

    	later := time.Now()
    	bval := &later
    	func() {
    		lock.Lock()
    		defer lock.Unlock()
    		if wr.Set(bval) {
    			t.Error("second Set() returned true")
    		}
    	}()
    	goGetAndExpect(t, clock, counter, wr, gots, aval)
    	counter.Add(1) // account for unblocking the receive on doneCh
    	close(doneCh)
    	time.Sleep(time.Second) // give it a chance to misbehave
    	goGetAndExpect(t, clock, counter, wr, gots, aval)
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 10 14:37:53 UTC 2021
    - 4.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/promise/promise_test.go

    	ctx, cancel := context.WithCancel(context.Background())
    	wr := NewWriteOnce(nil, ctx, cval)
    	gots := make(chan interface{})
    	goGetExpectNotYet(t, wr, gots, "Set")
    	now := time.Now()
    	aval := &now
    	if !wr.Set(aval) {
    		t.Error("Set() returned false")
    	}
    	expectGotValue(t, gots, aval)
    	goGetAndExpect(t, wr, gots, aval)
    	later := time.Now()
    	bval := &later
    	if wr.Set(bval) {
    		t.Error("second Set() returned true")
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 21 19:19:31 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. test/escape_calls.go

    	n := *np
    	w := len(n.s)
    	if n == nil {
    		return 0
    	}
    	wl := walk(&n.left)
    	wr := walk(&n.right)
    	if wl < wr {
    		n.left, n.right = n.right, n.left // ERROR "ignoring self-assignment"
    		wl, wr = wr, wl
    	}
    	*np = n
    	return w + wl + wr
    }
    
    // Test for bug where func var f used prototype's escape analysis results.
    func prototype(xyz []string) {} // ERROR "xyz does not escape"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 22:06:07 UTC 2023
    - 1.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/responsewriter/wrapper.go

    	InnerCloseNotifierFlusher CloseNotifierFlusher
    }
    
    func (wr outerWithCloseNotifyAndFlush) CloseNotify() <-chan bool {
    	if notifier, ok := wr.UserProvidedDecorator.(http.CloseNotifier); ok {
    		return notifier.CloseNotify()
    	}
    
    	return wr.InnerCloseNotifierFlusher.CloseNotify()
    }
    
    func (wr outerWithCloseNotifyAndFlush) Flush() {
    	if flusher, ok := wr.UserProvidedDecorator.(http.Flusher); ok {
    		flusher.Flush()
    		return
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  5. pkg/xds/server.go

    	var previousResources []string
    	var alwaysRespond bool
    	w.UpdateWatchedResource(request.TypeUrl, func(wr *WatchedResource) *WatchedResource {
    		previousResources = wr.ResourceNames
    		wr.NonceAcked = request.ResponseNonce
    		wr.ResourceNames = request.ResourceNames
    		alwaysRespond = wr.AlwaysRespond
    		wr.AlwaysRespond = false
    		return wr
    	})
    
    	// Envoy can send two DiscoveryRequests with same version and nonce.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 20:55:20 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/text/unicode/norm/readwriter.go

    // internal buffer to maintain state across Write calls.
    // Calling its Close method writes any buffered data to w.
    func (f Form) Writer(w io.Writer) io.WriteCloser {
    	wr := &normWriter{rb: reorderBuffer{}, w: w}
    	wr.rb.init(f, nil)
    	return wr
    }
    
    type normReader struct {
    	rb           reorderBuffer
    	r            io.Reader
    	inbuf        []byte
    	outbuf       []byte
    	bufStart     int
    	lastBoundary int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  7. pilot/pkg/xds/delta.go

    	con.proxy.UpdateWatchedResource(request.TypeUrl, func(wr *model.WatchedResource) *model.WatchedResource {
    		previousResources = wr.ResourceNames
    		currentResources, _ = deltaWatchedResources(previousResources, request)
    		wr.NonceAcked = request.ResponseNonce
    		wr.ResourceNames = currentResources
    		alwaysRespond = wr.AlwaysRespond
    		wr.AlwaysRespond = false
    		return wr
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 25.6K bytes
    - Viewed (0)
  8. src/os/fifo_test.go

    		if err != nil {
    			t.Fatal(err)
    		}
    		wr, err := os.OpenFile(name, os.O_WRONLY|syscall.O_NONBLOCK, 0o600)
    		if err != nil {
    			t.Fatal(err)
    		}
    		const msg = "message"
    		if _, err := wr.Write([]byte(msg)); err != nil {
    			if errors.Is(err, syscall.EAGAIN) || errors.Is(err, syscall.ENOBUFS) {
    				t.Logf("ignoring write error %v", err)
    				rd.Close()
    				wr.Close()
    				continue
    			}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:47:23 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  9. src/cmd/internal/goobj/objfile_test.go

    	"internal/buildcfg"
    	"internal/testenv"
    	"os"
    	"testing"
    
    	"cmd/internal/bio"
    	"cmd/internal/objabi"
    )
    
    func dummyWriter(buf *bytes.Buffer) *Writer {
    	wr := &bio.Writer{Writer: bufio.NewWriter(buf)} // hacky: no file, so cannot seek
    	return NewWriter(wr)
    }
    
    func TestReadWrite(t *testing.T) {
    	// Test that we get the same data in a write-read roundtrip.
    
    	// Write a symbol, a relocation, and an aux info.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 15 20:22:12 UTC 2022
    - 3K bytes
    - Viewed (0)
  10. pilot/pkg/xds/statusgen.go

    				Resource: protoconv.MessageToAny(clientConfig),
    			})
    		}
    		con.proxy.RUnlock()
    	}
    
    	return res
    }
    
    func debugSyncStatus(wr *model.WatchedResource) status.ConfigStatus {
    	if wr.NonceSent == "" {
    		return status.ConfigStatus_NOT_SENT
    	}
    	if wr.NonceAcked == wr.NonceSent {
    		return status.ConfigStatus_SYNCED
    	}
    	return status.ConfigStatus_STALE
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 23:30:28 UTC 2024
    - 5.6K bytes
    - Viewed (0)
Back to top