Search Options

Results per page
Sort
Preferred Languages
Advance

Results 181 - 190 of 1,957 for Versions (0.31 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/objectmeta_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	defer tearDownFn()
    
    	crd := embeddedResourceFixture.DeepCopy()
    	crd.Spec.Versions[0].Schema = &apiextensionsv1.CustomResourceValidation{}
    	if err := yaml.Unmarshal([]byte(embeddedResourceSchema), &crd.Spec.Versions[0].Schema.OpenAPIV3Schema); err != nil {
    		t.Fatal(err)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 19K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/test/integration/table_test.go

    	if err != nil {
    		t.Fatalf("unable to create noxu instance: %v", err)
    	}
    	t.Logf("foo created: %#v", foo.UnstructuredContent())
    
    	for i, v := range crd.Spec.Versions {
    		gv := schema.GroupVersion{Group: crd.Spec.Group, Version: v.Name}
    		gvk := gv.WithKind(crd.Spec.Names.Kind)
    
    		scheme := runtime.NewScheme()
    		codecs := serializer.NewCodecFactory(scheme)
    		parameterCodec := runtime.NewParameterCodec(scheme)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 02 19:34:41 UTC 2021
    - 18.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/consistency/ProjectLocalDependencyResolutionConsistencyIntegrationTest.groovy

                        byConsistentResolution('other')
                        byConflictResolution('between versions 1.1 and 1.0')
                    }
                    constraint("org:foo:{strictly 1.1}", "org:foo:1.1")
                }
            }
        }
    
        def "fails if there's a conflict between a first level dependency version and a strict version from consistency"() {
            repository {
                'org:foo:1.0'()
                'org:foo:1.1'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/apidiscovery/v2/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Versions = append(m.Versions, APIVersionDiscovery{})
    			if err := m.Versions[len(m.Versions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  5. .teamcity/src/main/kotlin/model/CIBuildModel.kt

        // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version
        quick(true, true, true, 120, 4),
    
        // Include cross version tests, these take care of selecting a very small set of versions to cover when run as part of this stage, including the current version
        platform(true, true, true),
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jun 03 03:39:03 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/cel/environment/environment.go

    // to what options were introduced at which versions.
    //
    // Each EnvSet is given a compatibility version when it is created, and prepares the
    // NewExpressions environment to be compatible with that version. The EnvSet also
    // prepares StoredExpressions to be compatible with all known versions of Kubernetes.
    type EnvSet struct {
    	// compatibilityVersion is the version that all configuration in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 08 15:52:31 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.pb.go

    			postIndex := iNdEx + msglen
    			if postIndex < 0 {
    				return ErrInvalidLengthGenerated
    			}
    			if postIndex > l {
    				return io.ErrUnexpectedEOF
    			}
    			m.Versions = append(m.Versions, APIVersionDiscovery{})
    			if err := m.Versions[len(m.Versions)-1].Unmarshal(dAtA[iNdEx:postIndex]); err != nil {
    				return err
    			}
    			iNdEx = postIndex
    		default:
    			iNdEx = preIndex
    			skippy, err := skipGenerated(dAtA[iNdEx:])
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:37 UTC 2024
    - 44.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/verification/serializer/DependencyVerificationsXmlWriterTest.groovy

                    throw new RuntimeException("Could not load schema for version ${version}", exception)
                }
                [version, schema]
            }
            assert result.size() > 0: "No schemas found"
            result
        }
    
        private void validateAgainstSchemasSince(String version) {
            validAgainstSchemas(schemas.keySet().findAll { it >= version })
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 01 13:40:00 UTC 2024
    - 16.8K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/design/gradle-module-metadata-1.0-specification.md

    #### `version` value
    
    This value, nested in elements of the `dependencies` or `dependencyConstraints` nodes, defines the version constraint of a dependency or dependency constraint. Has the same meaning as `version` in the Gradle DSL. A version constraint consists of:
    - `requires`: optional. The required version for this dependency.
    - `prefers`: optional. The preferred version for this dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 22 23:32:14 UTC 2024
    - 12.5K bytes
    - Viewed (0)
  10. platforms/ide/tooling-api/src/integTest/groovy/org/gradle/integtests/tooling/ConcurrentToolingApiIntegrationSpec.groovy

        }
    
        def "handles the same target gradle version concurrently"() {
            buildFile << "apply plugin: 'java'"
    
            when:
            threads.times {
                concurrent.start { useToolingApi(toolingApi) }
            }
    
            then:
            concurrent.finished()
        }
    
        def "handles different target gradle versions concurrently"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 13.7K bytes
    - Viewed (0)
Back to top