Search Options

Results per page
Sort
Preferred Languages
Advance

Results 211 - 220 of 888 for proc (0.04 sec)

  1. pkg/volume/iscsi/iscsi.go

    	// corruption.
    	paths, err := ioutil.GetReliableMountRefs(mounter, mountPath)
    	if io.IsInconsistentReadError(err) {
    		klog.Errorf("Failed to read mount refs from /proc/mounts for %s: %s", mountPath, err)
    		klog.Errorf("Kubelet cannot unmount volume at %s, please unmount it and all mounts of the same device manually.", mountPath)
    		return volume.ReconstructedVolume{}, err
    	}
    	if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    }, {
    	desc: "proc instruction",
    	toks: []Token{
    		ProcInst{"Target", []byte("Instruction")},
    	},
    	want: `<?Target Instruction?>`,
    }, {
    	desc: "proc instruction with empty target",
    	toks: []Token{
    		ProcInst{"", []byte("Instruction")},
    	},
    	err: "xml: EncodeToken of ProcInst with invalid Target",
    }, {
    	desc: "proc instruction with bad content",
    	toks: []Token{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. src/cmd/link/internal/ld/dwarf.go

    		// We can't use something that may be dead-code
    		// eliminated from a binary here. proc.go contains
    		// main and the scheduler, so it's not going anywhere.
    		if i := strings.Index(name, "runtime/proc.go"); i >= 0 && unit.Lib.Pkg == "runtime" {
    			d.dwmu.Lock()
    			if gdbscript == "" {
    				k := strings.Index(name, "runtime/proc.go")
    				gdbscript = name[:k] + "runtime/runtime-gdb.py"
    			}
    			d.dwmu.Unlock()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/sys/unix/zerrors_zos_s390x.go

    	ZOSDSFS_SUPER_MAGIC             = 0x44534653 // zOS DSFS
    	NFS_SUPER_MAGIC                 = 0x6969     // NFS
    	NSFS_MAGIC                      = 0x6e736673 // PROCNS
    	PROC_SUPER_MAGIC                = 0x9fa0     // proc FS
    	ZOSTFS_SUPER_MAGIC              = 0x544653   // zOS TFS
    	ZOSUFS_SUPER_MAGIC              = 0x554653   // zOS UFS
    	ZOSZFS_SUPER_MAGIC              = 0x5A4653   // zOS ZFS
    	MTM_RDONLY                      = 0x80000000
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 16:12:58 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. src/os/file.go

    		if int64(int(size64)) == size64 {
    			size = int(size64)
    		}
    	}
    	size++ // one byte for final read at EOF
    
    	// If a file claims a small size, read at least 512 bytes.
    	// In particular, files in Linux's /proc claim size 0 but
    	// then do not work right if read in small pieces,
    	// so an initial read of 1 byte would not work correctly.
    	if size < 512 {
    		size = 512
    	}
    
    	data := make([]byte, 0, size)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 23:07:37 UTC 2024
    - 25.4K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/ssa/debug_test.go

    	s.atLineRe = regexp.MustCompile("(^|\n)([0-9]+)(.*)")
    	s.funcFileLinePCre = regexp.MustCompile(
    		"([^ ]+) [(][^)]*[)][ \\t\\n]+at ([^:]+):([0-9]+)")
    	// runtime.main () at /Users/drchase/GoogleDrive/work/go/src/runtime/proc.go:201
    	//                                    function              file    line
    	// Thread 2 hit Breakpoint 1, main.main () at /Users/drchase/GoogleDrive/work/debug/hist.go:18
    	s.ioState = newIoState(s.cmd)
    	return s
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:11:47 UTC 2024
    - 28.6K bytes
    - Viewed (0)
  7. hack/local-up-cluster.sh

        # otherwise writing subtree_control fails with EBUSY.
        # An error during moving non-existent process (i.e., "cat") is ignored.
        mkdir -p /sys/fs/cgroup/init
        xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || :
        # enable controllers
        sed -e 's/ / +/g' -e 's/^/+/' < /sys/fs/cgroup/cgroup.controllers \
          > /sys/fs/cgroup/cgroup.subtree_control
      fi
    }
    
    function install_cni {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  8. src/regexp/syntax/prog.go

    package syntax
    
    import (
    	"strconv"
    	"strings"
    	"unicode"
    	"unicode/utf8"
    )
    
    // Compiled program.
    // May not belong in this package, but convenient for now.
    
    // A Prog is a compiled regular expression program.
    type Prog struct {
    	Inst   []Inst
    	Start  int // index of start instruction
    	NumCap int // number of InstCapture insts in re
    }
    
    // An InstOp is an instruction opcode.
    type InstOp uint8
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  9. cluster/gce/gci/configure-helper.sh

      mount --rbind /var/lib/kubelet/ "${CONTAINERIZED_MOUNTER_ROOTFS}/var/lib/kubelet"
      mount --make-rshared "${CONTAINERIZED_MOUNTER_ROOTFS}/var/lib/kubelet"
      mount --bind -o ro /proc "${CONTAINERIZED_MOUNTER_ROOTFS}/proc"
      mount --bind -o ro /dev "${CONTAINERIZED_MOUNTER_ROOTFS}/dev"
      cp /etc/resolv.conf "${CONTAINERIZED_MOUNTER_ROOTFS}/etc/"
    }
    
    # Updates node labels used by addons.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (1)
  10. src/cmd/go/internal/cache/prog.go

    	}
    	args, err := quoted.Split(progAndArgs)
    	if err != nil {
    		base.Fatalf("GOCACHEPROG args: %v", err)
    	}
    	var prog string
    	if len(args) > 0 {
    		prog = args[0]
    		args = args[1:]
    	}
    
    	ctx, ctxCancel := context.WithCancel(context.Background())
    
    	cmd := exec.CommandContext(ctx, prog, args...)
    	out, err := cmd.StdoutPipe()
    	if err != nil {
    		base.Fatalf("StdoutPipe to GOCACHEPROG: %v", err)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
Back to top