Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,772 for projectb (4.82 sec)

  1. cmd/sts-handlers_test.go

                            "projecta",
                            "projectb"
                        ]
                    }
                }
            }
        ]
    }`
    
    	policyProjectsMap = map[string]string{
    		// grants access to bucket `projecta` if user is in group `projecta`
    		"projecta": policyProjectA,
    
    		// grants access to bucket `projectb` if user is in group `projectb`
    Go
    - Registered: Sun May 05 19:28:20 GMT 2024
    - Last Modified: Thu Apr 25 15:50:16 GMT 2024
    - 85.7K bytes
    - Viewed (0)
  2. architecture/build-state-model.md

      session --> build_tree
      
      build1["root build"]
      build_tree --> build1
      
      project1["root project"]
      build1 --> project1
      
      project2["project"]
      build1 --> project2
      
      build2["included build"]
      build_tree --> build2
      
      project3["root project"]
      build2 --> project3
      
      project4["project"]
      build2 --> project4
    
    ```
    
    ### Build process state
    
    Plain Text
    - Registered: Wed May 08 11:36:15 GMT 2024
    - Last Modified: Sun May 05 22:45:11 GMT 2024
    - 3.4K bytes
    - Viewed (0)
  3. api/maven-api-core/src/main/java/org/apache/maven/api/Project.java

        }
    
        /**
         * Returns the project artifacts as immutable list. Elements are the project POM artifact and the artifact
         * produced by this project build, if applicable. Hence, the returned list may have one or two elements
         * (never less than 1, never more than 2), depending on project packaging.
         * <p>
         * The list's first element is ALWAYS the project POM artifact. Presence of second element in the list depends
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Mon Feb 05 09:42:51 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  4. maven-compat/src/test/java/org/apache/maven/project/inheritance/t02/ProjectInheritanceTest.java

            System.out.println("Location of project-4's POM: " + pom4.getPath());
    
            // load everything...
            MavenProject project0 = getProject(pom0);
            MavenProject project1 = getProject(pom1);
            MavenProject project2 = getProject(pom2);
            MavenProject project3 = getProject(pom3);
            MavenProject project4 = getProject(pom4);
            MavenProject project5 = getProject(pom5);
    
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 6.2K bytes
    - Viewed (0)
  5. maven-core/src/test/java/org/apache/maven/project/artifact/DefaultProjectArtifactsCacheTest.java

            cache.put(project1, new SetWithResolutionResult(null, artifacts));
    
            assertArrayEquals(
                    artifacts.toArray(new Artifact[0]),
                    cache.get(project1).getArtifacts().toArray(new Artifact[0]));
    
            ProjectArtifactsCache.Key project2 = new ProjectArtifactsCache.Key() {};
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Fri Dec 15 06:34:19 GMT 2023
    - 2.9K bytes
    - Viewed (0)
  6. maven-compat/src/test/java/org/apache/maven/project/inheritance/t06/ProjectInheritanceTest.java

            File pom1 = new File(pom0Basedir, "p1/pom.xml");
    
            // load everything...
            MavenProject project0 = getProjectWithDependencies(pom0);
            MavenProject project1 = getProjectWithDependencies(pom1);
    
            assertEquals(pom0Basedir, project1.getParent().getBasedir());
            Set set = project1.getArtifacts();
            assertNotNull(set, "No artifacts");
            assertTrue(set.size() > 0, "No Artifacts");
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.9K bytes
    - Viewed (0)
  7. docs/en/docs/project-generation.md

    # Full Stack FastAPI Template
    
    Templates, while typically come with a specific setup, are designed to be flexible and customizable. This allows you to modify and adapt them to your project's requirements, making them an excellent starting point. 🏁
    
    You can use this template to get started, as it includes a lot of the initial set up, security, database and some API endpoints already done for you.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Mar 21 21:12:21 GMT 2024
    - 1.8K bytes
    - Viewed (0)
  8. docs/zh/docs/project-generation.md

    jaystone776 <******@****.***> 1706465038 +0800
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sun Jan 28 18:03:58 GMT 2024
    - 5.1K bytes
    - Viewed (0)
  9. docs/tr/docs/project-generation.md

    bilal alpaslan <******@****.***> 1705953341 +0300
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Mon Jan 22 19:55:41 GMT 2024
    - 6K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/ProjectBuilderTest.java

            assertEquals(1, ex1.getResults().size());
            MavenProject project1 = ex1.getResults().get(0).getProject();
            assertNotNull(project1);
            assertEquals("testArtifactMissingVersion", project1.getArtifactId());
            assertEquals(pomFile, project1.getFile());
    
            // multi projects build entry point
            ProjectBuildingException ex2 = assertThrows(
                    ProjectBuildingException.class,
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Tue Nov 28 17:17:10 GMT 2023
    - 18.2K bytes
    - Viewed (0)
Back to top