Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 2,147 for DEPRECATED (0.2 sec)

  1. platforms/jvm/plugins-java-base/src/integTest/groovy/org/gradle/api/plugins/JavaBasePluginIntegrationTest.groovy

            file("main/build/classes/java/main").assertHasDescendants("Main.class")
            file("tests/build/classes/java/unitTest").assertHasDescendants("Test.class")
        }
    
        def "calling withSourcesJar is deprecated when the java plugin is not applied"() {
            given:
            buildFile << """
                plugins {
                    id 'java-base'
                }
    
                sourceSets {
                    main
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 12:15:28 UTC 2023
    - 4.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/testData/components/diagnosticsProvider/diagnostics/annotationWithEnumFromDuplicatedLibrary.kt

    import kotlin.annotation.AnnotationTarget
    
    @Target(AnnotationTarget.CLASS)
    annotation class Deprecated
    
    // MODULE: lib2
    // FILE: anno.kt
    package kotlin.annotation
    
    public enum class AnnotationTarget {
        CLASS;
    }
    
    // MODULE: main(lib2, dep)
    // FILE: usage.kt
    package usage
    
    import my.pack.Deprecated
    
    @Deprecated
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Mon Mar 18 21:14:36 UTC 2024
    - 521 bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/samples/ide/problems-api-usage/kotlin/reporters/script-plugin/src/main/kotlin/reporters/script.plugin.gradle.kts

    val gradleInternal = gradle as GradleInternal
    val problems = gradleInternal.services.get(Problems::class.java)
    
    problems.forNamespace("buildscript").reporting {
        id("adhoc-script-deprecation", "Deprecated script plugin")
            .contextualLabel("Deprecated script plugin 'demo-script-plugin'")
            .severity(Severity.WARNING)
            .solution("Please use 'standard-plugin-2' instead of this plugin")
    }
    
    tasks {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:35:05 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  4. platforms/core-configuration/kotlin-dsl/src/main/kotlin/org/gradle/kotlin/dsl/accessors/CodeGenerator.kt

             *
             * @deprecated The concept of conventions is deprecated. Use extensions instead.
             */
            val $targetType.`$kotlinIdentifier`: $type get() =
                $thisConvention.getPluginByName<$type>("$stringLiteral")
    
            /**
             * Configures the [$original][$type] convention.
             *
             * @deprecated The concept of conventions is deprecated. Use extensions instead.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Aug 02 08:06:49 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/cunit/groovy/libs/cunit/2.1-2/include/CUnit/Util.h

    /**< Deprecated (version 1). @deprecated Use CU_translate_special_characters(). */
    #define compare_strings(src, dest) CU_compare_strings(src, dest)
    /**< Deprecated (version 1). @deprecated Use CU_compare_strings(). */
    
    #define trim_left(str) CU_trim_left(str)
    /**< Deprecated (version 1). @deprecated Use CU_trim_left(). */
    #define trim_right(str) CU_trim_right(str)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  6. okhttp/src/main/kotlin/okhttp3/Handshake.kt

          listOf()
        }
      }
    
      @JvmName("-deprecated_tlsVersion")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "tlsVersion"),
        level = DeprecationLevel.ERROR,
      )
      fun tlsVersion(): TlsVersion = tlsVersion
    
      @JvmName("-deprecated_cipherSuite")
      @Deprecated(
        message = "moved to val",
        replaceWith = ReplaceWith(expression = "cipherSuite"),
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  7. platforms/core-runtime/cli/src/main/java/org/gradle/cli/CommandLineOption.java

            return argumentType == List.class;
        }
    
        public CommandLineOption deprecated() {
            this.deprecated = true;
            return this;
        }
    
        public CommandLineOption incubating() {
            incubating = true;
            return this;
        }
    
        public boolean isDeprecated() {
            return deprecated;
        }
    
        public boolean isIncubating() {
            return incubating;
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 09:00:57 UTC 2023
    - 3K bytes
    - Viewed (0)
  8. maven-core/src/main/java/org/apache/maven/project/DuplicateProjectException.java

        /**
         * @deprecated use {@link #DuplicateProjectException(String, File, File, String)}
         */
        @Deprecated
        public DuplicateProjectException(String message) {
            this(null, null, null, message);
        }
    
        /**
         * @deprecated use {@link #DuplicateProjectException(String, File, File, String)}
         */
        @Deprecated
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Sep 06 08:39:32 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  9. build-logic/documentation/src/test/resources/org/gradle/test/GroovyClassWithAnnotation.groovy

    package org.gradle.test
    
    @Deprecated @JavaAnnotation
    class GroovyClassWithAnnotation {
        @Deprecated @JavaAnnotation
        String annotatedProperty
    
        @Deprecated @JavaAnnotation
        void annotatedMethod() { }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 214 bytes
    - Viewed (0)
  10. platforms/software/maven/src/main/java/org/gradle/api/publish/maven/tasks/GenerateMavenPom.java

        /**
         * Get the version range mapper.
         *
         * @deprecated This method will be removed in Gradle 9.0
         */
        @Inject
        @Deprecated
        protected VersionRangeMapper getVersionRangeMapper() {
            throw new UnsupportedOperationException();
        }
    
        /**
         * The values set by this method are ignored.
         *
         * @deprecated This method will be removed in Gradle 9.0.
         */
        @Deprecated
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.7K bytes
    - Viewed (0)
Back to top