Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 341 for selectJdk (0.22 sec)

  1. platforms/jvm/testing-jvm/src/integTest/groovy/org/gradle/testing/TestTaskToolchainIntegrationTest.groovy

            }
            if (withJavaExtension != null) {
                configureJavaPluginToolchainVersion(selectJdk(withJavaExtension))
            }
    
            def targetJdk = selectJdk(target)
    
            when:
            withInstallations(currentJdk, otherJdk).run(":test", "--info")
    
            then:
            executedAndNotSkipped(":test")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 06:04:19 UTC 2024
    - 9.7K bytes
    - Viewed (0)
  2. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/javadoc/JavadocToolchainIntegrationTest.groovy

            Jvm otherJdk = AvailableJavaHomes.differentVersion
            def selectJdk = { it == "other" ? otherJdk : it == "current" ? currentJdk : null }
    
            configureProjectWithJavaPlugin()
    
            if (withTool != null) {
                configureJavadocTool(selectJdk(withTool))
            }
            if (withExecutable != null) {
                configureExecutable(selectJdk(withExecutable))
            }
            if (withJavaExtension != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Aug 28 11:40:18 UTC 2023
    - 8.2K bytes
    - Viewed (0)
  3. platforms/jvm/language-java/src/integTest/groovy/org/gradle/api/tasks/JavaExecToolchainIntegrationTest.groovy

            }
            if (withJavaExtension != null) {
                configureJavaPluginToolchainVersion(selectJdk(withJavaExtension))
            }
    
            def targetJdk = selectJdk(target)
    
            when:
            withInstallations(currentJdk, otherJdk).run(":run")
    
            then:
            executedAndNotSkipped(":run")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 06:42:07 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  4. gradle/dependency-management/capabilities.json

        {
            "name": "guava",
            "providedBy": [
                "com.google.collections:google-collections"
            ],
            "selected": "com.google.guava:guava"
        },
        {
            "name": "junit",
            "providedBy": [
                "junit:junit-dep"
            ],
            "selected": "junit:junit"
        },
        {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 31 14:54:52 UTC 2024
    - 3K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/VirtualPlatformState.java

            if (participatingModules.add(state)) {
                resolveOptimizations.declareVirtualPlatformInUse();
                ComponentState selected = platformModule.getSelected();
                if (selected != null) {
                    // There is a possibility that a platform version was selected before a new member
                    // of the platform was discovered. In this case, we need to restart the selection,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/internal/platform/Jdk8WithJettyBootPlatform.kt

              if (protocol in protocols) {
                selected = protocol
                return selected
              }
            }
            selected = protocols[0] // On no intersection, try peer's first protocol.
            return selected
          } else if ((methodName == "protocolSelected" || methodName == "selected") && callArgs.size == 1) {
            this.selected = callArgs[0] as String // Server selected this protocol.
            return null
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResultsTest.groovy

            def selected = results.select(selector, Mock(ArtifactSelectionSpec), false)
    
            expect:
            selected.getArtifacts() instanceof CompositeResolvedArtifactSet
            selected.getArtifacts().sets == [variant1Artifacts, variant2Artifacts]
    
            selected.getArtifactsWithId(0) == variant1Artifacts
            selected.getArtifactsWithId(1) == variant2Artifacts
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/conflicts/DefaultConflictResolutionResult.java

        private static ComponentState findComponent(Object selected) {
            if (selected instanceof ComponentState) {
                return (ComponentState) selected;
            }
            if (selected instanceof NodeState) {
                return ((NodeState) selected).getComponent();
            }
            throw new IllegalArgumentException("Cannot extract a ComponentState from " + selected.getClass());
        }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/ComponentSelectionCause.java

        /**
         * This component was selected because it's the root component.
         */
        ROOT("root"),
    
        /**
         * This component was selected because it was requested directly.
         */
        REQUESTED("requested"),
    
        /**
         * This component was selected by a rule.
         */
        SELECTED_BY_RULE("selected by rule"),
    
        /**
         * This component was selected because selection was forced on this version.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  10. src/cmd/go/internal/mvs/graph.go

    	reqs, ok = g.required[m]
    	return reqs, ok
    }
    
    // Selected returns the selected version of the given module path.
    //
    // If no version is selected, Selected returns version "none".
    func (g *Graph) Selected(path string) (version string) {
    	v, ok := g.selected[path]
    	if !ok {
    		return "none"
    	}
    	return v
    }
    
    // BuildList returns the selected versions of all modules present in the Graph,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 01 02:52:19 UTC 2023
    - 6.3K bytes
    - Viewed (0)
Back to top