Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 7,481 for Versions (0.18 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/fuzzer/fuzzer.go

    					obj.Versions[0].AdditionalPrinterColumns = nil
    				}
    				if obj.Versions[0].SelectableFields != nil {
    					obj.SelectableFields = obj.Versions[0].SelectableFields
    					obj.Versions[0].SelectableFields = nil
    				}
    				if obj.Versions[0].Subresources != nil {
    					obj.Subresources = obj.Versions[0].Subresources
    					obj.Versions[0].Subresources = nil
    				}
    			}
    		},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/compatibility/AbstractContextualMultiVersionTestInterceptor.java

                } else {
                    for (T version : possibleVersions) {
                        if (isAvailable(version) && version.matches(criteria)) {
                            versionsUnderTest.add(version);
                        }
                    }
                }
            }
    
            for (T version : versionsUnderTest) {
                for (Execution execution : createExecutionsFor(version)) {
                    add(execution);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. src/mdo/model-version.vm

    #foreach ( $version in $versions )
        #set ( $v = $version.toString().replace('.', '_') )
            // ${version}
            if (is_${v}(model)) {
                return "${version}";
            }
    #end
    #if ( $minimalVersion )
            return "$minimalVersion";
    #else
            return null;
    #end
        }
    
    #foreach ( $version in $versions )
        #set ( $v = $version.toString().replace('.', '_') )
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation_test.go

    					StoredVersions: []string{"version"},
    				},
    			},
    			errors: []validationMatch{
    				// Per-version schema/subresources/columns may not all be set to identical values.
    				// Note that the test will fail if we de-duplicate the expected errors below.
    				invalid("spec", "versions"),
    				invalid("spec", "versions"),
    				invalid("spec", "versions"),
    			},
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 349.4K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/repositories/resolver/ResourceVersionListerTest.groovy

            "/some/[revision]-version"               | "/some/"        | ["1-version", "2.1-version", "a-version-version", "nonmatching"]
            "/some/[revision]-version/lib"           | "/some/"        | ["1-version", "2.1-version", "a-version-version", "nonmatching"]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/snippets/signing/maven-publish/kotlin/build.gradle.kts

    }
    // end::use-plugin[]
    
    group = "com.example"
    version = "1.0"
    
    // tag::defining-sources-jar-task[]
    java {
        withJavadocJar()
        withSourcesJar()
    }
    // end::defining-sources-jar-task[]
    
    // tag::pom-customization[]
    // tag::versions-resolved[]
    publishing {
        publications {
            create<MavenPublication>("mavenJava") {
    // end::versions-resolved[]
    // end::pom-customization[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/admissionregistration/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *MutatingWebhookConfiguration) APILifecycleReplacement() schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: "admissionregistration.k8s.io", Version: "v1", Kind: "MutatingWebhookConfiguration"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 21 20:56:23 UTC 2023
    - 12K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/version.go

    )
    
    // allowVersion reports whether the current package at the given position
    // is allowed to use version v. If the position is unknown, the specified
    // module version (Config.GoVersion) is used. If that version is invalid,
    // allowVersion returns true.
    func (check *Checker) allowVersion(at poser, v goVersion) bool {
    	fileVersion := check.conf.GoVersion
    	if pos := at.Pos(); pos.IsKnown() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 20:44:57 UTC 2024
    - 2.4K 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/main/java/org/gradle/api/internal/catalog/DefaultVersionCatalog.java

                                     Map<String, VersionModel> versions,
                                     Map<String, PluginModel> plugins) {
            this.name = name;
            this.description = description;
            this.libraries = libraries;
            this.bundles = bundles;
            this.versions = versions;
            this.plugins = plugins;
            this.hashCode = doComputeHashCode();
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Dec 17 22:25:43 UTC 2023
    - 4.5K bytes
    - Viewed (0)
Back to top