Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 2,478 for tgroup (0.14 sec)

  1. 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)
  2. security/tools/jwt/samples/groups-scope.jwt

    lei-tang <******@****.***> 1537395504 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 19 22:18:24 UTC 2018
    - 659 bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/artifacts/ExcludeRuleNotationConverterTest.groovy

            d.module == 'aModule'
            !d.group
        }
    
        def "with group and module"() {
            when:
            ExcludeRule d = parser.parseNotation([group: 'aGroup', module: 'aModule']);
            then:
            d != null;
            d instanceof DefaultExcludeRule
            d.group == 'aGroup'
            d.module == 'aModule'
        }
    
        def "with no group and no module InvalidUserDataException is thrown"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 12 07:56:11 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  4. releasenotes/notes/fix-workload-group-labels.yaml

    Douglas Reid <******@****.***> 1633375461 -0700
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 04 19:24:21 UTC 2021
    - 184 bytes
    - Viewed (0)
  5. releasenotes/notes/disable-fs-group-injection.yaml

    Faseela K <******@****.***> 1651883509 +0200
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat May 07 00:31:49 UTC 2022
    - 273 bytes
    - Viewed (0)
  6. 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)
  7. tools/istio-iptables/pkg/capture/testdata/outbound-owner-groups.golden

    Ben Leggett <******@****.***> 1710179183 -0400
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r25/GradleTaskGetGroupCrossVersionSpec.groovy

            gradleProject.tasks.findAll { it.name.startsWith('test') }.each {
                assert it.group == "task group ${it.name-'test'}"
            }
        }
    
        def "provide getGroup on Task using BuildInvocations"() {
            file("build.gradle") << '''
    task test1(group:'task group 1')
    task test2(group:'task group 2')
    '''
    
            when:
            def buildInvocations = withConnection { ProjectConnection connection ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  9. 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)
  10. 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)
Back to top