Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 40 for profilem (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  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. pkg/proxy/ipvs/proxier.go

    			continue
    		}
    
    		protocol := strings.ToLower(string(svcInfo.Protocol()))
    		// Precompute svcNameString; with many services the many calls
    		// to ServicePortName.String() show up in CPU profiles.
    		svcPortNameString := svcPortName.String()
    
    		// Handle traffic that loops back to the originator with SNAT.
    		for _, e := range proxier.endpointsMap[svcPortName] {
    			ep, ok := e.(*proxy.BaseEndpointInfo)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 28 15:51:23 UTC 2024
    - 77.7K bytes
    - Viewed (0)
  9. 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)
  10. CHANGELOG/CHANGELOG-1.3.md

    #### Docker runtime Known Issues
    
    - Kernel crash with Aufs storage driver on Debian Jessie ([#27885](https://github.com/kubernetes/kubernetes/issues/27885))
      - Consider running the *new* [kubernetes node problem detector](https://github.com/kubernetes/node-problem-detector) to identify this (and other) kernel issues automatically.
    
    - File descriptors are leaked in docker v1.11 ([#275](https://github.com/docker/containerd/issues/275))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 84K bytes
    - Viewed (0)
Back to top