Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 162 for pages64 (0.1 sec)

  1. src/runtime/mgcsweep.go

    				lock(&mheap_.lock)
    
    				// Get released stats.
    				releasedBg := mheap_.pages.scav.releasedBg.Load()
    				releasedEager := mheap_.pages.scav.releasedEager.Load()
    
    				// Print the line.
    				printScavTrace(releasedBg, releasedEager, false)
    
    				// Update the stats.
    				mheap_.pages.scav.releasedBg.Add(-releasedBg)
    				mheap_.pages.scav.releasedEager.Add(-releasedEager)
    				unlock(&mheap_.lock)
    			})
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:52:18 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  2. src/runtime/mem_wasm.go

    	size := growMemory(int32(grow))
    	if size < 0 {
    		return nil
    	}
    	resetMemoryDataView()
    	return unsafe.Pointer(uintptr(size) * physPageSize)
    }
    
    // Implemented in src/runtime/sys_wasm.s
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 488 bytes
    - Viewed (0)
  3. pkg/apis/policy/validation/validation.go

    // IsValidSysctlPattern checks if name is a valid sysctl pattern.
    // i.e. matches sysctlContainSlashPatternRegexp.
    // More info:
    //
    //	https://man7.org/linux/man-pages/man8/sysctl.8.html
    //	https://man7.org/linux/man-pages/man5/sysctl.d.5.html
    func IsValidSysctlPattern(name string) bool {
    	if len(name) > apivalidation.SysctlMaxLength {
    		return false
    	}
    	return sysctlContainSlashPatternRegexp.MatchString(name)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Aug 07 20:44:13 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  4. cmd/kubelet/app/server_others.go

    	if uid := os.Getuid(); uid != 0 {
    		return fmt.Errorf("kubelet needs to run as uid `0`. It is being run as %d", uid)
    	}
    	// TODO: Check if kubelet is running in the `initial` user namespace.
    	// http://man7.org/linux/man-pages/man7/user_namespaces.7.html
    	return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 951 bytes
    - Viewed (0)
  5. src/net/dnsconfig_unix.go

    						n = 1
    					}
    					conf.attempts = n
    				case s == "rotate":
    					conf.rotate = true
    				case s == "single-request" || s == "single-request-reopen":
    					// Linux option:
    					// http://man7.org/linux/man-pages/man5/resolv.conf.5.html
    					// "By default, glibc performs IPv4 and IPv6 lookups in parallel [...]
    					//  This option disables the behavior and makes glibc
    					//  perform the IPv6 and IPv4 requests sequentially."
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 02 22:14:43 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  6. src/runtime/testdata/testprog/gc.go

    	// address space (which may or may not be backed by physical pages)
    	// whereas HeapReleased is an estimate of the amount of bytes returned
    	// to the OS. Their difference then roughly corresponds to the amount
    	// of virtual address space that is backed by physical pages.
    	//
    	// heapBacked also subtracts out maxPageCache bytes of memory because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Oct 02 02:28:27 UTC 2022
    - 12.1K bytes
    - Viewed (0)
  7. .gitignore

    .DS_Store
    .idea/shelf
    /confluence/target
    /dependencies/repo
    /android.tests.dependencies
    /dependencies/android.tests.dependencies
    /dist
    /local
    /gh-pages
    /ideaSDK
    /clionSDK
    /android-studio/sdk
    out/
    /tmp
    /intellij
    workspace.xml
    *.versionsBackup
    /idea/testData/debugger/tinyApp/classes*
    /jps-plugin/testData/kannotator
    /js/js.translator/testData/out/
    /js/js.translator/testData/out-min/
    /js/js.translator/testData/out-pir/
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Feb 21 15:38:02 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  8. src/internal/syscall/unix/nofollow_posix.go

    //   - hurd: who knows if it works at all (https://www.gnu.org/software/hurd/open_issues/open_symlink.html)
    //   - illumos: https://illumos.org/man/2/open
    //   - ios: see darwin
    //   - linux: https://man7.org/linux/man-pages/man2/openat.2.html
    //   - openbsd: https://man.openbsd.org/open.2
    //   - solaris: https://docs.oracle.com/cd/E23824_01/html/821-1463/open-2.html
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:26 UTC 2024
    - 933 bytes
    - Viewed (0)
  9. pkg/kubelet/sysctl/util.go

    )
    
    // ConvertPodSysctlsVariableToDotsSeparator converts sysctls variable in the Pod.Spec.SecurityContext.Sysctls slice into a dot as a separator
    // according to the linux sysctl conversion rules.
    // see https://man7.org/linux/man-pages/man5/sysctl.d.5.html for more details.
    func ConvertPodSysctlsVariableToDotsSeparator(securityContext *v1.PodSecurityContext) {
    	if securityContext == nil {
    		return
    	}
    	for i, sysctl := range securityContext.Sysctls {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 27 22:58:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. src/runtime/sys_wasm.s

    	Get R0
    	I64TruncF64U
    	Return
    
    TEXT runtime·exitThread(SB), NOSPLIT, $0-0
    	UNDEF
    
    TEXT runtime·osyield(SB), NOSPLIT, $0-0
    	UNDEF
    
    TEXT runtime·growMemory(SB), NOSPLIT, $0
    	Get SP
    	I32Load pages+0(FP)
    	GrowMemory
    	I32Store ret+8(FP)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 06 17:48:24 UTC 2023
    - 1.4K bytes
    - Viewed (0)
Back to top