Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 100 for revision (1.21 sec)

  1. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

            CliRequest request = new CliRequest(new String[] {"-Drevision=8.1.0", "-Drevision=8.2.0"}, null);
    
            cli.initialize(request);
            // read .mvn/maven.config
            cli.cli(request);
            cli.properties(request);
    
            String revision = request.getUserProperties().getProperty("revision");
            assertEquals("8.2.0", revision);
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/coderepo.go

    		switch {
    		case strings.HasPrefix(rev, info.Short):
    			return fmt.Errorf("revision is longer than canonical (expected %s)", info.Short)
    		case strings.HasPrefix(info.Short, rev):
    			return fmt.Errorf("revision is shorter than canonical (expected %s)", info.Short)
    		default:
    			return fmt.Errorf("does not match short name of revision (expected %s)", info.Short)
    		}
    	}
    
    	t, err := module.PseudoVersionTime(version)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  3. src/cmd/go/internal/modfetch/codehost/codehost.go

    	Tags(ctx context.Context, prefix string) (*Tags, error)
    
    	// Stat returns information about the revision rev.
    	// A revision can be any identifier known to the underlying service:
    	// commit hash, branch, tag, and so on.
    	Stat(ctx context.Context, rev string) (*RevInfo, error)
    
    	// Latest returns the latest revision on the default branch,
    	// whatever that means in the underlying implementation.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:50:24 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/modfetch/coderepo_test.go

    		err:     "missing github.com/rsc/vgotest1/go.mod and .../v54321/go.mod at revision 80d85c5d4d17",
    	},
    	{
    		vcs:  "git",
    		path: "github.com/rsc/vgotest1/submod",
    		rev:  "v1.0.0",
    		err:  "unknown revision submod/v1.0.0",
    	},
    	{
    		vcs:  "git",
    		path: "github.com/rsc/vgotest1/submod",
    		rev:  "v1.0.3",
    		err:  "unknown revision submod/v1.0.3",
    	},
    	{
    		vcs:     "git",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 18 20:10:14 UTC 2023
    - 29.4K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modfetch/repo.go

    	Versions(ctx context.Context, prefix string) (*Versions, error)
    
    	// Stat returns information about the revision rev.
    	// A revision can be any identifier known to the underlying service:
    	// commit hash, branch, tag, and so on.
    	Stat(ctx context.Context, rev string) (*RevInfo, error)
    
    	// Latest returns the latest revision on the default branch,
    	// whatever that means in the underlying source code repository.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  6. maven-model/src/main/java/org/apache/maven/model/InputLocation.java

     * specific language governing permissions and limitations
     * under the License.
     */
    package org.apache.maven.model;
    
    import java.util.stream.Collectors;
    
    /**
     * Class InputLocation.
     *
     * @version $Revision$ $Date$
     */
    @SuppressWarnings("all")
    public final class InputLocation implements java.io.Serializable, Cloneable, InputLocationTracker {
    
        // --------------------------/
        // - Class/Member Variables -/
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Oct 19 07:06:15 UTC 2023
    - 10.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/vcs/vcs.go

    		return Status{}, err
    	}
    
    	// Skip warning when working directory is set to an older revision.
    	if bytes.HasPrefix(outb, []byte("working tree is out of date")) {
    		i := bytes.IndexByte(outb, '\n')
    		if i < 0 {
    			i = len(outb)
    		}
    		outb = outb[:i]
    	}
    	uncommitted := len(outb) > 0
    
    	return Status{
    		Revision:    rev,
    		CommitTime:  commitTime,
    		Uncommitted: uncommitted,
    	}, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 46.2K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/codehost/git_test.go

    				"prefix/v3/sub/dir/file.txt": 16,
    			},
    		},
    
    		{
    			repo:   gitrepo1,
    			rev:    "aaaaaaaaab",
    			subdir: "",
    			err:    "unknown revision",
    		},
    		{
    			repo:   hgrepo1,
    			rev:    "aaaaaaaaab",
    			subdir: "",
    			err:    "unknown revision",
    		},
    
    		{
    			repo:   vgotest1,
    			rev:    "submod/v1.0.4",
    			subdir: "submod",
    			files: map[string]uint64{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 19:46:23 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/query.go

    // versions (see AllowedFunc documentation for details). If the query refers to
    // a specific revision (for example, "master"; see IsRevisionQuery), and the
    // revision is disallowed by allowed, Query returns the error. If the query
    // does not refer to a specific revision (for example, "latest"), Query
    // acts as if versions disallowed by allowed do not exist.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 44.7K bytes
    - Viewed (0)
  10. maven-core/src/test/java/org/apache/maven/project/DefaultMavenProjectBuilderTest.java

         */
        public void testBuildParentVersionRangeLocallyWithChildRevisionExpression() throws Exception {
            File f1 = getTestFile(
                    "src/test/resources/projects/parent-version-range-local-child-revision-expression/child/pom.xml");
    
            MavenProject mp = this.getProjectFromRemoteRepository(f1);
    
            assertEquals("1.0-SNAPSHOT", mp.getVersion());
        }
    
        /**
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 19 15:04:04 UTC 2023
    - 16.5K bytes
    - Viewed (0)
Back to top