Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 162 for pages64 (0.13 sec)

  1. src/runtime/sys_openbsd_386.s

    	MOVL	0(DX), AX
    	MOVL	4(DX), BX
    	MOVL	8(DX), CX
    	MOVL	AX, 0(SP)		// arg 1 - addr
    	MOVL	BX, 4(SP)		// arg 2 - len
    	MOVL	CX, 8(SP)		// arg 3 - advice
    	CALL	libc_madvise(SB)
    	// ignore failure - maybe pages are locked
    	MOVL	BP, SP
    	POPL	BP
    	RET
    
    TEXT runtimeĀ·open_trampoline(SB),NOSPLIT,$0
    	PUSHL	BP
    	MOVL	SP, BP
    	SUBL	$16, SP
    	MOVL	24(SP), DX		// pointer to args
    	MOVL	0(DX), AX
    	MOVL	4(DX), BX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 20.4K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/container_manager_linux.go

    	_, err := os.Readlink(fmt.Sprintf("/proc/%d/exe", pid))
    	return err != nil && os.IsNotExist(err)
    }
    
    // GetCapacity returns node capacity data for "cpu", "memory", "ephemeral-storage", and "huge-pages*"
    // At present this method is only invoked when introspecting ephemeral storage
    func (cm *containerManagerImpl) GetCapacity(localStorageCapacityIsolation bool) v1.ResourceList {
    	if localStorageCapacityIsolation {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  3. okhttp/src/main/resources/okhttp3/internal/publicsuffix/PublicSuffixDatabase.gz

    ozu.kumamoto.jp p.bg p.se pa pa.gov.br pa.gov.pl pa.it pa.leg.br pa.us paas.beebyte.io paas.datacenter.fi paas.hosted-by-previder.com paas.massivegrid.com pacific.museum paderborn.museum padova.it padua.it page pagefrontapp.com pages.dev pages.it.hs-heilbronn.de pages.torproject.net pages.wiardweb.com pagespeedmobilizer.com pagexl.com palace.museum paleo.museum palermo.it palmas.br palmsprings.museum panama.museum panasonic panel.gg pantheonsite.io parachuting.aero paragliding.aero parallel.jp parasite.jp...
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 40.4K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/memorymanager/policy_static.go

    			NumberOfAssignments: 0,
    			MemoryMap:           map[v1.ResourceName]*state.MemoryTable{},
    			Cells:               []int{node.Id},
    		}
    
    		// fill memory table with huge pages values
    		for _, hugepage := range node.HugePages {
    			hugepageQuantity := resource.NewQuantity(int64(hugepage.PageSize)*1024, resource.BinarySI)
    			resourceName := corehelper.HugePageResourceName(*hugepageQuantity)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Nov 12 07:34:55 UTC 2023
    - 34K bytes
    - Viewed (0)
  5. pkg/kubelet/stats/cri_stats_provider.go

    		// associated cgroup. We ignore them to ensure we do not get duplicate
    		// entries in our summary. For details on .mount units:
    		// http://man7.org/linux/man-pages/man5/systemd.mount.5.html
    		if strings.HasSuffix(key, ".mount") {
    			continue
    		}
    		// Build the Pod key if this container is managed by a Pod
    		if !isPodManagedContainer(&info) {
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 18:46:33 UTC 2023
    - 35.1K bytes
    - Viewed (0)
  6. src/crypto/tls/handshake_client.go

    	} else {
    		// This is a renegotiation handshake. We require that the
    		// server's identity (i.e. leaf certificate) is unchanged and
    		// thus any previous trust decision is still valid.
    		//
    		// See https://mitls.org/pages/attacks/3SHAKE for the
    		// motivation behind this requirement.
    		if !bytes.Equal(c.peerCertificates[0].Raw, certMsg.certificates[0]) {
    			c.sendAlert(alertBadCertificate)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 38.6K bytes
    - Viewed (0)
  7. pkg/ctrlz/assets/static/css/fontawesome-all-5.0.6.css

    ki-square:before{content:"\f264"}.fa-opencart:before{content:"\f23d"}.fa-openid:before{content:"\f19b"}.fa-opera:before{content:"\f26a"}.fa-optin-monster:before{content:"\f23c"}.fa-osi:before{content:"\f41a"}.fa-outdent:before{content:"\f03b"}.fa-page4:before{content:"\f3d7"}.fa-pagelines:before{content:"\f18c"}.fa-paint-brush:before{content:"\f1fc"}.fa-palfed:before{content:"\f3d8"}.fa-paper-plane:before{content:"\f1d8"}.fa-paperclip:before{content:"\f0c6"}.fa-paragraph:before{content:"\f1dd"}....
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 33.9K bytes
    - Viewed (2)
  8. src/runtime/os_windows.go

    			break
    		}
    	}
    
    	if !isASCII {
    		var m uint32
    		isConsole := stdcall2(_GetConsoleMode, handle, uintptr(unsafe.Pointer(&m))) != 0
    		// If this is a console output, various non-unicode code pages can be in use.
    		// Use the dedicated WriteConsole call to ensure unicode is printed correctly.
    		if isConsole {
    			return int32(writeConsole(handle, buf, n))
    		}
    	}
    	var written uint32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 41.5K bytes
    - Viewed (0)
  9. okhttp/src/test/resources/okhttp3/internal/publicsuffix/public_suffix_list.dat

    // Submitted by Shahidh K Muhammed <******@****.***>
    hasura.app
    hasura-app.io
    
    // Heilbronn University of Applied Sciences - Faculty Informatics (GitLab Pages): https://www.hs-heilbronn.de
    // Submitted by Richard Zowalla <******@****.***>
    pages.it.hs-heilbronn.de
    
    // Hepforge : https://www.hepforge.org
    // Submitted by David Grellscheid <******@****.***>
    hepforge.org
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Dec 20 23:27:07 UTC 2023
    - 240.3K bytes
    - Viewed (0)
  10. src/runtime/trace.go

    	lock(&sched.sysmonlock)
    
    	// Grab the minimum page heap address. All Ps are stopped, so it's safe to read this since
    	// nothing can allocate heap memory.
    	trace.minPageHeapAddr = uint64(mheap_.pages.inUse.ranges[0].base.addr())
    
    	// Reset mSyscallID on all Ps while we have them stationary and the trace is disabled.
    	for _, pp := range allp {
    		pp.trace.mSyscallID = -1
    	}
    
    	// Start tracing.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
Back to top