Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 399 for unavoidable (0.25 sec)

  1. src/runtime/internal/wasitest/tcpecho_test.go

    	// port when you pre-open a socket. So, we probe for a free port here.
    	// Given there's an unavoidable race condition, the test is disabled by
    	// default.
    	if os.Getenv("GOWASIENABLERACYTEST") != "1" {
    		t.Skip("skipping WASI test with unavoidable race condition")
    	}
    	var host string
    	port := rand.Intn(10000) + 40000
    	for attempts := 0; attempts < 10; attempts++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 22:01:11 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/watch/filter.go

    type FilterFunc func(in Event) (out Event, keep bool)
    
    // Filter passes all events through f before allowing them to pass on.
    // Putting a filter on a watch, as an unavoidable side-effect due to the way
    // go channels work, effectively causes the watch's event channel to have its
    // queue length increased by one.
    //
    // WARNING: filter has a fatal flaw, in that it can't properly update the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 2.8K bytes
    - Viewed (0)
  3. src/image/jpeg/idct.go

     * patents.
     *
     * Commercial implementations of MPEG-1 and MPEG-2 video, including shareware,
     * are subject to royalty fees to patent holders.  Many of these patents are
     * general enough such that they are unavoidable regardless of implementation
     * design.
     *
     */
    
    const blockSize = 64 // A DCT block is 8x8.
    
    type block [blockSize]int32
    
    const (
    	w1 = 2841 // 2048*sqrt(2)*cos(1*pi/16)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 23:18:37 UTC 2019
    - 5K bytes
    - Viewed (0)
  4. src/runtime/sigqueue.go

    // We access them atomically to minimize the race between setting them
    // in the goroutine calling os/signal and the signal handler,
    // which may be running in a different thread. That race is unavoidable,
    // as there is no connection between handling a signal and receiving one,
    // but atomic instructions should minimize it.
    var sig struct {
    	note       note
    	mask       [(_NSIG + 31) / 32]uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. ci/official/README.md

    #      compilers, etc. can cause undefined behavior such as build failures
    #      or tests passing incorrectly.
    #    - Automatic LLVM updates are known to extend build time even with
    #      the cache; this is unavoidable.
    export TFCI=py311,linux_x86,public_cache,disk_cache
    
    # Recommended: Configure Docker. (Linux only)
    #
    #   TF uses hub.docker.com/r/tensorflow/build containers for CI,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 01 03:21:19 UTC 2024
    - 8K bytes
    - Viewed (0)
  6. src/compress/flate/flate_test.go

    					// previous Read returned because the write buffer was full
    					// and it just so happened that the stream had no more data.
    					// This situation is rare, but unavoidable.
    					if r.(*decompressor).dict.availWrite() == windowSize {
    						earlyEOF = false
    					}
    
    					if n == 0 && earlyEOF {
    						t.Errorf("On size:%d flush:%v, Read() = (0, io.EOF), want (n, io.EOF)", sz, flush)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Oct 20 18:41:18 UTC 2020
    - 11K bytes
    - Viewed (1)
  7. src/runtime/preempt.go

    // and then both be suspended. This would also avoid the need for a
    // kernel context switch in the synchronous case because we could just
    // directly schedule the waiter. The context switch is unavoidable in
    // the signal case.
    //
    //go:systemstack
    func suspendG(gp *g) suspendGState {
    	if mp := getg().m; mp.curg != nil && readgstatus(mp.curg) == _Grunning {
    		// Since we're on the system stack of this M, the user
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 15:41:45 UTC 2024
    - 15.1K bytes
    - Viewed (0)
  8. docs/bucket/replication/DESIGN.md

    delete marker replication, there is potential for duplicate delete markers to be created if both source and target concurrently set a Delete Marker or if one/both of the clusters went down at tandem before the replication event was synced.This is an unavoidable side-effect in active-active replication caused by allowing delete markers set on a object version with `REPLICA` status back to source.
    
    In the case of versioned deletes a.k.a permanent delete of a version by doing a `mc rm --version-id`...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  9. doc/godebug.md

    then fixing the bug will break that code.
    New features can also have similar impacts:
    enabling the HTTP/2 use by the HTTP client broke programs
    connecting to servers with buggy HTTP/2 implementations.
    These kinds of changes are unavoidable and
    [permitted by the Go 1 compatibility rules](/doc/go1compat).
    Even so, Go provides a mechanism called GODEBUG to
    reduce the impact such changes have on Go developers
    using newer toolchains to compile old code.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  10. src/go/build/deps_test.go

    	os
    	< golang.org/x/net/dns/dnsmessage,
    	  golang.org/x/net/lif,
    	  golang.org/x/net/route;
    
    	internal/bytealg, internal/itoa, math/bits, slices, strconv, unique
    	< net/netip;
    
    	# net is unavoidable when doing any networking,
    	# so large dependencies must be kept out.
    	# This is a long-looking list but most of these
    	# are small with few dependencies.
    	CGO,
    	golang.org/x/net/dns/dnsmessage,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 16:41:13 UTC 2024
    - 19.2K bytes
    - Viewed (0)
Back to top