Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 49 for iquest (3.37 sec)

  1. src/net/http/request.go

    //
    // To create a new request with a context, use [NewRequestWithContext].
    // To make a deep copy of a request with a new context, use [Request.Clone].
    func (r *Request) WithContext(ctx context.Context) *Request {
    	if ctx == nil {
    		panic("nil context")
    	}
    	r2 := new(Request)
    	*r2 = *r
    	r2.ctx = ctx
    	return r2
    }
    
    // Clone returns a deep copy of r with its context changed to ctx.
    // The provided ctx must be non-nil.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  2. src/net/dnsclient_unix_test.go

    					return resolveTimeout
    				}
    				return resolveOK
    			},
    			wantStrictErr: makeTimeout(),
    			wantIPs:       []string{ip4, ip6},
    		},
    		{
    			desc: "searchX IPv6-only servfail fails in strict mode",
    			resolveWhich: func(quest dnsmessage.Question) resolveWhichEnum {
    				if quest.Name.String() == searchX && quest.Type == dnsmessage.TypeAAAA {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  3. src/bufio/bufio_test.go

    type readMaker struct {
    	name string
    	fn   func(io.Reader) io.Reader
    }
    
    var readMakers = []readMaker{
    	{"full", func(r io.Reader) io.Reader { return r }},
    	{"byte", iotest.OneByteReader},
    	{"half", iotest.HalfReader},
    	{"data+err", iotest.DataErrReader},
    	{"timeout", iotest.TimeoutReader},
    }
    
    // Call ReadString (which ends up calling everything else)
    // to accumulate the text of a file.
    func readLines(b *Reader) string {
    	s := ""
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:56:01 UTC 2023
    - 51.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/smb/SmbSessionImpl.java

                    }
    
                    request.setSessionId(this.sessionId);
                    request.setUid(this.uid);
    
                    if ( request.getDigest() == null ) {
                        request.setDigest(getDigest());
                    }
    
                    if ( request instanceof RequestWithPath ) {
                        RequestWithPath rpath = (RequestWithPath) request;
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Nov 14 17:41:04 UTC 2021
    - 49K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/load.go

    func (af *atomicLoadPkgFlags) has(cond loadPkgFlags) bool {
    	return loadPkgFlags(af.bits.Load())&cond == cond
    }
    
    // isTest reports whether pkg is a test of another package.
    func (pkg *loadPkg) isTest() bool {
    	return pkg.testOf != nil
    }
    
    // fromExternalModule reports whether pkg was loaded from a module other than
    // the main module.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 84K bytes
    - Viewed (0)
  6. maven-model-builder/src/main/java/org/apache/maven/model/building/DefaultModelBuilder.java

            // read and validate raw model
            Model fileModel = readFileModel(request, problems);
    
            request.setFileModel(fileModel);
            result.setFileModel(fileModel.clone());
    
            activateFileModel(request, result, problems);
    
            if (!request.isTwoPhaseBuilding()) {
                return build(request, result, importIds);
            } else if (hasModelErrors(problems)) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue May 21 09:54:32 UTC 2024
    - 82.9K bytes
    - Viewed (0)
  7. src/main/java/org/codelibs/fess/api/json/SearchApiManager.java

                this.request = request;
            }
    
            protected static RequestParameter parse(final HttpServletRequest request) {
                final String query = request.getParameter("q");
                final String[] tags = getParamValueArray(request, "label");
                final String[] fields = getParamValueArray(request, "field");
    
                final String numStr = request.getParameter("num");
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 02:17:23 UTC 2024
    - 50.3K bytes
    - Viewed (0)
  8. src/net/http/client_test.go

    	}
    
    	var checkErr error
    	var lastVia []*Request
    	var lastReq *Request
    	c.CheckRedirect = func(req *Request, via []*Request) error {
    		lastReq = req
    		lastVia = via
    		return checkErr
    	}
    	res, err := c.Get(ts.URL)
    	if err != nil {
    		t.Fatalf("Get error: %v", err)
    	}
    	res.Body.Close()
    	finalURL := res.Request.URL.String()
    	if e, g := "<nil>", fmt.Sprintf("%v", err); e != g {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/queueset_test.go

    //  1. Use a concurrency limit of 1.
    //  2. Start request 1.
    //  3. Use a fake clock for the following logic, to insulate from scheduler noise.
    //  4. The exec fn of request 1 starts request 2, which should wait
    //     in its queue.
    //  5. The exec fn of request 1 also forks a goroutine that waits 1 second
    //     and then cancels the context of request 2.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 26 12:55:23 UTC 2023
    - 58.4K bytes
    - Viewed (0)
  10. fastapi/param_functions.py

            Doc(
                """
                By default, after a dependency is called the first time in a request, if
                the dependency is declared again for the rest of the request (for example
                if the dependency is needed by several dependencies), the value will be
                re-used for the rest of the request.
    
                Set `use_cache` to `False` to disable this behavior and ensure the
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 62.5K bytes
    - Viewed (0)
Back to top