Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 284 for proc (0.05 sec)

  1. platforms/core-runtime/native/src/main/java/org/gradle/internal/nativeintegration/services/NativeServices.java

                return false;
            }
    
            // Musl libc maps /lib/ld-musl-aarch64.so.1 into memory, let's try to find it
            try {
                File mapFilesDir = new File("/proc/self/map_files");
                if (!mapFilesDir.isDirectory()) {
                    return false;
                }
                File[] files = mapFilesDir.listFiles();
                if (files == null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:39 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. guava-tests/test/com/google/common/io/FilesTest.java

        assertFalse(Files.equal(asciiFile, temp));
    
        assertTrue(Files.asByteSource(asciiFile).contentEquals(Files.asByteSource(asciiFile)));
    
        // 0-length files have special treatment (/proc, etc.)
        assertTrue(Files.equal(asciiFile, new BadLengthFile(asciiFile, 0)));
      }
    
      public void testNewReader() throws IOException {
        File asciiFile = getTestFile("ascii.txt");
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 22.2K bytes
    - Viewed (0)
  3. src/runtime/syscall_windows.go

    	index map[winCallbackKey]int
    	n     int
    }
    
    func cbsLock() {
    	lock(&cbs.lock)
    	// compileCallback is used by goenvs prior to completion of schedinit.
    	// raceacquire involves a racecallback to get the proc, which is not
    	// safe prior to scheduler initialization. Thus avoid instrumentation
    	// until then.
    	if raceenabled && mainStarted {
    		raceacquire(unsafe.Pointer(&cbs.lock))
    	}
    }
    
    func cbsUnlock() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  4. pkg/volume/fc/fc.go

    	// corruption.
    	paths, err := util.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 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
    - 17.4K bytes
    - Viewed (0)
  5. pkg/proxy/ipvs/README.md

    Chain POSTROUTING (policy ACCEPT)
    target     prot opt source               destination
    KUBE-POSTROUTING  all  --  0.0.0.0/0            0.0.0.0/0            /* kubernetes postrouting rules */
    
    Chain KUBE-MARK-MASQ (2 references)
    target     prot opt source               destination
    MARK       all  --  0.0.0.0/0            0.0.0.0/0            MARK or 0x4000
    
    Chain KUBE-POSTROUTING (1 references)
    target     prot opt source               destination
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 20 02:32:29 UTC 2021
    - 18.8K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  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