Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,957 for Versions (1.22 sec)

  1. cmd/data-usage_test.go

    				t.Error("got size", e.Size, "want", w.size)
    			}
    			if e.Objects != uint64(w.objs) {
    				t.Error("got objects", e.Objects, "want", w.objs)
    			}
    			if e.Versions != uint64(w.objs) {
    				t.Error("got versions", e.Versions, "want", w.objs)
    			}
    			if e.ObjSizes != w.oSizes {
    				t.Error("got histogram", e.ObjSizes, "want", w.oSizes)
    			}
    		})
    	}
    
    	files = []usageTestFile{
    		{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/catalog/TomlDependenciesExtensionIntegrationTest.groovy

            file('gradle/a.versions.toml') << """
    [versions]
    some = "1.4"
    
    [libraries]
    my-a-lib = { group = "com.mycompany", name="myalib", version.ref="some" }
    """
            file('gradle/b.versions.toml') << """
    [versions]
    some = "1.4"
    
    [libraries]
    my-b-lib = { group = "com.mycompany", name="myblib", version.ref="some" }
    """
    
            settingsFile """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 09:03:53 UTC 2024
    - 33K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    			t.Fatal(err)
    		}
    	}
    	addDefault := func(version string, key string, value interface{}) {
    		t.Helper()
    		updateCRD(func(obj *apiextensionsv1.CustomResourceDefinition) {
    			for _, root := range []string{"spec", "status"} {
    				for i := range obj.Spec.Versions {
    					if obj.Spec.Versions[i].Name != version {
    						continue
    					}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/types.go

    	// versions is the list of all API versions of the defined custom resource.
    	// Optional if `version` is specified.
    	// The name of the first item in the `versions` list must match the `version` field if `version` and `versions` are both specified.
    	// Version names are used to compute the order in which served versions are listed in API discovery.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 32.3K bytes
    - Viewed (0)
  5. src/cmd/go/internal/mvs/mvs.go

    	// but should "no latest version" just return m instead?
    	Upgrade(m module.Version) (module.Version, error)
    }
    
    // A DowngradeReqs is a Reqs that can also identify available downgrades.
    type DowngradeReqs interface {
    	Reqs
    
    	// Previous returns the version of m.Path immediately prior to m.Version,
    	// or "none" if no such version is known.
    	Previous(m module.Version) (module.Version, error)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 27 21:58:12 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/upgrade/compute.go

    		return upgrades, err
    	}
    	printer.Printf("[upgrade/versions] kubeadm version: %s\n", kubeadmVersionStr)
    
    	// Get and output the current latest stable version
    	stableVersionStr, stableVersion, err := versionGetterImpl.VersionFromCILabel("stable", "stable version")
    	if err != nil {
    		klog.Warningf("[upgrade/versions] WARNING: %v\n", err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  7. pkg/volume/csi/csi_plugin_test.go

    	}
    
    	return csiPlug, tmpDir
    }
    
    func registerFakePlugin(pluginName, endpoint string, versions []string, t *testing.T) {
    	highestSupportedVersions, err := utilversion.HighestSupportedVersion(versions)
    	if err != nil {
    		t.Fatalf("unexpected error parsing versions (%v) for pluginName %q endpoint %q: %#v", versions, pluginName, endpoint, err)
    	}
    
    	csiDrivers.Clear()
    	csiDrivers.Set(pluginName, Driver{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 41.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/tests/shape-inference.mlir

    // RUN: tf-opt -split-input-file -verify-diagnostics --tf-shape-inference %s | FileCheck %s
    
    module attributes {tf.versions = {producer = 888 : i32}} {
    // CHECK-LABEL: testConv2dShapeValidPadding
    func.func @testConv2dShapeValidPadding(%arg0: tensor<1x112x80x128xf32>, %arg1: tensor<128x3x3x128xf32>, %arg2: tensor<128xf32>) -> tensor<1x?x?x128xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/constraints/DependencyConstraintsIntegrationTest.groovy

                    module("org:bar:1.0") {
                        edge("org:foo:[1.0,1.2]", "org:foo:1.1").byConstraint('didn\'t match version 1.2 because tested versions')
                    }
                    constraint("org:foo:[1.0,1.1]", "org:foo:1.1").byConstraint('didn\'t match version 1.2 because tested versions')
                }
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 28.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    [[dependency-locking]]
    = Locking dependency versions
    
    Use of dynamic dependency versions (e.g. `1.+` or `[1.0,2.0)`) makes builds non-deterministic.
    This causes builds to break without any obvious change, and worse, can be caused by a transitive dependency that the build author has no control over.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top