Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 1,795 for Versions (0.11 sec)

  1. platforms/ide/tooling-api/src/testFixtures/groovy/org/gradle/integtests/tooling/fixture/ToolingApiSpecification.groovy

     * </ul>
     *
     * The supported ranges for the tooling API versions and for the target Gradle versions are documented in the Gradle user guide.
     * For up-to-date information, check the 'Compatibility of Java and Gradle versions` section of the 'Third-party Tools' chapter.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/runtime/scheme.go

    // and the specified order overwrites any previously specified order for this group
    func (s *Scheme) SetVersionPriority(versions ...schema.GroupVersion) error {
    	groups := sets.String{}
    	order := []string{}
    	for _, version := range versions {
    		if len(version.Version) == 0 || version.Version == APIVersionInternal {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 25.2K bytes
    - Viewed (0)
  3. 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)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/ComponentSelectionRulesDependencyResolveIntegTest.groovy

            setupInteractions('1.+', null, ['1.2', '1.1', '1.0'])
    
            then:
            fails ':checkDeps'
    
            and:
            failureHasCause("""Could not find any version that matches org.utils:api:1.+.
    Versions that do not match:
      - 2.1
      - 2.0
    Versions rejected by component selection rules:
      - 1.2
      - 1.1
      - 1.0
    Searched in the following locations:
      - ${versionListingURI('org.utils', 'api')}
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/ComponentAttributesRulesIntegrationTest.groovy

         * to use the right version.
         */
        def "can select the latest.#status version having release status"() {
            given:
            def versions = [
                '1': 'release',
                '2': 'milestone',
                '3': 'integration',
                '4': 'release',
                '5': 'integration'
            ]
            repository {
                versions.each { String version, String s ->
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:10:53 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_discovery_controller.go

    	if !foundVersion {
    		c.versionHandler.unsetDiscovery(version)
    
    		if c.resourceManager != nil {
    			c.resourceManager.RemoveGroupVersion(metav1.GroupVersion{
    				Group:   version.Group,
    				Version: version.Version,
    			})
    		}
    		return nil
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Apr 21 11:40:03 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/api/v2/legalize_tf_test.cc

    static constexpr char kMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
      func.func @main() -> () {
        func.return
      }
    })";
    
    // MLIR which should not legalize at all
    static constexpr char kBadMlirModuleStr[] = R"(
      module attributes {tf.versions = {bad_consumers = [], min_consumer = 0 : i32, producer = 268 : i32}} {
      func.func @main() -> () {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 13 23:59:33 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modload/edit.go

    	// requiring maps each not-yet-disqualified module version to the versions
    	// that would cause that module's requirements to be included in a pruned or
    	// unpruned context. If that version becomes disqualified, the
    	// disqualification will be propagated to all of the versions in the
    	// corresponding list.
    	//
    	// This map is similar to the module requirement graph, but includes more
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 21:46:32 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  10. cmd/batch-expire.go

    //       purge:
    //           # retainVersions: 0 # (default) delete all versions of the object. This option is the fastest.
    //           # retainVersions: 5 # keep the latest 5 versions of the object.
    //
    //     - type: deleted # objects with delete marker as their latest version
    //       name: NAME # match object names that satisfy the wildcard expression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
Back to top