github.com/getgauge/gauge@v1.6.9/util/rlimitUtil_windows.go (about)

     1  // Copyright 2019 ThoughtWorks, Inc.
     2  
     3  /*----------------------------------------------------------------
     4   *  Copyright (c) ThoughtWorks, Inc.
     5   *  Licensed under the Apache License, Version 2.0
     6   *  See LICENSE in the project root for license information.
     7   *----------------------------------------------------------------*/
     8  
     9  package util
    10  
    11  import "errors"
    12  
    13  func RLimit() (int, error) {
    14  	// TODO: Run some system commands to figure out the max no. of open file descriptors.
    15  	return -1, errors.New("Not implemented for windows")
    16  }