Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 10 of 27 for targetVersions (0.08 seconds)

  1. buildSrc/src/main/kotlin/JavaModules.kt

      moduleName: String,
      defaultVersion: Int = 8,
      javaModuleVersion: Int = 9,
      enableValidation: Boolean = true,
    ) {
      plugins.apply("me.champeau.mrjar")
    
      configure<MultiReleaseExtension> {
        targetVersions(defaultVersion, javaModuleVersion)
      }
    
      tasks.named<JavaCompile>("compileJava9Java").configure {
        val compileKotlinTask = tasks.getByName("compileKotlin") as KotlinJvmCompile
        dependsOn(compileKotlinTask)
    
    Created: Fri Dec 26 11:42:13 GMT 2025
    - Last Modified: Sun Sep 21 06:22:22 GMT 2025
    - 1.9K bytes
    - Click Count (0)
  2. impl/maven-cli/src/main/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtils.java

         *
         * @param modelVersion the model version to check
         * @param targetVersion the target version to compare against
         * @return true if modelVersion >= targetVersion
         */
        public static boolean isVersionGreaterOrEqual(String modelVersion, String targetVersion) {
            if (modelVersion == null || targetVersion == null) {
                return false;
            }
    
            // Handle exact equality first
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 9.5K bytes
    - Click Count (0)
  3. build-logic/integration-testing/src/main/kotlin/gradlebuild.cross-version-tests.gradle.kts

        releasedVersions?.allTestedVersions?.forEach { targetVersion ->
            val crossVersionTest = createTestTask("gradle${targetVersion.version}CrossVersionTest", "forking", sourceSet, TestType.CROSSVERSION) {
                this.description = "Runs the cross-version tests against Gradle ${targetVersion.version}"
                this.systemProperties["org.gradle.integtest.versions"] = targetVersion.version
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Sep 05 02:31:24 GMT 2025
    - 4.5K bytes
    - Click Count (0)
  4. impl/maven-cli/src/test/java/org/apache/maven/cling/invoker/mvnup/goals/ModelVersionUtilsTest.java

            void shouldGetSchemaLocationForModelVersion(String targetVersion) {
                String schemaLocation = ModelVersionUtils.getSchemaLocationForModelVersion(targetVersion);
                assertNotNull(schemaLocation);
                assertTrue(
                        schemaLocation.contains(targetVersion),
                        "Expected " + schemaLocation + " to contain " + targetVersion);
            }
    
            @Test
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Tue Nov 18 18:03:26 GMT 2025
    - 19.6K bytes
    - Click Count (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

             * @return {@code this} for method call chaining
             */
            @Nonnull
            public DependencyResolverRequestBuilder targetVersion(@Nullable Version target) {
                targetVersion = target;
                return this;
            }
    
            @Nonnull
            public DependencyResolverRequestBuilder repositories(@Nonnull List<RemoteRepository> repositories) {
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Oct 10 07:30:49 GMT 2025
    - 23K bytes
    - Click Count (0)
  6. build-logic/jvm/src/main/kotlin/gradlebuild/jvm/JvmCompilation.kt

                    // TODO KT-49746: Use the DSL to set the release version
                    freeCompilerArgs.addAll(useRelease().zip(jvmTarget) { doUseRelease, targetVersion ->
                        if (doUseRelease) {
                            listOf("-Xjdk-release=${targetVersion.target}")
                        } else {
                            listOf()
                        }
                    })
                }
            }
        }
    
    Created: Wed Dec 31 11:36:14 GMT 2025
    - Last Modified: Fri Sep 19 05:45:14 GMT 2025
    - 5.8K bytes
    - Click Count (0)
  7. scripts/docs.py

        print(json.dumps(langs))
    
    
    @app.command()
    def generate_docs_src_versions_for_file(file_path: Path) -> None:
        target_versions = ["py39", "py310"]
        base_content = file_path.read_text(encoding="utf-8")
        previous_content = {base_content}
        for target_version in target_versions:
            version_result = subprocess.run(
                [
                    find_ruff_bin(),
                    "check",
    Created: Sun Dec 28 07:19:09 GMT 2025
    - Last Modified: Sun Dec 21 17:40:17 GMT 2025
    - 16.9K bytes
    - Click Count (0)
  8. api/maven-api-core/src/main/java/org/apache/maven/api/SourceRoot.java

         * In a Java environment, this is the value of the {@code --release} compiler option.
         * The default value is empty.
         */
        default Optional<Version> targetVersion() {
            return Optional.empty();
        }
    
        /**
         * {@return an explicit target path, overriding the default value}
         * <p>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Fri Nov 07 13:11:07 GMT 2025
    - 14.2K bytes
    - Click Count (0)
  9. api/maven-api-model/src/main/mdo/maven.mdo

                <p>This element can be combined with the {@code targetVersion} element for specifying sources,
                scripts, or resources that are specific to both a particular module and a target version.</p>
                ]]>
              </description>
              <type>String</type>
            </field>
            <field>
              <name>targetVersion</name>
              <version>4.1.0+</version>
              <description>
    Created: Sun Dec 28 03:35:09 GMT 2025
    - Last Modified: Wed Nov 26 03:07:35 GMT 2025
    - 133.3K bytes
    - Click Count (0)
  10. src/main/resources/fess_label_en.properties

    labels.upgrade_reindex=Re-indexing
    labels.upgrade_start_button=Start
    labels.replace_aliases=Replace Aliases
    labels.reset_dictionaries=Reset Dictionaries
    labels.reindex_start_button=Start
    labels.targetVersion=Target Version
    labels.target_version=Target Version
    labels.sereq_configuration=Request to OpenSearch
    labels.sereq_request_file=Request File
    labels.requestFile=Request File
    labels.sereq_button_upload=Send
    Created: Sat Dec 20 09:19:18 GMT 2025
    - Last Modified: Sat Dec 13 02:21:17 GMT 2025
    - 44K bytes
    - Click Count (0)
Back to Top