Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 186 for Result (0.13 sec)

  1. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/problems/ReceivedProblem.groovy

            }
    
            private static String fqid(Map<String, Object> id) {
                String result = id['name']
                def parent = id['group']
                while (parent != null) {
                    result = "${parent['name']}:$result"
                    parent = parent['parent']
                }
                result
            }
    
            String getFqid() {
                fqid
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jun 05 12:45:23 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheBuildTreeStructureIntegrationTest.groovy

            }
            with(fixture.all(LoadProjectsBuildOperationType)) {
                size() == 2
                with(get(0)) {
                    result.rootProject.name == 'thing'
                    result.rootProject.path == ':'
                    result.rootProject.children.size() == 3
                    with(result.rootProject.children.first() as Map<String, Object>) {
                        name == 'a'
                        path == ':a'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/AbstractUndeclaredBuildInputsIntegrationTest.groovy

            problems.assertResultHasProblems(result)
            outputDoesNotContain("apply =")
            outputContains("task = $value")
    
            when:
            configurationCacheRun("thing", "-DCI=$newValue")
    
            then: 'undeclared properties are considered build inputs'
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result)
            outputContains("apply = $newValue")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractIntegrationSpec.groovy

                throw new IllegalStateException("No build result is available yet.")
            }
            return currentResult
        }
    
        void setResult(ExecutionResult result) {
            currentFailure = null
            currentResult = result
        }
    
        ExecutionFailure getFailure() {
            if (currentFailure == null) {
                throw new IllegalStateException("No build failure result is available yet.")
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:07:53 UTC 2024
    - 32.9K bytes
    - Viewed (0)
  5. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/compile/JavaCompileProblemsIntegrationTest.groovy

                details == '\';\' expected'
            }
    
            result.error.contains("4 errors\n")
        }
    
        def "problem is received when a single-file warning happens"() {
            given:
            possibleFileLocations.put(writeJavaCausingTwoCompilationWarnings("Foo").absolutePath, 2)
    
            when:
            def result = run("compileJava")
    
            then:
            verifyAll(receivedProblem(0)) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:15:29 UTC 2024
    - 24K bytes
    - Viewed (0)
  6. cni/pkg/plugin/plugin.go

    		}
    	}
    }
    
    func pluginResponse(conf *Config) error {
    	var result *cniv1.Result
    	if conf.PrevResult == nil {
    		result = &cniv1.Result{
    			CNIVersion: cniv1.ImplementedSpecVersion,
    		}
    		return types.PrintResult(result, conf.CNIVersion)
    	}
    
    	// Pass through the result for the next plugin
    	return types.PrintResult(conf.PrevResult, conf.CNIVersion)
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 16:26:35 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  7. 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)
  8. 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)
  9. maven-core/src/main/java/org/apache/maven/exception/DefaultExceptionHandler.java

            if (exception instanceof ProjectBuildingException) {
                List<ProjectBuildingResult> results = ((ProjectBuildingException) exception).getResults();
    
                children = new ArrayList<>();
    
                for (ProjectBuildingResult result : results) {
                    ExceptionSummary child = handle(result);
                    if (child != null) {
                        children.add(child);
                    }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Jun 06 10:31:03 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. 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)
Back to top