_id stringlengths 2 7 | text stringlengths 6 2.61k | title stringclasses 1
value |
|---|---|---|
c14400 | // AddProcessRlimits adds rlimit into g.Config.Process.Rlimits. | |
c14401 | // RemoveProcessRlimits removes a rlimit from g.Config.Process.Rlimits. | |
c14402 | // ClearProcessRlimits clear g.Config.Process.Rlimits. | |
c14403 | // ClearProcessAdditionalGids clear g.Config.Process.AdditionalGids. | |
c14404 | // AddProcessAdditionalGid adds an additional gid into g.Config.Process.AdditionalGids. | |
c14405 | // SetProcessSelinuxLabel sets g.Config.Process.SelinuxLabel. | |
c14406 | // SetLinuxCgroupsPath sets g.Config.Linux.CgroupsPath. | |
c14407 | // SetLinuxIntelRdtL3CacheSchema sets g.Config.Linux.IntelRdt.L3CacheSchema | |
c14408 | // SetLinuxMountLabel sets g.Config.Linux.MountLabel. | |
c14409 | // SetProcessOOMScoreAdj sets g.Config.Process.OOMScoreAdj. | |
c14410 | // SetLinuxResourcesBlockIOLeafWeight sets g.Config.Linux.Resources.BlockIO.LeafWeight. | |
c14411 | // SetLinuxResourcesBlockIOWeight sets g.Config.Linux.Resources.BlockIO.Weight. | |
c14412 | // AddLinuxResourcesBlockIOWeightDevice adds or sets g.Config.Linux.Resources.BlockIO.WeightDevice.Weight. | |
c14413 | // DropLinuxResourcesBlockIOWeightDevice drops a item form g.Config.Linux.Resources.BlockIO.WeightDevice.Weight | |
c14414 | // AddLinuxResourcesBlockIOThrottleReadBpsDevice adds or sets g.Config.Linux.Resources.BlockIO.ThrottleReadBpsDevice. | |
c14415 | // DropLinuxResourcesBlockIOThrottleReadBpsDevice drops a item from g.Config.Linux.Resources.BlockIO.ThrottleReadBpsDevice. | |
c14416 | // AddLinuxResourcesBlockIOThrottleReadIOPSDevice adds or sets g.Config.Linux.Resources.BlockIO.ThrottleReadIOPSDevice. | |
c14417 | // DropLinuxResourcesBlockIOThrottleReadIOPSDevice drops a item from g.Config.Linux.Resources.BlockIO.ThrottleReadIOPSDevice. | |
c14418 | // AddLinuxResourcesBlockIOThrottleWriteBpsDevice adds or sets g.Config.Linux.Resources.BlockIO.ThrottleWriteBpsDevice. | |
c14419 | // DropLinuxResourcesBlockIOThrottleWriteBpsDevice drops a item from g.Config.Linux.Resources.BlockIO.ThrottleWriteBpsDevice. | |
c14420 | // AddLinuxResourcesBlockIOThrottleWriteIOPSDevice adds or sets g.Config.Linux.Resources.BlockIO.ThrottleWriteIOPSDevice. | |
c14421 | // DropLinuxResourcesBlockIOThrottleWriteIOPSDevice drops a item from g.Config.Linux.Resources.BlockIO.ThrottleWriteIOPSDevice. | |
c14422 | // SetLinuxResourcesCPUShares sets g.Config.Linux.Resources.CPU.Shares. | |
c14423 | // SetLinuxResourcesCPUQuota sets g.Config.Linux.Resources.CPU.Quota. | |
c14424 | // SetLinuxResourcesCPUPeriod sets g.Config.Linux.Resources.CPU.Period. | |
c14425 | // SetLinuxResourcesCPURealtimeRuntime sets g.Config.Linux.Resources.CPU.RealtimeRuntime. | |
c14426 | // SetLinuxResourcesCPURealtimePeriod sets g.Config.Linux.Resources.CPU.RealtimePeriod. | |
c14427 | // SetLinuxResourcesCPUCpus sets g.Config.Linux.Resources.CPU.Cpus. | |
c14428 | // SetLinuxResourcesCPUMems sets g.Config.Linux.Resources.CPU.Mems. | |
c14429 | // AddLinuxResourcesHugepageLimit adds or sets g.Config.Linux.Resources.HugepageLimits. | |
c14430 | // DropLinuxResourcesHugepageLimit drops a hugepage limit from g.Config.Linux.Resources.HugepageLimits. | |
c14431 | // SetLinuxResourcesMemoryLimit sets g.Config.Linux.Resources.Memory.Limit. | |
c14432 | // SetLinuxResourcesMemoryReservation sets g.Config.Linux.Resources.Memory.Reservation. | |
c14433 | // SetLinuxResourcesMemorySwap sets g.Config.Linux.Resources.Memory.Swap. | |
c14434 | // SetLinuxResourcesMemoryKernel sets g.Config.Linux.Resources.Memory.Kernel. | |
c14435 | // SetLinuxResourcesMemoryKernelTCP sets g.Config.Linux.Resources.Memory.KernelTCP. | |
c14436 | // SetLinuxResourcesMemorySwappiness sets g.Config.Linux.Resources.Memory.Swappiness. | |
c14437 | // SetLinuxResourcesMemoryDisableOOMKiller sets g.Config.Linux.Resources.Memory.DisableOOMKiller. | |
c14438 | // SetLinuxResourcesNetworkClassID sets g.Config.Linux.Resources.Network.ClassID. | |
c14439 | // AddLinuxResourcesNetworkPriorities adds or sets g.Config.Linux.Resources.Network.Priorities. | |
c14440 | // DropLinuxResourcesNetworkPriorities drops one item from g.Config.Linux.Resources.Network.Priorities. | |
c14441 | // SetLinuxResourcesPidsLimit sets g.Config.Linux.Resources.Pids.Limit. | |
c14442 | // ClearLinuxSysctl clears g.Config.Linux.Sysctl. | |
c14443 | // AddLinuxSysctl adds a new sysctl config into g.Config.Linux.Sysctl. | |
c14444 | // RemoveLinuxSysctl removes a sysctl config from g.Config.Linux.Sysctl. | |
c14445 | // ClearLinuxUIDMappings clear g.Config.Linux.UIDMappings. | |
c14446 | // AddLinuxUIDMapping adds uidMap into g.Config.Linux.UIDMappings. | |
c14447 | // ClearLinuxGIDMappings clear g.Config.Linux.GIDMappings. | |
c14448 | // SetLinuxRootPropagation sets g.Config.Linux.RootfsPropagation. | |
c14449 | // ClearPreStartHooks clear g.Config.Hooks.Prestart. | |
c14450 | // AddPreStartHook add a prestart hook into g.Config.Hooks.Prestart. | |
c14451 | // ClearPostStopHooks clear g.Config.Hooks.Poststop. | |
c14452 | // AddPostStopHook adds a poststop hook into g.Config.Hooks.Poststop. | |
c14453 | // ClearPostStartHooks clear g.Config.Hooks.Poststart. | |
c14454 | // AddPostStartHook adds a poststart hook into g.Config.Hooks.Poststart. | |
c14455 | // AddMount adds a mount into g.Config.Mounts. | |
c14456 | // RemoveMount removes a mount point on the dest directory | |
c14457 | // Mounts returns the list of mounts | |
c14458 | // ClearMounts clear g.Config.Mounts | |
c14459 | // SetupPrivileged sets up the privilege-related fields inside g.Config. | |
c14460 | // ClearProcessCapabilities clear g.Config.Process.Capabilities. | |
c14461 | // AddProcessCapability adds a process capability into all 5 capability sets. | |
c14462 | // AddProcessCapabilityAmbient adds a process capability into g.Config.Process.Capabilities.Ambient. | |
c14463 | // AddProcessCapabilityBounding adds a process capability into g.Config.Process.Capabilities.Bounding. | |
c14464 | // AddProcessCapabilityEffective adds a process capability into g.Config.Process.Capabilities.Effective. | |
c14465 | // AddProcessCapabilityInheritable adds a process capability into g.Config.Process.Capabilities.Inheritable. | |
c14466 | // AddProcessCapabilityPermitted adds a process capability into g.Config.Process.Capabilities.Permitted. | |
c14467 | // DropProcessCapability drops a process capability from all 5 capability sets. | |
c14468 | // DropProcessCapabilityAmbient drops a process capability from g.Config.Process.Capabilities.Ambient. | |
c14469 | // ClearLinuxNamespaces clear g.Config.Linux.Namespaces. | |
c14470 | // AddOrReplaceLinuxNamespace adds or replaces a namespace inside
// g.Config.Linux.Namespaces. | |
c14471 | // RemoveLinuxNamespace removes a namespace from g.Config.Linux.Namespaces. | |
c14472 | // AddDevice - add a device into g.Config.Linux.Devices | |
c14473 | // RemoveDevice remove a device from g.Config.Linux.Devices | |
c14474 | // ClearLinuxDevices clears g.Config.Linux.Devices | |
c14475 | // AddLinuxResourcesDevice - add a device into g.Config.Linux.Resources.Devices | |
c14476 | // RemoveLinuxResourcesDevice - remove a device from g.Config.Linux.Resources.Devices | |
c14477 | // SetSyscallAction adds rules for syscalls with the specified action | |
c14478 | // SetDefaultSeccompAction sets the default action for all syscalls not defined
// and then removes any syscall rules with this action already specified. | |
c14479 | // SetDefaultSeccompActionForce only sets the default action for all syscalls not defined | |
c14480 | // SetSeccompArchitecture sets the supported seccomp architectures | |
c14481 | // RemoveSeccompRule removes rules for any specified syscalls | |
c14482 | // RemoveAllSeccompRules removes all syscall rules | |
c14483 | // AddLinuxMaskedPaths adds masked paths into g.Config.Linux.MaskedPaths. | |
c14484 | // AddLinuxReadonlyPaths adds readonly paths into g.Config.Linux.MaskedPaths. | |
c14485 | // AddSolarisAnet adds network into g.Config.Solaris.Anet | |
c14486 | // SetSolarisCappedCPUNcpus sets g.Config.Solaris.CappedCPU.Ncpus | |
c14487 | // SetSolarisCappedMemoryPhysical sets g.Config.Solaris.CappedMemory.Physical | |
c14488 | // SetSolarisCappedMemorySwap sets g.Config.Solaris.CappedMemory.Swap | |
c14489 | // SetSolarisLimitPriv sets g.Config.Solaris.LimitPriv | |
c14490 | // SetSolarisMaxShmMemory sets g.Config.Solaris.MaxShmMemory | |
c14491 | // SetSolarisMilestone sets g.Config.Solaris.Milestone | |
c14492 | // SetVMHypervisorPath sets g.Config.VM.Hypervisor.Path | |
c14493 | // SetVMHypervisorParameters sets g.Config.VM.Hypervisor.Parameters | |
c14494 | // SetVMKernelPath sets g.Config.VM.Kernel.Path | |
c14495 | // SetVMKernelParameters sets g.Config.VM.Kernel.Parameters | |
c14496 | // SetVMKernelInitRD sets g.Config.VM.Kernel.InitRD | |
c14497 | // SetVMImagePath sets g.Config.VM.Image.Path | |
c14498 | // SetVMImageFormat sets g.Config.VM.Image.Format | |
c14499 | // SetWindowsHypervUntilityVMPath sets g.Config.Windows.HyperV.UtilityVMPath. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.