Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 263 for p$ (0.04 sec)

  1. src/runtime/mheap.go

    	if s == nil || s.state.get() != mSpanInUse || p < s.base() || p >= s.limit {
    		return nil
    	}
    	return s
    }
    
    // pageIndexOf returns the arena, page index, and page mask for pointer p.
    // The caller must ensure p is in the heap.
    func pageIndexOf(p uintptr) (arena *heapArena, pageIdx uintptr, pageMask uint8) {
    	ai := arenaIndex(p)
    	arena = mheap_.arenas[ai.l1()][ai.l2()]
    	pageIdx = ((p / pageSize) / 8) % uintptr(len(arena.pageInUse))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/core/io/CopyUtil.java

     * <td>文字</td>
     * <td>文字</td>
     * <td>×</td>
     * </tr>
     * </table>
     * <p>
     * 引数に{@link InputStream}/{@link OutputStream}/{@link Reader}/{@link Writer}
     * を受け取るメソッドは、 どれも引数に対して{@link Closeable#close()}を呼び出しません。 クローズする責務は呼び出し側にあります。
     * </p>
     * <p>
     * どのメソッドも発生した{@link IOException}は{@link IORuntimeException}にラップしてスローされます。
     * </p>
     *
     * @author koichik
     */
    public abstract class CopyUtil {
    
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  3. src/net/url/url_test.go

    	{"http://a/b/c/d;p?q", "g#s", "http://a/b/c/g#s"},
    	{"http://a/b/c/d;p?q", "g?y#s", "http://a/b/c/g?y#s"},
    	{"http://a/b/c/d;p?q", ";x", "http://a/b/c/;x"},
    	{"http://a/b/c/d;p?q", "g;x", "http://a/b/c/g;x"},
    	{"http://a/b/c/d;p?q", "g;x?y#s", "http://a/b/c/g;x?y#s"},
    	{"http://a/b/c/d;p?q", "", "http://a/b/c/d;p?q"},
    	{"http://a/b/c/d;p?q", ".", "http://a/b/c/"},
    	{"http://a/b/c/d;p?q", "./", "http://a/b/c/"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:52:38 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  4. src/runtime/pprof/pprof_test.go

    		// proto format
    		var w bytes.Buffer
    		Lookup("block").WriteTo(&w, 0)
    		p, err := profile.Parse(&w)
    		if err != nil {
    			t.Fatalf("failed to parse profile: %v", err)
    		}
    		t.Logf("parsed proto: %s", p)
    		if err := p.CheckValid(); err != nil {
    			t.Fatalf("invalid profile: %v", err)
    		}
    
    		stks := stacks(p)
    		for _, test := range tests {
    			if !containsStack(stks, test.stk) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 68.8K bytes
    - Viewed (0)
  5. src/cmd/asm/internal/asm/testdata/arm64.s

    	VLD1.P	(R3), [V31.H8, V0.H8]                           // 7fa4df4c
    	VLD1.P	(R8)(R20), [V21.B16, V22.B16]                   // 15a1d44c
    	VLD1.P	64(R1), [V5.B16, V6.B16, V7.B16, V8.B16]        // 2520df4c
    	VLD1.P	1(R0), V4.B[15]                                 // 041cdf4d
    	VLD1.P	2(R0), V4.H[7]                                  // 0458df4d
    	VLD1.P	4(R0), V4.S[3]                                  // 0490df4d
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 08 03:28:17 UTC 2023
    - 94.9K bytes
    - Viewed (0)
  6. src/fmt/fmt_test.go

    	{"%-10T", nil, "<nil>     "},
    
    	// %p with pointers
    	{"%p", (*int)(nil), "0x0"},
    	{"%#p", (*int)(nil), "0"},
    	{"%p", &intVar, "0xPTR"},
    	{"%#p", &intVar, "PTR"},
    	{"%p", &array, "0xPTR"},
    	{"%p", &slice, "0xPTR"},
    	{"%8.2p", (*int)(nil), "    0x00"},
    	{"%-20.16p", &intVar, "0xPTR  "},
    	// %p on non-pointers
    	{"%p", make(chan int), "0xPTR"},
    	{"%p", make(map[int]int), "0xPTR"},
    	{"%p", func() {}, "0xPTR"},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:31:55 UTC 2024
    - 58.6K bytes
    - Viewed (0)
  7. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        validate20PluginVersion(
                                "build.plugins.plugin.version", problems, p.getVersion(), p.getKey(), p, request);
    
                        validateBoolean(
                                "build.plugins.plugin.inherited",
                                EMPTY,
                                problems,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/collect/Iterators.java

       * }</pre>
       *
       * <p>Any structural changes to the underlying iteration (aside from those performed by the
       * iterator's own {@link PeekingIterator#remove()} method) will leave the iterator in an undefined
       * state.
       *
       * <p>The returned iterator does not support removal after peeking, as explained by {@link
       * PeekingIterator#remove()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  9. guava/src/com/google/common/collect/Iterators.java

       * }</pre>
       *
       * <p>Any structural changes to the underlying iteration (aside from those performed by the
       * iterator's own {@link PeekingIterator#remove()} method) will leave the iterator in an undefined
       * state.
       *
       * <p>The returned iterator does not support removal after peeking, as explained by {@link
       * PeekingIterator#remove()}.
       *
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 03 14:46:32 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  10. src/cmd/go/go_test.go

    	tg.setenv("GOCACHE", tg.path("cache"))
    	tg.tempFile("gopath1/src/p/p.go", "package p; func F(){}\n")
    	tg.tempFile("gopath2/src/p/p.go", "package p; func F(){}\n")
    
    	tg.setenv("GOPATH", tg.path("gopath1"))
    	tg.run("list", "-f={{.Target}}", "p")
    	target1 := strings.TrimSpace(tg.getStdout())
    	tg.run("install", "p")
    	tg.wantNotStale("p", "", "p stale after install")
    
    	tg.setenv("GOPATH", tg.path("gopath2"))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 81.1K bytes
    - Viewed (0)
Back to top