Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 309 for meets (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. android/guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

                } else {
                  return Ints.compare(m1.getParameterTypes().length, m2.getParameterTypes().length);
                }
              }
            });
      }
    
      /** Validates that the given method's signature meets all of our assumptions. */
      private static void validateMethod(Method method) {
        String desc = method.toString();
    
        assertTrue(desc, isAnyEnter(method) || isWaitFor(method));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/util/concurrent/GeneratedMonitorTest.java

                } else {
                  return Ints.compare(m1.getParameterTypes().length, m2.getParameterTypes().length);
                }
              }
            });
      }
    
      /** Validates that the given method's signature meets all of our assumptions. */
      private static void validateMethod(Method method) {
        String desc = method.toString();
    
        assertTrue(desc, isAnyEnter(method) || isWaitFor(method));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 29 16:29:37 UTC 2024
    - 27.1K bytes
    - Viewed (0)
  8. platforms/ide/ide-native/src/integTest/groovy/org/gradle/ide/visualstudio/VisualStudioSoftwareModelSingleProjectIntegrationTest.groovy

        Set<String> projectConfigurations = ['win32Debug', 'win32Release', 'x64Debug', 'x64Release'] as Set
    
        def app = new CppHelloWorldApp()
    
        def setup() {
            assumeFalse(toolChain.meets(WINDOWS_GCC))
    
            settingsFile << """
                rootProject.name = 'app'
            """
            buildFile << """
                apply plugin: 'cpp'
                apply plugin: 'visual-studio'
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 35.7K bytes
    - Viewed (0)
  9. plugin/pkg/admission/limitranger/admission.go

    		}
    		if oldAccessor.GetDeletionTimestamp() != nil {
    			return nil
    		}
    	}
    
    	items, err := l.GetLimitRanges(a)
    	if err != nil {
    		return err
    	}
    
    	// ensure it meets each prescribed min/max
    	for i := range items {
    		limitRange := items[i]
    
    		if !l.actions.SupportsLimit(limitRange) {
    			continue
    		}
    
    		err = limitFn(limitRange, a.GetResource().Resource, a.GetObject())
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/admissionregistration/v1alpha1/types_swagger_doc_generated.go

    	return map_ExpressionWarning
    }
    
    var map_MatchResources = map[string]string{
    	"":                     "MatchResources decides whether to run the admission control policy on an object based on whether it meets the match criteria. The exclude rules take precedence over include rules (if a resource matches both, it is excluded)",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jul 20 16:30:10 UTC 2023
    - 27K bytes
    - Viewed (0)
Back to top