Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 91 for Req (1.48 sec)

  1. src/net/http/transport_internal_test.go

    		c, err := ln.Accept()
    		if err != nil {
    			t.Error(err)
    			return
    		}
    		connc <- c
    	}()
    
    	tr := new(Transport)
    	req, _ := NewRequest("GET", "http://"+ln.Addr().String(), nil)
    	req = req.WithT(t)
    	ctx, cancel := context.WithCancelCause(context.Background())
    	treq := &transportRequest{Request: req, ctx: ctx, cancel: cancel}
    	cm := connectMethod{targetScheme: "http", targetAddr: ln.Addr().String()}
    	pc, err := tr.getConn(treq, cm)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 15:57:17 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/util/WebApiUtil.java

        }
    
        public static void setError(final int statusCode, final Exception e) {
            LaRequestUtil.getOptionalRequest().ifPresent(req -> req.setAttribute(WEB_API_EXCEPTION, new WebApiException(statusCode, e)));
        }
    
        public static void validate() {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/filters/wrap.go

    			runtime.HandleErrorWithContext(req.Context(), nil, "Timeout or abort while handling", "method", req.Method, "URI", req.RequestURI, "auditID", audit.GetAuditIDTruncated(req.Context()))
    			return
    		}
    		http.Error(w, "This request caused apiserver to panic. Look in the logs for details.", http.StatusInternalServerError)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. src/net/http/httptest/httptest.go

    	if method == "" {
    		method = "GET"
    	}
    	req, err := http.ReadRequest(bufio.NewReader(strings.NewReader(method + " " + target + " HTTP/1.0\r\n\r\n")))
    	if err != nil {
    		panic("invalid NewRequest arguments; " + err.Error())
    	}
    	req = req.WithContext(ctx)
    
    	// HTTP/1.0 was used above to avoid needing a Host field. Change it to 1.1 here.
    	req.Proto = "HTTP/1.1"
    	req.ProtoMinor = 1
    	req.Close = false
    
    	if body != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 18:09:14 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. pilot/pkg/xds/lds.go

    			return true
    		}
    		// Otherwise, only handle full pushes (skip endpoint-only updates)
    		if !req.Full {
    			return false
    		}
    	default:
    		if !req.Full {
    			// LDS only handles full push
    			return false
    		}
    	}
    	// If none set, we will always push
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    	for config := range req.ConfigsUpdated {
    		if !skippedLdsConfigs[proxy.Type].Contains(config.Kind) {
    			return true
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  6. pilot/pkg/xds/workload.go

    func (e WorkloadGenerator) GenerateDeltas(
    	proxy *model.Proxy,
    	req *model.PushRequest,
    	w *model.WatchedResource,
    ) (model.Resources, model.DeletedResources, model.XdsLogDetails, bool, error) {
    	updatedAddresses := model.ConfigNameOfKind(req.ConfigsUpdated, kind.Address)
    	isReq := req.IsRequest()
    	if len(updatedAddresses) == 0 && len(req.ConfigsUpdated) > 0 {
    		// Nothing changed..
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 14:14:30 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. internal/kms/secret-key.go

    	if req.Name != s.keyID {
    		return ErrNotSupported
    	}
    	return ErrKeyExists
    }
    
    // GenerateKey decrypts req.Ciphertext. The key name req.Name must match the key
    // name of the secretKey.
    //
    // The returned DEK is encrypted using AES-GCM and the ciphertext format is compatible
    // with KES and MinKMS.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. pilot/pkg/xds/nds.go

    	kind.GRPCRoute,
    )
    
    func ndsNeedsPush(req *model.PushRequest) bool {
    	if req == nil {
    		return true
    	}
    	if !req.Full {
    		// NDS generally handles full push. We only allow partial pushes, when headless endpoints change.
    		return headlessEndpointsUpdated(req)
    	}
    	// If none set, we will always push
    	if len(req.ConfigsUpdated) == 0 {
    		return true
    	}
    	for config := range req.ConfigsUpdated {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. internal/kms/kes.go

    		return nil, errDecryptionFailed(err)
    	}
    	return plaintext, nil
    }
    
    // MAC generates the checksum of the given req.Message using the key
    // with the req.Name at the KMS.
    func (c *kesConn) MAC(ctx context.Context, req *MACRequest) ([]byte, error) {
    	mac, err := c.client.HMAC(context.Background(), req.Name, req.Message)
    	if err != nil {
    		if errors.Is(err, kes.ErrKeyNotFound) {
    			return nil, ErrKeyNotFound
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  10. src/net/http/cgi/cgi_main.go

    		os.Exit(0)
    	}
    	Serve(http.HandlerFunc(func(rw http.ResponseWriter, req *http.Request) {
    		if req.FormValue("nil-request-body") == "1" {
    			fmt.Fprintf(rw, "nil-request-body=%v\n", req.Body == nil)
    			return
    		}
    		rw.Header().Set("X-Test-Header", "X-Test-Value")
    		req.ParseForm()
    		if req.FormValue("no-body") == "1" {
    			return
    		}
    		if eb, ok := req.Form["exact-body"]; ok {
    			io.WriteString(rw, eb[0])
    			return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 3.1K bytes
    - Viewed (0)
Back to top