Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for lp (0.02 sec)

  1. pilot/pkg/networking/core/envoyfilter/listener_patch.go

    ) {
    	for _, lp := range patches[networking.EnvoyFilter_FILTER_CHAIN] {
    		if !commonConditionMatch(patchContext, lp) ||
    			!listenerMatch(lis, lp) ||
    			!filterChainMatch(lis, fc, lp) {
    			IncrementEnvoyFilterMetric(lp.Key(), FilterChain, false)
    			continue
    		}
    		IncrementEnvoyFilterMetric(lp.Key(), FilterChain, true)
    		if lp.Operation == networking.EnvoyFilter_Patch_REMOVE {
    			fc.Filters = nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 15:39:29 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. cmd/speedtest.go

    	var ignoredPaths []string
    	paths := func() (tmpPaths []string) {
    		for _, lp := range localPaths {
    			if _, err := Lstat(pathJoin(lp, minioMetaBucket, formatConfigFile)); err == nil {
    				tmpPaths = append(tmpPaths, pathJoin(lp, minioMetaTmpBucket))
    			} else {
    				// Use dperf on only formatted drives.
    				ignoredPaths = append(ignoredPaths, lp)
    			}
    		}
    		return tmpPaths
    	}()
    
    	scheme := "http"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon May 06 09:45:10 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  3. src/runtime/arena_test.go

    		}
    		// Not in parallel because we don't want to hold this large allocation live.
    		runSubTestUserArenaNew(t, ls, false)
    
    		lp := new(largePointer)
    		for i := range lp {
    			lp[i] = sp
    		}
    		// Not in parallel because we don't want to hold this large allocation live.
    		runSubTestUserArenaNew(t, lp, false)
    
    		sss := make([]smallScalar, 25)
    		for i := range sss {
    			sss[i] = smallScalar{12}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. src/os/exec/lp_windows.go

    		return lookPath(path, exts)
    	}
    	dirandpath := filepath.Join(dir, path)
    	// We assume that LookPath will only add file extension.
    	lp, err := lookPath(dirandpath, exts)
    	if err != nil {
    		return "", err
    	}
    	ext := strings.TrimPrefix(lp, dirandpath)
    	return path + ext, nil
    }
    
    func pathExt() []string {
    	var exts []string
    	x := os.Getenv(`PATHEXT`)
    	if x != "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 6K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/listener_inbound.go

    			cc.port.Protocol = cc.port.Protocol.AfterTLSTermination()
    			lp := istionetworking.ModelProtocolToListenerProtocol(cc.port.Protocol)
    			opts = getTLSFilterChainMatchOptions(lp)
    			mtls.TCP = BuildListenerTLSContext(cc.tlsSettings, lb.node, lb.push.Mesh, istionetworking.TransportProtocolTCP, false)
    			mtls.HTTP = mtls.TCP
    		} else {
    			lp := istionetworking.ModelProtocolToListenerProtocol(cc.port.Protocol)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  6. src/os/exec/exec.go

    			}
    		})
    	}
    
    	if filepath.Base(name) == name {
    		lp, err := LookPath(name)
    		if lp != "" {
    			// Update cmd.Path even if err is non-nil.
    			// If err is ErrDot (especially on Windows), lp may include a resolved
    			// extension (like .exe or .bat) that should be preserved.
    			cmd.Path = lp
    		}
    		if err != nil {
    			cmd.Err = err
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  7. src/sync/pool.go

    	oldPools []*Pool
    )
    
    func init() {
    	runtime_registerPoolCleanup(poolCleanup)
    }
    
    func indexLocal(l unsafe.Pointer, i int) *poolLocal {
    	lp := unsafe.Pointer(uintptr(l) + uintptr(i)*unsafe.Sizeof(poolLocal{}))
    	return (*poolLocal)(lp)
    }
    
    // Implemented in runtime.
    func runtime_registerPoolCleanup(cleanup func())
    func runtime_procPin() int
    func runtime_procUnpin()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 21:14:51 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. cmd/metrics-v2.go

    		}
    
    		h := dtoMetric.GetHistogram()
    		for _, b := range h.Bucket {
    			labels := make(map[string]string)
    			for _, lp := range dtoMetric.GetLabel() {
    				if *lp.Name == "api" && toLowerAPILabels {
    					labels[*lp.Name] = strings.ToLower(*lp.Value)
    				} else {
    					labels[*lp.Name] = *lp.Value
    				}
    			}
    			labels["le"] = fmt.Sprintf("%.3f", *b.UpperBound)
    			metric := MetricV2{
    				Description:    desc,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:54 UTC 2024
    - 131.9K bytes
    - Viewed (0)
  9. pkg/proxy/winkernel/proxier.go

    }
    
    type localPort struct {
    	desc     string
    	ip       string
    	port     int
    	protocol string
    }
    
    func (lp *localPort) String() string {
    	return fmt.Sprintf("%q (%s:%d/%s)", lp.desc, lp.ip, lp.port, lp.protocol)
    }
    
    func Enum(p v1.Protocol) uint16 {
    	if p == v1.ProtocolTCP {
    		return 6
    	}
    	if p == v1.ProtocolUDP {
    		return 17
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 13:25:06 UTC 2024
    - 59K bytes
    - Viewed (0)
  10. pkg/dns/client/dns.go

    	if len(req.Question) == 0 {
    		response = new(dns.Msg)
    		response.SetReply(req)
    		response.Rcode = dns.RcodeServerFailure
    		_ = w.WriteMsg(response)
    		return
    	}
    
    	lp := h.lookupTable.Load()
    	hostname := strings.ToLower(req.Question[0].Name)
    	if lp == nil {
    		if h.respondBeforeSync {
    			response = h.upstream(proxy, req, hostname)
    			response.Truncate(size(proxy.protocol, req))
    			_ = w.WriteMsg(response)
    		} else {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 16:17:34 UTC 2024
    - 23.9K bytes
    - Viewed (0)
Back to top