Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 6,115 for version1 (0.35 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            file('gradle/a.versions.toml') << """
    [versions]
    some = "1.4"
    
    [libraries]
    my-a-lib = { group = "com.mycompany", name="myalib", version.ref="some" }
    """
            file('gradle/b.versions.toml') << """
    [versions]
    some = "1.4"
    
    [libraries]
    my-b-lib = { group = "com.mycompany", name="myblib", version.ref="some" }
    """
    
            settingsFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. src/cmd/go/internal/modfetch/repo.go

    	// It is only used when there are no tagged versions.
    	Latest(ctx context.Context) (*RevInfo, error)
    
    	// GoMod returns the go.mod file for the given version.
    	GoMod(ctx context.Context, version string) (data []byte, err error)
    
    	// Zip writes a zip file for the given version to dst.
    	Zip(ctx context.Context, dst io.Writer, version string) error
    }
    
    // A Versions describes the available versions in a module repository.
    type Versions struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  3. maven-resolver-provider/src/main/java/org/apache/maven/repository/internal/DefaultVersionRangeResolver.java

    import org.eclipse.aether.spi.synccontext.SyncContextFactory;
    import org.eclipse.aether.version.InvalidVersionSpecificationException;
    import org.eclipse.aether.version.Version;
    import org.eclipse.aether.version.VersionConstraint;
    import org.eclipse.aether.version.VersionRange;
    import org.eclipse.aether.version.VersionScheme;
    
    /**
     */
    @Named
    @Singleton
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  4. api/maven-api-metadata/src/main/mdo/metadata.mdo

              <name>release</name>
              <version>1.0.0+</version>
              <type>String</type>
              <description>What the last version added to the directory is, for the releases only ("groupId/artifactId" directory only)</description>
            </field>
            <field>
              <name>versions</name>
              <version>1.0.0+</version>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 15 17:32:27 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. build-logic/buildquality/src/main/kotlin/gradlebuild/incubation/action/IncubatingApiReportWorkAction.kt

           <h1>Incubating APIs for  $title</h1>
        """
                )
                val versions = versionsDates()
                versionToIncubating.toSortedMap().forEach { (version, incubatingDescriptions) ->
                    writer.println("<a name=\"sec_$version\"></a>")
                    writer.println(
                        "<h2>Incubating since $version (${versions[version]?.run { "released on $this" } ?: "unreleased"})</h2>"
                    )
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jun 25 02:53:14 UTC 2023
    - 12.7K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/types.go

    	// Versions is the list of all supported versions for this resource.
    	// If Version field is provided, this field is optional.
    	// Validation: All versions must use the same validation schema for now. i.e., top
    	// level Validation field is applied to all of these versions.
    	// Order: The version name will be used to compute the order.
    	// If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 21.2K bytes
    - Viewed (0)
  7. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/DefaultGradleDistribution.groovy

            return isVersion(otherVersion) || version.compareTo(GradleVersion.version(otherVersion)) > 0;
        }
    
        protected boolean isSameOrOlder(String otherVersion) {
            return isVersion(otherVersion) || version.compareTo(GradleVersion.version(otherVersion)) <= 0;
        }
    
        protected boolean isVersion(String otherVersionString) {
            GradleVersion otherVersion = GradleVersion.version(otherVersionString);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  8. docs/bucket/versioning/README.md

    - Existing or newer buckets can be created with versioning enabled and eventually can be suspended as well. Existing versions of objects stay as is and can still be accessed using the version ID.
    - All versions, including delete-markers should be deleted before deleting a bucket.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 04 21:43:52 UTC 2023
    - 11.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerIntegrationTest.groovy

                        if ($logQueries) { println("Listing versions for module \$id.name") }
                        repositoryResourceAccessor.withResource("\${id.group}/\${id.name}/versions.txt") {
                            def versions = (new String(it.bytes)).split(',') as List
                            details.listed(versions)
                        }
                    }
                }
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.3K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/EndorseStrictVersionsIntegrationTest.groovy

                'org:platform:1.0'() {
                    constraint(group: 'org', artifact: 'bar', version: '1.0')
                    constraint(group: 'org', artifact: 'foo', strictly: '1.0')
                }
                'org:platform:2.0'() {
                    constraint(group: 'org', artifact: 'bar', version: '1.0')
                    constraint(group: 'org', artifact: 'foo', version: '1.0')
                }
                'org:foo:1.0'()
                'org:foo:2.0'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top