Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 650 for RequestId (0.2 sec)

  1. subprojects/diagnostics/src/main/java/org/gradle/api/tasks/diagnostics/internal/insight/DependencyInsightReporter.java

        }
    
        private static String prettyCause(ComponentSelectionCause cause) {
            switch (cause) {
                case ROOT:
                    return "Root component";
                case REQUESTED:
                    return "Was requested";
                case SELECTED_BY_RULE:
                    return "Selected by rule";
                case FORCED:
                    return "Forced";
                case CONFLICT_RESOLUTION:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishFeaturesJavaIntegTest.groovy

                withoutModuleMetadata {
                    shouldFail {
                        // documents the current behavior
                        assertHasCause("Unable to find a variant of org.gradle.test:publishTest:1.9 providing the requested capability org:optional-feature:1.0")
                    }
                }
            }
        }
    
        def "can group dependencies by feature"() {
            mavenRepo.module('org', 'optionaldep-g1', '1.0').publish()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 19.2K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/test/groovy/org/gradle/buildinit/tasks/InitBuildSpec.groovy

            then:
            GradleException e = thrown()
            e.message == TextUtil.toPlatformLineSeparators("""The requested test framework 'spock' is not supported for 'some-type' build type. Supported frameworks:
      - 'none'
      - 'junit'""")
        }
    
        def "should throw exception if requested DSL is not supported for the specified type"() {
            given:
            projectLayoutRegistry.get("some-type") >> defaultGenerator
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 20:10:43 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/endpoints/handlers/response.go

    		case 0:
    			return opts, nil
    		case 1:
    			return nil, errors.NewBadRequest(fmt.Sprintf("Unable to convert to Table as requested: %v", errs[0].Error()))
    		default:
    			return nil, errors.NewBadRequest(fmt.Sprintf("Unable to convert to Table as requested: %v", errs))
    		}
    	}
    	return nil, nil
    }
    
    // targetEncodingForTransform returns the appropriate serializer for the input media type
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 18 09:07:03 UTC 2023
    - 16.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/AttributeMatchingArtifactVariantSelector.java

    /**
     * A {@link ArtifactVariantSelector} that uses attribute matching to select a matching set of artifacts.
     *
     * If no producer variant is compatible with the requested attributes, this selector will attempt to construct a chain of artifact
     * transforms that can produce a variant compatible with the requested attributes.
     *
     * An instance of {@link ResolutionFailureHandler} is injected in the constructor
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 30 13:33:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  6. subprojects/core-api/src/main/java/org/gradle/api/NamedDomainObjectCollection.java

         * Adds a rule to this collection. The given rule is invoked when an unknown object is requested by name.
         *
         * @param rule The rule to add.
         * @return The added rule.
         */
        Rule addRule(Rule rule);
    
        /**
         * Adds a rule to this collection. The given closure is executed when an unknown object is requested by name. The
         * requested name is passed to the closure as a parameter.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 01 12:50:52 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  7. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishFeaturesJavaIntegTest.groovy

                    expectFiles "publishTest-1.9.jar", "optionaldep-1.0.jar"
                }
                withoutModuleMetadata {
                    // documents the current behavior - ivy does not use variant matching and hence the requested capability is ignored and the default configuration is selected
                    expectFiles "publishTest-1.9.jar"
                }
            }
        }
    
        def "can group dependencies by feature"() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  8. platforms/jvm/jvm-services/src/main/java/org/gradle/api/internal/artifacts/JavaEcosystemSupport.java

                    if (candidateValues.contains(javaRuntimeJars)) {
                        // Use the Jars when nothing has been requested
                        details.closestMatch(javaRuntimeJars);
                    } else if (candidateValues.contains(javaRuntime)) {
                        // Use the runtime when nothing has been requested
                        details.closestMatch(javaRuntime);
                    }
                } else {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Mar 25 19:13:00 UTC 2024
    - 18.1K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/DefaultMaven.java

        }
    
        /**
         * Check whether any of the requested optional profiles were not activated or deactivated.
         * @param session the Maven session.
         * @param profileActivation the requested optional and required profiles.
         */
        private void validateOptionalProfiles(MavenSession session, ProfileActivation profileActivation) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. maven-core/src/main/java/org/apache/maven/project/ProjectModelResolver.java

                if (versionRangeResult.getHighestVersion() == null) {
                    throw new UnresolvableModelException(
                            String.format(
                                    "No versions matched the requested parent version range '%s'", parent.getVersion()),
                            parent.getGroupId(),
                            parent.getArtifactId(),
                            parent.getVersion());
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
Back to top