Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for dependency_c (0.28 sec)

  1. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            // packaging type.
            for (Dependency dependency : dependencies) {
                String key = dependency.getGroupId() + ":" + dependency.getArtifactId() + ":" + dependency.getVersion()
                        + (dependency.getClassifier() != null ? ":" + dependency.getClassifier() : EMPTY);
                String mKey = m.getGroupId() + ":" + m.getArtifactId() + ":" + m.getVersion();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  2. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            List<Dependency> deps = new ArrayList<>(depMgmt.getDependencies());
            for (Iterator<Dependency> it = deps.iterator(); it.hasNext(); ) {
                Dependency dependency = it.next();
    
                if (!("pom".equals(dependency.getType()) && "import".equals(dependency.getScope()))
                        || "bom".equals(dependency.getType())) {
                    continue;
                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

      * If using JUnit 5, an explicit `runtimeOnly` dependency on `junit-platform-launcher` is required
      in addition to the existing `implementation` dependency on the test engine.
      * If using JUnit 4, only the existing `implementation` dependency on `junit` 4 is required.
      * If using JUnit 3, a test `runtimeOnly` dependency on `junit` 4 is required in addition to a
      `compileOnly` dependency on `junit` 3.
    
    =====
    [.multi-language-sample]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        }
    
        private boolean isExcluded(ExcludeSpec excludeSpec, DependencyState dependencyState) {
            DependencyMetadata dependency = dependencyState.getDependency();
            if (!resolveState.getEdgeFilter().isSatisfiedBy(dependency)) {
                LOGGER.debug("{} is filtered.", dependency);
                return true;
            }
            if (excludeSpec == moduleExclusions.nothing()) {
                return false;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  5. .teamcity/test-buckets.json

    [
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"dependency-management"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"configuration-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"tooling-api"
    				]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 10 15:56:44 UTC 2024
    - 54.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDependencyResolutionIntegrationTest.groovy

        @Rule
        HttpServer httpServer = new HttpServer()
        def remoteRepo = new MavenHttpRepository(httpServer, mavenRepo)
    
        def setup() {
            // So that dependency resolution results from previous executions do not interfere
            requireOwnGradleUserHomeDir()
        }
    
        def setupBuildWithEachDependencyType() {
            httpServer.start()
            taskTypeWithOutputFileProperty()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 54.1K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modget/get.go

    updates go.mod to require those versions, and downloads source code into the
    module cache.
    
    To add a dependency for a package or upgrade it to its latest version:
    
    	go get example.com/pkg
    
    To upgrade or downgrade a package to a specific version:
    
    	go get example.com/pkg@v1.2.3
    
    To remove a dependency on a module and downgrade modules that require it:
    
    	go get example.com/mod@none
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  8. src/time/format.go

    // appendInt appends the decimal form of x to b and returns the result.
    // If the decimal form (excluding sign) is shorter than width, the result is padded with leading 0's.
    // Duplicates functionality in strconv, but avoids dependency.
    func appendInt(b []byte, x int, width int) []byte {
    	u := uint(x)
    	if x < 0 {
    		b = append(b, '-')
    		u = uint(-x)
    	}
    
    	// 2-digit and 4-digit fields are the most common in time formats.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:09:28 UTC 2024
    - 49.3K bytes
    - Viewed (0)
  9. guava/src/com/google/common/util/concurrent/AbstractFuture.java

          return new Failure(t);
        }
      }
    
      /**
       * An inlined private copy of {@link Uninterruptibles#getUninterruptibly} used to break an
       * internal dependency on other /util/concurrent classes.
       */
      @ParametricNullness
      private static <V extends @Nullable Object> V getUninterruptibly(Future<V> future)
          throws ExecutionException {
        boolean interrupted = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 62.8K bytes
    - Viewed (1)
  10. android/guava/src/com/google/common/util/concurrent/AbstractFuture.java

          return new Failure(t);
        }
      }
    
      /**
       * An inlined private copy of {@link Uninterruptibles#getUninterruptibly} used to break an
       * internal dependency on other /util/concurrent classes.
       */
      @ParametricNullness
      private static <V extends @Nullable Object> V getUninterruptibly(Future<V> future)
          throws ExecutionException {
        boolean interrupted = false;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 63.1K bytes
    - Viewed (1)
Back to top