Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 264 for stinky (0.13 sec)

  1. okhttp/src/main/kotlin/okhttp3/internal/connection/RealConnection.kt

          Http1ExchangeCodec(client, this, source, sink)
        }
      }
    
      @Throws(SocketException::class)
      internal fun newWebSocketStreams(exchange: Exchange): RealWebSocket.Streams {
        val socket = this.socket!!
        val source = this.source!!
        val sink = this.sink!!
    
        socket.soTimeout = 0
        noNewExchanges()
        return object : RealWebSocket.Streams(true, source, sink) {
          override fun close() {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 20 17:03:43 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  2. test/typeparam/issue47929.go

    // Copyright 2021 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package v4
    
    var sink interface{}
    
    //go:noinline
    func Do(result, body interface{}) {
    	sink = &result
    }
    
    func DataAction(result DataActionResponse, body DataActionRequest) {
    	Do(&result, body)
    }
    
    type DataActionRequest struct {
    	Action *interface{}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 01 19:45:34 UTC 2022
    - 530 bytes
    - Viewed (0)
  3. src/os/exec/lp_windows_test.go

    	},
    	{
    		// LookPath(".\a") will fail before Dir is set, and that error is sticky.
    		name:  "relative to Dir with dot and extra PATH and no extension",
    		files: []string{`p\a.exe`, `p2\a.exe`},
    		PATH:  []string{".", "p2"},
    		dir:   `p`,
    		arg0:  `.\a`,
    		want:  `p\a.exe`,
    	},
    	{
    		// LookPath(".\a") will fail before Dir is set, and that error is sticky.
    		name:  "relative to Dir with different extension",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 13 19:38:12 UTC 2023
    - 16.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/filters/audit_test.go

    		t.Errorf("expected status code 200, got %d", ev.ResponseStatus.Code)
    	}
    }
    
    func TestDecorateResponseWriterChannel(t *testing.T) {
    	sink := &fakeAuditSink{}
    	ev := &auditinternal.Event{}
    	actual := decorateResponseWriter(context.Background(), &responsewriter.FakeResponseWriter{}, ev, sink, nil)
    
    	done := make(chan struct{})
    	go func() {
    		t.Log("Writing status code 42")
    		actual.WriteHeader(42)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jul 03 16:16:51 UTC 2023
    - 22.6K bytes
    - Viewed (0)
  5. test/fixedbugs/issue29943.go

    // that was CSE'd.
    
    package main
    
    //go:noinline
    func g(i uint64) uint64 {
    	return uint64(uint32(i))
    }
    
    var sink uint64
    
    func main() {
    	for i := uint64(0); i < 1; i++ {
    		i32 := int32(i - 1)
    		sink = uint64((uint32(i32) << 1) ^ uint32((i32 >> 31)))
    		x := g(uint64(i32))
    		if x != uint64(uint32(i32)) {
    			panic(x)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jan 27 01:43:05 UTC 2019
    - 558 bytes
    - Viewed (0)
  6. src/cmd/compile/internal/test/fixedbugs_test.go

    		// barrier call clobbers the result of makeT() before it is
    		// read by the write barrier code.
    		g = makeT()
    		sink = make([]byte, 1000) // force write barriers to eventually happen
    	}
    }
    func TestIssue15854b(t *testing.T) {
    	const N = 10000
    	a := make([]T, N)
    	for i := 0; i < N; i++ {
    		a = append(a, makeT())
    		sink = make([]byte, 1000) // force write barriers to eventually happen
    	}
    	for i, v := range a {
    		if v.x[0] != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 06 18:07:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  7. cluster/gce/list-resources.sh

    GREP_REGEX=""
    gcloud-list compute forwarding-rules ${REGION:+"region=(${REGION})"}
    gcloud-list compute target-pools ${REGION:+"region=(${REGION})"}
    
    gcloud-list logging sinks
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 27 15:44:25 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  8. test/escape_indir.go

    }
    
    func constptr1() {
    	i := 0           // ERROR "moved to heap: i"
    	x := &ConstPtr{} // ERROR "&ConstPtr{} escapes to heap"
    	x.p = &i
    	sink = x
    }
    
    func constptr2() {
    	i := 0           // ERROR "moved to heap: i"
    	x := &ConstPtr{} // ERROR "&ConstPtr{} does not escape"
    	x.p = &i
    	sink = *x // ERROR "\*x escapes to heap"
    }
    
    func constptr4() *ConstPtr {
    	p := new(ConstPtr) // ERROR "new\(ConstPtr\) escapes to heap"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 12 08:31:49 UTC 2020
    - 3.3K bytes
    - Viewed (0)
  9. test/escape_mutations.go

    }
    
    func F5(b *B) { // ERROR "leaking param: b"
    	sink = b
    }
    
    func F6(b *B) int { // ERROR "b does not escape, mutate, or call"
    	return b.x
    }
    
    var sink any
    
    func M() {
    	var b B // ERROR "moved to heap: b"
    	F1(&b)
    	F2(&b)
    	F2a(&b)
    	F3(&b)
    	F4(&b)
    }
    
    func g(s string) { // ERROR "s does not escape, mutate, or call"
    	sink = &([]byte(s))[10] // ERROR "\(\[\]byte\)\(s\) escapes to heap"
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 18 11:58:37 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/internal/cache2/RelayTest.kt

        val pipe = Pipe(1024)
        val sink = pipe.sink.buffer()
        val relay = edit(file, pipe.source, metadata, 5)
        val future1 = executor.submit(sourceReader(relay.newSource()))
        val future2 = executor.submit(sourceReader(relay.newSource()))
        Thread.sleep(500)
        sink.writeUtf8("abcdefghij")
        Thread.sleep(500)
        sink.writeUtf8("klmnopqrst")
        sink.close()
        assertThat<ByteString>(future1.get())
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 11 22:09:35 UTC 2024
    - 8.1K bytes
    - Viewed (0)
Back to top