Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,957 for Versions (0.26 sec)

  1. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/viewing_debugging_dependencies.adoc

    | Was requested : didn't match versions <versions>
    | The dependency appears with a <<dynamic_versions#sub:declaring_dependency_with_dynamic_version, dynamic version>> which did not include the listed versions.
    May be followed by a `because` text.
    
    | Was requested : reject version <versions>
    | The dependency appears with a <<rich_versions#rich-version-constraints, rich version>> containing one or more `reject`.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 15:55:38 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. cmd/metacache-entries_test.go

    					Type:      ObjectType,
    					Flags:     0,
    				}},
    			},
    		},
    		4: {
    			versions: []xlMetaV2ShallowVersion{},
    		},
    		// Has a zero version id
    		5: {
    			versions: []xlMetaV2ShallowVersion{
    				{header: xlMetaV2VersionHeader{
    					VersionID: [16]byte{},
    					ModTime:   baseTime.Add(60 * time.Minute).UnixNano(),
    					Signature: [4]byte{5, 1, 1, 1},
    					Type:      ObjectType,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Jan 02 17:15:06 UTC 2022
    - 31.6K bytes
    - Viewed (0)
  3. pkg/volume/csi/csi_plugin.go

    func (h *RegistrationHandler) validateVersions(callerName, pluginName string, endpoint string, versions []string) (*utilversion.Version, error) {
    	if len(versions) == 0 {
    		return nil, errors.New(log("%s for CSI driver %q failed. Plugin returned an empty list for supported versions", callerName, pluginName))
    	}
    
    	// Validate version
    	// CSI currently only has version 0.x and 1.x (see https://github.com/container-storage-interface/spec/releases).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 29.2K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/tests/merge_initializer_function_ops_to_main.mlir

    // RUN:     -split-input-file -mlir-print-local-scope -mlir-print-debuginfo \
    // RUN:     -verify-diagnostics | FileCheck %s --check-prefix CHECK-LOC
    
    // CHECK-LABEL: module attributes
    module attributes {tf.versions = {bad_consumers = [], min_consumer = 12 : i32, producer = 1228 : i32}, tf_saved_model.semantics} {
      "tf_saved_model.session_initializer"() {initializers = [@NoOp]} : () -> ()
    // Check that the initializers list is empty.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:49:35 UTC 2023
    - 29.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/test/integration/conversion/conversion_test.go

    	ns := ctc.namespace
    
    	for _, version := range ctc.crd.Spec.Versions {
    		t.Run(version.Name, func(t *testing.T) {
    			name := "storageversion-" + version.Name
    			client := ctc.versionedClient(ns, version.Name)
    			obj, err := client.Create(context.TODO(), newConversionMultiVersionFixture(ns, name, version.Name), metav1.CreateOptions{})
    			if err != nil {
    				t.Fatal(err)
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 47.1K bytes
    - Viewed (0)
  6. subprojects/core/src/test/groovy/org/gradle/cache/internal/GradleUserHomeCleanupServiceTest.groovy

                new TestBuildOperationRunner(),
                cacheConfigurations
        )
    
        def "cleans up unused version-specific cache directories and deletes distributions for unused versions with the default retention"() {
            given:
            def oldVersion = GradleVersion.version("2.3.4")
            def oldCacheDir = createVersionSpecificCacheDir(oldVersion, NOT_USED_WITHIN_30_DAYS)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:46:34 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/admission/plugin/policy/validating/typechecking.go

    	}
    	return groups
    }
    
    func extractVersions(rule *v1.Rule) []string {
    	versions := make([]string, 0, len(rule.APIVersions))
    	for _, version := range rule.APIVersions {
    		if strings.ContainsAny(version, "*") {
    			return nil
    		}
    		versions = append(versions, version)
    	}
    	return versions
    }
    
    func extractResources(rule *v1.Rule) []string {
    	resources := make([]string, 0, len(rule.Resources))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionRemoteResolveIntegrationTest.groovy

            then:
            checkResolve "group:projectA:1.+": "group:projectA:1.1"
    
            when: "Version 1.2 is published"
            server.resetExpectations()
            def version2 = ivyHttpRepo.module("group", "projectA", "1.2").publish()
    
            then: "Version 1.1 is still used, as the 1.+ -> 1.1 mapping is cached"
            checkResolve "group:projectA:1.+": "group:projectA:1.1"
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 41.4K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ivy/IvyDynamicRevisionResolveIntegrationTest.groovy

                        notRequested()
                        byReason("didn't match versions 1.3, 1.2, 1.1.1")
                    }
                }
            }
        }
    
        @Issue(["GRADLE-2502", "GRADLE-2794"])
        def "version selector ending in + selects highest matching version"() {
            given:
            buildFile << """
                dependencies {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/generated.proto

      optional string scope = 4;
    
      // versions is the list of all API versions of the defined custom resource.
      // Version names are used to compute the order in which served versions are listed in API discovery.
      // If the version string is "kube-like", it will sort above non "kube-like" version strings, which are ordered
      // lexicographically. "Kube-like" versions start with a "v", then are followed by a number (the major version),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 39.1K bytes
    - Viewed (0)
Back to top