Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 1,918 for Result (0.18 sec)

  1. tensorflow/compiler/mlir/tensorflow/transforms/remove_unused_arguments.cc

    }
    
    Operation* GetAnyReturn(Region* region) {
      Operation* result;
      // We only go one level deep, since "returns" in nested functions
      // and return-as-yield CF don't belong to us.
      for (Block& block : region->getBlocks()) {
        for (Operation& op : block.getOperations()) {
          if (op.hasTrait<OpTrait::ReturnLike>()) result = &op;
        }
      }
      return result;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  2. subprojects/core/src/integTest/groovy/org/gradle/api/internal/changedetection/rules/OverlappingOutputsIntegrationTest.groovy

            firstOutput.assertExists()
            secondOutput.assertExists()
            // first can be loaded from the cache
            result.assertTaskSkipped(first)
            // second cannot be loaded from the cache due to a cache miss
            result.assertTaskNotSkipped(second)
        }
    
        def "overlapping output directory with first, second then second, first"() {
            def (String first, TestFile firstOutput,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 20:54:14 UTC 2024
    - 30K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/internal/model/CalculatedValueContainer.java

        public Try<T> getValue() throws IllegalStateException {
            Try<T> result = this.result;
            if (result == null) {
                throw new IllegalStateException(String.format("Value for %s has not been calculated yet.", displayName));
            }
            return result;
        }
    
        @Override
        public boolean isFinalized() {
            return result != null;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 08:26:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_stablehlo_to_vhlo.cc

    // 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)
    //   V2     = op2(V1)
    void ConvertAndWrapUsesInUnrealizedCast(Value result, TypeConverter &converter,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 19:48:51 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  5. platforms/core-configuration/flow-services/src/main/kotlin/org/gradle/internal/flow/services/DefaultFlowProviders.kt

            buildWorkResult
    }
    
    
    class BuildWorkResultProvider : AbstractMinimalProvider<BuildWorkResult>() {
    
        private
        var result: BuildWorkResult? = null
    
        fun set(result: BuildWorkResult) {
            require(this.result == null)
            this.result = result
        }
    
        override fun getType(): Class<BuildWorkResult> =
            BuildWorkResult::class.java
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 24 15:01:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-provider/src/test/kotlin/org/gradle/internal/declarativedsl/settings/SettingsBlockCheckTest.kt

            val result = pluginsSchema.runChecks(
                """
                plugins { }
                plugins { }
                rootProject.name = "foo"
                plugins { }
                """.trimIndent()
            )
    
            assertEquals(2, result.size)
            assertEquals(listOf(2, 4), result.map { it.location.sourceData.lineRange.first })
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 31 13:47:10 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  7. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperIntegrationTest.groovy

                    println("Deleting " + file)
                    deletedSomething = true
                }
            }
            and:
            result = executer.withTasks("hello").run()
            then:
            deletedSomething
            result.assertHasErrorOutput("does not appear to contain a Gradle distribution.")
            result.assertTaskExecuted(":hello")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. pkg/test/framework/resource/version_test.go

    		t.Run(fmt.Sprintf("compare version %s->%s", tc.a, tc.b), func(t *testing.T) {
    			r := tc.a.Compare(tc.b)
    			if r != tc.result {
    				t.Errorf("expected %d, got %d", tc.result, r)
    			}
    		})
    	}
    }
    
    func TestMinimumIstioVersion(t *testing.T) {
    	tcs := []struct {
    		name     string
    		versions IstioVersions
    		result   IstioVersion
    	}{
    		{
    			"two versions",
    			IstioVersions([]IstioVersion{
    				"1.4", "1.5",
    			}),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 22 18:13:40 UTC 2024
    - 2.9K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheTaskExecutionIntegrationTest.groovy

                    @OutputFile
                    abstract RegularFileProperty getOutputFile()
    
                    TaskWithComplexInputs() {
                        def result = name == "never"
                        outputs.upToDateWhen { !result }
                    }
    
                    @TaskAction
                    def go() {
                        outputFile.get().asFile.text = "some-derived-value"
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 5K bytes
    - Viewed (0)
  10. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/BuildSessionLifecycleBuildActionExecutor.java

                    throw UncheckedException.throwAsUncheckedException(t);
                } else {
                    // Created a result which may contain failures. Combine this failure with any failures that happen to be packaged in the result
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 5.9K bytes
    - Viewed (0)
Back to top