Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 8,364 for Versions (0.93 sec)

  1. testing/smoke-test/src/smokeTest/groovy/org/gradle/smoketests/KotlinMultiplatformPluginSmokeTest.groovy

                )
                .build()
    
            then:
            result.task(':allTests').outcome == SUCCESS
    
            where:
            kotlinVersion << TestedVersions.kotlin.versions.findAll {
                def version = VersionNumber.parse(it)
                // versions prior to 1.7.0 use the removed 'void org.gradle.api.reporting.DirectoryReport.setEnabled(boolean)' method
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 05 07:33:24 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerUnsupportedFeatureFailureIntegrationTest.groovy

        }
    
        @Requires(UnitTestPreconditions.Jdk8OrEarlier) // tests against old Gradle version that can only work with Java versions up tp 8
        def "fails informatively when trying to inject plugin classpath with unsupported gradle version"() {
            def maxUnsupportedVersion = getMaxUnsupportedVersion(TestKitFeature.PLUGIN_CLASSPATH_INJECTION)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 5.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apimachinery/pkg/runtime/embedded.go

    )
    
    type encodable struct {
    	E        Encoder `json:"-"`
    	obj      Object
    	versions []schema.GroupVersion
    }
    
    func (e encodable) GetObjectKind() schema.ObjectKind { return e.obj.GetObjectKind() }
    func (e encodable) DeepCopyObject() Object {
    	out := e
    	out.obj = e.obj.DeepCopyObject()
    	copy(out.versions, e.versions)
    	return out
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Dec 02 09:39:03 UTC 2019
    - 4.3K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apihelpers/helpers.go

    }
    
    // HasServedCRDVersion returns true if the given version is in the list of CRD's versions and the Served flag is set.
    func HasServedCRDVersion(crd *apiextensionsv1.CustomResourceDefinition, version string) bool {
    	for _, v := range crd.Spec.Versions {
    		if v.Name == version {
    			return v.Served
    		}
    	}
    	return false
    }
    
    // GetCRDStorageVersion returns the storage version for given CRD.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 03 16:49:27 UTC 2019
    - 9.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/limit_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    
    	kind := noxuDefinition.Spec.Names.Kind
    	apiVersion := noxuDefinition.Spec.Group + "/" + noxuDefinition.Spec.Versions[0].Name
    
    	rest := apiExtensionClient.Discovery().RESTClient()
    
    	// Create YAML over 3MB limit
    	t.Run("create YAML over limit", func(t *testing.T) {
    		yamlBody := []byte(fmt.Sprintf(`
    apiVersion: %s
    kind: %s
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 8K bytes
    - Viewed (0)
  6. maven-api-impl/src/main/java/org/apache/maven/internal/impl/resolver/RemoteSnapshotMetadata.java

            }
    
            for (Artifact artifact : artifacts) {
                String version = artifact.getVersion();
    
                if (version.endsWith(SNAPSHOT)) {
                    String qualifier = snapshot.getTimestamp() + '-' + snapshot.getBuildNumber();
                    version = version.substring(0, version.length() - SNAPSHOT.length()) + qualifier;
                }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 10:10:21 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/certificates/v1beta1/zz_generated.prerelease-lifecycle.go

    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *CertificateSigningRequest) APILifecycleReplacement() schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: "certificates.k8s.io", Version: "v1", Kind: "CertificateSigningRequest"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 4K bytes
    - Viewed (0)
  8. platforms/software/version-control/src/integTest/groovy/org/gradle/vcs/internal/ParallelSourceDependencyIntegrationTest.groovy

            when:
            // Wait for each project to list versions concurrently
            httpServer.expectConcurrent("A", "B", "C", "D")
            // Only one project should clone
            repo.expectListVersions()
            repo.expectCloneSomething()
    
            then:
            succeeds('resolve', '--parallel', '--max-workers=4')
    
            when:
            // Wait for each project to list versions concurrently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  9. build/pause/CHANGELOG.md

    # 3.4.1
    
    * Support for Windows container images (OS Versions: 20H2) was added.([#97322](https://prs.k8s.io/97322), [@claudiubelu](https://github.com/claudiubelu))
    
    # 3.4
    
    * Support for Windows container images (OS Versions: 1809, 1903, 1909, 2004) was added. ([#91452](https://prs.k8s.io/91452), [@claudiubelu](https://github.com/claudiubelu))
    
    # 3.3
    
    * update debian-base version to v2.1.0 ([#90665](https://prs.k8s.io/90665), [@justaugustus]
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 13:09:17 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/authentication/v1beta1/zz_generated.prerelease-lifecycle.go

    // APILifecycleReplacement is an autogenerated function, returning the group, version, and kind that should be used instead of this deprecated type.
    // It is controlled by "k8s:prerelease-lifecycle-gen:replacement=<group>,<version>,<kind>" tags in types.go.
    func (in *TokenReview) APILifecycleReplacement() schema.GroupVersionKind {
    	return schema.GroupVersionKind{Group: "authentication.k8s.io", Version: "v1", Kind: "TokenReview"}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 08 23:42:33 UTC 2023
    - 3.4K bytes
    - Viewed (0)
Back to top