Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 488 for csproduct (0.18 sec)

  1. platforms/native/language-native/src/main/java/org/gradle/swiftpm/Package.java

    /**
     * Represents a Swift Package Manager package.
     *
     * @since 4.6
     */
    @HasInternalProtocol
    public interface Package {
        /**
         * Returns the products of this package.
         */
        Set<? extends Product> getProducts();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 943 bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/structuring-software-projects/groovy/build-logic/commons/src/main/groovy/com.example.jacoco.gradle

            attribute(DocsType.DOCS_TYPE_ATTRIBUTE, objects.named(DocsType, 'source-folders'))
        }
        sourceSets.main.java.srcDirs.forEach { outgoing.artifact(it) }
    }
    
    // Share the coverage data to be aggregated for the whole product
    configurations.create('coverageDataElements') {
        visible = false
        canBeResolved = false
        extendsFrom(configurations.implementation)
        attributes {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/cpp/ProductionCppComponent.java

     */
    
    package org.gradle.language.cpp;
    
    import org.gradle.api.provider.Provider;
    import org.gradle.language.ProductionComponent;
    
    /**
     * Represents a C++ component that is the main product of a project.
     *
     * @since 4.5
     */
    public interface ProductionCppComponent extends CppComponent, ProductionComponent {
        /**
         * {@inheritDoc}
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  4. platforms/native/language-native/src/main/java/org/gradle/language/swift/ProductionSwiftComponent.java

     */
    
    package org.gradle.language.swift;
    
    import org.gradle.api.provider.Provider;
    import org.gradle.language.ProductionComponent;
    
    /**
     * Represents a Swift component that is the main product of a project.
     *
     * @since 4.5
     */
    public interface ProductionSwiftComponent extends SwiftComponent, ProductionComponent {
        /**
         * {@inheritDoc}
         */
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/main/java/org/gradle/language/ProductionComponent.java

     * limitations under the License.
     */
    
    package org.gradle.language;
    
    import org.gradle.api.component.SoftwareComponent;
    import org.gradle.api.provider.Provider;
    
    /**
     * Represents a component that is the main product of a project.
     *
     * @since 4.5
     */
    public interface ProductionComponent extends SoftwareComponent {
        /**
         * Returns the binary of the component to use as the default for development.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. tensorflow/c/experimental/ops/gen/cpp/golden/testing_ops.cc.golden

    }
    
    // Op: MatMul()
    // Summary:
    //
    // Description:
    Status MatMul(AbstractContext* ctx, AbstractTensorHandle* const a, AbstractTensorHandle* const b, AbstractTensorHandle** product, bool transpose_a, bool transpose_b, bool grad_a, bool grad_b, const char* name, const char* raw_device_name) {
      AbstractOperationPtr op_ptr(ctx->CreateOperation());
      TF_RETURN_IF_ERROR(op_ptr->Reset("MatMul", raw_device_name));
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Nov 16 19:04:03 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  7. tensorflow/c/eager/c_api_experimental_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(status)) << TF_Message(status);
      float product[4] = {0};
      EXPECT_EQ(sizeof(product), TF_TensorByteSize(t));
      memcpy(&product[0], TF_TensorData(t), TF_TensorByteSize(t));
      TF_DeleteTensor(t);
      EXPECT_EQ(7, product[0]);
      EXPECT_EQ(10, product[1]);
      EXPECT_EQ(15, product[2]);
      EXPECT_EQ(22, product[3]);
      TF_DeleteStatus(status);
    }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Aug 03 03:14:26 UTC 2023
    - 31.5K bytes
    - Viewed (0)
  8. samples/bookinfo/src/productpage/templates/productpage.html

    <!-- Book description section -->
    <div class="container mt-8 mx-auto px-4 sm:px-6 lg:px-8">
      <h1 class="text-5xl font-bold tracking-tight text-blue-900">{{ product.title }}</h1>
      <div class="mt-6 max-w-4xl">
        {% autoescape false %}
        <p class="mt-6 text-xl leading-8 text-gray-600">{{ product.descriptionHtml }}</p>
        {% endautoescape %}
        <div class="mt-6">
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 19:54:05 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  9. src/math/bits/bits.go

    	diff = x - y - borrow
    	// See Sub32 for the bit logic.
    	borrowOut = ((^x & y) | (^(x ^ y) & diff)) >> 63
    	return
    }
    
    // --- Full-width multiply ---
    
    // Mul returns the full-width product of x and y: (hi, lo) = x * y
    // with the product bits' upper half returned in hi and the lower
    // half returned in lo.
    //
    // This function's execution time does not depend on the inputs.
    func Mul(x, y uint) (hi, lo uint) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 11:59:09 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  10. samples/ratelimit/local-rate-limit-service.yaml

    # This example shows how to use Istio local rate limiting with descriptors to limit by path. 
    # This uses the base book-info demo and adds rate limiting by path, specifically rate limiting the product page
    # to 10 requests per minute, and the overall fdqn will be able to accept 100 requests per minute. 
    apiVersion: networking.istio.io/v1alpha3
    kind: EnvoyFilter
    metadata:
      name: filter-local-ratelimit-svc
      namespace: istio-system
    spec:
      workloadSelector:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Aug 31 08:22:09 UTC 2023
    - 3.1K bytes
    - Viewed (0)
Back to top