Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,030 for breaking (0.18 sec)

  1. platforms/jvm/code-quality/src/main/groovy/org/gradle/api/plugins/quality/Checkstyle.java

         * The maximum number of errors that are tolerated before breaking the build
         * or setting the failure property.
         *
         * @return the maximum number of errors allowed
         * @since 3.4
         */
        @Input
        public int getMaxErrors() {
            return maxErrors;
        }
    
        /**
         * Set the maximum number of errors that are tolerated before breaking the build.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jul 19 14:14:12 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  2. platforms/software/signing/src/main/java/org/gradle/plugins/signing/Signature.java

        Signature(Buildable source, Callable<File> toSign, Callable<String> classifier, Callable<String> name, SignatureSpec signatureSpec, Object... tasks) {
            // TODO: find a way to inject a proper task dependency factory without breaking the public API
            super(DefaultTaskDependencyFactory.withNoAssociatedProject(), tasks);
            init(toSign, classifier, name, signatureSpec);
            this.source = source;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 12:20:43 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    --
    When using the Groovy DSL, you need to watch out for a particular upgrade problem when dealing with the removed configurations.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
  4. CHANGELOG.md

        other engines on other platforms. [Ktor] does this pretty well today!
    
     *  Breaking: Use `kotlin.time.Duration` in APIs like `OkHttpClient.Builder.callTimeout()`. This
        update also drops support for the `DurationUnit` functions introduced in earlier alpha releases
        of OkHttp 5.
    
     *  Breaking: Reorder the parameters in the Cache constructor that was introduced in 5.0.0-alpha.3.
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Thu Apr 18 01:31:39 UTC 2024
    - 21.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/third_party/forked/golang/json/fields.go

    }
    
    func fillField(f field) field {
    	f.nameBytes = []byte(f.name)
    	f.equalFold = foldFunc(f.nameBytes)
    	return f
    }
    
    // byName sorts field by name, breaking ties with depth,
    // then breaking ties with "name came from json tag", then
    // breaking ties with index sequence.
    type byName []field
    
    func (x byName) Len() int { return len(x) }
    
    func (x byName) Swap(i, j int) { x[i], x[j] = x[j], x[i] }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 13.1K bytes
    - Viewed (0)
  6. pkg/apis/autoscaling/v2beta1/conversion.go

    	out.Annotations = annotations
    
    	if in.Spec.Behavior != nil {
    		// TODO: this is marshaling an internal type. Fix this without breaking backwards compatibility with n-1 API servers.
    		behaviorEnc, err := json.Marshal(in.Spec.Behavior)
    		if err != nil {
    			return err
    		}
    		// copy before mutating
    		if !copiedAnnotations {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 03 16:28:10 UTC 2021
    - 13.4K bytes
    - Viewed (0)
  7. src/html/template/js_test.go

    		{"foo\r\nbar", `foo\r\nbar`},
    		// Preserve attribute boundaries.
    		{`"`, `\u0022`},
    		{`'`, `\u0027`},
    		// Allow embedding in HTML without further escaping.
    		{`&amp;`, `\u0026amp;`},
    		// Prevent breaking out of text node and element boundaries.
    		{"</script>", `\u003c\/script\u003e`},
    		{"<![CDATA[", `\u003c![CDATA[`},
    		{"]]>", `]]\u003e`},
    		// https://dev.w3.org/html5/markup/aria/syntax.html#escaping-text-span
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 02:20:11 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tensorflow/transforms/functional_control_flow_to_cfg.cc

        }
        result.replaceAllUsesWith(arg);
      }
    }
    
    // Given a functional IfOp, transforms the enclosing code to eliminate it
    // completely from the IR, breaking it into operations to evaluate the condition
    // as a bool, plus some branches.
    static LogicalResult LowerIfOp(IfOp op) {
      Operation* op_inst = op.getOperation();
      Location loc = op_inst->getLoc();
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 13 11:42:59 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Secondly, this improves performance as Gradle can calculate the value once and cache the result.
    
    This will become an error in Gradle 6.0.
    
    ==== Creating `SignOperation` instances
    
    Creating `SignOperation` instances directly is now deprecated. Instead, the methods of `SigningExtension` should be used to create these instances.
    
    This will become an error in Gradle 6.0.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/quantization/stablehlo/quantization_config.proto

    message QuantizationSpecs {
      // List of `QuantizationSpec`s. Later spec in the sequence takes precedence.
      //
      // NOTE: Tie-breaking mechanism is not yet supported. Providing multiple
      // `QuantizationSpec` with conflicting quantizable units may result in
      // undefined behavior.
      // TODO: b/307620778 - Support tie-breaking for conflicting specs.
      repeated QuantizationSpec specs = 1;
    }
    
    // Configuration for quantization debugger.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 14.3K bytes
    - Viewed (0)
Back to top