Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for grep (0.14 sec)

  1. .github/workflows/maven.yml

              else
                user=${GITHUB_REPOSITORY%/*}
                branch=${GITHUB_REF#refs/heads/}
              fi
              if [ $branch != "master" ]; then
                git ls-remote https://github.com/$user/$repo.git | grep "refs/heads/${branch}$" > /dev/null
                if [ $? -eq 0 ]; then
                  echo "Found a branch \"$branch\" in fork \"$user/$repo\", configuring this for the integration tests to be run against."
    Others
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Sun Mar 03 21:28:30 GMT 2024
    - 4.5K bytes
    - Viewed (0)
  2. maven-compat/src/test/java/org/apache/maven/artifact/factory/DefaultArtifactFactoryTest.java

                    "test-grp", "test-artifact", VersionRange.createFromVersion("1.0"), "type", null, "system", "provided");
            Artifact artifact2 = factory.createDependencyArtifact(
                    "test-grp", "test-artifact-2", VersionRange.createFromVersion("1.0"), "type", null, "system", "test");
            Artifact artifact3 = factory.createDependencyArtifact(
                    "test-grp",
                    "test-artifact-3",
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 2.7K bytes
    - Viewed (0)
Back to top