Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 34 for qgroups (0.18 sec)

  1. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    							Expression: "claims.username",
    						},
    						Groups: apiserver.PrefixedClaimOrExpression{
    							Claim:  "groups",
    							Prefix: pointer.String("system:"),
    						},
    					},
    					UserValidationRules: []apiserver.UserValidationRule{
    						{
    							Expression: "user.groups.all(group, !group.startsWith('system:'))",
    							Message:    "groups cannot used reserved system: prefix",
    						},
    					},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        # shellcheck disable=SC2068
        for group in ${all_instance_groups[@]:-}; do
          {
            if gcloud compute instance-groups managed describe "${group}" --project "${PROJECT}" --zone "${ZONE}" &>/dev/null; then
              gcloud compute instance-groups managed delete \
                --project "${PROJECT}" \
                --quiet \
                --zone "${ZONE}" \
                "${group}"
            fi
          } &
        done
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_pods.go

    			}
    			continue
    		}
    		klog.V(3).InfoS("Orphaned pod found, removing pod cgroups", "podUID", uid)
    		// Destroy all cgroups of pod that should not be running,
    		// by first killing all the attached processes to these cgroups.
    		// We ignore errors thrown by the method, as the housekeeping loop would
    		// again try to delete these unwanted pod cgroups
    		go pcm.Destroy(val)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet.go

    			kl.configMapManager.RegisterPod(pod)
    		}
    	}
    
    	// Create Cgroups for the pod and apply resource parameters
    	// to them if cgroups-per-qos flag is enabled.
    	pcm := kl.containerManager.NewPodContainerManager()
    	// If pod has already been terminated then we need not create
    	// or update the pod's cgroup
    	// TODO: once context cancellation is added this check can be removed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/es/user/cbean/ca/bs/BsUserCA.java

        }
    
        public void setGroups_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda) {
            setGroups_Terms("groups", opLambda, null);
        }
    
        public void setGroups_Terms(ConditionOptionCall<TermsAggregationBuilder> opLambda, OperatorCall<BsUserCA> aggsLambda) {
            setGroups_Terms("groups", opLambda, aggsLambda);
        }
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 212.4K bytes
    - Viewed (0)
  6. cmd/site-replication.go

    				return errSRIAMError(err)
    			}
    		}
    	}
    
    	// Next should be Groups for some of these users, LDAP might have some Group
    	// DNs here
    	{
    		groups := make(map[string]GroupInfo)
    		err := globalIAMSys.store.loadGroups(ctx, groups)
    		if err != nil {
    			return errSRBackendIssue(err)
    		}
    
    		for gname, group := range groups {
    			if err := c.IAMChangeHook(ctx, madmin.SRIAMItem{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/authorization/v1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(baseI-i))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if len(m.Groups) > 0 {
    		for iNdEx := len(m.Groups) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Groups[iNdEx])
    			copy(dAtA[i:], m.Groups[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Groups[iNdEx])))
    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	i -= len(m.User)
    	copy(dAtA[i:], m.User)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 100.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/authorization/v1beta1/generated.pb.go

    			i = encodeVarintGenerated(dAtA, i, uint64(baseI-i))
    			i--
    			dAtA[i] = 0x2a
    		}
    	}
    	if len(m.Groups) > 0 {
    		for iNdEx := len(m.Groups) - 1; iNdEx >= 0; iNdEx-- {
    			i -= len(m.Groups[iNdEx])
    			copy(dAtA[i:], m.Groups[iNdEx])
    			i = encodeVarintGenerated(dAtA, i, uint64(len(m.Groups[iNdEx])))
    			i--
    			dAtA[i] = 0x22
    		}
    	}
    	i -= len(m.User)
    	copy(dAtA[i:], m.User)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 101K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.4.md

    * Scale kube-proxy conntrack limits by cores (new default behavior) ([#28876](https://github.com/kubernetes/kubernetes/pull/28876), [@thockin](https://github.com/thockin))
    * [Kubelet] Improving QOS in kubelet by introducing QoS level Cgroups - `--cgroups-per-qos` ([#27853](https://github.com/kubernetes/kubernetes/pull/27853), [@dubstack](https://github.com/dubstack))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.5.md

    * Add a flag allowing contention profiling of the API server ([#36756](https://github.com/kubernetes/kubernetes/pull/36756), [@gmarek](https://github.com/gmarek))
    * Rename `--cgroups-per-qos` to `--experimental-cgroups-per-qos` in Kubelet ([#36767](https://github.com/kubernetes/kubernetes/pull/36767), [@vishh](https://github.com/vishh))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 136.4K bytes
    - Viewed (0)
Back to top