Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for RWX (0.02 sec)

  1. src/cmd/link/internal/ld/data.go

    // section, and "rwx" contains permissions for the section.
    func (state *dodataState) allocateDataSectionForSym(seg *sym.Segment, s loader.Sym, rwx int) *sym.Section {
    	ldr := state.ctxt.loader
    	sname := ldr.SymName(s)
    	if strings.HasPrefix(sname, "go:") {
    		sname = ".go." + sname[len("go:"):]
    	}
    	sect := addsection(ldr, state.ctxt.Arch, seg, sname, rwx)
    	sect.Align = symalign(ldr, s)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  2. pkg/printers/internalversion/printers_test.go

    					},
    				},
    				Status: api.PersistentVolumeStatus{
    					Phase: api.VolumePending,
    				},
    			},
    			expected: []metav1.TableRow{{Cells: []interface{}{"test3", "10Gi", "RWX", "", "Pending", "default/test", "", "<unset>", "", "<unknown>", "<unset>"}}},
    		},
    		{
    			// Test pending, storageClass
    			pv: api.PersistentVolume{
    				ObjectMeta: metav1.ObjectMeta{
    					Name: "test4",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			} else if !subPathExists {
    				// Create the sub path now because if it's auto-created later when referenced, it may have an
    				// incorrect ownership and mode. For example, the sub path directory must have at least g+rwx
    				// when the pod specifies an fsGroup, and if the directory is not created here, Docker will
    				// later auto-create it with the incorrect mode 0750
    				// Make extra care not to escape the volume!
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
Back to top