Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 248 for meets (0.06 sec)

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

      // only when the number of succeeded pods equals to the completions.
      // When the field is specified, it must be immutable and works only for the Indexed Jobs.
      // Once the Job meets the SuccessPolicy, the lingering pods are terminated.
      //
      // This field  is alpha-level. To use this field, you must enable the
      // `JobSuccessPolicy` feature gate (disabled by default).
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 29.1K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/sccp.go

    			t.propagate(block)
    		}
    	}
    }
    
    // meet meets all of phi arguments and computes result lattice
    func (t *worklist) meet(val *Value) lattice {
    	optimisticLt := lattice{top, nil}
    	for i := 0; i < len(val.Args); i++ {
    		edge := Edge{val.Block, i}
    		// If incoming edge for phi is not visited, assume top optimistically.
    		// According to rules of meet:
    		// 		Top ∩ any = any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jan 22 16:54:50 UTC 2024
    - 17.6K bytes
    - Viewed (0)
  3. docs/bucket/replication/DESIGN.md

    ### Replication of object version and metadata
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 14.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/batch/v1/types_swagger_doc_generated.go

    	"backoffLimit":            "Specifies the number of retries before...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/testing_gradle_plugins.adoc

    == The importance of testing
    
    Testing is a crucial part of the software development life cycle, ensuring that software functions correctly and meets quality standards before release.
    Automated testing allows developers to refactor and improve code with confidence.
    
    [[testing-pyramid]]
    === The testing pyramid
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 18 22:49:20 UTC 2024
    - 16K bytes
    - Viewed (0)
  6. staging/src/k8s.io/api/batch/v1/types.go

    	// the "SucceededCriteriaMet" condition is added, and the lingering pods are removed.
    	// The terminal state for such a Job has the "Complete" condition.
    	// Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
    	// other rules are ignored. At most 20 elements are allowed.
    	// +listType=atomic
    	Rules []SuccessPolicyRule `json:"rules" protobuf:"bytes,1,opt,name=rules"`
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
  7. CONTRIBUTING.md

    **1. New PR**
    
    - As a contributor, you submit a New PR on GitHub.
    - We inspect every incoming PR and add certain labels to the PR such as `size:`,
      `comp:` etc.  At this stage we check if the PR is valid and meets certain
      quality requirements. For example, we check if the CLA is signed, PR has
      sufficient description, if applicable unit tests are added, if it is a
      reasonable contribution (meaning it is not a single liner cosmetic PR).
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 11:45:51 UTC 2024
    - 15.6K bytes
    - Viewed (0)
  8. pkg/apis/batch/types.go

    	// the "SucceededCriteriaMet" condition is added, and the lingering pods are removed.
    	// The terminal state for such a Job has the "Complete" condition.
    	// Additionally, these rules are evaluated in order; Once the Job meets one of the rules,
    	// other rules are ignored. At most 20 elements are allowed.
    	// +listType=atomic
    	Rules []SuccessPolicyRule
    }
    
    // SuccessPolicyRule describes rule for declaring a Job as succeeded.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 12:01:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  9. pkg/scheduler/framework/plugins/noderesources/fit.go

    	_, modifiedNode, err := schedutil.As[*v1.Node](oldObj, newObj)
    	if err != nil {
    		return framework.Queue, err
    	}
    	// TODO: also check if the original node meets the pod's resource requestments once preCheck is completely removed.
    	// See: https://github.com/kubernetes/kubernetes/issues/110175
    	if isFit(pod, modifiedNode) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  10. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // If Image contains a "/", it will replace the entire `image` in the pod.
      string image = 4;
    
      // The Repair controller has 3 modes (labelPods, deletePods, and repairPods). Pick which one meets your use cases. Note only one may be used.
      // The mode defines the action the controller will take when a pod is detected as broken.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
Back to top