Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for alpha (0.17 sec)

  1. maven-compat/src/test/java/org/apache/maven/project/artifact/MavenMetadataSourceTest.java

            String artifactId = "maven-model";
    
            Dependency dep = new Dependency();
    
            dep.setGroupId( groupId );
            dep.setArtifactId( artifactId );
            dep.setVersion( "2.0-alpha-3" );
    
            Model model = new Model();
    
            model.addDependency( dep );
    
            MavenProject project = new MavenProject( model, repositorySystem );
    
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 05:46:50 GMT 2024
    - 5.7K bytes
    - Viewed (0)
  2. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

            assertNotNull(project);
        }
    
        @Test
        void testCollectArtifactDependencies() {
            Artifact artifact =
                    session.createArtifact("org.codehaus.plexus", "plexus-container-default", "1.0-alpha-32", "jar");
            Node root = session.collectDependencies(artifact);
            assertNotNull(root);
        }
    
        @Test
        void testResolveArtifactCoordinateDependencies() {
    Java
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 14:13:36 GMT 2024
    - 9.9K bytes
    - Viewed (2)
  3. src/bytes/buffer_test.go

    	{"abbbaaaba", 'b', []string{"ab", "b", "b", "aaab"}, nil},
    	{"hello\x01world", 1, []string{"hello\x01"}, nil},
    	{"foo\nbar", 0, []string{"foo\nbar"}, io.EOF},
    	{"alpha\nbeta\ngamma\n", '\n', []string{"alpha\n", "beta\n", "gamma\n"}, nil},
    	{"alpha\nbeta\ngamma", '\n', []string{"alpha\n", "beta\n", "gamma"}, io.EOF},
    }
    
    func TestReadBytes(t *testing.T) {
    	for _, test := range readBytesTests {
    		buf := NewBufferString(test.buffer)
    Go
    - Registered: Tue Apr 30 11:13:12 GMT 2024
    - Last Modified: Fri Apr 26 13:31:36 GMT 2024
    - 18.6K bytes
    - Viewed (0)
  4. maven-bom/pom.xml

      <scm>
        <connection>scm:git:https://gitbox.apache.org/repos/asf/maven.git</connection>
        <developerConnection>scm:git:https://gitbox.apache.org/repos/asf/maven.git</developerConnection>
        <tag>maven-4.0.0-alpha-10</tag>
        <url>https://github.com/apache/maven/tree/${project.scm.tag}/${project.artifactId}</url>
      </scm>
      <issueManagement>
        <system>jira</system>
        <url>https://issues.apache.org/jira/browse/MNG</url>
    XML
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Thu Apr 25 08:48:58 GMT 2024
    - 7.4K bytes
    - Viewed (0)
  5. go.sum

    istio.io/api v1.22.0-alpha.1.0.20240501132840-1724785ec635 h1:7oQ9+LWQNQJwt4kw4ALFFoMGvEksyBrbXSfal5h9FK8=
    istio.io/api v1.22.0-alpha.1.0.20240501132840-1724785ec635/go.mod h1:WKz6cReGS673+9crbXmIARZvk6wxQIao7u7Y4xUgbOM=
    istio.io/client-go v1.22.0-alpha.1.0.20240501133140-436cc17804f9 h1:dDlupvbUDYupo7s2H9NJftJzgKflGYg/oDr/4YYNM2k=
    Plain Text
    - Registered: Wed May 01 22:53:12 GMT 2024
    - Last Modified: Wed May 01 15:22:54 GMT 2024
    - 109.1K bytes
    - Viewed (0)
  6. RELEASE.md

    *   Make the Bigtable client connection pool configurable & increase the
        default # of connections for performance.
    *   Added derivative of `tf.random_gamma` with respect to the alpha parameter.
    *   Added derivative of `tf.igamma(a, x)` and `tf.igammac(a, x)` with respect to
        a.
    *   Modified Bessel functions of order zero and one.
    *   Add FillTriangular Bijector to create triangular matrices.
    Plain Text
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Apr 29 19:17:57 GMT 2024
    - 727.7K bytes
    - Viewed (8)
Back to top