Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for pri (0.1 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. src/syscall/syscall_windows.go

    // For example:
    //
    //	_, _, err := syscall.Syscall(...)
    //	if errors.Is(err, fs.ErrNotExist) ...
    type Errno uintptr
    
    func langid(pri, sub uint16) uint32 { return uint32(sub)<<10 | uint32(pri) }
    
    // FormatMessage is deprecated (msgsrc should be uintptr, not uint32, but can
    // not be changed due to the Go 1 compatibility guarantee).
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    	getStartupInfo(startupInfo)
    	return nil
    }
    
    func (s NTStatus) Errno() syscall.Errno {
    	return rtlNtStatusToDosErrorNoTeb(s)
    }
    
    func langID(pri, sub uint16) uint32 { return uint32(sub)<<10 | uint32(pri) }
    
    func (s NTStatus) Error() string {
    	b := make([]uint16, 300)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K 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)
Back to top