Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 180 for batches (0.14 sec)

  1. istioctl/pkg/describe/describe.go

    func renderMatches(trafficMatches []*v1alpha3.HTTPMatchRequest) string {
    	if len(trafficMatches) == 0 {
    		return "everything"
    	}
    
    	matches := []string{}
    	for _, trafficMatch := range trafficMatches {
    		matches = append(matches, renderMatch(trafficMatch))
    	}
    	return strings.Join(matches, ", ")
    }
    
    func renderMatch(match *v1alpha3.HTTPMatchRequest) string {
    	retval := "Match: "
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    	ObjectSelector *metav1.LabelSelector `json:"objectSelector,omitempty" protobuf:"bytes,2,opt,name=objectSelector"`
    	// 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
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/compilation_test.go

    	costLimit = 100000000
    )
    
    type validationMatcher interface {
    	matches(cr CompilationResult) bool
    	String() string
    }
    
    type allMatcher []validationMatcher
    
    func matchesAll(matchers ...validationMatcher) validationMatcher {
    	return allMatcher(matchers)
    }
    
    func (m allMatcher) matches(cr CompilationResult) bool {
    	for _, each := range m {
    		if !each.matches(cr) {
    			return false
    		}
    	}
    	return true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// Default to the empty LabelSelector, which matches everything.
    	// +optional
    	ObjectSelector *metav1.LabelSelector `json:"objectSelector,omitempty" protobuf:"bytes,2,opt,name=objectSelector"`
    	// 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
    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. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                List<Class<? extends Annotation>> matches = new ArrayList<>();
                validateMethod(method, accessorType, Inject.class, matches);
                for (Class<? extends Annotation> annotationType : annotationTypes) {
                    validateMethod(method, accessorType, annotationType, matches);
                }
                if (matches.size() > 1) {
                    TreeFormatter formatter = new TreeFormatter();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/compose_uniform_quantized_type_pass.cc

              /*width=*/32);
      const bool is_f32_result =
          mlir::isa<Float32Type>(convert_op.getResult().getType().getElementType());
      return is_i32_operand && is_f32_result;
    }
    
    // Matches the zero points operand for the uniform_quantize and
    // uniform_dequantize functions. Returns `failure()` if it doesn't match.
    LogicalResult MatchZeroPointsOperand(Value zero_points) {
      if (!zero_points) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  7. common/scripts/metallb-native.yaml

                      description: A label selector is a label query over a set of resources.
                        The result of matchLabels and matchExpressions are ANDed. An empty
                        label selector matches all objects. A null label selector matches
                        no objects.
                      properties:
                        matchExpressions:
                          description: matchExpressions is a list of label selector requirements.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  8. src/cmd/internal/testdir/testdir_test.go

    	//	"(\w+)" matches "arm64" (architecture name)
    	//	"(/[\w.]+)?" matches "v8.1" (architecture version)
    	//	"(/\w*)?" doesn't match anything here (it's an optional part of the triplet)
    	//	"\s*:\s*" matches " : " (semi-colon)
    	//	"(" starts a capturing group
    	//      first reMatchCheck matches "-`ADD`"
    	//	`(?:" starts a non-capturing group
    	//	"\s*,\s*` matches " , "
    	//	second reMatchCheck matches "`SUB`"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    github.com/ can only use git; paths on evil.com cannot use any version
    control command, and all other paths (* matches everything) can use
    only git or hg.
    
    The special patterns "public" and "private" match public and private
    module or import paths. A path is private if it matches the GOPRIVATE
    variable; otherwise it is public.
    
    If no rules in the GOVCS variable match a particular module or import path,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    }
    
    // MergeStrategicMergeMapPatchUsingLookupPatchMeta merges strategic merge
    // patches retaining `null` fields and parallel lists. If 2 patches change the
    // same fields and the latter one will override the former one. If you don't
    // want that happen, you need to run func MergingMapsHaveConflicts before
    // merging these patches. Applying the resulting merged merge patch to a JSONMap
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top