Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,795 for Versions (0.15 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/CustomVersionListerWithSupplierIntegrationTest.groovy

                        if ($logQueries) { println("Listing versions for module \$id.name") }
                        repositoryResourceAccessor.withResource("\${id.group}/\${id.name}/metadata.json") {
                            def json = new JsonSlurper().parse(it, 'utf-8')
                            def versions = json.collect { it.version }
                            if ($logQueries) { println("Listed \$versions for \$id") }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modfetch/repo.go

    	// It is only used when there are no tagged versions.
    	Latest(ctx context.Context) (*RevInfo, error)
    
    	// GoMod returns the go.mod file for the given version.
    	GoMod(ctx context.Context, version string) (data []byte, err error)
    
    	// Zip writes a zip file for the given version to dst.
    	Zip(ctx context.Context, dst io.Writer, version string) error
    }
    
    // A Versions describes the available versions in a module repository.
    type Versions struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/dep-man/06-publishing/publishing_maven.adoc

    Resolved versions::
    This strategy publishes the versions that were resolved during the build, possibly by applying resolution rules and automatic conflict resolution.
    This has the advantage that the published versions correspond to the ones the published artifact was tested against.
    
    Example use cases for resolved versions:
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 23 03:39:56 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultCapabilitiesResolution.java

            } else if (resolutionDetails.selected != null) {
                versions.forEach(version -> details.getCandidates(version).forEach(cand -> selectExplicitCandidate(resolutionDetails, (CapabilityInternal) version, cand)));
            }
        }
    
        private void selectExplicitCandidate(DefaultCapabilityResolutionDetails resolutionDetails, CapabilityInternal version, CapabilitiesConflictHandler.CandidateDetails cand) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/dependency_downgrade_and_exclude.adoc

    ====
    
    [[sec:strict-version-consequences]]
    === Consequences of using strict versions
    
    Using a strict version must be carefully considered, in particular by library authors.
    As the _producer_, a strict version will effectively behave like a _force_: the version declaration takes precedence over whatever is found in the transitive dependency graph.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 12.9K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/strict/EndorseStrictVersionsIntegrationTest.groovy

                'org:platform:1.0'() {
                    constraint(group: 'org', artifact: 'bar', version: '1.0')
                    constraint(group: 'org', artifact: 'foo', strictly: '1.0')
                }
                'org:platform:2.0'() {
                    constraint(group: 'org', artifact: 'bar', version: '1.0')
                    constraint(group: 'org', artifact: 'foo', version: '1.0')
                }
                'org:foo:1.0'()
                'org:foo:2.0'()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 10.1K bytes
    - Viewed (0)
Back to top