Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 21 - 30 of 77 for badversion (0.05 seconds)

  1. build-logic/build-update-utils/src/test/groovy/gradlebuild/buildutils/tasks/UpdateReleasedVersionsTest.groovy

            new ReleasedVersion(version, format.format(new Date(date)))
        }
    
        ReleasedVersion snapshot(String baseVersion, long date = System.currentTimeMillis()) {
            releasedVersion("${baseVersion}-${format.format(new Date(date))}", date)
        }
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Mon Mar 23 14:47:12 GMT 2026
    - 5.4K bytes
    - Click Count (0)
  2. compat/maven-toolchain-builder/pom.xml

                </excludes>
              </parameter>
              <oldVersion>
                <dependency>
                  <groupId>org.apache.maven</groupId>
                  <artifactId>maven-core</artifactId>
                  <version>${maven.baseline}</version>
                </dependency>
              </oldVersion>
            </configuration>
          </plugin>
        </plugins>
      </build>
    
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Sun Jun 29 22:37:39 GMT 2025
    - 4.4K bytes
    - Click Count (0)
  3. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/BwcSetupExtension.java

                configAction.execute(loggedExec);
            });
        }
    
        private String minimumCompilerVersionPath(Version bwcVersion) {
            return (bwcVersion.onOrAfter(BUILD_TOOL_MINIMUM_VERSION)) ?
                    "build-tools-internal/" + MINIMUM_COMPILER_VERSION_PATH :
                    "buildSrc/" + MINIMUM_COMPILER_VERSION_PATH;
        }
    
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Aug 18 09:11:28 GMT 2021
    - 6.8K bytes
    - Click Count (0)
  4. build-tools-internal/src/main/java/org/elasticsearch/gradle/internal/release/ReleaseNotesGenerator.java

            });
    
            // Sort per-area changelogs by their summary text. Assumes that the underlying list is sortable
            changelogsByVersionByTypeByArea.forEach(
                (_version, byVersion) -> byVersion.forEach(
                    (_type, byTeam) -> byTeam.forEach(
                        (_team, changelogsForTeam) -> changelogsForTeam.sort(comparing(ChangelogEntry::getSummary))
                    )
                )
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Wed Sep 01 14:45:41 GMT 2021
    - 4.5K bytes
    - Click Count (0)
  5. doc/next/3-tools.md

    The format is compatible with GCC's response file implementation to ensure interoperability with existing build systems.
    
    ### Go command {#go-command}
    
    `go test` now invokes the stdversion vet check by default.
    This reports the use of standard library symbols that are too new
    for the Go version in force in the referring file,
    as determined by `go` directive in `go.mod` and build tags on the file.
    
    Created: Tue Apr 07 11:13:11 GMT 2026
    - Last Modified: Thu Mar 19 02:58:52 GMT 2026
    - 757 bytes
    - Click Count (0)
  6. cmd/xl-storage.go

    	}, err
    }
    
    // ReadOptions optional inputs for ReadVersion
    type ReadOptions struct {
    	InclFreeVersions bool
    	ReadData         bool
    	Healing          bool
    }
    
    // ReadVersion - reads metadata and returns FileInfo at path `xl.meta`
    // for all objects less than `32KiB` this call returns data as well
    // along with metadata.
    Created: Sun Apr 05 19:28:12 GMT 2026
    - Last Modified: Sun Sep 28 20:59:21 GMT 2025
    - 91.7K bytes
    - Click Count (0)
  7. build-tools-internal/src/integTest/groovy/org/elasticsearch/gradle/internal/InternalBwcGitPluginFuncTest.groovy

            buildFile << """
                import org.elasticsearch.gradle.Version;
                apply plugin: org.elasticsearch.gradle.internal.InternalBwcGitPlugin
    
                bwcGitConfig {
                     bwcVersion = project.provider { Version.fromString("7.9.1") }
                     bwcBranch = project.provider { "7.x" }
                     checkoutDir = project.provider{file("build/checkout")}
                }
            """
    Created: Wed Apr 08 16:19:15 GMT 2026
    - Last Modified: Fri Sep 03 10:22:28 GMT 2021
    - 2.5K bytes
    - Click Count (0)
  8. build-logic/binary-compatibility/src/main/groovy/gradlebuild/binarycompatibility/AcceptedApiChanges.groovy

     */
    
    package gradlebuild.binarycompatibility
    
    import com.google.gson.Gson
    import com.google.gson.reflect.TypeToken
    import org.gradle.util.GradleVersion
    
    class AcceptedApiChanges {
    
        GradleVersion baseVersion
        Map<ApiChange, String> acceptedChanges
    
        static AcceptedApiChanges parse(List<String> jsonTexts) {
            def acceptedApiChanges = new AcceptedApiChanges()
            acceptedApiChanges.acceptedChanges = [:]
    Created: Wed Apr 01 11:36:16 GMT 2026
    - Last Modified: Tue Jun 04 14:00:46 GMT 2024
    - 1.9K bytes
    - Click Count (0)
  9. src/main/java/jcifs/config/BaseConfiguration.java

            this.minVersion = min != null ? min : DialectVersion.SMB202;
            this.maxVersion = max != null ? max : DialectVersion.SMB311;
    
            if (this.minVersion.atLeast(this.maxVersion)) {
                this.maxVersion = this.minVersion;
            }
        }
    
        /**
         * Initializes the disallowed compound operations based on the provided property string.
    Created: Sun Apr 05 00:10:12 GMT 2026
    - Last Modified: Sun Aug 31 08:00:57 GMT 2025
    - 36.5K bytes
    - Click Count (0)
  10. compat/maven-compat/src/main/java/org/apache/maven/repository/legacy/resolver/transform/LatestArtifactTransformation.java

            // metadata is added via addPluginArtifactMetadata
        }
    
        @Override
        protected String constructVersion(Versioning versioning, String baseVersion) {
            return versioning.getLatest();
        }
    Created: Sun Apr 05 03:35:12 GMT 2026
    - Last Modified: Fri Jun 06 14:28:57 GMT 2025
    - 2.9K bytes
    - Click Count (0)
Back to Top