Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 307 for Result (0.19 sec)

  1. api/maven-api-core/src/main/java/org/apache/maven/api/services/ProjectBuilderResult.java

         */
        @Nonnull
        Collection<BuilderProblem> getProblems();
    
        /**
         * Gets the result of the dependency resolution for the project.
         *
         * @return the result of the dependency resolution for the project
         */
        @Nonnull
        Optional<DependencyResolverResult> getDependencyResolverResult();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  2. pilot/pkg/serviceregistry/kube/controller/ambient/workloads_test.go

    			var res *workloadapi.Workload
    			if wrapper != nil {
    				res = wrapper.Workload
    			}
    			assert.Equal(t, res, tt.result)
    		})
    	}
    }
    
    func TestWorkloadEntryWorkloads(t *testing.T) {
    	cases := []struct {
    		name   string
    		inputs []any
    		we     *networkingclient.WorkloadEntry
    		result *workloadapi.Workload
    	}{
    		{
    			name: "we with service",
    			inputs: []any{
    				model.ServiceInfo{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 16:51:29 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileSystemDefaultExcludesTest.groovy

            then:
            configurationCache.assertStateLoaded()
            result.assertTaskSkipped(":$spec.copyTask")
    
            when:
            spec.mutateExcludedFiles()
    
            and:
            configurationCacheRun spec.copyTask
    
            then:
            configurationCache.assertStateLoaded()
            result.assertTasksSkipped(":$spec.copyTask")
    
            where:
            spec << DefaultExcludesFixture.specs()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 3.3K bytes
    - Viewed (0)
  4. platforms/core-configuration/file-collections/src/integTest/groovy/org/gradle/api/file/FileCollectionIntegrationTest.groovy

            file('files/b/ignore.txt').createFile()
            run 'copy'
    
            then:
            result.assertTaskSkipped(':copy')
            file('dest').assertHasDescendants(
                'one.txt'
            )
    
            when:
            file('files/a/three.txt').createFile()
            run 'copy'
    
            then:
            result.assertTaskNotSkipped(':copy')
            file('dest').assertHasDescendants(
                'one.txt',
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 12:54:09 UTC 2024
    - 21K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/models/BuildTreeModel.kt

    /**
     * Model built by a build action supplied via Tooling API
     */
    sealed class BuildTreeModel {
    
        abstract fun <T> result(): T?
    
        object NullModel : BuildTreeModel() {
            override fun <T> result(): T? = null
        }
    
        class Model(val value: Any) : BuildTreeModel() {
            override fun <T> result(): T? = value.uncheckedCast()
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1K bytes
    - Viewed (0)
  6. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginDependenciesResolver.java

                request.setTrace(trace);
                ArtifactDescriptorResult result = repoSystem.readArtifactDescriptor(pluginSession, request);
    
                for (MavenPluginDependenciesValidator dependenciesValidator : dependenciesValidators) {
                    dependenciesValidator.validate(session, pluginArtifact, result);
                }
    
                pluginArtifact = result.getArtifact();
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Jun 12 07:49:10 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFileCollectionIntegrationTest.groovy

            buildFile << """
                task report {
                    def tree = fileTree("src")
                    def file1 = file("src/file1")
                    def result = $expression
                    doLast {
                        println(result)
                    }
                }
            """
            def dir = createDir("src") {
                file("file1")
                dir("dir") {
                    file("file2")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 9.4K bytes
    - Viewed (0)
  8. src/crypto/tls/bogo_shim_test.go

    		t.Run(name, func(t *testing.T) {
    			if result.Actual == "FAIL" && result.IsUnexpected {
    				t.Fatal(result.Error)
    			}
    			if expectedResult, ok := assertResults[name]; ok && expectedResult != result.Actual {
    				t.Fatalf("unexpected result: got %s, want %s", result.Actual, assertResults[name])
    			}
    			delete(assertResults, name)
    			if result.Actual == "SKIP" {
    				t.Skip()
    			}
    		})
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:25:39 UTC 2024
    - 12.6K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildSrcIntegrationTest.groovy

            when:
            configurationCacheRun("greeting")
    
            then:
            result.assertTaskExecuted(":buildSrc:jar")
            result.assertTaskExecuted(":greeting")
    
            when:
            configurationCacheRun("greeting")
    
            then:
            result.assertTasksExecuted(":greeting") // buildSrc tasks are not executed
            outputContains("yo configuration cache")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/UndeclaredBuildInputsIntegrationTest.groovy

            then:
            problems.assertResultHasProblems(result) {
                withInput("Build file 'build.gradle': environment variable 'CI1'")
            }
            outputContains("CI1 = null")
    
            when:
            EnvVariableInjection.environmentVariable("CI1", "defined").setup(this)
            configurationCacheRun()
    
            then:
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 36K bytes
    - Viewed (0)
Back to top