Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 7 of 7 for getLimits (5.29 sec)

  1. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/rules/JacocoViolationRuleImpl.java

            this.excludes = excludes;
        }
    
        @Override
        public List<String> getExcludes() {
            return Collections.unmodifiableList(excludes);
        }
    
        @Override
        public List<JacocoLimit> getLimits() {
            return Collections.unmodifiableList(limits);
        }
    
        @Override
        public JacocoLimit limit(Action<? super JacocoLimit> configureAction) {
            JacocoLimit limit = new JacocoLimitImpl();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  2. platforms/jvm/jacoco/src/main/java/org/gradle/testing/jacoco/tasks/rules/JacocoViolationRule.java

         */
        @Input
        List<String> getExcludes();
    
        /**
         * Gets all limits defined for this rule. Defaults to an empty list.
         */
        @Input
        List<JacocoLimit> getLimits();
    
        /**
         * Adds a limit for this rule. Any number of limits can be added.
         */
        JacocoLimit limit(Action<? super JacocoLimit> configureAction);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 16:03:36 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  3. platforms/jvm/jacoco/src/main/java/org/gradle/internal/jacoco/AntJacocoCheck.java

                                @SuppressWarnings("UnusedDeclaration")
                                public Object doCall(Object ignore) {
                                    for (JacocoLimit limit : rule.getLimits()) {
                                        Map<String, Object> limitArgs = new HashMap<String, Object>();
                                        limitArgs.put("counter", limit.getCounter());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 23:19:29 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  4. plugin/pkg/admission/limitranger/admission.go

    		sort.Strings(setRequests)
    		a := strings.Join(setRequests, ", ") + fmt.Sprintf(" request for %s %s", annotationPrefix, container.Name)
    		annotations = append(annotations, a)
    	}
    	if len(setLimits) > 0 {
    		sort.Strings(setLimits)
    		a := strings.Join(setLimits, ", ") + fmt.Sprintf(" limit for %s %s", annotationPrefix, container.Name)
    		annotations = append(annotations, a)
    	}
    	return annotations
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 13:04:39 UTC 2023
    - 25.8K bytes
    - Viewed (0)
  5. testing/architecture-test/src/changes/archunit-store/public-api-mutable-properties.txt

    Method <org.gradle.testing.jacoco.tasks.rules.JacocoViolationRule.getLimits()> does not have raw return type assignable to org.gradle.api.provider.Provider in (JacocoViolationRule.java:0)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 22:42:49 UTC 2024
    - 160.5K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    // Deprecated: Use Resources.ProtoReflect.Descriptor instead.
    func (*Resources) Descriptor() ([]byte, []int) {
    	return file_pkg_apis_istio_v1alpha1_values_types_proto_rawDescGZIP(), []int{7}
    }
    
    func (x *Resources) GetLimits() map[string]string {
    	if x != nil {
    		return x.Limits
    	}
    	return nil
    }
    
    func (x *Resources) GetRequests() map[string]string {
    	if x != nil {
    		return x.Requests
    	}
    	return nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        if (result_type.hasStaticShape()) {
          return failure();
        }
    
        Value start = op.getStart();
        Value delta = op.getDelta();
        Value limit = op.getLimit();
    
        // To compute the length we need to use floating point calculations so that
        // ceil can be computed for the number of steps.
        auto compute_element_type =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
Back to top