Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 2,042 for Result (0.17 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. analysis/analysis-api-fe10/src/org/jetbrains/kotlin/analysis/api/descriptors/signatures/KtFe10VariableLikeSignature.kt

            return true
        }
    
        override fun hashCode(): Int {
            var result = backingSymbol.hashCode()
            result = 31 * result + backingReturnType.hashCode()
            result = 31 * result + (backingReceiverType?.hashCode() ?: 0)
            return result
        }
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  8. platforms/core-execution/build-cache/src/integTest/groovy/org/gradle/caching/internal/BuildCacheBuildOperationsIntegrationTest.groovy

            !localMissLoadOp.result.hit
    
            packOp.details.cacheKey == cacheKey
    
            packOp.result.archiveSize == archiveSize
            packOp.result.archiveEntryCount == 5
    
            storeOp.details.cacheKey == cacheKey
            storeOp.details.archiveSize == archiveSize
            storeOp.result.stored
    
            when:
            succeeds("clean", "t")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 08:51:14 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. platforms/core-runtime/wrapper-main/src/integTest/groovy/org/gradle/integtests/WrapperHttpIntegrationTest.groovy

            when:
            def result = wrapperExecuter.withTasks('hello').run()
    
            then:
            assertThat(result.output, containsString('hello'))
    
            when:
            result = wrapperExecuter.withTasks('hello').run()
    
            then:
            assertThat(result.output, containsString('hello'))
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:54:32 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_head_tail_outside_compilation.cc

      // Find results and result types of ops in block that needs to returned.
      llvm::SmallVector<Value, 4> launch_results;
      llvm::SmallVector<Type, 4> launch_result_types;
      for (Operation& head_outside_compiled_op : *launch_block) {
        for (Value result : head_outside_compiled_op.getResults()) {
          bool has_external_uses = false;
          for (Operation* user : result.getUsers()) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 20.6K bytes
    - Viewed (0)
Back to top