Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 139 for Configurer (0.45 sec)

  1. configure.py

      # At most 1 GPU platform can be configured.
      gpu_platform_count = 0
      if environ_cp.get('TF_NEED_ROCM') == '1':
        gpu_platform_count += 1
      if environ_cp.get('TF_NEED_CUDA') == '1':
        gpu_platform_count += 1
      if gpu_platform_count >= 2:
        raise UserInputError('CUDA / ROCm are mututally exclusive. '
                             'At most 1 GPU platform can be configured.')
    
      set_cc_opt_flags(environ_cp)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * @return The configured objects.
         */
        Iterable<?> configure(Iterable<?> objects, Closure configureClosure);
    
        /**
         * Configures a collection of objects via an action.
         *
         * @param objects The objects to configure
         * @param configureAction The action to apply to each object
         * @return The configured objects.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // The control plane has different scopes depending on component, but can configure default log level across all components
      // If empty, default scope and level will be used as configured in code
      string level = 1;
    }
    
    // Configuration for an ingress gateway.
    message IngressGatewayConfig {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    This requires inspecting all configurations and artifacts.
    Processing artifacts created by tasks causes those tasks to be realized and configured.
    
    This internal representation is now created more lazily, which can change the order in which tasks are configured.
    Some tasks may never be configured.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  5. cluster/gce/windows/k8s-node-setup.psm1

    #
    # Prerequisites:
    #   $env:POD_CIDR is set (by Set-PodCidr).
    #   The "management" interface exists (Configure-HostNetworkingService).
    #   The HNS network for pod networking has been configured
    #     (Configure-HostNetworkingService).
    #   Containerd is installed (Install_Containerd).
    #
    # Required ${kube_env} keys:
    #   DNS_SERVER_IP
    #   DNS_DOMAIN
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    <5> Gets a reference to the existing (untyped) task named `assemble` and configures it — you can only configure properties and methods that are available on `Task` with this syntax
    <6> Registers a new untyped task named `myTask2` and configures it — you can only configure properties and methods that are available on `Task` in this case
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  7. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractDomainObjectCollectionSpec.groovy

            0 * _
    
            when:
            toList(container)
    
            then:
            0 * _
        }
    
        def "provider is not queried or element configured until collection is realized when lazy action is registered on type-filtered collection"() {
            containerAllowsExternalProviders()
            def action = Mock(Action)
            def provider1 = Mock(ProviderInternal)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  8. docs/bucket/notifications/README.md

    `images`. Whenever a JPEG image is created/overwritten, a new document is added or an existing document is updated in the Elasticsearch index configured above. When an existing object is deleted, the corresponding document is deleted from the index. Thus, the rows in the Elasticsearch index, reflect the `.jpg` objects in the `images` bucket.
    
    To configure this bucket notification, we need the ARN printed by MinIO in the previous step. Additional information about ARN is available [here](htt...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 84K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    ==== Configuration options
    
    The content of the XML files can also be configured to convey the results differently, by configuring the
    link:{javadocPath}/org/gradle/api/tasks/testing/JUnitXmlReport.html[JUnitXmlReport] options.
    
    .Configuring how the results are conveyed
    ====
    include::sample[dir="snippets/testing/junit-xml-results/kotlin",files="build.gradle.kts[tags=configure-content]"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/native/native_software.adoc

    === Example: Configuring CUnit tests
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 54.6K bytes
    - Viewed (0)
Back to top