Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 141 for iterations (0.17 sec)

  1. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      optional string scope = 4;
    }
    
    // RuleWithOperations is a tuple of Operations and Resources. It is recommended to make
    // sure that all the tuple expansions are valid.
    message RuleWithOperations {
      // Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or *
      // for all of those operations and any future admission operations that are added.
      // If '*' is present, the length of the slice must be one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  2. pkg/apis/admissionregistration/types.go

    )
    
    // RuleWithOperations is a tuple of Operations and Resources. It is recommended to make
    // sure that all the tuple expansions are valid.
    type RuleWithOperations struct {
    	// Operations is the operations the admission hook cares about - CREATE, UPDATE, or *
    	// for all operations.
    	// If '*' is present, the length of the slice must be one.
    	// Required.
    	Operations []OperationType
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 52.6K bytes
    - Viewed (0)
  3. pkg/apis/admissionregistration/validation/validation.go

    	if len(ruleWithOperations.Operations) == 0 {
    		allErrors = append(allErrors, field.Required(fldPath.Child("operations"), ""))
    	}
    	if len(ruleWithOperations.Operations) > 1 && hasWildcardOperation(ruleWithOperations.Operations) {
    		allErrors = append(allErrors, field.Invalid(fldPath.Child("operations"), ruleWithOperations.Operations, "if '*' is present, must not specify other operations"))
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 56.6K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    )
    
    // RuleWithOperations is a tuple of Operations and Resources. It is recommended to make
    // sure that all the tuple expansions are valid.
    type RuleWithOperations struct {
    	// Operations is the operations the admission hook cares about - CREATE, UPDATE, DELETE, CONNECT or *
    	// for all of those operations and any future admission operations that are added.
    	// If '*' is present, the length of the slice must be one.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"testing-jvm",
    					"worker-main",
    					"files",
    					"stdlib-java-extensions",
    					"build-cache-packaging",
    					"build-operations",
    					"precondition-tester",
    					"tooling-api-builders",
    					"hashing",
    					"base-services-groovy",
    					"kotlin-dsl-provider-plugins"
    				]
    			},
    			{
    				"parallelizationMethod":{
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

      // Fired before each iteration of tests starts.  There may be more than
      // one iteration if GTEST_FLAG(repeat) is set. iteration is the iteration
      // index, starting from 0.
      virtual void OnTestIterationStart(const UnitTest& unit_test,
                                        int iteration) = 0;
    
      // Fired before environment set-up for each iteration of tests starts.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
      // The policy cares about an operation if it matches _any_ Rule.
      // +listType=atomic
      // +optional
      repeated NamedRuleWithOperations resourceRules = 3;
    
      // ExcludeResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy should not care about.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// ResourceRules describes what operations on what resources/subresources the ValidatingAdmissionPolicy matches.
    	// The policy cares about an operation if it matches _any_ Rule.
    	// +listType=atomic
    	// +optional
    	ResourceRules []NamedRuleWithOperations `json:"resourceRules,omitempty" protobuf:"bytes,3,rep,name=resourceRules"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td

      regions accept the current value of the iteration variables as inputs.
    
      The condition region yields a tensor<i1> which, if false, will exit the loop.
      It can also, optionally and additionally, yield the iteration variables, which
      must be unchanged.
    
      The body region always has to yield the (possibly updated) iteration variables.
    
      The iteration variables are initialized to the Op input, and the results of the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 04:08:35 UTC 2024
    - 90.5K bytes
    - Viewed (0)
  10. cmd/object-api-multipart_test.go

    				{
    					Object:   objectNames[0],
    					UploadID: uploadIDs[2],
    				},
    				{
    					Object:   objectNames[0],
    					UploadID: uploadIDs[3],
    				},
    			},
    		},
    
    		// Operations on bucket 2.
    		// listMultipartResults - 26.
    		// checking listing everything.
    		{
    			MaxUploads:  100,
    			IsTruncated: false,
    
    			Uploads: []MultipartInfo{
    				{
    					Object:   objectNames[0],
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 77.1K bytes
    - Viewed (0)
Back to top