Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for PR (0.11 sec)

  1. .github/workflows/maven.yml

            shell: bash
            env:
              PR_HEAD_LABEL: ${{ github.event.pull_request.head.label }}
            run: |
              set +e
              repo=maven-integration-testing
              target_branch=master
              target_user=apache
              if [ "$GITHUB_EVENT_NAME" == "pull_request" ]; then
                user=${PR_HEAD_LABEL%:*}
                branch=${PR_HEAD_LABEL#*:}
              else
    Others
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/collector/MultiModuleCollectionStrategy.java

                        projectsInRequestScope.add(requestPomProject);
    
                        Predicate<ProjectBuildingResult> projectsOutsideOfRequestScope =
                                pr -> !projectsInRequestScope.contains(pr.getProject());
    
                        Predicate<Exception> pluginArtifactNotFoundException = exc -> exc instanceof PluginManagerException
    Java
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Fri Sep 22 09:07:17 GMT 2023
    - 9.1K bytes
    - Viewed (0)
Back to top