Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 200 for Intersections (0.36 sec)

  1. pkg/kubelet/cm/cpumanager/policy_static.go

    		for _, socketID := range socketBits {
    			alignedCPUs = alignedCPUs.Union(allocatableCPUs.Intersection(p.topology.CPUDetails.CPUsInSockets(socketID)))
    		}
    		return alignedCPUs
    	}
    
    	for _, numaNodeID := range numaBits {
    		alignedCPUs = alignedCPUs.Union(allocatableCPUs.Intersection(p.topology.CPUDetails.CPUsInNUMANodes(numaNodeID)))
    	}
    
    	return alignedCPUs
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Oct 06 13:16:15 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/authentication/v1beta1/generated.proto

      optional UserInfo user = 2;
    
      // Audiences are audience identifiers chosen by the authenticator that are
      // compatible with both the TokenReview and token. An identifier is any
      // identifier in the intersection of the TokenReviewSpec audiences and the
      // token's audiences. A client of the TokenReview API that sets the
      // spec.audiences field should validate that a compatible audience identifier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  3. docs/sts/assume-role.md

    ### Policy
    
    An IAM policy in JSON format that you want to use as an inline session policy. This parameter is optional. Passing policies to this operation returns new temporary credentials. The resulting session's permissions are the intersection of the canned policy name and the policy set here. You cannot use this policy to grant more permissions than those allowed by the canned policy name being assumed.
    
    | Params        | Value                                          |
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 7.1K bytes
    - Viewed (0)
  4. src/cmd/covdata/covdata.go

    pkglist     output list of package import paths
    func        output coverage profile information for each function
    merge       merge data files together
    subtract    subtract one set of data files from another set
    intersect   generate intersection of two sets of data files
    debugdump   dump data in human-readable format for debugging purposes
    `)
    	fmt.Fprintf(os.Stderr, "\nFor help on a specific subcommand, try:\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  5. common-protos/k8s.io/api/authentication/v1beta1/generated.proto

      optional UserInfo user = 2;
    
      // Audiences are audience identifiers chosen by the authenticator that are
      // compatible with both the TokenReview and token. An identifier is any
      // identifier in the intersection of the TokenReviewSpec audiences and the
      // token's audiences. A client of the TokenReview API that sets the
      // spec.audiences field should validate that a compatible audience identifier
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/authentication/v1beta1/types.go

    	// Audiences are audience identifiers chosen by the authenticator that are
    	// compatible with both the TokenReview and token. An identifier is any
    	// identifier in the intersection of the TokenReviewSpec audiences and the
    	// token's audiences. A client of the TokenReview API that sets the
    	// spec.audiences field should validate that a compatible audience identifier
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:25 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  7. pkg/quota/v1/evaluator/core/services.go

    }
    
    // MatchingResources takes the input specified list of resources and returns the set of resources it matches.
    func (p *serviceEvaluator) MatchingResources(input []corev1.ResourceName) []corev1.ResourceName {
    	return quota.Intersection(input, serviceResources)
    }
    
    // MatchingScopes takes the input specified list of scopes and input object. Returns the set of scopes resource matches.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 7K bytes
    - Viewed (0)
  8. pkg/quota/v1/evaluator/core/pods.go

    	// validation with resource counting, but we did this before QoS was even defined.
    	// let's not make that mistake again with other resources now that QoS is defined.
    	requiredSet := quota.ToSet(required).Intersection(validationSet)
    	missingSetResourceToContainerNames := make(map[string]sets.String)
    	for i := range pod.Spec.Containers {
    		enforcePodContainerConstraints(&pod.Spec.Containers[i], requiredSet, missingSetResourceToContainerNames)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 05 00:02:47 UTC 2023
    - 17.4K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_resolution.adoc

    ** If there are only ranges, the selection will depend on the intersection of ranges:
    *** If all the ranges intersect, then the highest _existing_ version of the intersection will be selected.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 22.1K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/tools/internal/typeparams/normalize.go

    	tset := new(termSet)
    	defer func() {
    		tset.complete = true
    	}()
    	seen[t] = tset
    
    	switch u := t.Underlying().(type) {
    	case *types.Interface:
    		// The term set of an interface is the intersection of the term sets of its
    		// embedded types.
    		tset.terms = allTermlist
    		for i := 0; i < u.NumEmbeddeds(); i++ {
    			embedded := u.EmbeddedType(i)
    			if _, ok := embedded.Underlying().(*types.TypeParam); ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 21:28:13 UTC 2023
    - 6.7K bytes
    - Viewed (0)
Back to top