Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 31 for lp (0.06 sec)

  1. test/typeparam/issue48962.dir/b.go

    import "./a"
    
    type (
    	lA[P any]               [10]P
    	lS[P any]               struct{ f P }
    	lP[P any]               *P
    	lM[K comparable, V any] map[K]V
    )
    
    // local cycles
    type (
    	A  lA[A]            // ERROR "invalid recursive type"
    	S  lS[S]            // ERROR "invalid recursive type"
    	P  lP[P]            // ok (indirection through lP)
    	M1 lM[int, M1]      // ok (indirection through lM)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 24 02:14:15 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  2. 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)
  3. src/cmd/compile/internal/ssa/numberlines.go

    		for _, v := range entries {
    			if f.pass.stats > 1 {
    				f.LogStat("file", v.f, "low", v.lp.first, "high", v.lp.last)
    			}
    			total += uint64(v.lp.last - v.lp.first)
    			if maxfile < v.f {
    				maxfile = v.f
    			}
    			if minline > v.lp.first {
    				minline = v.lp.first
    			}
    			if maxline < v.lp.last {
    				maxline = v.lp.last
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 21:26:13 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top