Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 359 for Aggregate (0.1 sec)

  1. src/go/doc/testdata/testing.1.golden

    		cpuProfile	= flag.String("test.cpuprofile", "", "write a cpu profile to the named file during execution")
    		timeout		= flag.Duration("test.timeout", 0, "if positive, sets an aggregate time limit for all tests")
    		cpuListStr	= flag.String("test.cpu", "", "comma-separated list of number of CPUs to use for each test")
    		parallel	= flag.Int("test.parallel", runtime.GOMAXPROCS(0), "maximum test parallelism")
    	
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 8.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/rbac/v1beta1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/rbac/v1beta1";
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    message AggregationRule {
      // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  3. staging/src/k8s.io/api/rbac/v1alpha1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/rbac/v1alpha1";
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    message AggregationRule {
      // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. common-protos/k8s.io/api/rbac/v1/generated.proto

    import "k8s.io/apimachinery/pkg/runtime/schema/generated.proto";
    
    // Package-wide variables from generator "generated".
    option go_package = "k8s.io/api/rbac/v1";
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    message AggregationRule {
      // ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    `publish`::
    _Depends on_: All `publish__PubName__PublicationTo__RepoName__Repository` tasks
    +
    An aggregate task that publishes all defined publications to all defined repositories. It does _not_ include copying publications to the local Maven cache.
    
    `publishToMavenLocal`::
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  6. pkg/apis/rbac/types.go

    	// stomped by the controller.
    	AggregationRule *AggregationRule
    }
    
    // AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole
    type AggregationRule struct {
    	// ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 24 20:35:20 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. pkg/serviceaccount/openidmetadata.go

    }
    
    // publicJWKSFromKeys constructs a JSONWebKeySet from a list of keys. The key
    // set will only contain the public keys associated with the input keys.
    func publicJWKSFromKeys(in []interface{}) (*jose.JSONWebKeySet, errors.Aggregate) {
    	// Decode keys into a JWKS.
    	var keys jose.JSONWebKeySet
    	var errs []error
    	for i, key := range in {
    		var pubkey *jose.JSONWebKey
    		var err error
    
    		switch k := key.(type) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  8. internal/s3select/sql/analysis.go

    		result.combine(e.DateDiff.Timestamp2.analyze(s))
    		return result
    
    	// Handle aggregation function calls
    	case aggFnAvg, aggFnMax, aggFnMin, aggFnSum, aggFnCount:
    		// Initialize accumulator
    		e.aggregate = newAggVal(funcName)
    
    		var exprA qProp
    		if funcName == aggFnCount {
    			if e.Count.StarArg {
    				return qProp{isAggregation: true}
    			}
    
    			exprA = e.Count.ExprArg.analyze(s)
    		} else {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/rbac/v1alpha1/types_swagger_doc_generated.go

    // AUTO-GENERATED FUNCTIONS START HERE. DO NOT EDIT.
    var map_AggregationRule = map[string]string{
    	"":                     "AggregationRule describes how to locate ClusterRoles to aggregate into the ClusterRole",
    	"clusterRoleSelectors": "ClusterRoleSelectors holds a list of selectors which will be used to find ClusterRoles and create the rules. If any of the selectors match, then the ClusterRole's permissions will be added",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 22 00:51:25 UTC 2023
    - 8.7K bytes
    - Viewed (0)
  10. pkg/proxy/ipvs/util/ipvs_linux.go

    	if err != nil {
    		return nil, fmt.Errorf("could not get IPVS destination for service: %w", err)
    	}
    	rss := make([]*RealServer, 0)
    	for _, dst := range dsts {
    		dst, err := toRealServer(dst)
    		// TODO: aggregate errors?
    		if err != nil {
    			return nil, fmt.Errorf("could not convert IPVS destination to local real server: %w", err)
    		}
    		rss = append(rss, dst)
    	}
    	return rss, nil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 22 05:08:41 UTC 2024
    - 9K bytes
    - Viewed (0)
Back to top