Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 388 for procid (0.13 sec)

  1. src/os/proc.go

    cui fliter <******@****.***> 1699009739 +0800
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. pkg/volume/util/fsquota/common/quota_common_linux_impl.go

    	if match[2] != path {
    		return BadQuotaID, fmt.Errorf("mismatch between supplied and returned path (%s != %s)", path, match[2])
    	}
    	projid, err := strconv.ParseInt(match[1], 10, 32)
    	if err != nil {
    		return BadQuotaID, fmt.Errorf("unable to parse project ID from %s (%v)", match[1], err)
    	}
    	return QuotaID(projid), nil
    }
    
    // SetQuotaOnDir applies a quota to the specified directory under the specified mountpoint.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 20 14:49:03 UTC 2023
    - 9.1K bytes
    - Viewed (0)
  3. pkg/ctrlz/topics/assets/templates/proc.html

        </tbody>
    </table>
    
    {{ template "last-refresh" .}}
    
    <script>
        "use strict";
    
        function refreshProcStats() {
            let url = window.location.protocol + "//" + window.location.host + "/procj/";
    
            let ajax = new XMLHttpRequest();
            ajax.onload = onload;
            ajax.onerror = onerror;
            ajax.open("GET", url, true);
            ajax.send();
    
            function onload() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 17:08:31 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  4. platforms/native/platform-native/src/test/groovy/org/gradle/nativeplatform/toolchain/internal/metadata/CompilerMetaDataProviderFactoryTest.groovy

            then:
            0 * _
            newMetadata.is(metadata)
    
            where:
            compiler << ['gcc', 'clang', 'swiftc']
        }
    
        def "different #compiler executables are probed and cached"() {
            def firstBinary = new File("first")
            def secondBinary = new File("second")
            when:
            def firstMetadata = metadataProvider(compiler).getCompilerMetaData([]) { it.executable(firstBinary) }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. pkg/ctrlz/topics/proc.go

    func ProcTopic() fw.Topic {
    	return procTopic{}
    }
    
    func (procTopic) Title() string {
    	return "Process Info"
    }
    
    func (procTopic) Prefix() string {
    	return "proc"
    }
    
    type procInfo struct {
    	Egid       int    `json:"egid"`
    	Euid       int    `json:"euid"`
    	GID        int    `json:"gid"`
    	Groups     []int  `json:"groups"`
    	Pid        int    `json:"pid"`
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 24 14:06:41 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  6. pkg/volume/util/fsquota/quota_linux.go

    	}
    	if !supportsQuotas {
    		return nil
    	}
    	projid, err := GetQuotaOnDir(m, path)
    	if err == nil && projid != common.BadQuotaID {
    		// This means that we have a quota on the directory but
    		// we can't clear it.  That's not good.
    		err = setQuotaOnDir(path, projid, 0)
    		if err != nil {
    			klog.V(3).Infof("Attempt to clear quota failed: %v", err)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 07 08:07:51 UTC 2023
    - 14.1K bytes
    - Viewed (0)
  7. pkg/volume/util/fsquota/quota_linux_test.go

    `
    
    	projidHeader = `# This is a /etc/projid header
    xxxxxx:1048579
    `
    	projid1 = `volume1048577:1048577
    `
    	projid2 = `volume1048577:1048577
    volume1048580:1048580
    `
    	projid3 = `volume1048577:1048577
    volume1048580:1048580
    volume1048581:1048581
    `
    	projid4 = `volume1048577:1048577
    volume1048581:1048581
    `
    	projid5 = `volume1048581:1048581
    `
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/text/cases/cases.go

    //
    // Case folding does not normalize the input and may not preserve a normal form.
    // Use the collate or search package for more convenient and linguistically
    // sound comparisons. Use golang.org/x/text/secure/precis for string comparisons
    // where security aspects are a concern.
    func Fold(opts ...Option) Caser {
    	return Caser{makeFold(getOpts(opts...))}
    }
    
    // An Option is used to modify the behavior of a Caser.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  9. internal/net/net.go

    package net
    
    import (
    	"fmt"
    
    	"github.com/prometheus/procfs"
    )
    
    // GetInterfaceNetStats - get procfs.NetDevLine by interfaceName
    func GetInterfaceNetStats(interf string) (procfs.NetDevLine, error) {
    	proc, err := procfs.Self()
    	if err != nil {
    		return procfs.NetDevLine{}, err
    	}
    	netDev, err := proc.NetDev()
    	if err != nil {
    		return procfs.NetDevLine{}, err
    	}
    	ndl, ok := netDev[interf]
    	if !ok {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jul 17 08:14:01 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  10. pkg/util/procfs/procfs_unsupported.go

    limitations under the License.
    */
    
    package procfs
    
    import (
    	"fmt"
    	"syscall"
    )
    
    type ProcFS struct{}
    
    func NewProcFS() ProcFSInterface {
    	return &ProcFS{}
    }
    
    // GetFullContainerName gets the container name given the root process id of the container.
    func (pfs *ProcFS) GetFullContainerName(pid int) (string, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 1.3K bytes
    - Viewed (0)
Back to top