Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 64 for produced (0.25 sec)

  1. api/maven-api-model/src/main/mdo/maven.mdo

              <required>true</required>
              <description>The identifier for this artifact that is unique within the group given by the
                group ID. An artifact is something that is either produced or used by a project.
                Examples of artifacts produced by Maven for a project include: JARs, source and binary
                distributions, and WARs.</description>
              <type>String</type>
            </field>
            <field>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

                SmallVector<unsigned int, 2> port)
          : producer(producer), port(port) {}
    
      raw_ostream& print(raw_ostream& os) const {
        if (auto* op = producer.dyn_cast<Operation*>())
          os << "op " << op->getName();
        if (auto ba = producer.dyn_cast<BlockArgument>())
          os << "block_arg " << ba.getArgNumber();
        os << formatv(" [{0}]", llvm::make_range(port.begin(), port.end()));
        return os;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  3. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    scattered uniformly and evenly through the whole Space MN, and so being every where mix'd in the same Proportion, they must every where produce the same Colour. And therefore, since by this Mixture they produce white in the Exterior Spaces MP and TN, they must also produce white in the Interior Space PT. This is the reason of the Composition by which Whiteness was produced in this Experiment, and by what other way soever I made the like Composition, the Result was Whiteness. Lastly, If with the Teeth of...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformCachingIntegrationTest.groovy

            includedBuild.with {
                it.createDir("producer")
                settingsFile << """
                    include(":producer")
                """
                file("project-artifact.jar").text = "project artifact"
                buildFile << declareAttributes() << """
                    project(':producer') {
                        group = "com.test"
                        artifacts {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 11:52:44 UTC 2024
    - 97.8K bytes
    - Viewed (0)
  5. api/openapi-spec/v3/apis__apiextensions.k8s.io__v1_openapi.json

    results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 178.6K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

    results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/ir/tf_ops_a_m.cc

      // All concat operands must be defined by ops.
      Operation* first_arg_op = op.getValues().front().getDefiningOp();
      if (first_arg_op == nullptr) return failure();
    
      // All concat operands must be produced by the coeff-wise unary operation.
      if (!first_arg_op->hasTrait<OpTrait::TF::CwiseUnary>()) return failure();
    
      // All concat operands must be defined by the op of same kind.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 146.7K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

    results in a runtime error, the runtime error is logged, and the validation failure message is produced as if the messageExpression field were unset. If messageExpression evaluates to an empty string, a string with only spaces, or a string that contains line breaks, then the validation failure message will also be produced as if the messageExpression field were unset, and the fact that messageExpression produced an empty string/string with only spaces/string with line breaks will be logged. messageExpression...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

                    api1 files(producer1)
                    api2 files(producer2)
                }
            """)
    
            when:
            run "resolveapi1", "resolveapi2"
            then:
            executedAndNotSkipped(":resolveapi1", ":resolveapi2")
            outputContains("artifacts: [producer1.jar (producer1.jar)]")
            outputContains("artifacts: [producer2.jar (producer2.jar)]")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
  10. src/cmd/go/internal/load/pkg.go

    	// (including modload.ImportMissingError, ImportMissingSumError, and the
    	// corresponding "cannot find package %q in any of" GOPATH-mode error
    	// produced in build.(*Context).Import; modload.AmbiguousImportError,
    	// and modload.PackageNotInModuleError; and the malformed module path errors
    	// produced in golang.org/x/mod/module.CheckMod) implement an interface
    	// to make it easier to check for them? That would save us from having to
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
Back to top