Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for lp (0.05 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. cluster/images/etcd-version-monitor/etcd-version-monitor.go

    	for i, lp := range m.Label {
    		r.Label[i] = deepCopyLabelPair(lp)
    	}
    	r.Gauge = m.Gauge
    	r.Counter = m.Counter
    	r.Summary = m.Summary
    	r.Untyped = m.Untyped
    	r.Histogram = m.Histogram
    	r.TimestampMs = m.TimestampMs
    	return r
    }
    
    func deepCopyLabelPair(lp *dto.LabelPair) *dto.LabelPair {
    	r := &dto.LabelPair{}
    	r.Name = lp.Name
    	r.Value = lp.Value
    	return r
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Dec 16 06:50:02 UTC 2023
    - 11.5K 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. 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)
  5. 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)
  6. 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)
  7. src/cmd/cgo/internal/testcshared/cshared_test.go

    			// Some compilers report slash-separated paths without extensions
    			// instead of ordinary Windows paths.
    			// Try to find the canonical name for the path.
    			if lp, err := exec.LookPath(dlltoolpath); err == nil {
    				dlltoolpath = lp
    			}
    		}
    
    		args := []string{dlltoolpath, "-D", args[6], "-l", libgoname, "-d", "libgo.def"}
    
    		if filepath.Ext(dlltoolpath) == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 14 13:19:50 UTC 2023
    - 21K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Client-TLSv12-ClientCert-RSA-RSAPKCS1v15

    >>> Flow 4 (server to client)
    00000000  14 03 03 00 01 01 16 03  03 00 28 f8 f5 85 19 36  |..........(....6|
    00000010  be 6e 58 45 66 04 c4 f9  e7 fd 50 55 3b 07 6c 50  |.nXEf.....PU;.lP|
    00000020  16 8c 2e 72 cf be 78 0a  8a 82 91 ed c1 72 10 d3  |...r..x......r..|
    00000030  cf 42 b5                                          |.B.|
    >>> Flow 5 (client to server)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:33:38 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/work/buildid.go

    		if len(fields) == 0 {
    			return "", "", fmt.Errorf("%s: compilation command confusion %q", name, out)
    		}
    		exe = fields[0]
    		if !strings.ContainsAny(exe, `/\`) {
    			if lp, err := cfg.LookPath(exe); err == nil {
    				exe = lp
    			}
    		}
    		id, err = buildid.ReadFile(exe)
    		if err != nil {
    			return "", "", err
    		}
    
    		// If we can't find a build ID, use a hash.
    		if id == "" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:31:25 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  10. src/path/filepath/path_test.go

    		return
    	}
    	wd, _ := os.Getwd()
    	if len(wd) < 3 {
    		t.Errorf("Current directory path %q is too short", wd)
    	}
    	lp := strings.ToLower(wd)
    	up := strings.ToUpper(wd)
    	flp, err := filepath.EvalSymlinks(lp)
    	if err != nil {
    		t.Fatalf("EvalSymlinks(%q) failed: %q", lp, err)
    	}
    	fup, err := filepath.EvalSymlinks(up)
    	if err != nil {
    		t.Fatalf("EvalSymlinks(%q) failed: %q", up, err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 22 16:38:19 UTC 2024
    - 47.1K bytes
    - Viewed (0)
Back to top