Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 6,115 for version1 (0.15 sec)

  1. cmd/storage-datatypes.go

    	// Name of the file.
    	Name string `msg:"n,omitempty"`
    
    	// Represents the latest mod time of the
    	// latest version.
    	LatestModTime time.Time `msg:"lm"`
    
    	Versions     []FileInfo `msg:"vs"`
    	FreeVersions []FileInfo `msg:"fvs"`
    }
    
    // findVersionIndex will return the version index where the version
    // was found. Returns -1 if not found.
    func (f *FileInfoVersions) findVersionIndex(v string) int {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  2. cmd/metacache-entries.go

    					if err := selectFrom(idx); err != nil {
    						return err
    					}
    				}
    				versions = append(versions, xl2.versions)
    			}
    
    			if xl != nil && len(versions) > 0 {
    				// Merge all versions. 'strict' doesn't matter since we only need one.
    				xl.versions = mergeXLV2Versions(readQuorum, true, 0, versions...)
    				if meta, err := xl.AppendTo(metaDataPoolGet()); err == nil {
    					if best.reusable {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 04:34:26 UTC 2024
    - 24K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DefaultVersionedComponentChooserTest.groovy

                    converter.transform(producer.transform(key, dependenciesProvider, null), dependenciesProvider, null)
                }
            }
        }
    
        def version(String version) {
            return versionParser.transform(version)
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. 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)
  5. platforms/documentation/docs/src/docs/userguide/authoring-builds/other/test_kit.adoc

    [NOTE]
    ====
    GradleRunner supports the same range of Gradle versions as the Tooling API.
    The supported versions are defined in the <<third_party_integration.adoc#sec:embedding_compatibility,compatibility matrix>>.
    
    Builds with older Gradle versions _may_ still work but there are no guarantees.
    ====
    
    Starting with version 2.13, Gradle provides a conventional mechanism to inject the code under test into the test build.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 05:36:09 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/PublishedRichVersionConstraintsIntegrationTest.groovy

            then:
            failure.assertHasCause("""Cannot find a version of 'org:foo' that satisfies the version constraints:
       Dependency path ':test:unspecified' --> 'org:foo:1.1'
       Dependency path ':test:unspecified' --> 'org:bar:1.0' (runtime) --> 'org:foo:{require 1.0; reject 1.1}'""")
        }
    
        void "honors multiple rejections #rejects using dynamic versions using dependency notation #rejects"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 13K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modfetch/cache.go

    func GoModFile(ctx context.Context, path, version string) (string, error) {
    	if !gover.ModIsValid(path, version) {
    		return "", fmt.Errorf("invalid version %q", version)
    	}
    	if _, err := GoMod(ctx, path, version); err != nil {
    		return "", err
    	}
    	// GoMod should have populated the disk cache for us.
    	file, err := CachePath(ctx, module.Version{Path: path, Version: version}, "mod")
    	if err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  8. internal/bucket/lifecycle/lifecycle.go

    	DeleteRestoredAction
    	// DeleteRestoredVersionAction deletes a particular version that was temporarily restored
    	DeleteRestoredVersionAction
    	// DeleteAllVersionsAction deletes all versions when an object expires
    	DeleteAllVersionsAction
    	// DelMarkerDeleteAllVersionsAction deletes all versions when an object with delete marker as latest version expires
    	DelMarkerDeleteAllVersionsAction
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 23 01:12:48 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. 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)
  10. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishBasicIntegTest.groovy

            repoModule.rootMetaData.versions == ["1.0", "2.0"]
            repoModule.rootMetaData.releaseVersion == "2.0"
            repoModule.rootMetaData.latestVersion == "2.0"
    
            and:
            localModule.rootMetaData.groupId == "group"
            localModule.rootMetaData.artifactId == "root"
            localModule.rootMetaData.versions == ["1.0", "2.0"]
            localModule.rootMetaData.releaseVersion == "2.0"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 14.9K bytes
    - Viewed (0)
Back to top