Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 36 for meets (0.04 sec)

  1. staging/src/k8s.io/apiserver/pkg/admission/plugin/cel/filter_test.go

    							t.Errorf("Expected validations '%s' error to contain '%v' but got: %v", expr, expectErr, result.Error)
    						}
    						meets[i] = true
    					}
    				}
    			}
    			for i, meet := range meets {
    				if !meet && CompilationResults[i].Error != nil {
    					t.Errorf("Unexpected err '%v' for expression '%s'", CompilationResults[i].Error, validations[i].GetExpression())
    				}
    			}
    		})
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 40.4K bytes
    - Viewed (0)
  2. pkg/test/framework/suite.go

    	RequireExternalControlPlaneTopology() Suite
    	// RequireMinVersion validates the environment meets a minimum version
    	RequireMinVersion(minorVersion uint) Suite
    	// RequireMaxVersion validates the environment meets a maximum version
    	RequireMaxVersion(minorVersion uint) Suite
    	// Setup runs enqueues the given setup function to run before test execution.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/passes/lift_quantizable_spots_as_functions.cc

          }
        } else if (function_name.contains("gather")) {
          // This op is guaranteed to be a constant as ODS checks IsConstTensor.
          // Check if the number of elements meets the requirement.
          int64_t num_elements =
              mlir::cast<ShapedType>(call_op.getOperand(0).getType())
                  .getNumElements();
          if (num_elements < quant_options_.min_num_elements_for_weights()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  4. pkg/workloadapi/workload.proto

        // Prefer traffic in the same cluster.
        CLUSTER = 5;
        // Prefer traffic in the same network.
        NETWORK = 6;
      }
      enum Mode {
        UNSPECIFIED_MODE = 0;
    
        // In STRICT mode, only endpoints that meets all of the routing preferences will be considered.
        // This can be used, for instance, to keep traffic ONLY within the same cluster/node/region.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  5. 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)
  6. 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)
  7. 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)
  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. 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)
Back to top