Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 149 for provider (0.18 sec)

  1. src/net/http/clientserver_test.go

    			return
    		}
    		time.Sleep(10 * time.Millisecond)
    	}
    	t.Errorf("%d connections opened, %d closed; want %d to close", open, close, open-1)
    }
    
    // tests that Transport doesn't retain a pointer to the provided request.
    func TestTransportGCRequest(t *testing.T) {
    	run(t, func(t *testing.T, mode testMode) {
    		t.Run("Body", func(t *testing.T) { testTransportGCRequest(t, mode, true) })
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 46.6K bytes
    - Viewed (0)
  2. src/internal/bisect/bisect.go

    //			}
    //		}
    //		return m.ShouldEnable(h)
    //	}
    //
    // This specific helper – deciding whether to enable a change identified by
    // file and line number and printing about the change when necessary – is
    // provided by the [Matcher.FileLine] method.
    //
    // Another common usage is deciding whether to make a change in a function
    // based on the caller's stack, to identify the specific calling contexts that the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 17:28:43 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  3. src/runtime/cgocall.go

    	// actually know how big the stack is, like we don't know how big any
    	// scheduling stack is, but we assume there's at least 32 kB. If we
    	// can get a more accurate stack bound from pthread, use that, provided
    	// it actually contains SP..
    	g0.stack.hi = sp + 1024
    	g0.stack.lo = sp - 32*1024
    	if !signal && _cgo_getstackbound != nil {
    		// Don't adjust if called from the signal handler.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  4. src/internal/trace/generation.go

    		}
    		return true
    	})
    	return err
    }
    
    // addStrings takes a batch whose first byte is an EvStrings event
    // (indicating that the batch contains only strings) and adds each
    // string contained therein to the provided strings map.
    func addStrings(stringTable *dataTable[stringID, string], b batch) error {
    	if !b.isStringsBatch() {
    		return fmt.Errorf("internal error: addStrings called on non-string batch")
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 22:14:45 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/types2/decl.go

    			if check.inTParamList && isGeneric(obj.typ) {
    				tparCycle = true
    				break loop
    			}
    
    			// Determine if the type name is an alias or not. For
    			// package-level objects, use the object map which
    			// provides syntactic information (which doesn't rely
    			// on the order in which the objects are set up). For
    			// local objects, we can rely on the order, so use
    			// the object's predicate.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 29.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/tools/internal/typesinternal/errorcode.go

    // convention that "bad" implies a problem with syntax, and "invalid" implies a
    // problem with types.
    
    const (
    	// InvalidSyntaxTree occurs if an invalid syntax tree is provided
    	// to the type checker. It should never happen.
    	InvalidSyntaxTree ErrorCode = -1
    )
    
    const (
    	_ ErrorCode = iota
    
    	// Test is reserved for errors that only apply while in self-test mode.
    	Test
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 34K bytes
    - Viewed (0)
  7. src/go/types/issues_test.go

    }
    
    func TestIssue61938(t *testing.T) {
    	const src = `
    package p
    
    func f[T any]() {}
    func _()        { f() }
    `
    	// no error handler provided (this issue)
    	var conf Config
    	typecheck(src, &conf, nil) // must not panic
    
    	// with error handler (sanity check)
    	conf.Error = func(error) {}
    	typecheck(src, &conf, nil) // must not panic
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 28.1K bytes
    - Viewed (0)
  8. src/net/http/cookiejar/jar.go

    package cookiejar
    
    import (
    	"cmp"
    	"errors"
    	"fmt"
    	"net"
    	"net/http"
    	"net/http/internal/ascii"
    	"net/url"
    	"slices"
    	"strings"
    	"sync"
    	"time"
    )
    
    // PublicSuffixList provides the public suffix of a domain. For example:
    //   - the public suffix of "example.com" is "com",
    //   - the public suffix of "foo1.foo2.foo3.co.uk" is "co.uk", and
    //   - the public suffix of "bar.pvt.k12.ma.us" is "pvt.k12.ma.us".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 15K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/ppc64/obj9.go

    // furnished to do so, subject to the following conditions:
    //
    // The above copyright notice and this permission notice shall be included in
    // all copies or substantial portions of the Software.
    //
    // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
    // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
    // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 18:17:17 UTC 2024
    - 40.8K bytes
    - Viewed (0)
  10. src/runtime/signal_unix.go

    		throw("unexpected signal value")
    	}
    	panic(errorString(sigtable[gp.sig].name))
    }
    
    // dieFromSignal kills the program with a signal.
    // This provides the expected exit status for the shell.
    // This is only called with fatal signals expected to kill the process.
    //
    //go:nosplit
    //go:nowritebarrierrec
    func dieFromSignal(sig uint32) {
    	unblocksig(sig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 16:04:54 UTC 2024
    - 45K bytes
    - Viewed (0)
Back to top