Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,089 for qgroups (0.12 sec)

  1. test/fixedbugs/issue33355.go

    			for i := 0; i < len(qr.qsubs); i++ {
    				qsubs := qr.qsubs[i]
    				queue := qsubs[0].queue
    				add := true
    				for _, qn := range qgroups {
    					if bytes.Equal(queue, qn) {
    						add = false
    						break
    					}
    				}
    				if add {
    					qgroups = append(qgroups, queue)
    				}
    			}
    			if len(queues) == 0 {
    				continue
    			}
    		}
    		if checkReply {
    			checkReply = false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 01 02:15:18 UTC 2019
    - 2.5K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cgroup_manager_linux.go

    	}
    
    	// Apply(-1) is a hack to create the cgroup directories for each resource
    	// subsystem. The function [cgroups.Manager.apply()] applies cgroup
    	// configuration to the process with the specified pid.
    	// It creates cgroup files for each subsystems and writes the pid
    	// in the tasks file. We use the function to create all the required
    	// cgroup files but not attach any "real" pid to the cgroup.
    	if err := manager.Apply(-1); err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Sep 27 13:02:15 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-groups.yaml

    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 80
      - matches:
        - namespaces:
          - exact: only-l4-ns
          principals:
          - exact: only-l4-principals
    - rules:
      - matches:
        - namespaces:
          - exact: when-l4-ns
      - matches:
        - sourceIps:
          - address: CgoKCg==
            length: 32
    name: groups
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 345 bytes
    - Viewed (0)
  4. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups.yaml

    action: DENY
    groups:
    - rules:
      - matches:
        - destinationPorts:
          - 80
      - matches:
        - namespaces:
          - exact: from-mix-ns
          principals:
          - exact: from-mix-principal
    - rules:
      - matches:
        - destinationPorts:
          - 80
      - matches:
        - namespaces:
          - exact: to-mix-ns
          principals:
          - exact: to-mix-principal
    - rules:
      - matches:
        - destinationPorts:
          - 80
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 955 bytes
    - Viewed (0)
  5. cni/pkg/nodeagent/podcgroupns.go

    	reader := bytes.NewReader(procCgroupData.Bytes())
    	var cgroups []Cgroup
    	scanner := bufio.NewScanner(reader)
    
    	for scanner.Scan() {
    		token := scanner.Text()
    		substrings := strings.SplitN(token, ":", 3)
    		if len(substrings) < 3 {
    			return nil, fmt.Errorf("cgroup entry contains %v colons, but expected at least 2 colons: %q", len(substrings), token)
    		}
    		cgroups = append(cgroups, Cgroup{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Apr 12 21:47:31 UTC 2024
    - 11K bytes
    - Viewed (0)
  6. pkg/kubelet/cm/types.go

    	// Create creates and applies the cgroup configurations on the cgroup.
    	// It just creates the leaf cgroups.
    	// It expects the parent cgroup to already exist.
    	Create(*CgroupConfig) error
    	// Destroy the cgroup.
    	Destroy(*CgroupConfig) error
    	// Update cgroup configuration.
    	Update(*CgroupConfig) error
    	// Validate checks if the cgroup is valid
    	Validate(name CgroupName) error
    	// Exists checks if the cgroup already exists
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Feb 24 18:21:21 UTC 2023
    - 5.4K bytes
    - Viewed (0)
  7. hack/verify-api-groups.sh

    # See the License for the specific language governing permissions and
    # limitations under the License.
    
    # This scripts locates all API groups by their packages and versions
    # Usage: `hack/verify-api-groups.sh`.
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    source "${KUBE_ROOT}/hack/lib/init.sh"
    
    register_files=()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  8. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/deny-groups-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: groups-deny
    spec:
      action: DENY
      rules:
      # Has mix of L4 and L7 in from
      - from:
        - source:
            principals: ["from-mix-principal"]
            requestPrincipals: ["from-mix-requestPrincipals"]
            namespaces: ["from-mix-ns"]
        to:
        - operation:
            ports: ["80"]
      # Has mix of L4 and L7 in to
      - from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  9. cni/pkg/nodeagent/testdata/cgroupns/1/cgroup

    Ben Leggett <******@****.***> 1706301268 -0500
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jan 26 20:34:28 UTC 2024
    - 326 bytes
    - Viewed (0)
  10. pilot/pkg/serviceregistry/kube/controller/ambient/testdata/allow-groups-in.yaml

    apiVersion: security.istio.io/v1beta1
    kind: AuthorizationPolicy
    metadata:
      name: groups
    spec:
      rules:
      # Has mix of L4 and L7 in from
      - from:
        - source:
            principals: ["from-mix-principal"]
            requestPrincipals: ["from-mix-requestPrincipals"]
            namespaces: ["from-mix-ns"]
        to:
        - operation:
            ports: ["80"]
      # Has mix of L4 and L7 in to
      - from:
        - source:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 29 18:40:34 UTC 2024
    - 1.3K bytes
    - Viewed (0)
Back to top