Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 534 for hostId (0.11 sec)

  1. pkg/kubelet/userns/userns_manager_test.go

    	                        "uidMappings":[ { "hostId":131072, "containerId":0, "length":userNsLength } ],
    	                        "gidMappings":[ { "hostId":131072, "containerId":0, "length":userNsLength }, { "hostId":196608, "containerId":0, "length":65536 } ]
                                   }`,
    			success: false,
    		},
    		{
    			name: "two UID mappings",
    			file: `{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  2. pkg/kubelet/userns/userns_manager.go

    	for _, u := range userNs.UIDMappings {
    		uids = append(uids, &runtimeapi.IDMapping{
    			HostId:      u.HostId,
    			ContainerId: u.ContainerId,
    			Length:      u.Length,
    		})
    	}
    	for _, g := range userNs.GIDMappings {
    		gids = append(gids, &runtimeapi.IDMapping{
    			HostId:      g.HostId,
    			ContainerId: g.ContainerId,
    			Length:      g.Length,
    		})
    	}
    
    	return &runtimeapi.UserNamespace{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  3. src/syscall/exec_linux_test.go

    	cmd := testenv.Command(t, "whoami")
    	cmd.SysProcAttr = &syscall.SysProcAttr{
    		Cloneflags: syscall.CLONE_NEWUSER,
    		UidMappings: []syscall.SysProcIDMap{
    			{ContainerID: 0, HostID: uid, Size: 1},
    		},
    		GidMappings: []syscall.SysProcIDMap{
    			{ContainerID: 0, HostID: gid, Size: 1},
    		},
    		GidMappingsEnableSetgroups: setgroups,
    	}
    	return cmd
    }
    
    func TestCloneNEWUSERAndRemap(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  4. platforms/software/resources-s3/src/integTest/groovy/org/gradle/integtests/resource/s3/fixtures/S3Server.groovy

                    Message("The AWS Access Key Id you provided does not exist in our records.")
                    AWSAccessKeyId("notRelevant")
                    RequestId("stubbedAuthFailureRequestId")
                    HostId("stubbedAuthFailureHostId")
                }
            }
    
            HttpStub httpStub = HttpStub.stubInteraction {
                request {
                    method = 'GET'
                    path = url
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 19:38:08 UTC 2023
    - 22.4K bytes
    - Viewed (0)
  5. api/go1.4.txt

    pkg syscall (linux-arm), type SysProcIDMap struct, Size int
    pkg syscall (linux-arm-cgo), type SysProcAttr struct, GidMappings []SysProcIDMap
    pkg syscall (linux-arm-cgo), type SysProcAttr struct, UidMappings []SysProcIDMap
    pkg syscall (linux-arm-cgo), type SysProcIDMap struct
    pkg syscall (linux-arm-cgo), type SysProcIDMap struct, ContainerID int
    pkg syscall (linux-arm-cgo), type SysProcIDMap struct, HostID int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Dec 12 03:01:01 UTC 2014
    - 34K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    	Resource         string
    	Region           string `xml:"Region,omitempty" json:"Region,omitempty"`
    	RequestID        string `xml:"RequestId" json:"RequestId"`
    	HostID           string `xml:"HostId" json:"HostId"`
    	ActualObjectSize string `xml:"ActualObjectSize,omitempty" json:"ActualObjectSize,omitempty"`
    	RangeRequested   string `xml:"RangeRequested,omitempty" json:"RangeRequested,omitempty"`
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. src/syscall/exec_linux.go

    )
    
    // SysProcIDMap holds Container ID to Host ID mappings used for User Namespaces in Linux.
    // See user_namespaces(7).
    //
    // Note that User Namespaces are not available on a number of popular Linux
    // versions (due to security issues), or are available but subject to AppArmor
    // restrictions like in Ubuntu 24.04.
    type SysProcIDMap struct {
    	ContainerID int // Container ID.
    	HostID      int // Host ID.
    	Size        int // Size.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_386.go

    	{"kern.file", []_C_int{1, 73}},
    	{"kern.forkstat", []_C_int{1, 42}},
    	{"kern.fscale", []_C_int{1, 46}},
    	{"kern.fsync", []_C_int{1, 33}},
    	{"kern.global_ptrace", []_C_int{1, 81}},
    	{"kern.hostid", []_C_int{1, 11}},
    	{"kern.hostname", []_C_int{1, 10}},
    	{"kern.intrcnt.nintrcnt", []_C_int{1, 63, 1}},
    	{"kern.job_control", []_C_int{1, 19}},
    	{"kern.malloc.buckets", []_C_int{1, 39, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_amd64.go

    	{"kern.file", []_C_int{1, 73}},
    	{"kern.forkstat", []_C_int{1, 42}},
    	{"kern.fscale", []_C_int{1, 46}},
    	{"kern.fsync", []_C_int{1, 33}},
    	{"kern.global_ptrace", []_C_int{1, 81}},
    	{"kern.hostid", []_C_int{1, 11}},
    	{"kern.hostname", []_C_int{1, 10}},
    	{"kern.intrcnt.nintrcnt", []_C_int{1, 63, 1}},
    	{"kern.job_control", []_C_int{1, 19}},
    	{"kern.malloc.buckets", []_C_int{1, 39, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/sys/unix/zsysctl_openbsd_arm.go

    	{"kern.file", []_C_int{1, 73}},
    	{"kern.forkstat", []_C_int{1, 42}},
    	{"kern.fscale", []_C_int{1, 46}},
    	{"kern.fsync", []_C_int{1, 33}},
    	{"kern.global_ptrace", []_C_int{1, 81}},
    	{"kern.hostid", []_C_int{1, 11}},
    	{"kern.hostname", []_C_int{1, 10}},
    	{"kern.intrcnt.nintrcnt", []_C_int{1, 63, 1}},
    	{"kern.job_control", []_C_int{1, 19}},
    	{"kern.malloc.buckets", []_C_int{1, 39, 1}},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 11.9K bytes
    - Viewed (0)
Back to top