Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 12 for Ashmem (0.19 sec)

  1. platforms/core-runtime/process-services/src/test/groovy/org/gradle/process/internal/health/memory/MemInfoOsMemoryInfoTest.groovy

    Unevictable:           0 kB
    Mlocked:               0 kB
    SwapTotal:             0 kB
    SwapFree:              0 kB
    Dirty:                20 kB
    Writeback:             0 kB
    AnonPages:      17189100 kB
    Mapped:            24008 kB
    Shmem:              1312 kB
    Slab:            1291916 kB
    SReclaimable:    1236196 kB
    SUnreclaim:        55720 kB
    KernelStack:        2888 kB
    PageTables:        41200 kB
    NFS_Unstable:          0 kB
    Bounce:                0 kB
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:10:02 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  2. pkg/kubelet/util/swap/swap_util.go

    		if sysruntime.GOOS == "windows" {
    			return false
    		}
    
    		if inuserns.RunningInUserNS() {
    			// Turning off swap in unprivileged tmpfs mounts unsupported
    			// https://github.com/torvalds/linux/blob/v6.8/mm/shmem.c#L4004-L4011
    			// https://github.com/kubernetes/kubernetes/issues/125137
    			klog.InfoS("Running under a user namespace - tmpfs noswap is not supported")
    			return false
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 10:07:06 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/arch/x86/x86asm/gnu.go

    		// so that the reader can tell the size of memory operand.
    		// up with the same arguments
    		dst, _ := inst.Args[0].(Reg)
    		src, _ := inst.Args[1].(Reg)
    		if ES <= src && src <= GS && isMem(inst.Args[0]) || ES <= dst && dst <= GS && isMem(inst.Args[1]) {
    			unmarkImplicit(&inst, PrefixDataSize)
    		}
    
    	case MOVDQU:
    		if countPrefix(&inst, 0xF3) > 1 {
    			unmarkImplicit(&inst, 0xF3)
    			markLastImplicit(&inst, 0xF3)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 21.4K bytes
    - Viewed (0)
  4. src/internal/trace/traceviewer/static/trace_viewer_full.html

    const SYSTEM_VALUE_COMPONENTS={'':{classificationPath:[],},'java_heap':{classificationPath:['Android','Java runtime','Spaces'],userFriendlyName:'the Java heap'},'ashmem':{classificationPath:['Android','Ashmem'],userFriendlyName:'ashmem'},'native_heap':{classificationPath:['Native heap'],userFriendlyName:'the native heap'},'stack':{classificationPath:['Stack'],userFriendlyName:'the thread stacks'}};function getDescendantVmRegionClassificationNode(node,path){for(let...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/arch/x86/x86asm/inst.go

    	}
    	return buf.String()
    }
    
    func isReg(a Arg) bool {
    	_, ok := a.(Reg)
    	return ok
    }
    
    func isSegReg(a Arg) bool {
    	r, ok := a.(Reg)
    	return ok && ES <= r && r <= GS
    }
    
    func isMem(a Arg) bool {
    	_, ok := a.(Mem)
    	return ok
    }
    
    func isImm(a Arg) bool {
    	_, ok := a.(Imm)
    	return ok
    }
    
    func regBytes(a Arg) int {
    	r, ok := a.(Reg)
    	if !ok {
    		return 0
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/arch/x86/x86asm/decode.go

    		switch inst.Op {
    		// TODO(rsc): Perhaps this instruction class should be derived from the CSV.
    		case ADD, ADC, AND, BTC, BTR, BTS, CMPXCHG, CMPXCHG8B, CMPXCHG16B, DEC, INC, NEG, NOT, OR, SBB, SUB, XOR, XADD, XCHG:
    			if isMem(inst.Args[0]) {
    				hasLock = true
    				break
    			}
    			fallthrough
    		default:
    			inst.Prefix[lockIndex] |= PrefixInvalid
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 10 18:59:52 UTC 2023
    - 45.1K bytes
    - Viewed (0)
  7. src/syscall/zsyscall_windows.go

    	handle = Handle(r0)
    	if handle == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LocalFree(hmem Handle) (handle Handle, err error) {
    	r0, _, e1 := Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)
    	handle = Handle(r0)
    	if handle != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 56.3K bytes
    - Viewed (0)
  8. src/syscall/syscall_windows.go

    //sys	GetCommandLine() (cmd *uint16) = kernel32.GetCommandLineW
    //sys	CommandLineToArgv(cmd *uint16, argc *int32) (argv *[8192]*[8192]uint16, err error) [failretval==nil] = shell32.CommandLineToArgvW
    //sys	LocalFree(hmem Handle) (handle Handle, err error) [failretval!=0]
    //sys	SetHandleInformation(handle Handle, mask uint32, flags uint32) (err error)
    //sys	FlushFileBuffers(handle Handle) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/windows/zsyscall_windows.go

    	ptr = uintptr(r0)
    	if ptr == 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    func LocalFree(hmem Handle) (handle Handle, err error) {
    	r0, _, e1 := syscall.Syscall(procLocalFree.Addr(), 1, uintptr(hmem), 0, 0)
    	handle = Handle(r0)
    	if handle != 0 {
    		err = errnoErr(e1)
    	}
    	return
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 195.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/windows/syscall_windows.go

    //sys	GetCommandLine() (cmd *uint16) = kernel32.GetCommandLineW
    //sys	commandLineToArgv(cmd *uint16, argc *int32) (argv **uint16, err error) [failretval==nil] = shell32.CommandLineToArgvW
    //sys	LocalFree(hmem Handle) (handle Handle, err error) [failretval!=0]
    //sys	LocalAlloc(flags uint32, length uint32) (ptr uintptr, err error)
    //sys	SetHandleInformation(handle Handle, mask uint32, flags uint32) (err error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 05 22:18:42 UTC 2024
    - 82.8K bytes
    - Viewed (0)
Back to top