Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 3 of 3 for g1 (0.01 seconds)

  1. impl/maven-core/src/main/java/org/apache/maven/internal/impl/DefaultProjectManager.java

            }
            // Verify groupId and version, intentionally allow artifactId to differ as Maven project may be
            // multi-module with modular sources structure that provide module names used as artifactIds.
            String g1 = project.getGroupId();
            String a1 = project.getArtifactId();
            String v1 = project.getVersion();
            String g2 = artifact.getGroupId();
            String a2 = artifact.getArtifactId();
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Dec 17 16:17:01 GMT 2025
    - 10.9K bytes
    - Click Count (0)
  2. compat/maven-model-builder/src/test/java/org/apache/maven/model/interpolation/reflection/ReflectionValueExtractorTest.java

            project.setBuild(new Build());
    
            // Build up an artifactMap
            project.addArtifact(new Artifact("g0", "a0", "v0", "e0", "c0"));
            project.addArtifact(new Artifact("g1", "a1", "v1", "e1", "c1"));
            project.addArtifact(new Artifact("g2", "a2", "v2", "e2", "c2"));
        }
    
        /**
         * <p>testValueExtraction.</p>
         *
         * @throws Exception if any.
         */
        @Test
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Jan 10 07:09:12 GMT 2025
    - 16.9K bytes
    - Click Count (0)
  3. tests/association_generics_test.go

    	}
    
    	// Check if companies were updated
    	var g1, g2 User
    	if err := DB.Preload("Company").First(&g1, u1.ID).Error; err != nil {
    		t.Fatalf("load u1: %v", err)
    	}
    	if err := DB.Preload("Company").First(&g2, u2.ID).Error; err != nil {
    		t.Fatalf("load u2: %v", err)
    	}
    
    	if (g1.Company.ID == 0 || g1.Company.Name != "Category-New") || (g2.Company.ID == 0 || g2.Company.Name != "Category-New") {
    Created: Sun Dec 28 09:35:17 GMT 2025
    - Last Modified: Fri Sep 12 05:42:26 GMT 2025
    - 37.9K bytes
    - Click Count (0)
Back to Top