Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 19 for dependency (0.31 sec)

  1. maven-core/src/main/java/org/apache/maven/project/MavenProject.java

                    Dependency dependency = new Dependency();
    
                    dependency.setArtifactId(a.getArtifactId());
                    dependency.setGroupId(a.getGroupId());
                    dependency.setVersion(a.getVersion());
                    dependency.setScope(a.getScope());
                    dependency.setType(a.getType());
                    dependency.setClassifier(a.getClassifier());
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Mar 01 17:18:13 GMT 2024
    - 56.6K 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;
                }
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 59.1K bytes
    - Viewed (0)
  3. 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();
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 65K bytes
    - Viewed (0)
  4. .teamcity/test-buckets.json

    [
    	{
    		"buckets":[
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"dependency-management"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"configuration-cache"
    				]
    			},
    			{
    				"parallelizationMethod":{
    					"name":"TestDistribution"
    				},
    				"subprojects":[
    					"tooling-api"
    				]
    Json
    - Registered: Wed May 01 11:36:15 GMT 2024
    - Last Modified: Wed May 01 00:36:47 GMT 2024
    - 50.1K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

        public void testDependencyScope()
            throws Exception
        {
            PomTestWrapper pom = buildPom( "dependency-scope/sub" );
    
        }*/
    
        /*MNG- 4010*/
        @Test
        void testDuplicateExclusionsDependency() throws Exception {
            PomTestWrapper pom = buildPom("duplicate-exclusions-dependency/sub");
            assertEquals(1, ((List<?>) pom.getValue("dependencies[1]/exclusions")).size());
        }
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Apr 12 10:50:18 GMT 2024
    - 93.2K bytes
    - Viewed (0)
  6. fastapi/param_functions.py

        ] = None,
        *,
        use_cache: Annotated[
            bool,
            Doc(
                """
                By default, after a dependency is called the first time in a request, if
                the dependency is declared again for the rest of the request (for example
                if the dependency is needed by several dependencies), the value will be
                re-used for the rest of the request.
    
    Python
    - Registered: Sun Apr 28 07:19:10 GMT 2024
    - Last Modified: Thu Apr 18 19:40:57 GMT 2024
    - 62.5K bytes
    - Viewed (0)
  7. docs/changelogs/changelog_3x.md

        supports more cipher suites than the JVM’s default provider and may also
        execute more efficiently.
    
        To use it, first register a [Conscrypt dependency][conscrypt_dependency] in
        your build system.
    
        OkHttp will use Conscrypt if you set the `okhttp.platform` system property
        to `conscrypt`.
    
    Plain Text
    - Registered: Fri May 03 11:42:14 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            public ModelSource resolveModel(Session session, Dependency dependency, AtomicReference<Dependency> modified)
                    throws ModelResolverException {
                try {
                    org.apache.maven.model.Dependency d = new org.apache.maven.model.Dependency(dependency);
                    ModelSource source = toSource(resolver.resolveModel(d));
                    if (d.getDelegate() != dependency) {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 55.2K bytes
    - Viewed (0)
  9. tensorflow/c/c_api_function_test.cc

                      {}, false);
    }
    
    TEST_F(CApiFunctionTest, ControlDependency) {
      /*
       *                  |  |    scalar
       *                  |  |    .
       *                  v  v   . <---- control dependency
       *                  add < -
       *                   |
       *                   v
       */
      // Define
      TF_Operation* feed1 = Placeholder(func_graph_, s_, "feed1");
    C++
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  10. android/guava/src/com/google/common/collect/MapMakerInternalMap.java

        throw new InvalidObjectException("Use SerializationProxy");
      }
    
      /**
       * The actual object that gets serialized. Unfortunately, readResolve() doesn't get called when a
       * circular dependency is present, so the proxy must be able to behave as the map itself.
       */
      abstract static class AbstractSerializationProxy<K, V> extends ForwardingConcurrentMap<K, V>
          implements Serializable {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Apr 01 16:15:01 GMT 2024
    - 91.9K bytes
    - Viewed (0)
Back to top