Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for unrealized2 (0.23 sec)

  1. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

    //===----------------------------------------------------------------------===//
    // StableHLO+TFL --> VHLO+TFL Ops
    //===----------------------------------------------------------------------===//
    
    // Wrap op result uses in an unrealized cast to create a cast to buffer
    // any type changes to result, and apply type converter to result:
    //   result = op(V0)
    //   V1     = op2(result)
    //   ==>
    //   result = op(V0)
    //   V1     = unrealized_cast(result)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. subprojects/core/src/test/groovy/org/gradle/api/internal/collections/IterationOrderRetainingSetElementSourceTest.groovy

            boolean addResult = source.add("foo")
            provider1.value = []
    
            then:
            addResult
            source.iterator().collect() == ["foo"]
        }
    
        def "adding is not ignored when an unrealized provider currently has the same value"() {
            def provider1 = setProvider("foo")
    
            when:
            source.addPendingCollection(provider1)
            boolean addResult = source.add("foo")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 01 06:43:26 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. subprojects/core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskContainerTest.groovy

            noExceptionThrown()
            replaced == newTask
            container.getByName("task") == newTask
    
            and:
            1 * taskFactory.create(_ as TaskIdentity) >> newTask
        }
    
        void "replaces unrealized registered task will execute configuration action against new task"() {
            given:
            def action = Mock(Action)
            def provider = container.register("task", action)
            provider.configure(action)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 14:36:44 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    - `TaskContainer.iterator().remove()`
    
    Additionally, the following deprecated functionality now results in an error:
    
    - Replacing a task that has already been realized.
    - Replacing a registered (unrealized) task with an incompatible type. A compatible type is the same type or a sub-type of the registered type.
    - Replacing a task that has never been registered.
    
    ==== Replaced and Removed APIs
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
Back to top