Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 34 of 34 for jprofiler (0.25 sec)

  1. CHANGELOG/CHANGELOG-1.31.md

    - Users can traverse all the pods that are in the scheduler and waiting in the permit stage through method `IterateOverWaitingPods`. In other words,  all waitingPods in scheduler can be obtained from any profiles. Before this commit, each profile could only obtain waitingPods within that profile. ([#124926](https://github.com/kubernetes/kubernetes/pull/124926), [@kerthcet](https://github.com/kerthcet)) [SIG Scheduling]
    
    ### Failing Test
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:34:14 UTC 2024
    - 60.3K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/mylasta/direction/FessProp.java

                            || "error".equalsIgnoreCase(v.getValue3()) || "login".equalsIgnoreCase(v.getValue3())
                            || "profile".equalsIgnoreCase(v.getValue3())) {
                        return false;
                    }
                    return true;
                }).toArray(n -> new Tuple3[n]));
                propMap.put(VIRTUAL_HOST_HEADERS, hosts);
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 85K bytes
    - Viewed (0)
  3. src/runtime/mheap.go

    	}
    	unlock(&span.speciallock)
    	releasem(mp)
    
    	return handle
    }
    
    // The described object is being heap profiled.
    type specialprofile struct {
    	_       sys.NotInHeap
    	special special
    	b       *bucket
    }
    
    // Set the heap profile bucket associated with addr to b.
    func setprofilebucket(p unsafe.Pointer, b *bucket) {
    	lock(&mheap_.speciallock)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 78K bytes
    - Viewed (0)
  4. src/runtime/malloc.go

    	fullSize := span.elemsize
    	if rate := MemProfileRate; rate > 0 {
    		// Note cache c only valid while m acquired; see #47302
    		//
    		// N.B. Use the full size because that matches how the GC
    		// will update the mem profile on the "free" side.
    		if rate != 1 && fullSize < c.nextSample {
    			c.nextSample -= fullSize
    		} else {
    			profilealloc(mp, x, fullSize)
    		}
    	}
    	mp.mallocing = 0
    	releasem(mp)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
Back to top