Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 34 for jprofiler (0.22 sec)

  1. src/runtime/mgcmark.go

    )
    
    // gcDrainMarkWorkerIdle is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    func gcDrainMarkWorkerIdle(gcw *gcWork) {
    	gcDrain(gcw, gcDrainIdle|gcDrainUntilPreempt|gcDrainFlushBgCredit)
    }
    
    // gcDrainMarkWorkerDedicated is a wrapper for gcDrain that exists to better account
    // mark time in profiles.
    func gcDrainMarkWorkerDedicated(gcw *gcWork, untilPreempt bool) {
    	flags := gcDrainFlushBgCredit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. pkg/kubelet/server/server_test.go

    		"/run", "/exec", "/attach", "/portForward", "/containerLogs", "/runningpods",
    		"/run/", "/exec/", "/attach/", "/portForward/", "/containerLogs/", "/runningpods/",
    		"/run/xxx", "/exec/xxx", "/attach/xxx", "/debug/pprof/profile", "/logs/kubelet.log",
    	}
    
    	for _, p := range paths {
    		verifyEndpointResponse(t, fw, p, "Debug endpoints are disabled.\n")
    	}
    }
    
    func TestDisablingLogAndProfilingHandler(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  3. cluster/gce/windows/k8s-node-setup.psm1

          -URLs "https://storage.googleapis.com/gke-release/winnode/config/gce-tools/master/GetGcePdName/GetGcePdName.dll"
      }
      if (-not (Test-Path $PsHome\profile.ps1)) {
        New-Item -path $PsHome\profile.ps1 -type file
      }
    
      Add-Content $PsHome\profile.ps1 `
      '$modulePath = "K8S_DIR\GetGcePdName.dll"
      Unblock-File $modulePath
      Import-Module -Name $modulePath'.replace('K8S_DIR', ${env:K8S_DIR})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top