Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for Fd2path (0.15 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                        paths.add(path);
                    }
                }
            }
        }
    
        public void addCompileSourceRoot(String path) {
            addPath(getCompileSourceRoots(), path);
        }
    
        public void addTestCompileSourceRoot(String path) {
            addPath(getTestCompileSourceRoots(), path);
        }
    
        public List<String> getCompileSourceRoots() {
            return compileSourceRoots;
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Mar 01 17:18:13 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  2. src/syscall/syscall_windows.go

    			return nil, err
    		}
    	}
    }
    
    func Getppid() (ppid int) {
    	pe, err := getProcessEntry(Getpid())
    	if err != nil {
    		return -1
    	}
    	return int(pe.ParentProcessID)
    }
    
    func fdpath(fd Handle, buf []uint16) ([]uint16, error) {
    	const (
    		FILE_NAME_NORMALIZED = 0
    		VOLUME_NAME_DOS      = 0
    	)
    	for {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 11:49:46 UTC 2024
    - 52.7K bytes
    - Viewed (0)
Back to top