Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 1,558 for RequestId (0.22 sec)

  1. 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"),
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 05 14:58:55 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  2. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/BomSupportPluginsSmokeTest.groovy

            "gradle"                              | true                | "requested"        | "requested"        | "requested"        | "dependencies { implementation platform($bom) }"      | ""
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 17:10:15 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/test/groovy/org/gradle/integtests/fixtures/logging/DependencyInsightOutputNormalizerTest.groovy

        def normalizer = new DependencyInsightOutputNormalizer()
    
        def 'normalizes single-digit requested JDK version in "new" dependencyInsight report'() {
            given:
            def originalOutput = '''
        | Attribute Name                 | Provided | Requested    |
        |--------------------------------|----------|--------------|
        | org.gradle.status              | release  |              |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/main/java/org/gradle/composite/internal/CompositeBuildDependencySubstitutions.java

            // Use the result of previous rules as the input for dependency substitution
            ComponentSelector requested = dependencySubstitution.getTarget();
            if (requested instanceof ModuleComponentSelector) {
                ModuleComponentSelector selector = (ModuleComponentSelector) requested;
                ProjectComponentIdentifier replacement = getReplacementFor(selector);
                if (replacement != null) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 23 10:37:35 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/artifacts/ComponentMetadataListerDetails.java

         * return the list of versions.
         * @return the module identifier for which versions are requested
         *
         * @since 4.9
         */
        ModuleIdentifier getModuleIdentifier();
    
        /**
         * List the versions of the requested component.
         * @param versions the list of versions for the requested component.
         *
         * @since 4.9
         */
        void listed(List<String> versions);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 1.3K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/admission/interfaces.go

    type ObjectInterfaces interface {
    	// GetObjectCreater is the ObjectCreator appropriate for the requested object.
    	GetObjectCreater() runtime.ObjectCreater
    	// GetObjectTyper is the ObjectTyper appropriate for the requested object.
    	GetObjectTyper() runtime.ObjectTyper
    	// GetObjectDefaulter is the ObjectDefaulter appropriate for the requested object.
    	GetObjectDefaulter() runtime.ObjectDefaulter
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Oct 28 14:03:18 UTC 2021
    - 8K bytes
    - Viewed (0)
  7. pkg/scheduler/framework/plugins/noderesources/fit.go

    	}
    
    	if podRequest.MilliCPU > 0 && podRequest.MilliCPU > (nodeInfo.Allocatable.MilliCPU-nodeInfo.Requested.MilliCPU) {
    		insufficientResources = append(insufficientResources, InsufficientResource{
    			ResourceName: v1.ResourceCPU,
    			Reason:       "Insufficient cpu",
    			Requested:    podRequest.MilliCPU,
    			Used:         nodeInfo.Requested.MilliCPU,
    			Capacity:     nodeInfo.Allocatable.MilliCPU,
    		})
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 20.2K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/kotlinDsl/androidSingleBuild/kotlin/settings.gradle.kts

    // tag::android[]
    pluginManagement {
        repositories {
            google()
            gradlePluginPortal()
        }
        resolutionStrategy {
            eachPlugin {
                if(requested.id.namespace == "com.android") {
                    useModule("com.android.tools.build:gradle:${requested.version}")
                }
            }
        }
    }
    // end::android[]
    
    rootProject.name = "android-single-build"
    
    gradle.allprojects {
        repositories {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 475 bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/artifacts/result/DependencyResult.java

    import org.gradle.internal.scan.UsedByScanPlugin;
    
    /**
     * An edge in the dependency graph. Provides information about the origin of the dependency and the requested component.
     *
     * @see ResolutionResult
     */
    @UsedByScanPlugin
    public interface DependencyResult {
        /**
         * <p>Returns the requested component.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 22 14:14:42 UTC 2019
    - 2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/snippets/java-feature-variant/requiring-features-external/tests/runtimeClasspath.out

    > Task :dependencyInsight
    org.mongodb:bson:3.9.1
      Variant runtime:
        | Attribute Name                 | Provided     | Requested    |
        |--------------------------------|--------------|--------------|
        | org.gradle.status              | release      |              |
        | org.gradle.category            | library      | library      |
        | org.gradle.libraryelements     | jar          | jar          |
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
Back to top