Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 676 for eofc (0.04 sec)

  1. src/net/http/transport.go

    			trace.PutIdleConn(nil)
    		}
    		return true
    	}
    
    	// eofc is used to block caller goroutines reading from Response.Body
    	// at EOF until this goroutines has (potentially) added the connection
    	// back to the idle pool.
    	eofc := make(chan struct{})
    	defer close(eofc) // unblock reader on errors
    
    	// Read this once, before loop starts. (to avoid races in tests)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  2. test/eof1.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test that a comment ending a source file does not need a final newline.
    // Compiles but does not run.
    
    package eof1
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 333 bytes
    - Viewed (0)
  3. src/internal/diff/testdata/eof1.txt

    Russ Cox <******@****.***> 1643490792 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 130 bytes
    - Viewed (0)
  4. src/internal/diff/testdata/eof2.txt

    Russ Cox <******@****.***> 1643490792 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 130 bytes
    - Viewed (0)
  5. src/internal/diff/testdata/eof.txt

    Russ Cox <******@****.***> 1643490792 -0500
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 16:56:29 UTC 2022
    - 47 bytes
    - Viewed (0)
  6. test/eof.go

    Emmanuel Odeke <******@****.***> 1460323946 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 308 bytes
    - Viewed (0)
  7. src/bufio/bufio_test.go

    		t.Errorf(`Peek(4) on "abcd", EOF = %q, %v; want "abcd", nil`, string(s), err)
    	}
    	if n, err := buf.Read(p[0:5]); string(p[0:n]) != "abcd" || err != nil {
    		t.Fatalf("Read after peek = %q, %v; want abcd, EOF", p[0:n], err)
    	}
    	if n, err := buf.Read(p[0:1]); string(p[0:n]) != "" || err != io.EOF {
    		t.Fatalf(`second Read after peek = %q, %v; want "", EOF`, p[0:n], err)
    	}
    }
    
    type dataAndEOFReader string
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  8. src/math/erf.go

    	if sign {
    		return r/x - 1
    	}
    	return 1 - r/x
    }
    
    // Erfc returns the complementary error function of x.
    //
    // Special cases are:
    //
    //	Erfc(+Inf) = 0
    //	Erfc(-Inf) = 2
    //	Erfc(NaN) = NaN
    func Erfc(x float64) float64 {
    	if haveArchErfc {
    		return archErfc(x)
    	}
    	return erfc(x)
    }
    
    func erfc(x float64) float64 {
    	const Tiny = 1.0 / (1 << 56) // 2**-56
    	// special cases
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:34:30 UTC 2022
    - 11.5K bytes
    - Viewed (0)
  9. samples/multicluster/gen-eastwest-gateway.sh

      IOP=$(cat <<EOF
    $IOP
              topology.istio.io/network: $NETWORK
    EOF
    )
    fi
    
    # env
    IOP=$(cat <<EOF
    $IOP
            enabled: true
            k8s:
    EOF
    )
    if [[ "${SINGLE_CLUSTER}" -eq 0 ]]; then
      IOP=$(cat <<EOF
    $IOP
              env:
                # traffic through this gateway should be routed inside the network
                - name: ISTIO_META_REQUESTED_NETWORK_VIEW
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Sep 04 02:52:25 UTC 2021
    - 3K bytes
    - Viewed (0)
  10. src/internal/poll/fd_posix_test.go

    	{100, nil, &FD{ZeroReadIsEOF: true}, nil},
    	{100, io.EOF, &FD{ZeroReadIsEOF: true}, io.EOF},
    	{100, ErrNetClosing, &FD{ZeroReadIsEOF: true}, ErrNetClosing},
    	{0, nil, &FD{ZeroReadIsEOF: true}, io.EOF},
    	{0, io.EOF, &FD{ZeroReadIsEOF: true}, io.EOF},
    	{0, ErrNetClosing, &FD{ZeroReadIsEOF: true}, ErrNetClosing},
    
    	{100, nil, &FD{ZeroReadIsEOF: false}, nil},
    	{100, io.EOF, &FD{ZeroReadIsEOF: false}, io.EOF},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 29 16:24:51 UTC 2022
    - 1.2K bytes
    - Viewed (0)
Back to top