Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 54 for membership (0.18 sec)

  1. src/main/java/jcifs/smb1/smb1/SID.java

         * <p/>
         * This method is designed to assist with computing access control for a
         * given user when the target object's ACL has local groups. Local groups
         * are not listed in a user's group membership (e.g. as represented by the
         * tokenGroups constructed attribute retrived via LDAP).
         * <p/>
         * Domain groups nested inside a local group are currently not expanded. In
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 26.6K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/cpumanager/policy_static.go

    //     and grows, accordingly. This is stored in the state as the default
    //     CPU set.
    //
    //   - RESERVED: A subset of the shared pool which is not exclusively
    //     allocatable. The membership of this pool is static for the lifetime of
    //     the Kubelet. The size of the reserved pool is
    //     ceil(systemreserved.cpu + kubereserved.cpu).
    //     Reserved CPUs are taken topologically starting with lowest-indexed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    // distinct but logically equivalent.
    //
    // A single object may have multiple paths. In this example,
    //
    //	type A struct{ X int }
    //	type B A
    //
    // the field X has two paths due to its membership of both A and B.
    // The For(obj) function always returns one of these paths, arbitrarily
    // but consistently.
    package objectpath
    
    import (
    	"fmt"
    	"go/types"
    	"strconv"
    	"strings"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  4. cmd/iam.go

    			gSet := set.CreateStringSet(cred.Groups...)
    			if gSet.Equals(currGroupsSet) {
    				// No change to groups memberships for this
    				// credential.
    				continue
    			}
    
    			// Expired credentials don't need group membership updates.
    			if cred.IsExpired() {
    				continue
    			}
    
    			cred.Groups = currGroups
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__certificates.k8s.io__v1_openapi.json

                "type": "object"
              },
              "groups": {
                "description": "groups contains group membership of the user that created the CertificateSigningRequest. Populated by the API server on creation and immutable.",
                "items": {
                  "default": "",
                  "type": "string"
                },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 151.7K bytes
    - Viewed (0)
  6. cluster/common.sh

          echo '{"CN":"'"${member_ip}"'","hosts":[""],"key":{"algo":"ecdsa","size":256}}' \
           | ${CFSSL_BIN} gencert -ca=ca.pem -ca-key=ca-key.pem -config=ca-config.json -profile=server -hostname="${member_ip},127.0.0.1" - \
           | ${CFSSLJSON_BIN} -bare "${prefix}"
          ;;
        peer)
          echo "Generate peer certificates..."
          echo '{"CN":"'"${member_ip}"'","hosts":[""],"key":{"algo":"ecdsa","size":256}}' \
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 17 15:36:33 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  7. CHANGELOG/CHANGELOG-1.7.md

    * fix kubelet event recording for selected events. ([#46246](https://github.com/kubernetes/kubernetes/pull/46246),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 05 13:44:43 UTC 2022
    - 308.7K bytes
    - Viewed (0)
  8. CHANGELOG/CHANGELOG-1.8.md

    * fix kubelet event recording for selected events. ([#46246](https://github.com/kubernetes/kubernetes/pull/46246),...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 312.2K bytes
    - Viewed (0)
  9. pkg/controller/endpointslice/endpointslice_controller.go

    	pod := obj.(*v1.Pod)
    	services, err := endpointsliceutil.GetPodServiceMemberships(c.serviceLister, pod)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Unable to get pod %s/%s's service memberships: %v", pod.Namespace, pod.Name, err))
    		return
    	}
    	for key := range services {
    		c.serviceQueue.AddAfter(key, c.endpointUpdatesBatchPeriod)
    	}
    }
    
    func (c *Controller) updatePod(old, cur interface{}) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  10. pkg/controller/endpoint/endpoints_controller.go

    	pod := obj.(*v1.Pod)
    	services, err := endpointsliceutil.GetPodServiceMemberships(e.serviceLister, pod)
    	if err != nil {
    		utilruntime.HandleError(fmt.Errorf("Unable to get pod %s/%s's service memberships: %v", pod.Namespace, pod.Name, err))
    		return
    	}
    	for key := range services {
    		e.queue.AddAfter(key, e.endpointUpdatesBatchPeriod)
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 26.3K bytes
    - Viewed (0)
Back to top