Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 1,089 for qgroups (0.14 sec)

  1. pkg/kubelet/cm/container_manager_linux.go

    		if nodeConfig.CgroupRoot == "" {
    			return nil, fmt.Errorf("invalid configuration: cgroups-per-qos was specified and cgroup-root was not specified. To enable the QoS cgroup hierarchy you need to specify a valid cgroup-root")
    		}
    
    		// we need to check that the cgroup root actually exists for each subsystem
    		// of note, we always use the cgroupfs driver when performing this check since
    		// the input is provided in that format.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 35.1K bytes
    - Viewed (0)
  2. src/syscall/exec_linux.go

    		}
    	}
    
    	// User and groups
    	if cred = sys.Credential; cred != nil {
    		ngroups = uintptr(len(cred.Groups))
    		groups = uintptr(0)
    		if ngroups > 0 {
    			groups = uintptr(unsafe.Pointer(&cred.Groups[0]))
    		}
    		if !(sys.GidMappings != nil && !sys.GidMappingsEnableSetgroups && ngroups == 0) && !cred.NoSetGroups {
    			_, _, err1 = RawSyscall(_SYS_setgroups, ngroups, groups, 0)
    			if err1 != 0 {
    				goto childerror
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 23K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyHttpRepoResolveIntegrationTest.groovy

            failure.assertHasCause('Could not find :name3:1.0-SNAPSHOT.')
            failure.assertHasCause('Could not find group1::1.0.')
            failure.assertHasCause('Could not find any matches for group2::[1.0, 2.0] as no versions of group2: are available.')
            failure.assertHasCause('Could not find group3::1.0-SNAPSHOT.')
            failure.assertHasCause('Could not find group:name:.')
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 7.3K bytes
    - Viewed (0)
  4. src/os/user/getgrouplist_unix.go

    package user
    
    /*
    #include <unistd.h>
    #include <sys/types.h>
    #include <grp.h>
    
    static int mygetgrouplist(const char* user, gid_t group, gid_t* groups, int* ngroups) {
    	return getgrouplist(user, group, groups, ngroups);
    }
    */
    import "C"
    
    func getGroupList(name *_C_char, userGID _C_gid_t, gids *_C_gid_t, n *_C_int) _C_int {
    	return C.mygetgrouplist(name, userGID, gids, n)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 11 04:31:34 UTC 2022
    - 657 bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/analysis/side_effect_analysis.h

      // sequence so are made dependent. For example, if `OpA` has parallel_ids
      //   `{group0:branch0, group1:branch0}`
      // and `OpB` has parallel_ids
      //   `{group0:branch0, group2:branch0}`
      // then `OpA` and `OpB` are executed in sequence because the common groups
      // have the same branch.
      //
      // If an op is not in `op_to_parallel_ids` then it is considered to have the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/audit/format.go

    	username := "<none>"
    	groups := "<none>"
    	if len(ev.User.Username) > 0 {
    		username = ev.User.Username
    		if len(ev.User.Groups) > 0 {
    			groups = auditStringSlice(ev.User.Groups)
    		}
    	}
    	asuser := "<self>"
    	asgroups := "<lookup>"
    	if ev.ImpersonatedUser != nil {
    		asuser = ev.ImpersonatedUser.Username
    		if ev.ImpersonatedUser.Groups != nil {
    			asgroups = auditStringSlice(ev.ImpersonatedUser.Groups)
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 25 12:23:51 UTC 2021
    - 2.1K bytes
    - Viewed (0)
  7. subprojects/diagnostics/src/test/groovy/org/gradle/api/tasks/diagnostics/internal/AggregateMultiProjectTaskReportModelTest.groovy

            model.build()
    
            then:
            model.groups == ([group] + groups - null) as Set
    
            where:
            group    | groups
            'group1' | []
            'group2' | []
            null     | ['group1']
            null     | ['group1', 'group2']
            'group1' | ['group2']
        }
    
        def "handles group which is not present in each project"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 31 16:45:11 UTC 2022
    - 5.6K bytes
    - Viewed (0)
  8. pkg/kubelet/cm/helpers_linux.go

    }
    
    // GetCgroupSubsystems returns information about the mounted cgroup subsystems
    func GetCgroupSubsystems() (*CgroupSubsystems, error) {
    	if libcontainercgroups.IsCgroup2UnifiedMode() {
    		return getCgroupSubsystemsV2()
    	}
    
    	return getCgroupSubsystemsV1()
    }
    
    // getCgroupProcs takes a cgroup directory name as an argument
    // reads through the cgroup's procs file and returns a list of tgid's.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 14 11:52:28 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/util/cgroups_linux.go

    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    	libcontainerutils "github.com/opencontainers/runc/libcontainer/utils"
    )
    
    const (
    	// CgroupRoot is the base path where cgroups are mounted
    	CgroupRoot = "/sys/fs/cgroup"
    )
    
    // GetPids gets pids of the desired cgroup
    // Forked from opencontainers/runc/libcontainer/cgroup/fs.Manager.GetPids()
    func GetPids(cgroupPath string) ([]int, error) {
    	dir := ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 07:50:19 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  10. plugin/pkg/auth/authorizer/rbac/rbac_test.go

    				resourceRequest("verb1").Group("group1").Resource("resource2").New(): true,
    				resourceRequest("verb1").Group("group2").Resource("resource2").New(): true,
    				resourceRequest("verb2").Group("group1").Resource("resource1").New(): true,
    				resourceRequest("verb2").Group("group2").Resource("resource1").New(): true,
    				resourceRequest("verb2").Group("group1").Resource("resource2").New(): true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Sep 24 15:14:54 UTC 2019
    - 21.1K bytes
    - Viewed (0)
Back to top