Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 416 for groupC (0.1 sec)

  1. pilot/pkg/serviceregistry/kube/controller/ambient/policies.go

    			Authorization: &security.Authorization{
    				Name:      staticStrictPolicyName,
    				Namespace: meshCfg.GetRootNamespace(),
    				Scope:     security.Scope_WORKLOAD_SELECTOR,
    				Action:    security.Action_DENY,
    				Groups: []*security.Group{
    					{
    						Rules: []*security.Rules{
    							{
    								Matches: []*security.Match{
    									{
    										NotPrincipals: []*security.StringMatch{
    											{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  2. guava-testlib/README.md

    unit testing.
    
    ## Adding Guava Testlib to your build
    
    Guava testlib's Maven group ID is `com.google.guava` and its artifact ID is `guava-testlib`.
    
    To add a dependency on Guava testlib using Maven, use the following:
    
    ```xml
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava-testlib</artifactId>
      <version>33.2.1-jre</version>
      <scope>test</scope>
    </dependency>
    ```
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/model/LocalComponentDependencyMetadataTest.groovy

        }
    
        def "applies exclude rules when traversing the from configuration"() {
            def exclude1 = new DefaultExclude(DefaultModuleIdentifier.newId("group1", "*"))
            def exclude2 = new DefaultExclude(DefaultModuleIdentifier.newId("group2", "*"))
            def moduleExclusions = new ModuleExclusions()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 25.3K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_container_linux_test.go

    		addGuaranteedContainer      bool
    	}{
    		// With cgroup v1
    		{
    			name:                       "cgroups v1, LimitedSwap, Burstable QoS",
    			cgroupVersion:              cgroupV1,
    			qosClass:                   v1.PodQOSBurstable,
    			nodeSwapFeatureGateEnabled: true,
    			swapBehavior:               types.LimitedSwap,
    		},
    		{
    			name:                       "cgroups v1, LimitedSwap, Best-effort QoS",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 41K bytes
    - Viewed (0)
  5. 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)
  6. hack/local-up-cluster.sh

      # cgroup v2: enable nesting
      if [ -f /sys/fs/cgroup/cgroup.controllers ]; then
        # move the processes from the root group to the /init group,
        # otherwise writing subtree_control fails with EBUSY.
        # An error during moving non-existent process (i.e., "cat") is ignored.
        mkdir -p /sys/fs/cgroup/init
        xargs -rn1 < /sys/fs/cgroup/cgroup.procs > /sys/fs/cgroup/init/cgroup.procs || :
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 25 02:33:52 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/windows/security_windows.go

    }
    
    // Group returns the security descriptor group and whether it was defaulted.
    func (sd *SECURITY_DESCRIPTOR) Group() (group *SID, defaulted bool, err error) {
    	err = getSecurityDescriptorGroup(sd, &group, &defaulted)
    	return
    }
    
    // SetGroup sets the absolute security descriptor owner.
    func (absoluteSD *SECURITY_DESCRIPTOR) SetGroup(group *SID, defaulted bool) error {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/util/peerproxy/peerproxy_handler_test.go

    }
    
    func testDataExists(gvr schema.GroupVersionResource) bool {
    	return gvr.Group != "" && gvr.Version != "" && gvr.Resource != ""
    }
    
    func withFakeUser(handler http.Handler) http.Handler {
    	return http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
    		r = r.WithContext(apirequest.WithUser(r.Context(), &user.DefaultInfo{
    			Groups: r.Header["Groups"],
    		}))
    		handler.ServeHTTP(w, r)
    	})
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  9. internal/config/identity/ldap/help.go

    		},
    		config.HelpKV{
    			Key:         GroupSearchFilter,
    			Description: `search filter for groups e.g. "(&(objectclass=groupOfNames)(memberUid=%s))"` + defaultHelpPostfix(GroupSearchFilter),
    			Optional:    true,
    			Type:        "string",
    		},
    		config.HelpKV{
    			Key:         GroupSearchBaseDN,
    			Description: `";" separated list of group search base DNs e.g. "dc=myldapserver,dc=com"` + defaultHelpPostfix(GroupSearchBaseDN),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  10. tests/integration/security/testdata/authz/jwt.yaml.tmpl

        - source:
            requestPrincipals: ["******@****.***/sub-1"]
      - to:
        - operation:
            paths: ["/token2"]
            methods: ["GET"]
        when:
        - key: request.auth.claims[groups]
          values: ["group-2"]
      - to:
        - operation:
            paths: ["/tokenAny"]
            methods: ["GET"]
        from:
        - source:
            requestPrincipals: ["*"]
      - to:
        - operation:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 23:36:51 UTC 2024
    - 3K bytes
    - Viewed (0)
Back to top