Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for pri (0.08 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    	// Once we have gone through all route computation, we will know how many routes bound to each gateway.
    	// Report this in the status.
    	for _, dm := range gwMap {
    		for _, pri := range dm {
    			if pri.ReportAttachedRoutes != nil {
    				pri.ReportAttachedRoutes()
    			}
    		}
    	}
    	result.AllowedReferences = ctx.AllowedReferences
    	result.ReferencedNamespaceKeys = nsReferences
    	result.ResourceReferences = ctx.resourceReferences
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/debug.go

    	needCloCtx := f.CloSlot != nil
    	pri := f.ABISelf.ABIAnalyzeFuncType(f.Type)
    
    	// Look to see if we have any named register-promoted parameters,
    	// and/or whether we need location info for the ".closureptr"
    	// synthetic variable; if not bail early and let the caller sort
    	// things out for the remainder of the params/locals.
    	numRegParams := 0
    	for _, inp := range pri.InParams() {
    		if isNamedRegParam(inp) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

        Format      regex
        Regex       ^\<(?<pri>[0-9]{1,5})\>1 (?<time>[^ ]+) (?<host>[^ ]+) (?<ident>[^ ]+) (?<pid>[-0-9]+) (?<msgid>[^ ]+) (?<extradata>(\[(.*?)\]|-)) (?<message>.+)$
        Time_Key    time
        Time_Format %Y-%m-%dT%H:%M:%S.%L%z
        Time_Keep   On
    
    [PARSER]
        Name        syslog-rfc3164-local
        Format      regex
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. cmd/bucket-replication.go

    		xioutil.SafeClose(worker)
    	}
    }
    
    // ResizeWorkerPriority sets replication failed workers pool size
    func (p *ReplicationPool) ResizeWorkerPriority(pri string, maxWorkers int) {
    	var workers, mrfWorkers int
    	p.mu.Lock()
    	switch pri {
    	case "fast":
    		workers = WorkerMaxLimit
    		mrfWorkers = MRFWorkerMaxLimit
    	case "slow":
    		workers = WorkerMinLimit
    		mrfWorkers = MRFWorkerMinLimit
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    		{"HTTP/1.0", "Host: \xff\r\n", 400},
    
    		// Make an exception for HTTP upgrade requests:
    		{"PRI * HTTP/2.0", "", 200},
    
    		// Also an exception for CONNECT requests: (Issue 18215)
    		{"CONNECT golang.org:443 HTTP/1.1", "", 200},
    
    		// But not other HTTP/2 stuff:
    		{"PRI / HTTP/2.0", "", 505},
    		{"GET / HTTP/2.0", "", 505},
    		{"GET / HTTP/3.0", "", 505},
    	}
    	for _, tt := range tests {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. src/net/http/request.go

    	}
    	return multipart.NewReader(r.Body, boundary), nil
    }
    
    // isH2Upgrade reports whether r represents the http2 "client preface"
    // magic string.
    func (r *Request) isH2Upgrade() bool {
    	return r.Method == "PRI" && len(r.Header) == 0 && r.URL.Path == "*" && r.Proto == "HTTP/2.0"
    }
    
    // Return value if nonempty, def otherwise.
    func valueOrDefault(value, def string) string {
    	if value != "" {
    		return value
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 49.4K bytes
    - Viewed (0)
  7. src/net/http/server.go

    func http1ServerSupportsRequest(req *Request) bool {
    	if req.ProtoMajor == 1 {
    		return true
    	}
    	// Accept "PRI * HTTP/2.0" upgrade requests, so Handlers can
    	// wire up their own HTTP/2 upgrades.
    	if req.ProtoMajor == 2 && req.ProtoMinor == 0 &&
    		req.Method == "PRI" && req.RequestURI == "*" {
    		return true
    	}
    	// Reject HTTP/0.x, and all other HTTP/2+ requests (which
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  8. src/net/http/h2_bundle.go

    		http2logFrameWrites = true
    		http2logFrameReads = true
    	}
    }
    
    const (
    	// ClientPreface is the string that must be sent by new
    	// connections from clients.
    	http2ClientPreface = "PRI * HTTP/2.0\r\n\r\nSM\r\n\r\n"
    
    	// SETTINGS_MAX_FRAME_SIZE default
    	// https://httpwg.org/specs/rfc7540.html#rfc.section.6.5.2
    	http2initialMaxFrameSize = 16384
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
Back to top