Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 31 for jprofiler (0.15 sec)

  1. pkg/registry/core/pod/strategy_test.go

    				api.DeprecatedAppArmorAnnotationKeyPrefix + "ctr":  api.DeprecatedAppArmorAnnotationValueLocalhostPrefix + testProfile,
    			}, pod.Annotations)
    		},
    	}, {
    		description: "Pod field localhost but profile is nil",
    		pod: &api.Pod{
    			Spec: api.PodSpec{
    				SecurityContext: &api.PodSecurityContext{
    					AppArmorProfile: &api.AppArmorProfile{
    						Type: api.AppArmorProfileTypeLocalhost,
    					},
    				},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    // It provides a certificate verifier, complete with a chain builder.
    //
    // The package targets the X.509 technical profile defined by the IETF (RFC
    // 2459/3280/5280), and as further restricted by the CA/Browser Forum Baseline
    // Requirements. There is minimal support for features outside of these
    // profiles, as the primary goal of the package is to provide compatibility
    // with the publicly trusted TLS certificate ecosystem and its policies and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    	if e != nil {
    		return nil, e
    	}
    	return (*Tokenprimarygroup)(i), nil
    }
    
    // GetUserProfileDirectory retrieves path to the
    // root directory of the access token t user's profile.
    func (t Token) GetUserProfileDirectory() (string, error) {
    	n := uint32(100)
    	for {
    		b := make([]uint16, n)
    		e := GetUserProfileDirectory(t, &b[0], &n)
    		if e == nil {
    			return UTF16ToString(b), nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  4. src/runtime/traceback.go

    //
    // If this frame did a normal call, then frame.pc is a return PC, so this will
    // return frame.pc-1, which points into the CALL instruction. If the frame was
    // interrupted by a signal (e.g., profiler, segv, etc) then frame.pc is for the
    // trapped instruction, so this returns frame.pc. See issue #34123. Finally,
    // frame.pc can be at function entry when the frame is initialized without
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    outsidePlugins,
                    "plugin-all-profiles",
                    "Outside ||${project.basedir}||",
                    "<plugin-all-profiles-out>Outside ||${project.basedir}||</plugin-all-profiles-out>");
    
            // =============================================
            Profile activeProfile = originalModel.getProfiles().stream()
                    .filter(profile -> profile.getId().equals("activeProfile"))
                    .findFirst()
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  6. src/cmd/go/internal/test/test.go

    	    setting runtime.MemProfileRate. See 'go doc runtime.MemProfileRate'.
    	    To profile all memory allocations, use -test.memprofilerate=1.
    
    	-mutexprofile mutex.out
    	    Write a mutex contention profile to the specified file
    	    when all tests are complete.
    	    Writes test binary as -c would.
    
    	-mutexprofilefraction n
    	    Sample 1 in n stack traces of goroutines holding a
    	    contended mutex.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  7. gradle/verification-metadata.xml

                <trusting group="net.rubygrapefruit"/>
                <trusting group="org.gradle"/>
                <trusting group="org.gradle.exemplar"/>
                <trusting group="org.gradle.profiler"/>
                <trusting group="^com[.]gradle($|([.].*))" regex="true"/>
                <trusting group="^org[.]gradle($|([.].*))" regex="true"/>
             </trusted-key>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 22:30:36 UTC 2024
    - 90.1K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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