Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 6,827 for Result (0.12 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/RepositoryChainArtifactResolverTest.groovy

            when:
            resolver.resolveArtifact(component, artifact, result)
            then:
            result.hasResult()
            cache.size() == 1
            cache.values().contains(result.result)
            and:
            0 * _._
    
            when:
            result.result.file
            then:
            1 * localAccess2.resolveArtifact(artifact, moduleSources, _) >> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/samples/build-organization/publishing-convention-plugins/kotlin/convention-plugins/src/test/kotlin/com/myorg/JavaConventionPluginTest.kt

                    void bar() {
                    }
                }
            """)
    
            val result = runTaskWithFailure("build")
    
            assertEquals(TaskOutcome.FAILED, result.task(":checkstyleMain")?.outcome)
            assertTrue(result.output.contains("Checkstyle rule violations were found."))
            assertTrue(result.output.contains("Checkstyle violations by severity: [error:1]"))
        }
    
        @Test
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/r31/IdeaProjectUtil.java

                AllProjects result = new AllProjects();
    
                GradleBuild buildModel = controller.getBuildModel();
                result.rootBuild = buildModel;
                result.rootIdeaProject = controller.getModel(IdeaProject.class);
    
                collectAllNestedBuilds(buildModel, controller, result);
    
                result.allIdeaProjects.add(result.rootIdeaProject);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 3K bytes
    - Viewed (0)
  4. pilot/pkg/networking/core/sidecar_simulation_test.go

    		Disabled   simulation.Result
    		Permissive simulation.Result
    		Strict     simulation.Result
    	}{
    		{
    			Name: "tcp",
    			Call: simulation.Call{
    				Port:     70,
    				Protocol: simulation.TCP,
    				CallMode: simulation.CallModeInbound,
    			},
    			Disabled: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    			Permissive: simulation.Result{
    				ClusterMatched: "inbound|70||",
    			},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/scopes/Maven3ScopeManagerConfiguration.java

            ArrayList<DependencyScope> result = new ArrayList<>();
            result.add(internalScopeManager.createDependencyScope(DS_COMPILE, true, all()));
            result.add(internalScopeManager.createDependencyScope(
                    DS_RUNTIME, true, byBuildPath(CommonBuilds.BUILD_PATH_RUNTIME)));
            result.add(internalScopeManager.createDependencyScope(
                    DS_PROVIDED,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Mar 27 14:46:12 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  6. pkg/config/host/names.go

    func (h Names) Intersection(other Names) Names {
    	result := make(Names, 0, len(h))
    	for _, hHost := range h {
    		for _, oHost := range other {
    			if hHost.SubsetOf(oHost) {
    				if !result.Contains(hHost) {
    					result = append(result, hHost)
    				}
    			} else if oHost.SubsetOf(hHost) {
    				if !result.Contains(oHost) {
    					result = append(result, oHost)
    				}
    			}
    		}
    	}
    	return result
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Nov 01 19:19:22 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  7. testing/performance/src/performanceTest/groovy/org/gradle/performance/regression/buildcache/TaskOutputCachingJavaPerformanceTest.groovy

            runner.useDaemon = false
            runner.warmUpRuns = 2
            runner.runs = 8
            runner.addBuildMutator { cleanLocalCache() }
    
            when:
            def result = runner.run()
    
            then:
            result.assertCurrentVersionHasNotRegressed()
        }
    
        @RunFor(
            @Scenario(type = PER_DAY, operatingSystems = [LINUX], testProjects = ["smallJavaMultiProjectManyExternalDependencies"])
        )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 18 13:08:21 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  8. platforms/core-execution/snapshots/src/main/java/org/gradle/internal/snapshot/AbstractInvalidateChildHandler.java

    public abstract class AbstractInvalidateChildHandler<T, RESULT> implements ChildMap.NodeHandler<T, ChildMap<RESULT>> {
    
        private final ChildMap.InvalidationHandler<T, RESULT> handler;
    
        public AbstractInvalidateChildHandler(ChildMap.InvalidationHandler<T, RESULT> handler) {
            this.handler = handler;
        }
    
        public abstract ChildMap<RESULT> getChildMap();
    
        public abstract ChildMap<RESULT> withReplacedChild(RESULT newChild);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:34:50 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  9. pkg/quota/v1/evaluator/core/persistent_volume_claims.go

    	result := []corev1.ResourceName{}
    	for _, item := range items {
    		// match object count quota fields
    		if quota.Contains([]corev1.ResourceName{pvcObjectCountName}, item) {
    			result = append(result, item)
    			continue
    		}
    		// match pvc resources
    		if quota.Contains(pvcResources, item) {
    			result = append(result, item)
    			continue
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Sep 23 23:36:24 UTC 2022
    - 9.2K bytes
    - Viewed (0)
  10. android/guava-tests/test/com/google/common/graph/TraverserTest.java

        Iterable<Character> result = Traverser.forGraph(JAVADOC_GRAPH).breadthFirst('a');
    
        assertEqualCharNodes(result, "abcdef");
        assertEqualCharNodes(result, "abcdef");
      }
    
      @Test
      public void forGraph_breadthFirstIterable_javadocExample_canBeIteratedMultipleTimes() {
        Iterable<Character> result = Traverser.forGraph(JAVADOC_GRAPH).breadthFirst(charactersOf("bf"));
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Sep 06 17:04:31 UTC 2023
    - 47.5K bytes
    - Viewed (0)
Back to top