Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 8 of 8 for lp (0.02 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. 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)
  3. 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)
  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. 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)
  6. ReadMe.md

     * [Kotlin Multiplatform Mobile](https://kotlinlang.org/lp/mobile/) for sharing code between Android and iOS
     * [Getting Started with Kotlin Multiplatform Mobile Guide](https://kotlinlang.org/docs/mobile/create-first-app.html)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 11 14:28:46 UTC 2024
    - 8.7K bytes
    - Viewed (0)
  7. src/net/http/sniff.go

    	},
    	// 6.2.0.2. video/mp4
    	mp4Sig{},
    	// 6.2.0.3. video/webm
    	&exactSig{[]byte("\x1A\x45\xDF\xA3"), "video/webm"},
    
    	// Font types
    	&maskedSig{
    		// 34 NULL bytes followed by the string "LP"
    		pat: []byte("\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00\x00LP"),
    		// 34 NULL bytes followed by \xF\xF
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 20 21:51:06 UTC 2022
    - 7.9K bytes
    - Viewed (0)
  8. src/crypto/tls/testdata/Server-TLSv13-HelloRetryRequest

    00000260  3d 49 5f 9c 7e 21 7e cc  9b 09 38 3c e5 33 9f 11  |=I_.~!~...8<.3..|
    00000270  2e eb a0 d6 df cd 86 ef  3c 6d b8 d4 5c 8b b4 ce  |........<m..\...|
    00000280  8a f4 ef f8 78 5e ad c2  ea 52 ed 30 a2 4c 50 d2  |....x^...R.0.LP.|
    00000290  8a 4e 9e 1b 2a e6 04 86  e2 b8 84 f3 fe 6e 34 78  |.N..*........n4x|
    000002a0  28 fb 97 d7 30 66 a7 20  57 c1 ca e4 0c 7f a0 2c  |(...0f. W......,|
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 25 00:14:50 UTC 2023
    - 9.2K bytes
    - Viewed (0)
Back to top