Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for RWX (0.03 sec)

  1. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    		},
    		{
    			name:                    "RWX with plugin with SELinux with full context in pod and SELinuxMount feature disabled",
    			accessModes:             []v1.PersistentVolumeAccessMode{v1.ReadWriteMany},
    			newContainerSELinuxOpts: fullOpts,
    			pluginSupportsSELinux:   true,
    			expectedContext:         "", // RWX volumes don't support SELinux
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	Elfwritedynent(ctxt.Arch, s, elf.DT_NULL, 0)
    }
    
    func elfphload(seg *sym.Segment) *ElfPhdr {
    	ph := newElfPhdr()
    	ph.Type = elf.PT_LOAD
    	if seg.Rwx&4 != 0 {
    		ph.Flags |= elf.PF_R
    	}
    	if seg.Rwx&2 != 0 {
    		ph.Flags |= elf.PF_W
    	}
    	if seg.Rwx&1 != 0 {
    		ph.Flags |= elf.PF_X
    	}
    	ph.Vaddr = seg.Vaddr
    	ph.Paddr = seg.Vaddr
    	ph.Memsz = seg.Length
    	ph.Off = seg.Fileoff
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/lib.go

    	}
    	ctxt.Shlibs = append(ctxt.Shlibs, Shlib{Path: libpath, Hash: hash, Deps: deps, File: f})
    }
    
    func addsection(ldr *loader.Loader, arch *sys.Arch, seg *sym.Segment, name string, rwx int) *sym.Section {
    	sect := ldr.NewSection()
    	sect.Rwx = uint8(rwx)
    	sect.Name = name
    	sect.Seg = seg
    	sect.Align = int32(arch.PtrSize) // everything is at least pointer-aligned
    	seg.Sections = append(seg.Sections, sect)
    	return sect
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 21 18:45:27 UTC 2024
    - 88.6K bytes
    - Viewed (0)
  4. pkg/volume/csi/csi_mounter_test.go

    			setFsGroup:          true,
    			fsGroup:             3000,
    			driverFSGroupPolicy: true,
    			supportMode:         storage.ReadWriteOnceWithFSTypeFSGroupPolicy,
    		},
    		{
    			name: "fstype, fsgroup, RWX provided, FSGroupPolicy ReadWriteOnceWithFSType (should not apply fsgroup)",
    			accessModes: []corev1.PersistentVolumeAccessMode{
    				corev1.ReadWriteMany,
    			},
    			readOnly:            false,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
Back to top