Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 635 for rgroup (0.15 sec)

  1. pkg/kubelet/cm/qos_container_manager_linux.go

    	libcontainercgroups "github.com/opencontainers/runc/libcontainer/cgroups"
    	utilfeature "k8s.io/apiserver/pkg/util/feature"
    
    	"k8s.io/kubernetes/pkg/api/v1/resource"
    	v1qos "k8s.io/kubernetes/pkg/apis/core/v1/helper/qos"
    	kubefeatures "k8s.io/kubernetes/pkg/features"
    )
    
    const (
    	// how often the qos cgroup manager will perform periodic update
    	// of the qos level cgroup resource constraints
    	periodicQOSCgroupUpdateInterval = 1 * time.Minute
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 20:42:59 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  2. pkg/test/framework/components/istio/cleanup.go

    	ns := i.cfg.SystemNamespace
    	d, err := ctx.CreateTmpDirectory("istio-state")
    	if err != nil {
    		scopes.Framework.Errorf("Unable to create directory for dumping Istio contents: %v", err)
    		return
    	}
    	g := errgroup.Group{}
    	g.Go(func() error {
    		kube2.DumpPods(ctx, d, ns, []string{})
    		return nil
    	})
    
    	g.Go(func() error {
    		kube2.DumpWebhooks(ctx, d)
    		return nil
    	})
    	for _, c := range ctx.Clusters().Primaries() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 5K bytes
    - Viewed (0)
  3. tools/istio-iptables/pkg/capture/testdata/ipv6-dns-outbound-owner-groups-exclude.golden

    Eoin Fennessy <******@****.***> 1715615475 +0100
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 13 15:51:15 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  4. cmd/admin-handlers-users-race_test.go

    		err = s.adm.SetPolicy(ctx, policy, accessKey, false)
    		if err != nil {
    			c.Fatalf("Unable to set policy: %v", err)
    		}
    
    		accessKeys[i] = accessKey
    		secretKeys[i] = secretKey
    	}
    
    	g := errgroup.Group{}
    	for i := 0; i < userCount; i++ {
    		g.Go(func(i int) func() error {
    			return func() error {
    				uClient := s.getUserClient(c, accessKeys[i], secretKeys[i], "")
    				err := s.adm.RemoveUser(ctx, accessKeys[i])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  5. pkg/volume/csi/csi_mounter_test.go

    			setFsGroup:          true,
    			fsGroup:             3000,
    			driverFSGroupPolicy: true,
    			supportMode:         storage.FileFSGroupPolicy,
    		},
    		{
    			name:                           "fsgroup provided, driver supports volume mount group; expect fsgroup to be passed to NodePublishVolume",
    			fsType:                         "ext4",
    			setFsGroup:                     true,
    			fsGroup:                        3000,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 50.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

                    builder.append(separator);
                }
                String group1 = matcher.group(1).toLowerCase();
                String group2 = matcher.group(2);
                if (group2.length() == 0) {
                    builder.append(group1);
                } else {
                    if (group1.length() > 1) {
                        builder.append(group1.substring(0, group1.length() - 1));
                        builder.append(separator);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/IvyDependencyDescriptorTest.groovy

            def exclude1 = new DefaultExclude(DefaultModuleIdentifier.newId("group1", "*"), ["from"] as String[], PatternMatchers.EXACT)
            def exclude2 = new DefaultExclude(DefaultModuleIdentifier.newId("group2", "*"), ["*"] as String[], PatternMatchers.EXACT)
            def exclude3 = new DefaultExclude(DefaultModuleIdentifier.newId("group3", "*"), ["other"] as String[], PatternMatchers.EXACT)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 16:00:57 UTC 2024
    - 23K bytes
    - Viewed (0)
  8. cmd/notification.go

    				return errPeerNotReachable
    			}
    			return client.LoadUser(ctx, accessKey, temp)
    		}, idx, *client.host)
    	}
    	return ng.Wait()
    }
    
    // LoadGroup - loads a specific group on all peers.
    func (sys *NotificationSys) LoadGroup(ctx context.Context, group string) []NotificationPeerErr {
    	ng := WithNPeers(len(sys.peerClients)).WithRetries(1)
    	for idx, client := range sys.peerClients {
    		client := client
    		ng.Go(ctx, func() error {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/configurations/DefaultConfigurationSpec.groovy

            and:
            def (p1Exclude, p2Exclude) = [[group: 'p1', module: 'p1'], [group: 'p2', module: 'p2']]
            p1.exclude p1Exclude
            p2.exclude p2Exclude
    
            when:
            def copied = child.copyRecursive()
    
            then:
            copied.excludeRules.size() == 2
            copied.excludeRules.collect { [group: it.group, module: it.module] }.sort { it.group } == [p1Exclude, p2Exclude]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:30:13 UTC 2024
    - 64.8K bytes
    - Viewed (0)
  10. src/syscall/exec_linux_test.go

    	// Otherwise it's either cgroup v1 or a hybrid hierarchy.
    	if bytes.Count(selfCg, []byte("\n")) > 1 {
    		t.Skip("cgroup v2 not available")
    	}
    	cg := bytes.TrimPrefix(selfCg, []byte("0::"))
    	if len(cg) == len(selfCg) { // No prefix found.
    		t.Skipf("cgroup v2 not available (/proc/self/cgroup contents: %q)", selfCg)
    	}
    
    	// Need an ability to create a sub-cgroup.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 07:45:37 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top