Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 158 for limiting (0.3 sec)

  1. platforms/documentation/docs/src/docs/userguide/reference/command_line_interface.adoc

    === Listing projects
    Running the `projects` task gives you a list of the subprojects of the selected project, displayed in a hierarchy:
    
    ----
    $ gradle projects
    ----
    
    You also get a project report within https://scans.gradle.com/[Build Scans].
    
    [[sec:listing_tasks]]
    === Listing tasks
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 34.8K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/quantization/tensorflow/passes/prepare_lifting.cc

        // the textual format (on the commandline for example).
        return "quant-prepare-lifting";
      }
    
      StringRef getDescription() const final {
        // This is a brief description of the pass.
        return "Apply graph optimizations such as fusing and constant folding to "
               "prepare lifting.";
      }
    
      void getDependentDialects(DialectRegistry& registry) const override {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 17:58:54 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/gradle_wrapper.adoc

    The following command upgrades the Wrapper to the `latest` version:
    
    [listing,subs=+attributes]
    ----
    $ ./gradlew wrapper --gradle-version latest
    include::{snippetsPath}/wrapper/simple/tests/wrapperGradleVersionUpgrade.out[]
    ----
    
    The following command upgrades the Wrapper to a specific version:
    
    [listing,subs=+attributes]
    ----
    $ ./gradlew wrapper --gradle-version {gradleVersion}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 04 16:15:50 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/04-modeling-features/variant_model.adoc

    * when no variants from the producer match the consumer attributes (incompatibility error)
    
    [[sub:variant-ambiguity]]
    === Dealing with ambiguity errors
    
    An ambiguous variant selection looks like the following:
    
    [listing]
    ----
    > Could not resolve all files for configuration ':compileClasspath'.
       > Could not resolve project :lib.
         Required by:
             project :ui
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 02 20:50:18 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/publishing_gradle_plugins.adoc

    [listing]
    ----
    $ ./gradlew publishPlugins
    ----
    
    You can validate your plugins before publishing using the `--validate-only` flag:
    
    [listing]
    ----
    $ ./gradlew publishPlugins --validate-only
    ----
    
    If you have not configured your `gradle.properties` for the {portal}, you can specify them on the command-line:
    
    [listing]
    ----
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 18:40:53 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions_fusion.td

    include "tensorflow/compiler/mlir/quantization/common/lift_as_function_call.td"
    
    //===----------------------------------------------------------------------===//
    // Pattern rules for lifting ops with bias as functions
    //===----------------------------------------------------------------------===//
    
    def LiftDotGeneralWithBiasSameShape : Pat<
      (StableHLO_AddOp:$res
        (StableHLO_DotGeneralOp
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 04 07:19:09 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/utils/const_tensor_utils.cc

        mlir::APInt limitMin =
            mlir::APInt::getSignedMinValue(bw).sext(min.getBitWidth());
        mlir::APInt limitMax =
            mlir::APInt::getSignedMaxValue(bw).sext(min.getBitWidth());
    
        // Skips to the next bitwidth if the min and max values are out of the range
        // for the current bitwidth.
        if (min.sle(limitMin) || max.sle(limitMin) || min.sge(limitMax) ||
            max.sge(limitMax)) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 07 23:04:40 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  8. internal/kms/kms.go

    )
    
    // ListRequest is a structure containing fields
    // and options for listing keys.
    type ListRequest struct {
    	// Prefix is an optional prefix for filtering names.
    	// A list operation only returns elements that match
    	// this prefix.
    	// An empty prefix matches any value.
    	Prefix string
    
    	// ContinueAt is the name of the element from where
    	// a listing should continue. It allows paginated
    	// listings.
    	ContinueAt string
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. cmd/s3-zip-handlers.go

    	zipPath, _, err := splitZipExtensionPath(prefix)
    	if err != nil {
    		// Return empty listing
    		return ListObjectsV2Info{}, nil
    	}
    
    	zipObjInfo, err := objectAPI.GetObjectInfo(ctx, bucket, zipPath, ObjectOptions{})
    	if err != nil {
    		// Return empty listing
    		return ListObjectsV2Info{}, nil
    	}
    
    	zipInfo := zipObjInfo.ArchiveInfo(h)
    	if len(zipInfo) == 0 {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  10. .teamcity/performance-test-durations.json

      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting gzip tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 322
      } ]
    }, {
      "scenario" : "org.gradle.performance.regression.corefeature.ArchiveTreePerformanceTest.visiting tar trees",
      "durations" : [ {
        "testProject" : "archivePerformanceProject",
        "linux" : 320
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:30:45 UTC 2024
    - 27.9K bytes
    - Viewed (1)
Back to top